Add doom sync action to popup-window script
This commit is contained in:
parent
1ec54bccfc
commit
a558a6584a
|
@ -5,6 +5,7 @@ select_action() {
|
|||
"System resources usage"
|
||||
"Connectivity test"
|
||||
"Kill emacs"
|
||||
"Sync doom emacs"
|
||||
)
|
||||
action=$(printf '%s\n' "${action_content[@]}" | rofi -no-auto-select -i "$@" -dmenu -p "Choose an action")
|
||||
execute_action "$action"
|
||||
|
@ -14,11 +15,16 @@ launch_kitty() {
|
|||
bash -c "kitty --class popup -- $1"
|
||||
}
|
||||
|
||||
execute_command() {
|
||||
bash -c "$1"
|
||||
}
|
||||
|
||||
execute_action() {
|
||||
case "$1" in
|
||||
"System resources usage") launch_kitty "htop" ;;
|
||||
"Connectivity test") launch_kitty "ping -c 2 freebsd.org" ;;
|
||||
"Kill emacs") launch_kitty "pkill emacs" ;;
|
||||
"Kill emacs") execute_command "pkill emacs" ;;
|
||||
"Sync doom emacs") execute_command "$HOME/.emacs.d/bin/doom sync" ;;
|
||||
esac
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue