34 lines
582 B
Plaintext
Raw Normal View History

2024-04-16 21:46:53 +02:00
#!/bin/bash
if [[ "$1" == "--tr" ]]; then
alacritty --working-directory ~ &
elif [[ "$1" == "--ff" ]]; then
firefox &
elif [[ "$1" == "--fm" ]]; then
thunar ~ &
elif [[ "$1" == "--ge" ]]; then
geany &
elif [[ "$1" == "--dc" ]]; then
discord &
elif [[ "$1" == "--tg" ]]; then
telegram-desktop &
elif [[ "$1" == "--rd" ]]; then
firefox --new-tab "https://reddit.com"
elif [[ "$1" == "--ml" ]]; then
firefox --new-tab "https://mail.google.com"
elif [[ "$1" == "--pow" ]]; then
xfce4-power-manager-settings &
elif [[ "$1" == "--nm" ]]; then
networkmanager_dmenu
fi