Compare commits
No commits in common. "f7c45ac2ea31bd380124d6bdc8b9730ddd00b92d" and "1a4a0bbe18ec0af508435cdec5fe5ebfc57813fd" have entirely different histories.
f7c45ac2ea
...
1a4a0bbe18
3 changed files with 14 additions and 26 deletions
|
@ -6,7 +6,7 @@
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
"label" : "logout",
|
"label" : "logout",
|
||||||
"action" : "~/.config/zsh/.zlogout",
|
"action" : "hyprctl dispatch exit",
|
||||||
"text" : "Logout",
|
"text" : "Logout",
|
||||||
"keybind" : "e"
|
"keybind" : "e"
|
||||||
}
|
}
|
||||||
|
|
27
.config/zsh/.zlogout
Executable file → Normal file
27
.config/zsh/.zlogout
Executable file → Normal file
|
@ -1,21 +1,6 @@
|
||||||
#!/bin/zsh
|
wl-copy -c
|
||||||
|
cliphist wipe
|
||||||
# Clear clipboard
|
pkill -u "$USER" -9 ssh-agent
|
||||||
if [[ -n $WAYLAND_DISPLAY ]]; then
|
pkill -u "$USER" -9 pipewire
|
||||||
wl-copy -c
|
pkill -u "$USER" -9 dbus-daemon
|
||||||
cliphist wipe
|
killall -u "$USER" -9 kill-wine-explorer.sh
|
||||||
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
|
|
||||||
|
|
|
@ -53,10 +53,13 @@ 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
|
||||||
|
|
||||||
if [[ -z $SSH_TTY ]]; then
|
# Import colorscheme from 'wal' asynchronously
|
||||||
(cat ~/.cache/wal/sequences &)
|
# & # Run the process in the background.
|
||||||
# source ~/.cache/wal/colors-tty.sh
|
# # ( ) # Hide shell job control messages.
|
||||||
fi
|
# # Not supported in the "fish" shell.
|
||||||
|
(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
|
||||||
|
|
Loading…
Reference in a new issue