diff --git a/.local/bin/telephony-launcher.sh b/.local/bin/telephony-launcher.sh new file mode 100755 index 0000000..35582f2 --- /dev/null +++ b/.local/bin/telephony-launcher.sh @@ -0,0 +1,17 @@ +#!/usr/bin/zsh + +case $(echo -e "Devices\nSMS\nSettings" | wofi --dmenu --prompt 'Telephony App') in + + 'Devices') + exec kdeconnect-app + ;; + + 'SMS') + exec kdeconnect-sms + ;; + + 'Settings') + exec kdeconnect-settings + ;; + +esac