nix/package/swayscript/script/Reload.nix

27 lines
335 B
Nix

{ ... }: {
text = ''
# Reload.
function reload() {
re() {
# Sway.
swaymsg reload
# Waybar.
pkill waybar
swaymsg exec waybar
# Tmux.
tmux source-file ~/.config/tmux/tmux.conf
# Bash.
pkill -SIGUSR1 bash
# Notifications.
makoctl reload
}
_sway_iterate_sockets re
}
'';
}