power menu, redshift, polybar

This commit is contained in:
azpsen
2024-01-28 16:37:10 -06:00
parent 89516a6ce1
commit 319b44ecbd
307 changed files with 7642 additions and 5 deletions

View File

@@ -0,0 +1,20 @@
# Script: isrunning-noisetorch
A script that outputs an icon if noisetorch is loaded as a pulseaudio module.
![isrunning-noisetorch](screenshots/1.png)
## Dependencies
* [NoiseTorch](https://github.com/lawl/NoiseTorch)
## Module
```ini
[module/isrunning-noisetorch]
type = custom/script
exec = ~/.config/polybar/modules/isrunning-noisetorch.sh
interval = 20
```

View File

@@ -0,0 +1,5 @@
#!/bin/sh
nmodules="$(pactl list modules short | grep -c noisetorch)"
[ "$nmodules" = 0 ] && echo "" || echo ""

Binary file not shown.

After

Width:  |  Height:  |  Size: 494 B