feat: added notifications & daemons + simplified naming
notifications are for `dunst` a notification handler for my setup I added volume, charging, battery, time, and brightness notifications
This commit is contained in:
parent
413b470d99
commit
9b374bb70d
11 changed files with 281 additions and 15 deletions
14
sunset
Executable file
14
sunset
Executable file
|
|
@ -0,0 +1,14 @@
|
|||
#!/bin/bash
|
||||
# Build and Install 'redshift' for wayland: https://github.com/minus7/redshift
|
||||
# You can also use gammastep
|
||||
|
||||
#cd $HOME/.local/bin
|
||||
# killing gammastep if it already exists
|
||||
if [[ $(pgrep gammastep) =~ ^[0-9]+$ ]]
|
||||
then
|
||||
kill $(pgrep gammastep)
|
||||
|
||||
else
|
||||
gammastep -PO 2900
|
||||
fi
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue