summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--config/i3/config2
-rw-r--r--config/polybar/forest/colors.ini6
-rwxr-xr-xconfig/polybar/forest/scripts/powermenu.sh6
-rw-r--r--config/polybar/forest/scripts/rofi/colors.rasi10
4 files changed, 13 insertions, 11 deletions
diff --git a/config/i3/config b/config/i3/config
index 07bc59e..0211afc 100644
--- a/config/i3/config
+++ b/config/i3/config
@@ -41,7 +41,7 @@ exec --no-startup-id xss-lock -- i3lock-fancy
# Extra startups
exec --no-startup-id compton
exec --no-startup-id sh ~/.fehbg
-exec --no-startup-id bash ~/.config/polybar/launch.sh --forest
+exec --no-startup-id bash -c "DESKTOP_SESSION=i3 ~/.config/polybar/launch.sh --forest"
exec --no-startup-id volumeicon
exec --no-startup-id xfce4-clipman
exec --no-startup-id bash ~/.config/i3/startfcitx5
diff --git a/config/polybar/forest/colors.ini b/config/polybar/forest/colors.ini
index e81c44d..b77cbeb 100644
--- a/config/polybar/forest/colors.ini
+++ b/config/polybar/forest/colors.ini
@@ -12,9 +12,9 @@
;; Use pywal.sh in scripts directory to use colors from an image/wallpaper.
;; main colors
-background = #212B30
-foreground = #C4C7C5
-sep = #3F5360
+background = #141C21
+foreground = #93A1A1
+sep = #3C4449
white = #FFFFFF
black = #000000
diff --git a/config/polybar/forest/scripts/powermenu.sh b/config/polybar/forest/scripts/powermenu.sh
index 84eddf4..b3b0fb7 100755
--- a/config/polybar/forest/scripts/powermenu.sh
+++ b/config/polybar/forest/scripts/powermenu.sh
@@ -57,7 +57,9 @@ case $chosen in
fi
;;
$lock)
- if [[ -f /usr/bin/i3lock ]]; then
+ if [[ -f /usr/bin/i3lock-fancy ]]; then
+ i3lock-fancy
+ elif [[ -f /usr/bin/i3lock ]]; then
i3lock
elif [[ -f /usr/bin/betterlockscreen ]]; then
betterlockscreen -l
@@ -68,7 +70,7 @@ case $chosen in
if [[ $ans == "yes" || $ans == "YES" || $ans == "y" || $ans == "Y" ]]; then
mpc -q pause
amixer set Master mute
- systemctl suspend
+ croutonpowerd --suspend
elif [[ $ans == "no" || $ans == "NO" || $ans == "n" || $ans == "N" ]]; then
exit 0
else
diff --git a/config/polybar/forest/scripts/rofi/colors.rasi b/config/polybar/forest/scripts/rofi/colors.rasi
index cd1f090..72183d9 100644
--- a/config/polybar/forest/scripts/rofi/colors.rasi
+++ b/config/polybar/forest/scripts/rofi/colors.rasi
@@ -2,9 +2,9 @@
* {
al: #00000000;
- bg: #212B30FF;
- bga: #263035FF;
- fg: #C4C7C5FF;
- ac: #EC407AFF;
- se: #4DD0E1FF;
+ bg: #141C21FF;
+ bga: #1E262BFF;
+ fg: #93A1A1FF;
+ ac: #D12F2CFF;
+ se: #33C5BAFF;
}