aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Tom van der Lee <t0m.vd.l33@gmail.com>2015-09-14 21:42:11 +0200
committerGravatar Tom van der Lee <t0m.vd.l33@gmail.com>2015-09-14 21:42:11 +0200
commitf6d9ec62a1e4c7123e129ddf9de4e78cf8b73ca3 (patch)
tree3667c0256a9c84ee83008ed466a898c4dccd2ce0
parent63f480ddd1ea8496c272b505d721fe9a54b782eb (diff)
downloaddotfiles-f6d9ec62a1e4c7123e129ddf9de4e78cf8b73ca3.tar.gz
dotfiles-f6d9ec62a1e4c7123e129ddf9de4e78cf8b73ca3.tar.bz2
dotfiles-f6d9ec62a1e4c7123e129ddf9de4e78cf8b73ca3.zip
Fixed battery bug when charge < 10%
Also fixed colors of pluto theme
-rwxr-xr-xherbstluftwm/.config/herbstluftwm/panel_indicators.sh2
-rw-r--r--herbstluftwm/.config/herbstluftwm/themes/.gitignore1
-rw-r--r--herbstluftwm/.config/herbstluftwm/themes/pluto4
3 files changed, 4 insertions, 3 deletions
diff --git a/herbstluftwm/.config/herbstluftwm/panel_indicators.sh b/herbstluftwm/.config/herbstluftwm/panel_indicators.sh
index 8388c83..6686d14 100755
--- a/herbstluftwm/.config/herbstluftwm/panel_indicators.sh
+++ b/herbstluftwm/.config/herbstluftwm/panel_indicators.sh
@@ -128,7 +128,7 @@ battery()
128 if [ $bat_state == "Charging" ] ; then 128 if [ $bat_state == "Charging" ] ; then
129 bat_status="${battery_icon[5]}" 129 bat_status="${battery_icon[5]}"
130 elif [ $bat_lvl -lt 10 ] ; then 130 elif [ $bat_lvl -lt 10 ] ; then
131 bat_status="${F$HLWM_ACCENT_ACOLOR}${battery_icon[0]}${F-}" 131 bat_status="%{F$HLWM_ACCENT_ACOLOR}${battery_icon[0]}%{F-}"
132 elif [ $bat_lvl -lt 25 ] ; then 132 elif [ $bat_lvl -lt 25 ] ; then
133 bat_status="${battery_icon[1]}" 133 bat_status="${battery_icon[1]}"
134 elif [ $bat_lvl -lt 50 ] ; then 134 elif [ $bat_lvl -lt 50 ] ; then
diff --git a/herbstluftwm/.config/herbstluftwm/themes/.gitignore b/herbstluftwm/.config/herbstluftwm/themes/.gitignore
new file mode 100644
index 0000000..1728046
--- /dev/null
+++ b/herbstluftwm/.config/herbstluftwm/themes/.gitignore
@@ -0,0 +1 @@
./current
diff --git a/herbstluftwm/.config/herbstluftwm/themes/pluto b/herbstluftwm/.config/herbstluftwm/themes/pluto
index aa6fa6a..c58c9c2 100644
--- a/herbstluftwm/.config/herbstluftwm/themes/pluto
+++ b/herbstluftwm/.config/herbstluftwm/themes/pluto
@@ -2,8 +2,8 @@
2 2
3declare -A colors 3declare -A colors
4colors=(["background"]="#030303" ["foreground"]="#DADADA" # Fore- and Background 4colors=(["background"]="#030303" ["foreground"]="#DADADA" # Fore- and Background
5 ["color0"]="#030303" ["color8"]= "#181818" # Blacks 5 ["color0"]="#030303" ["color8"]="#181818" # Blacks
6 ["color1"]="#202020" ["color9"]= "#353535" # Reds 6 ["color1"]="#202020" ["color9"]="#353535" # Reds
7 ["color2"]="#424242" ["color10"]="#575757" # Greens 7 ["color2"]="#424242" ["color10"]="#575757" # Greens
8 ["color3"]="#616161" ["color11"]="#767676" # Yellows 8 ["color3"]="#616161" ["color11"]="#767676" # Yellows
9 ["color4"]="#808080" ["color12"]="#959595" # Blues 9 ["color4"]="#808080" ["color12"]="#959595" # Blues