aboutsummaryrefslogtreecommitdiff
path: root/.config/rofi/applets/android/apps.sh
diff options
context:
space:
mode:
authorAlec Goncharow <alec@goncharow.dev>2022-12-04 18:23:46 -0600
committerAlec Goncharow <alec@goncharow.dev>2022-12-04 18:23:46 -0600
commit1ec73cc2c14d2f62c32046d9585c3a745531d37a (patch)
tree8b9c6b2e5ba43ce1248c114758a55df9467cab64 /.config/rofi/applets/android/apps.sh
parentb257edf16c9b8b14ebb542e857a29c74fea00495 (diff)
Fresh start
Diffstat (limited to '.config/rofi/applets/android/apps.sh')
-rwxr-xr-x.config/rofi/applets/android/apps.sh94
1 files changed, 0 insertions, 94 deletions
diff --git a/.config/rofi/applets/android/apps.sh b/.config/rofi/applets/android/apps.sh
deleted file mode 100755
index 466c629..0000000
--- a/.config/rofi/applets/android/apps.sh
+++ /dev/null
@@ -1,94 +0,0 @@
-#!/usr/bin/env bash
-
-## Author : Aditya Shakya
-## Mail : adi1090x@gmail.com
-## Github : @adi1090x
-## Twitter : @adi1090x
-
-dir="$HOME/.config/rofi/applets/android"
-rofi_command="rofi -theme $dir/six.rasi"
-
-# Links
-terminal=""
-files=""
-editor=""
-browser=""
-music=""
-settings=""
-
-# Error msg
-msg() {
- rofi -theme "$dir/message.rasi" -e "$1"
-}
-
-# Variable passed to rofi
-options="$terminal\n$files\n$editor\n$browser\n$music\n$settings"
-
-chosen="$(echo -e "$options" | $rofi_command -p "Most Used" -dmenu -selected-row 0)"
-case $chosen in
- $terminal)
- if [[ -f /usr/bin/termite ]]; then
- termite &
- elif [[ -f /usr/bin/urxvt ]]; then
- urxvt &
- elif [[ -f /usr/bin/kitty ]]; then
- kitty &
- elif [[ -f /usr/bin/xterm ]]; then
- xterm &
- elif [[ -f /usr/bin/xfce4-terminal ]]; then
- xfce4-terminal &
- elif [[ -f /usr/bin/gnome-terminal ]]; then
- gnome-terminal &
- else
- msg "No suitable terminal found!"
- fi
- ;;
- $files)
- if [[ -f /usr/bin/thunar ]]; then
- thunar &
- elif [[ -f /usr/bin/pcmanfm ]]; then
- pcmanfm &
- else
- msg "No suitable file manager found!"
- fi
- ;;
- $editor)
- if [[ -f /usr/bin/geany ]]; then
- geany &
- elif [[ -f /usr/bin/leafpad ]]; then
- leafpad &
- elif [[ -f /usr/bin/mousepad ]]; then
- mousepad &
- elif [[ -f /usr/bin/code ]]; then
- code &
- else
- msg "No suitable text editor found!"
- fi
- ;;
- $browser)
- if [[ -f /usr/bin/firefox ]]; then
- firefox &
- elif [[ -f /usr/bin/chromium ]]; then
- chromium &
- elif [[ -f /usr/bin/midori ]]; then
- midori &
- else
- msg "No suitable web browser found!"
- fi
- ;;
- $music)
- if [[ -f /usr/bin/lxmusic ]]; then
- lxmusic &
- else
- msg "No suitable music player found!"
- fi
- ;;
- $settings)
- if [[ -f /usr/bin/xfce4-settings-manager ]]; then
- xfce4-settings-manager &
- else
- msg "No suitable settings manager found!"
- fi
- ;;
-esac
-