Update i3 config

Change floating windows to have titlebars
Remove focused window title from status bar (too much CPU usage)
This commit is contained in:
Ian Adam Naval 2015-04-21 09:37:11 -04:00
parent dfc2572783
commit 68c5567d56
2 changed files with 3 additions and 7 deletions

View File

@ -199,7 +199,7 @@ bindsym $mod+Shift+e mode "$quit_msg"
bindsym $mod+r mode "resize"
new_window pixel 2
new_float pixel 2
new_float normal 2
smart_borders on
# border background text indicator

View File

@ -53,7 +53,7 @@ if os.path.exists("/sys/class/power_supply/BAT0"):
status.register("battery",
battery_ident="BAT0",
format="{consumption:.1f}W {percentage_design:.1f}%{status} {remaining:%E%h:%M}",
alert=True,
alert=False,
alert_percentage=20,
charging_color=COLORS['Yellow'],
full_color=COLORS['Green'],
@ -68,7 +68,7 @@ if os.path.exists("/sys/class/power_supply/BAT1"):
status.register("battery",
battery_ident="BAT1",
format="{consumption:.1f}W {percentage_design:.1f}%{status} {remaining:%E%h:%M}",
alert=True,
alert=False,
alert_percentage=20,
charging_color=COLORS['Yellow'],
full_color=COLORS['Green'],
@ -103,9 +103,5 @@ status.register("keyboard_locks",
caps_on="[CapsLock]",
caps_off="")
status.register("shell",
command="~/.i3/window.sh",
interval=0.1)
status.run()