mirror of
https://gitlab.com/thebiblelover7/dotfiles.git
synced 2025-09-13 07:03:50 +00:00
22 lines
253 B
Bash
Executable File
22 lines
253 B
Bash
Executable File
#!/bin/bash
|
|
|
|
choice=$(echo "Schildichat
|
|
Element
|
|
Signal
|
|
Telegram" | rofi -dmenu -i)
|
|
|
|
case $choice in
|
|
'Schildichat')
|
|
schildichat-desktop
|
|
;;
|
|
'Element')
|
|
element-desktop
|
|
;;
|
|
'Signal')
|
|
signal-desktop
|
|
;;
|
|
'Telegram')
|
|
telegram-desktop
|
|
;;
|
|
esac
|