From 709dedd7b84f48b796b9b6de7c06d430fe92a03e Mon Sep 17 00:00:00 2001 From: coolneng Date: Mon, 29 Nov 2021 11:44:51 +0100 Subject: [PATCH] Revert "Add kill zoom option to recurrent-actions" This reverts commit c08017fa979aa00fd470f7c0bce52dc037c881c4. --- scripts/.local/share/scripts/recurrent-actions | 2 -- 1 file changed, 2 deletions(-) diff --git a/scripts/.local/share/scripts/recurrent-actions b/scripts/.local/share/scripts/recurrent-actions index 10bd1d0..41e308e 100755 --- a/scripts/.local/share/scripts/recurrent-actions +++ b/scripts/.local/share/scripts/recurrent-actions @@ -6,7 +6,6 @@ select_action() { "Connectivity test" "Kill emacs" "Kill MS Teams" - "Kill zoom" "Sync doom emacs" "Start videocall" "Stop videocall" @@ -30,7 +29,6 @@ execute_action() { "Connectivity test") launch_kitty "ping -c 2 freebsd.org" ;; "Kill emacs") execute_command "pkill emacs" ;; "Kill MS Teams") execute_command "pkill teams" ;; - "Kill zoom") execute_command "pkill zoom" ;; "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" ;;