diff options
Diffstat (limited to '.config')
-rw-r--r-- | .config/lxpanel/default/panels/panel | 4 | ||||
-rw-r--r-- | .config/wmii-hg/config.sh | 2 | ||||
-rw-r--r-- | .config/wmii-hg/theme-tango | 10 | ||||
-rw-r--r-- | .config/wmii-hg/theme-tango-dark | 11 |
4 files changed, 24 insertions, 3 deletions
diff --git a/.config/lxpanel/default/panels/panel b/.config/lxpanel/default/panels/panel index e89a833..2418027 100644 --- a/.config/lxpanel/default/panels/panel +++ b/.config/lxpanel/default/panels/panel @@ -9,7 +9,7 @@ Global { width=100 height=16 transparent=1 - tintcolor=#002b36 + tintcolor=#555753 alpha=255 autohide=0 heightwhenhidden=2 @@ -17,7 +17,7 @@ Global { setpartialstrut=1 usefontcolor=1 fontsize=10 - fontcolor=#839496 + fontcolor=#eeeeec usefontsize=0 background=0 backgroundfile=/usr/share/lxpanel/images/background.png diff --git a/.config/wmii-hg/config.sh b/.config/wmii-hg/config.sh index 8f6df2d..99f084c 100644 --- a/.config/wmii-hg/config.sh +++ b/.config/wmii-hg/config.sh @@ -10,7 +10,7 @@ HIST="$XDG_CACHE_HOME/wmii/history" mkdir -p "${HIST%/*}" # Colors tuples: "<text> <background> <border>" -. `conffile theme-solarized-dark` +. theme-tango-dark Event() { event=$1; shift; diff --git a/.config/wmii-hg/theme-tango b/.config/wmii-hg/theme-tango new file mode 100644 index 0000000..e0e35d4 --- /dev/null +++ b/.config/wmii-hg/theme-tango @@ -0,0 +1,10 @@ +TANGO_butter=("#fce94f" "#edd400" "#c4a000") +TANGO_orange=("#fcaf3e" "#f57900" "#ce5c00") +TANGO_choc=( "#e9b96e" "#c17d11" "#8f5902") +TANGO_cham=( "#8ae234" "#73d216" "#4e9a06") +TANGO_blue=( "#729fcf" "#3465a4" "#204a87") +TANGO_plum=( "#ad7fa8" "#75507b" "#5c3566") +TANGO_red=( "#ef2929" "#cc0000" "#a40000") +TANGO_alum=( "#eeeeec" "#d3d7cf" "#babdb6" + "#888a85" "#555753" "#2e3436") + diff --git a/.config/wmii-hg/theme-tango-dark b/.config/wmii-hg/theme-tango-dark new file mode 100644 index 0000000..04a9fa6 --- /dev/null +++ b/.config/wmii-hg/theme-tango-dark @@ -0,0 +1,11 @@ +#!/bin/bash +# Tango-tark + +. theme-tango + +WMII_BACKGROUND="${TANGO_alum[5]}" + +# ="<text> <background> <border>" +WMII_NORMCOLORS="${TANGO_alum[0]} ${TANGO_alum[4]} ${TANGO_alum[3]}" +WMII_FOCUSCOLORS="${TANGO_alum[5]} ${TANGO_alum[1]} ${TANGO_alum[0]}" +WMII_URGENTCOLORS="${TANGO_orange[0]} ${TANGO_alum[4]} ${TANGO_orange[4]}" |