diff options
author | Sébastien Dailly <sebastien@chimrod.com> | 2017-03-03 21:31:42 +0100 |
---|---|---|
committer | Sébastien Dailly <sebastien@chimrod.com> | 2017-03-03 21:31:42 +0100 |
commit | c0044eba31cdf3d575cdf8ae43aff1e7dc7a6529 (patch) | |
tree | 20aa47d4c1535f2fc89ea018f007069723c7ebd4 | |
parent | 0c371663f5bb5ea6f3e12318e9321bb0815e24a5 (diff) |
Update the configuration
-rw-r--r-- | i3/.config/i3/config | 4 | ||||
-rw-r--r-- | polybar/.config/polybar/config | 2 | ||||
-rwxr-xr-x | rofi/rofi_locate.sh | 4 | ||||
-rw-r--r-- | st/config.h | 10 | ||||
-rw-r--r-- | tabbed/config.h | 2 |
5 files changed, 11 insertions, 11 deletions
diff --git a/i3/.config/i3/config b/i3/.config/i3/config index 114b9da..87f40d8 100644 --- a/i3/.config/i3/config +++ b/i3/.config/i3/config @@ -46,7 +46,7 @@ client.urgent #2f343a #900000 #ffffff #900000 $color1 client.placeholder #000000 #0c0c0c #ffffff #000000 $color2 # Remove title bar -for_window [class="^.*"] border pixel 1 +for_window [class="^.*"] border pixel 0 # i3 gaps #smart_gaps on @@ -237,7 +237,7 @@ for_window [class="crimson"] floating enable #exec_always --no-startup-id find ~/wallpaper/wallpaper/wallpapers -type f \( -name '*.jpg' -o -name '*.png' \) -print0 | shuf -n1 -z | xargs -0 feh --bg-scale exec_always --no-startup-id feh --bg-scale ~/wallpaper/current.jpg -exec_always compton -cCz --inactive-dim 0.5 --mark-ovredir-focused +exec_always compton -cCz --inactive-dim 0.4 --mark-ovredir-focused exec_always polybar i3 # for_window [class="URxvt"] layout tabbed diff --git a/polybar/.config/polybar/config b/polybar/.config/polybar/config index 1b26157..96a7226 100644 --- a/polybar/.config/polybar/config +++ b/polybar/.config/polybar/config @@ -80,7 +80,7 @@ scroll-down = i3wm-wsprev [module/xwindow] type = internal/xwindow -label = %title:0:100:...% +label = %title:0:60:...% [module/bspwm] type = internal/bspwm diff --git a/rofi/rofi_locate.sh b/rofi/rofi_locate.sh index 1dc4bb9..e00e499 100755 --- a/rofi/rofi_locate.sh +++ b/rofi/rofi_locate.sh @@ -1,10 +1,10 @@ #!/bin/sh -if [ -z $1 ]; then +if [ -z "$1" ]; then echo "" else if [ -e "$1" ]; then - xdg-open "$1" + xdg-open "$1" > /dev/null else echo "" locate --ignore-case -A ~ $* | grep -v "/\." diff --git a/st/config.h b/st/config.h index a88fdd1..7a1b84c 100644 --- a/st/config.h +++ b/st/config.h @@ -5,7 +5,7 @@ * * font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html */ -static char font[] = "DejaVu Sans Mono:pixelsize=15:antialias=true:autohint=true"; +static char font[] = "Inconsolata:size=13:antialias=true:autohint=true"; static int borderpx = 0; /* @@ -103,7 +103,7 @@ static const char *colorname[] = { "#5986b3", "#8659b3", "#59b386", - "#e6e6e6", + "#dddddd", /* 8 bright colors */ // "gray50", @@ -128,7 +128,7 @@ static const char *colorname[] = { /* more colors can be added after 255 to use with DefaultXX */ "#cccccc", "#555555", - "#1c1c1c", + "#070707", }; @@ -176,8 +176,8 @@ static unsigned int defaultattr = 11; */ static MouseShortcut mshortcuts[] = { /* button mask string */ - { Button4, XK_ANY_MOD, "\031" }, - { Button5, XK_ANY_MOD, "\005" }, + { Button4, XK_ANY_MOD, "\031" }, + { Button5, XK_ANY_MOD, "\005" }, }; /* Internal keyboard shortcuts. */ diff --git a/tabbed/config.h b/tabbed/config.h index 1a5e933..f319f97 100644 --- a/tabbed/config.h +++ b/tabbed/config.h @@ -1,7 +1,7 @@ /* See LICENSE file for copyright and license details. */ /* appearance */ -static const char font[] = "monospace:size=9"; +static const char font[] = "monospace:size=8"; static const char* normbgcolor = "#222222"; static const char* normfgcolor = "#cccccc"; static const char* selbgcolor = "#555555"; |