dotfiles/.local/bin/telephony-launcher.sh

18 lines
228 B
Bash
Executable File

#!/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