summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.config/dunst/dunstrc22
-rw-r--r--.gtkrc-2.02
-rwxr-xr-x.scripts/statusbar/i3battery10
3 files changed, 15 insertions, 19 deletions
diff --git a/.config/dunst/dunstrc b/.config/dunst/dunstrc
index cc8588d..81d4721 100644
--- a/.config/dunst/dunstrc
+++ b/.config/dunst/dunstrc
@@ -10,7 +10,7 @@
padding = 0
horizontal_padding = 8
frame_width = 3
- frame_color = "#333300"
+ frame_color = "#282828"
# Define a color for the separator.
# possible values are:
@@ -50,7 +50,7 @@
show_indicators = yes
icon_position = left
max_icon_size = 40
- icon_path = /usr/share/icons/gnome/16x16/status/:/usr/share/icons/gnome/16x16/devices/:/usr/share/icons/Adwaita/256x256/status/
+ #icon_path = /usr/share/icons/gnome/16x16/status/:/usr/share/icons/gnome/16x16/devices/:/usr/share/icons/Adwaita/256x256/status/
sticky_history = yes
history_length = 20
dmenu = /usr/bin/dmenu -p dunst:
@@ -75,26 +75,22 @@
[urgency_low]
# IMPORTANT: colors have to be defined in quotation marks.
# Otherwise the "#" and following would be interpreted as a comment.
- background = "#222222"
- foreground = "#888888"
+ background = "#282828"
+ foreground = "#928374"
timeout = 5
# Icon for notifications with low urgency, uncomment to enable
#icon = /path/to/icon
[urgency_normal]
- background = "#285577"
- foreground = "#ffffff"
+ background = "#458588"
+ foreground = "#ebdbb2"
timeout = 5
- # Icon for notifications with normal urgency, uncomment to enable
- #icon = /path/to/icon
[urgency_critical]
- background = "#900000"
- foreground = "#ffffff"
- frame_color = "#ff0000"
+ background = "#cc2421"
+ foreground = "#ebdbb2"
+ frame_color = "#fabd2f"
timeout = 0
- # Icon for notifications with critical urgency, uncomment to enable
- #icon = /path/to/icon
# Every section that isn't one of the above is interpreted as a rules to
# override settings for certain messages.
diff --git a/.gtkrc-2.0 b/.gtkrc-2.0
index 17865d0..9aa6a6e 100644
--- a/.gtkrc-2.0
+++ b/.gtkrc-2.0
@@ -2,7 +2,7 @@
# Any customization should be done in ~/.gtkrc-2.0.mine instead.
include "/home/luke/.gtkrc-2.0.mine"
-gtk-theme-name="Adwaita-dark"
+gtk-theme-name="Arc-Gruvbox"
gtk-icon-theme-name="Adwaita"
gtk-font-name="Sans 10"
gtk-cursor-theme-name="Adwaita"
diff --git a/.scripts/statusbar/i3battery b/.scripts/statusbar/i3battery
index ba73baa..b485d9a 100755
--- a/.scripts/statusbar/i3battery
+++ b/.scripts/statusbar/i3battery
@@ -15,15 +15,15 @@ capacity=$(cat /sys/class/power_supply/"$1"/capacity) || exit
status=$(cat /sys/class/power_supply/"$1"/status)
if [ "$capacity" -ge 80 ]; then
- color="#00FF00"
+ color="#b8bb26"
elif [ "$capacity" -ge 60 ]; then
- color="#FFFFFF"
+ color="#ebdbb2"
elif [ "$capacity" -ge 40 ]; then
- color="#FFF600"
+ color="#fabd2f"
elif [ "$capacity" -ge 20 ]; then
- color="#FFAE00"
+ color="#fe8019"
else
- color="#FF0000"
+ color="#fb4934"
warn="❗"
fi