diff options
| author | krolxon <krolyxon@tutanota.com> | 2025-10-20 16:03:00 +0530 |
|---|---|---|
| committer | krolxon <krolyxon@tutanota.com> | 2025-10-20 16:03:00 +0530 |
| commit | 9d543f98b182cfa04577dca7b31746eb5fdc5596 (patch) | |
| tree | 4fb8a79f768d70a287f0de01945647eafbe993dc /.config/nsxiv/exec | |
| parent | 7625ce340a14fa8e6faf8f01619a01ba0a61ca2f (diff) | |
hyprland: open ncmpcpp with interactive zsh
Since we are loading the pywal colors through zsh,
doing `foot -e ncmpcpp` will bypass the interactive shell commands
so instead use `foot -e zsh -i -c ncmpcpp`
Diffstat (limited to '.config/nsxiv/exec')
| -rwxr-xr-x | .config/nsxiv/exec/key-handler | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.config/nsxiv/exec/key-handler b/.config/nsxiv/exec/key-handler index 592cec4..0f9cee7 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 $(realpath $file);; +"w") setwall -p $file;; "c") cat "$file" | xclip -sel c -t image/png && notify-send "$file Copied ";; esac done |
