27 lines
323 B
Bash
27 lines
323 B
Bash
|
# Reload.
|
||
|
function reload() {
|
||
|
# notify_long
|
||
|
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
|
||
|
|
||
|
# Reset displays.
|
||
|
displayreset
|
||
|
}
|
||
|
|
||
|
_sway_iterate_sockets re
|
||
|
}
|