Add videocall options to popup-window selection

This commit is contained in:
coolneng 2021-06-02 11:26:20 +02:00
parent f2122ddb41
commit 0f6750c47f
Signed by: coolneng
GPG Key ID: 9893DA236405AF57
1 changed files with 6 additions and 0 deletions

View File

@ -6,6 +6,8 @@ select_action() {
"Connectivity test"
"Kill emacs"
"Sync doom emacs"
"Start videocall"
"Stop videocall"
)
action=$(printf '%s\n' "${action_content[@]}" | rofi -no-auto-select -i "$@" -dmenu -p "Choose an action")
execute_action "$action"
@ -25,7 +27,11 @@ execute_action() {
"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" ;;
esac
}
script_folder="$HOME/.local/share/scripts"
select_action "$@"