From 66983b06a3b7cfc365fc9c6a17f9f3b8884fc8f2 Mon Sep 17 00:00:00 2001 From: coolneng Date: Mon, 21 Feb 2022 19:15:39 +0100 Subject: [PATCH] Remove kill MS Teams from recurrent-actions script --- 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 41e308e..cd135c4 100755 --- a/scripts/.local/share/scripts/recurrent-actions +++ b/scripts/.local/share/scripts/recurrent-actions @@ -5,7 +5,6 @@ select_action() { "System resources usage" "Connectivity test" "Kill emacs" - "Kill MS Teams" "Sync doom emacs" "Start videocall" "Stop videocall" @@ -28,7 +27,6 @@ execute_action() { "System resources usage") launch_kitty "htop" ;; "Connectivity test") launch_kitty "ping -c 2 freebsd.org" ;; "Kill emacs") execute_command "pkill emacs" ;; - "Kill MS Teams") execute_command "pkill teams" ;; "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" ;;