aboutsummaryrefslogtreecommitdiff
path: root/.config
diff options
context:
space:
mode:
Diffstat (limited to '.config')
-rw-r--r--.config/hypr/hyprland.conf3
-rw-r--r--.config/hypr/hyprpaper.conf2
-rwxr-xr-x.config/nsxiv/exec/key-handler2
3 files changed, 3 insertions, 4 deletions
diff --git a/.config/hypr/hyprland.conf b/.config/hypr/hyprland.conf
index ec76c76..20c3510 100644
--- a/.config/hypr/hyprland.conf
+++ b/.config/hypr/hyprland.conf
@@ -11,7 +11,8 @@ $browser = zen-browser
#################
### AUTOSTART ###
#################
-exec-once = (hyprpm reload -n & kanshi & waybar & swaync & gammastep & hypridle & foot --server)
+exec-once = foot --server
+exec-once = (hyprpm reload -n & kanshi & waybar & swaync & gammastep & hypridle)
exec-once = ~/.local/bin/setwall
exec-once = systemctl --user start hyprpolkitagent
diff --git a/.config/hypr/hyprpaper.conf b/.config/hypr/hyprpaper.conf
deleted file mode 100644
index a9c8b8b..0000000
--- a/.config/hypr/hyprpaper.conf
+++ /dev/null
@@ -1,2 +0,0 @@
-preload = /home/krolyxon/pix/wallpapers/onedarkwallpapers/19.png
-wallpaper = ,/home/krolyxon/pix/wallpapers/onedarkwallpapers/19.png
diff --git a/.config/nsxiv/exec/key-handler b/.config/nsxiv/exec/key-handler
index 491b894..592cec4 100755
--- a/.config/nsxiv/exec/key-handler
+++ b/.config/nsxiv/exec/key-handler
@@ -5,7 +5,7 @@ do
case "$1" in
"d")
[ "$(printf "No\\nYes" | dmenu -i -p "Really delete $file?")" = "Yes" ] && rm "$file" && notify-send "$file deleted." ;;
- "w") setwall -p $file;;
+"w") setwall -p $(realpath $file);;
"c") cat "$file" | xclip -sel c -t image/png && notify-send "$file Copied ";;
esac
done