From 058a8be80b43e62fb5a6b20bbf918b72be1ef4b6 Mon Sep 17 00:00:00 2001 From: coolneng Date: Mon, 2 May 2022 04:30:55 +0200 Subject: [PATCH] Remove kill emacs from recurrent-actions --- scripts/.local/share/scripts/recurrent-actions | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/scripts/.local/share/scripts/recurrent-actions b/scripts/.local/share/scripts/recurrent-actions index fbe5a4a..df82627 100755 --- a/scripts/.local/share/scripts/recurrent-actions +++ b/scripts/.local/share/scripts/recurrent-actions @@ -4,8 +4,7 @@ select_action() { action_content=( "System resources usage" "Connectivity test" - "Kill emacs" - "Sync doom emacs" + "Sync Doom emacs" "Start videocall" "Stop videocall" "Sync mail" @@ -26,7 +25,6 @@ execute_action() { case "$1" in "System resources usage") launch_kitty "htop" ;; "Connectivity test") launch_kitty "ping -c 2 freebsd.org" ;; - "Kill emacs") execute_command "pkill emacs" ;; "Sync doom emacs") execute_command "$HOME/.emacs.d/bin/doom sync" ;; "Start videocall") execute_command "$script_folder/pulseaudio-mic-mute" && execute_command "$script_folder/videocall start" ;; "Stop videocall") execute_command "$script_folder/pulseaudio-mic-mute" && execute_command "$script_folder/videocall stop" ;;