34 lines
582 B
Bash
Executable File
34 lines
582 B
Bash
Executable File
#!/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
|