-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(cr0nus): updated confs for term-menu/fzf system
- Loading branch information
Showing
5 changed files
with
46 additions
and
172 deletions.
There are no files selected for viewing
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
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
This file was deleted.
Oops, something went wrong.
155 changes: 38 additions & 117 deletions
155
themes/cr0nus/rofi/.config/rofi/powermenu/powermenu.sh
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 |
---|---|---|
@@ -1,117 +1,38 @@ | ||
#!/usr/bin/env bash | ||
|
||
## Author : Aditya Shakya | ||
## Mail : [email protected] | ||
## Github : @adi1090x | ||
## Twitter : @adi1090x | ||
|
||
# Available Styles | ||
# >> Created and tested on : rofi 1.6.0-1 | ||
# | ||
# column_circle column_square column_rounded column_alt | ||
# card_circle card_square card_rounded card_alt | ||
# dock_circle dock_square dock_rounded dock_alt | ||
# drop_circle drop_square drop_rounded drop_alt | ||
# full_circle full_square full_rounded full_alt | ||
# row_circle row_square row_rounded row_alt | ||
|
||
theme="full_circle" | ||
dir="$HOME/.config/rofi/powermenu" | ||
|
||
# random colors | ||
styles=($(ls -p --hide="colors.rasi" $dir/styles)) | ||
color="${styles[$(( $RANDOM % 8 ))]}" | ||
|
||
# comment this line to disable random colors | ||
sed -i -e "s/@import .*/@import \"$color\"/g" $dir/styles/colors.rasi | ||
|
||
# comment these lines to disable random style | ||
themes=($(ls -p --hide="powermenu.sh" --hide="styles" --hide="confirm.rasi" --hide="message.rasi" $dir)) | ||
theme="${themes[$(( $RANDOM % 24 ))]}" | ||
|
||
uptime=$(uptime -p | sed -e 's/up //g') | ||
|
||
rofi_command="rofi -theme $dir/$theme" | ||
|
||
# Options | ||
shutdown="" | ||
reboot="" | ||
lock="" | ||
suspend="" | ||
logout="" | ||
|
||
# Confirmation | ||
confirm_exit() { | ||
rofi -dmenu\ | ||
-i\ | ||
-no-fixed-num-lines\ | ||
-p "Are You Sure? : "\ | ||
-theme $dir/confirm.rasi | ||
} | ||
|
||
# Message | ||
msg() { | ||
rofi -theme "$dir/message.rasi" -e "Available Options - yes / y / no / n" | ||
} | ||
|
||
# Variable passed to rofi | ||
options="$shutdown\n$reboot\n$lock\n$suspend\n$logout" | ||
|
||
chosen="$(echo -e "$options" | $rofi_command -p "Uptime: $uptime" -dmenu -selected-row 2)" | ||
case $chosen in | ||
$shutdown) | ||
ans=$(confirm_exit &) | ||
if [[ $ans == "yes" || $ans == "YES" || $ans == "y" || $ans == "Y" ]]; then | ||
systemctl poweroff | ||
elif [[ $ans == "no" || $ans == "NO" || $ans == "n" || $ans == "N" ]]; then | ||
exit 0 | ||
else | ||
msg | ||
fi | ||
;; | ||
$reboot) | ||
ans=$(confirm_exit &) | ||
if [[ $ans == "yes" || $ans == "YES" || $ans == "y" || $ans == "Y" ]]; then | ||
systemctl reboot | ||
elif [[ $ans == "no" || $ans == "NO" || $ans == "n" || $ans == "N" ]]; then | ||
exit 0 | ||
else | ||
msg | ||
fi | ||
;; | ||
$lock) | ||
if [[ -f /usr/bin/i3lock ]]; then | ||
i3lock | ||
elif [[ -f /usr/bin/betterlockscreen ]]; then | ||
betterlockscreen -l | ||
fi | ||
;; | ||
$suspend) | ||
ans=$(confirm_exit &) | ||
if [[ $ans == "yes" || $ans == "YES" || $ans == "y" || $ans == "Y" ]]; then | ||
mpc -q pause | ||
amixer set Master mute | ||
systemctl suspend | ||
elif [[ $ans == "no" || $ans == "NO" || $ans == "n" || $ans == "N" ]]; then | ||
exit 0 | ||
else | ||
msg | ||
fi | ||
;; | ||
$logout) | ||
ans=$(confirm_exit &) | ||
if [[ $ans == "yes" || $ans == "YES" || $ans == "y" || $ans == "Y" ]]; then | ||
if [[ "$DESKTOP_SESSION" == "Openbox" ]]; then | ||
openbox --exit | ||
elif [[ "$DESKTOP_SESSION" == "bspwm" ]]; then | ||
bspc quit | ||
elif [[ "$DESKTOP_SESSION" == "i3" ]]; then | ||
i3-msg exit | ||
fi | ||
elif [[ $ans == "no" || $ans == "NO" || $ans == "n" || $ans == "N" ]]; then | ||
exit 0 | ||
else | ||
msg | ||
fi | ||
;; | ||
esac | ||
#!/bin/env bash | ||
|
||
# Options for powermenu | ||
lock=" Lock" | ||
logout=" Logout" | ||
shutdown=" Shutdown" | ||
reboot=" Reboot" | ||
sleep=" Sleep" | ||
|
||
# Get answer from user via rofi | ||
selected_option=$(echo "$lock | ||
$logout | ||
$sleep | ||
$reboot | ||
$shutdown" | fzf ) | ||
|
||
# Do something based on selected option | ||
if [ "$selected_option" == "$lock" ] | ||
then | ||
/home/$USER/.config/bspwm/scripts/i3lock-fancy/i3lock-fancy.sh | ||
elif [ "$selected_option" == "$logout" ] | ||
then | ||
ps -ef | grep hideIt | grep -v grep | awk '{print $2}' | xargs killall | ||
bspc quit | ||
pkill touchegg | ||
elif [ "$selected_option" == "$shutdown" ] | ||
then | ||
systemctl poweroff | ||
elif [ "$selected_option" == "$reboot" ] | ||
then | ||
systemctl reboot | ||
elif [ "$selected_option" == "$sleep" ] | ||
then | ||
amixer set Master mute | ||
systemctl hybrid-sleep | ||
else | ||
echo "No match" | ||
fi |
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