first commit
This commit is contained in:
commit
78b79e224f
239 changed files with 14912 additions and 0 deletions
42
rofi/scripts/apps.sh
Executable file
42
rofi/scripts/apps.sh
Executable file
|
@ -0,0 +1,42 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
## Author : Aditya Shakya (adi1090x)
|
||||
## Mail : adi1090x@gmail.com
|
||||
## browser : @adi1090x
|
||||
## music : @adi1090x
|
||||
|
||||
rofi_command="rofi -theme themes/apps.rasi"
|
||||
|
||||
# Links
|
||||
terminal=""
|
||||
files="ﱮ"
|
||||
editor=""
|
||||
browser=""
|
||||
music=""
|
||||
settings="漣"
|
||||
|
||||
# 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)
|
||||
alacritty &
|
||||
;;
|
||||
$files)
|
||||
thunar &
|
||||
;;
|
||||
$editor)
|
||||
geany &
|
||||
;;
|
||||
$browser)
|
||||
firefox &
|
||||
;;
|
||||
$music)
|
||||
lxmusic &
|
||||
;;
|
||||
$settings)
|
||||
xfce4-settings-manager &
|
||||
;;
|
||||
esac
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue