Compare commits

..

2 commits

Author SHA1 Message Date
f7c45ac2ea
[zsh/wlogout] Update logout script 2024-08-08 12:55:12 +02:00
74b7c89c25
[zsh] Don't source Pywal when in SSH session 2024-08-08 12:54:32 +02:00
3 changed files with 26 additions and 14 deletions

View file

@ -6,7 +6,7 @@
} }
{ {
"label" : "logout", "label" : "logout",
"action" : "hyprctl dispatch exit", "action" : "~/.config/zsh/.zlogout",
"text" : "Logout", "text" : "Logout",
"keybind" : "e" "keybind" : "e"
} }

27
.config/zsh/.zlogout Normal file → Executable file
View file

@ -1,6 +1,21 @@
wl-copy -c #!/bin/zsh
cliphist wipe
pkill -u "$USER" -9 ssh-agent # Clear clipboard
pkill -u "$USER" -9 pipewire if [[ -n $WAYLAND_DISPLAY ]]; then
pkill -u "$USER" -9 dbus-daemon wl-copy -c
killall -u "$USER" -9 kill-wine-explorer.sh cliphist wipe
fi
# Kill ssh-agent if it's the only opened session for this user
if [[ $(who | grep "$USER" | wc -l) -le 1 ]]; then
ssh-add -D
pkill -u "$USER" -9 ssh-agent
fi
if [[ -n $HYPRLAND_INSTANCE_SIGNATURE ]]; then
HYPRCMDS=$(hyprctl -j clients | jq -j '.[] | "dispatch closewindow address:\(.address); "')
hyprctl -q --batch "$HYPRCMDS"
hyprctl dispatch exit
fi
loginctl terminate-session $XDG_SESSION_ID

View file

@ -53,13 +53,10 @@ autoload -Uz up-line-or-beginning-search down-line-or-beginning-search
zle -N up-line-or-beginning-search zle -N up-line-or-beginning-search
zle -N down-line-or-beginning-search zle -N down-line-or-beginning-search
# Import colorscheme from 'wal' asynchronously if [[ -z $SSH_TTY ]]; then
# & # Run the process in the background. (cat ~/.cache/wal/sequences &)
# # ( ) # Hide shell job control messages. # source ~/.cache/wal/colors-tty.sh
# # Not supported in the "fish" shell. fi
(cat ~/.cache/wal/sequences &)
# # To add support for TTYs this line can be optionally added.
source ~/.cache/wal/colors-tty.sh
# create a zkbd compatible hash; # create a zkbd compatible hash;
# to add other keys to this hash, see: man 5 terminfo # to add other keys to this hash, see: man 5 terminfo