2024-12-11 22:17 : id 317

This commit is contained in:
deadvey 2024-12-11 22:17:22 +00:00
parent 80a0c41655
commit ac7f41ac4c

View File

@ -1,7 +1,7 @@
{config, pkgs, ... }: {config, pkgs, ... }:
let let
# Theme/Mode # Theme/Mode
THEME = "nord"; THEME = "gruvbox";
MODE = "dark"; MODE = "dark";
# Colours # Colours
@ -94,8 +94,9 @@ in
file = { file = {
".config/hypr/wallpaper-watcher.sh" = { ".config/hypr/wallpaper-watcher.sh" = {
text = '' text = ''
while sleep 1; do while [ 1 == 1 ]; do
ls $HOME/.config/hypr/ -d * | entr sh -c "kill $(pgrep hyprpaper) && sleep 0.2 && hyprpaper &"; done ls $HOME/.config/hypr/ -d * | entr sh -c "kill $(pgrep hyprpaper) && sleep 0.2 && hyprpaper &";
done
''; '';
executable = true; executable = true;
}; };