This commit is contained in:
Tobias Schmidl 2014-11-17 12:34:12 +01:00
parent 46beb4ebf6
commit 28d169a222
3 changed files with 9 additions and 8 deletions

View file

@ -5,19 +5,18 @@
wdi = diff --color-words wdi = diff --color-words
co = checkout co = checkout
up = fetch --all up = fetch --all
hg = !git-hg
[color] [color]
ui = auto ui = auto
[diff]
renames = copies
[gui] [gui]
fontdiff = -family \"Source Code Pro\" -size 8 -weight normal -slant roman -underline 0 -overstrike 0 fontdiff = -family \"Source Code Pro\" -size 8 -weight normal -slant roman -underline 0 -overstrike 0
fontui = -family \"DejaVu Sans\" -size 9 -weight normal -slant roman -underline 0 -overstrike 0 fontui = -family \"DejaVu Sans\" -size 9 -weight normal -slant roman -underline 0 -overstrike 0
spellingdictionary = en spellingdictionary = en
# recognize file copies # recognize file copies
[diff] [diff]
renames = copies renames = copies
renameLimit = 65536 renameLimit = 65536
@ -37,5 +36,6 @@
[commit] [commit]
gpgsign = true gpgsign = true
[core] [core]
preloadindex = 1 preloadindex = 1

View file

@ -36,7 +36,6 @@ floating_modifier $mod
# lock screen # lock screen
bindsym $mod+l exec xscreensaver-command -lock bindsym $mod+l exec xscreensaver-command -lock
# start a terminal # start a terminal
bindsym $mod+Return exec i3-sensible-terminal bindsym $mod+Return exec i3-sensible-terminal

View file

@ -28,23 +28,25 @@ order += "time"
wireless wlan0 { wireless wlan0 {
format_up = "W: (%quality at %essid) %ip" format_up = "W: (%quality at %essid) %ip"
format_down = "W: down" format_down = ""
} }
ethernet eth0 { ethernet eth0 {
# if you use %speed, i3status requires root privileges # if you use %speed, i3status requires root privileges
format_up = "E: %ip (%speed)" format_up = "E: %ip (%speed)"
format_down = "E: down" format_down = ""
} }
battery 0 { battery 0 {
format = "%status %percentage %remaining" format = "%status %percentage %remaining"
path = "/sys/class/power_supply/CMB1/uevent" path = "/sys/class/power_supply/CMB1/uevent"
format_down = ""
} }
battery 1 { battery 1 {
format = "%status %percentage %remaining" format = "%status %percentage %remaining"
path = "/sys/class/power_supply/CMB2/uevent" path = "/sys/class/power_supply/CMB2/uevent"
format_down = ""
} }
run_watch DHCP { run_watch DHCP {
@ -64,12 +66,12 @@ load {
} }
cpu_temperature 0 { cpu_temperature 0 {
format = "T: %degrees °C" format = "T1: %degrees °C"
path = "/sys/devices/platform/coretemp.0/temp2_input" path = "/sys/devices/platform/coretemp.0/temp2_input"
} }
cpu_temperature 1 { cpu_temperature 1 {
format = "T: %degrees °C" format = "T2: %degrees °C"
path = "/sys/devices/platform/coretemp.0/temp4_input" path = "/sys/devices/platform/coretemp.0/temp4_input"
} }