forked from adi1090x/rofi
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit fd04bc0
Showing
426 changed files
with
29,839 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,102 @@ | ||
#!/usr/bin/env bash | ||
|
||
## Author : Aditya Shakya (adi1090x) | ||
## Github : @adi1090x | ||
# | ||
## Applets : Run Applications as Root | ||
|
||
# Import Current Theme | ||
source "$HOME"/.config/rofi/applets/shared/theme.bash | ||
theme="$type/$style" | ||
|
||
# Theme Elements | ||
prompt='Applications' | ||
mesg='Run Applications as Root' | ||
|
||
if [[ "$theme" == *'type-1'* ]]; then | ||
list_col='1' | ||
list_row='5' | ||
win_width='400px' | ||
elif [[ "$theme" == *'type-3'* ]]; then | ||
list_col='1' | ||
list_row='5' | ||
win_width='120px' | ||
elif [[ "$theme" == *'type-5'* ]]; then | ||
list_col='1' | ||
list_row='5' | ||
win_width='520px' | ||
elif [[ ( "$theme" == *'type-2'* ) || ( "$theme" == *'type-4'* ) ]]; then | ||
list_col='5' | ||
list_row='1' | ||
win_width='670px' | ||
fi | ||
|
||
# Options | ||
layout=`cat ${theme} | grep 'USE_ICON' | cut -d'=' -f2` | ||
if [[ "$layout" == 'NO' ]]; then | ||
option_1=" Alacritty" | ||
option_2=" Thunar" | ||
option_3=" Geany" | ||
option_4=" Ranger" | ||
option_5=" Vim" | ||
else | ||
option_1="" | ||
option_2="" | ||
option_3="" | ||
option_4="" | ||
option_5="" | ||
fi | ||
|
||
# Rofi CMD | ||
rofi_cmd() { | ||
rofi -theme-str "window {width: $win_width;}" \ | ||
-theme-str "listview {columns: $list_col; lines: $list_row;}" \ | ||
-theme-str 'textbox-prompt-colon {str: "";}' \ | ||
-dmenu \ | ||
-p "$prompt" \ | ||
-mesg "$mesg" \ | ||
-markup-rows \ | ||
-theme ${theme} | ||
} | ||
|
||
# Pass variables to rofi dmenu | ||
run_rofi() { | ||
echo -e "$option_1\n$option_2\n$option_3\n$option_4\n$option_5" | rofi_cmd | ||
} | ||
|
||
# Execute Command | ||
run_cmd() { | ||
polkit_cmd="pkexec env PATH=$PATH DISPLAY=$DISPLAY XAUTHORITY=$XAUTHORITY" | ||
if [[ "$1" == '--opt1' ]]; then | ||
${polkit_cmd} alacritty | ||
elif [[ "$1" == '--opt2' ]]; then | ||
${polkit_cmd} dbus-run-session thunar | ||
elif [[ "$1" == '--opt3' ]]; then | ||
${polkit_cmd} geany | ||
elif [[ "$1" == '--opt4' ]]; then | ||
${polkit_cmd} alacritty -e ranger | ||
elif [[ "$1" == '--opt5' ]]; then | ||
${polkit_cmd} alacritty -e vim | ||
fi | ||
} | ||
|
||
# Actions | ||
chosen="$(run_rofi)" | ||
case ${chosen} in | ||
$option_1) | ||
run_cmd --opt1 | ||
;; | ||
$option_2) | ||
run_cmd --opt2 | ||
;; | ||
$option_3) | ||
run_cmd --opt3 | ||
;; | ||
$option_4) | ||
run_cmd --opt4 | ||
;; | ||
$option_5) | ||
run_cmd --opt5 | ||
;; | ||
esac | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
#!/usr/bin/env bash | ||
|
||
## Author : Aditya Shakya (adi1090x) | ||
## Github : @adi1090x | ||
# | ||
## Applets : Favorite Applications | ||
|
||
# Import Current Theme | ||
source "$HOME"/.config/rofi/applets/shared/theme.bash | ||
theme="$type/$style" | ||
|
||
# Theme Elements | ||
prompt='Applications' | ||
mesg="Installed Packages : `pacman -Q | wc -l` (pacman)" | ||
|
||
if [[ ( "$theme" == *'type-1'* ) || ( "$theme" == *'type-3'* ) || ( "$theme" == *'type-5'* ) ]]; then | ||
list_col='1' | ||
list_row='6' | ||
elif [[ ( "$theme" == *'type-2'* ) || ( "$theme" == *'type-4'* ) ]]; then | ||
list_col='6' | ||
list_row='1' | ||
fi | ||
|
||
# CMDs (add your apps here) | ||
term_cmd='alacritty' | ||
file_cmd='thunar' | ||
text_cmd='geany' | ||
web_cmd='firefox' | ||
music_cmd='alacritty -e ncmpcpp' | ||
setting_cmd='xfce4-settings-manager' | ||
|
||
# Options | ||
layout=`cat ${theme} | grep 'USE_ICON' | cut -d'=' -f2` | ||
if [[ "$layout" == 'NO' ]]; then | ||
option_1=" Terminal <span weight='light' size='small'><i>($term_cmd)</i></span>" | ||
option_2=" Files <span weight='light' size='small'><i>($file_cmd)</i></span>" | ||
option_3=" Editor <span weight='light' size='small'><i>($text_cmd)</i></span>" | ||
option_4=" Browser <span weight='light' size='small'><i>($web_cmd)</i></span>" | ||
option_5=" Music <span weight='light' size='small'><i>($music_cmd)</i></span>" | ||
option_6=" Settings <span weight='light' size='small'><i>($setting_cmd)</i></span>" | ||
else | ||
option_1="" | ||
option_2="" | ||
option_3="" | ||
option_4="" | ||
option_5="" | ||
option_6="" | ||
fi | ||
|
||
# Rofi CMD | ||
rofi_cmd() { | ||
rofi -theme-str "listview {columns: $list_col; lines: $list_row;}" \ | ||
-theme-str 'textbox-prompt-colon {str: "";}' \ | ||
-dmenu \ | ||
-p "$prompt" \ | ||
-mesg "$mesg" \ | ||
-markup-rows \ | ||
-theme ${theme} | ||
} | ||
|
||
# Pass variables to rofi dmenu | ||
run_rofi() { | ||
echo -e "$option_1\n$option_2\n$option_3\n$option_4\n$option_5\n$option_6" | rofi_cmd | ||
} | ||
|
||
# Execute Command | ||
run_cmd() { | ||
if [[ "$1" == '--opt1' ]]; then | ||
${term_cmd} | ||
elif [[ "$1" == '--opt2' ]]; then | ||
${file_cmd} | ||
elif [[ "$1" == '--opt3' ]]; then | ||
${text_cmd} | ||
elif [[ "$1" == '--opt4' ]]; then | ||
${web_cmd} | ||
elif [[ "$1" == '--opt5' ]]; then | ||
${music_cmd} | ||
elif [[ "$1" == '--opt6' ]]; then | ||
${setting_cmd} | ||
fi | ||
} | ||
|
||
# Actions | ||
chosen="$(run_rofi)" | ||
case ${chosen} in | ||
$option_1) | ||
run_cmd --opt1 | ||
;; | ||
$option_2) | ||
run_cmd --opt2 | ||
;; | ||
$option_3) | ||
run_cmd --opt3 | ||
;; | ||
$option_4) | ||
run_cmd --opt4 | ||
;; | ||
$option_5) | ||
run_cmd --opt5 | ||
;; | ||
$option_6) | ||
run_cmd --opt6 | ||
;; | ||
esac |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,134 @@ | ||
#!/usr/bin/env bash | ||
|
||
## Author : Aditya Shakya (adi1090x) | ||
## Github : @adi1090x | ||
# | ||
## Applets : Battery | ||
|
||
# Import Current Theme | ||
source "$HOME"/.config/rofi/applets/shared/theme.bash | ||
theme="$type/$style" | ||
|
||
# Battery Info | ||
battery="`acpi -b | cut -d',' -f1 | cut -d':' -f1`" | ||
status="`acpi -b | cut -d',' -f1 | cut -d':' -f2 | tr -d ' '`" | ||
percentage="`acpi -b | cut -d',' -f2 | tr -d ' ',\%`" | ||
time="`acpi -b | cut -d',' -f3`" | ||
|
||
if [[ -z "$time" ]]; then | ||
time=' Fully Charged' | ||
fi | ||
|
||
# Theme Elements | ||
prompt="$status" | ||
mesg="${battery}: ${percentage}%,${time}" | ||
|
||
if [[ "$theme" == *'type-1'* ]]; then | ||
list_col='1' | ||
list_row='4' | ||
win_width='400px' | ||
elif [[ "$theme" == *'type-3'* ]]; then | ||
list_col='1' | ||
list_row='4' | ||
win_width='120px' | ||
elif [[ "$theme" == *'type-5'* ]]; then | ||
list_col='1' | ||
list_row='4' | ||
win_width='500px' | ||
elif [[ ( "$theme" == *'type-2'* ) || ( "$theme" == *'type-4'* ) ]]; then | ||
list_col='4' | ||
list_row='1' | ||
win_width='550px' | ||
fi | ||
|
||
# Charging Status | ||
active="" | ||
urgent="" | ||
if [[ $status = *"Charging"* ]]; then | ||
active="-a 1" | ||
ICON_CHRG="" | ||
elif [[ $status = *"Full"* ]]; then | ||
active="-u 1" | ||
ICON_CHRG="" | ||
else | ||
urgent="-u 1" | ||
ICON_CHRG="" | ||
fi | ||
|
||
# Discharging | ||
if [[ $percentage -ge 5 ]] && [[ $percentage -le 19 ]]; then | ||
ICON_DISCHRG="" | ||
elif [[ $percentage -ge 20 ]] && [[ $percentage -le 39 ]]; then | ||
ICON_DISCHRG="" | ||
elif [[ $percentage -ge 40 ]] && [[ $percentage -le 59 ]]; then | ||
ICON_DISCHRG="" | ||
elif [[ $percentage -ge 60 ]] && [[ $percentage -le 79 ]]; then | ||
ICON_DISCHRG="" | ||
elif [[ $percentage -ge 80 ]] && [[ $percentage -le 100 ]]; then | ||
ICON_DISCHRG="" | ||
fi | ||
|
||
# Options | ||
layout=`cat ${theme} | grep 'USE_ICON' | cut -d'=' -f2` | ||
if [[ "$layout" == 'NO' ]]; then | ||
option_1=" Remaining ${percentage}%" | ||
option_2=" $status" | ||
option_3=" Power Manager" | ||
option_4=" Diagnose" | ||
else | ||
option_1="$ICON_DISCHRG" | ||
option_2="$ICON_CHRG" | ||
option_3="" | ||
option_4="" | ||
fi | ||
|
||
# Rofi CMD | ||
rofi_cmd() { | ||
rofi -theme-str "window {width: $win_width;}" \ | ||
-theme-str "listview {columns: $list_col; lines: $list_row;}" \ | ||
-theme-str "textbox-prompt-colon {str: \"$ICON_DISCHRG\";}" \ | ||
-dmenu \ | ||
-p "$prompt" \ | ||
-mesg "$mesg" \ | ||
${active} ${urgent} \ | ||
-markup-rows \ | ||
-theme ${theme} | ||
} | ||
|
||
# Pass variables to rofi dmenu | ||
run_rofi() { | ||
echo -e "$option_1\n$option_2\n$option_3\n$option_4" | rofi_cmd | ||
} | ||
|
||
# Execute Command | ||
run_cmd() { | ||
polkit_cmd="pkexec env PATH=$PATH DISPLAY=$DISPLAY XAUTHORITY=$XAUTHORITY" | ||
if [[ "$1" == '--opt1' ]]; then | ||
notify-send -u low " Remaining : ${percentage}%" | ||
elif [[ "$1" == '--opt2' ]]; then | ||
notify-send -u low "$ICON_CHRG Status : $status" | ||
elif [[ "$1" == '--opt3' ]]; then | ||
xfce4-power-manager-settings | ||
elif [[ "$1" == '--opt4' ]]; then | ||
${polkit_cmd} alacritty -e powertop | ||
fi | ||
} | ||
|
||
# Actions | ||
chosen="$(run_rofi)" | ||
case ${chosen} in | ||
$option_1) | ||
run_cmd --opt1 | ||
;; | ||
$option_2) | ||
run_cmd --opt2 | ||
;; | ||
$option_3) | ||
run_cmd --opt3 | ||
;; | ||
$option_4) | ||
run_cmd --opt4 | ||
;; | ||
esac | ||
|
||
|
Oops, something went wrong.