1
0
mirror of https://github.com/balkian/dotfiles.git synced 2025-08-23 16:02:19 +00:00

Several changes

* Added ranger
* Update vim airline
* Added udiskie and
* Updated i3 status
* Updated zsh paths to load even when not in a login session
This commit is contained in:
J. Fernando Sánchez
2017-12-07 17:11:32 +01:00
parent 0cd98dd54b
commit 6f07d96ea0
18 changed files with 2783 additions and 62 deletions

62
i3/.config/i3status/conf Normal file
View File

@@ -0,0 +1,62 @@
general {
colors = true
interval = 5
}
order += "disk /"
order += "disk /home"
order += "path_exists VPN"
order += "wireless wlp2s0"
order += "ethernet eth0"
order += "battery 0"
order += "cpu_temperature 0"
order += "load"
order += "tztime local"
wireless wlp2s0 {
format_up = "%essid %ip %quality %bitrate"
format_down = "Wireless down"
}
ethernet eth0 {
# if you use %speed, i3status requires the cap_net_admin capability
format_up = "E: %ip (%speed) "
format_down = "E: down"
}
battery 0 {
format = "%status %percentage %remaining %emptytime"
format_down = "No battery"
status_chr = "⚡ CHR"
status_bat = "🔋 BAT"
status_unk = "? UNK"
status_chr = "⚡ FULL"
path = "/sys/class/power_supply/BAT%d/uevent"
low_threshold = 10
}
path_exists VPN {
# path exists when a VPN tunnel launched by nmcli/nm-applet is active
path = "/proc/sys/net/ipv4/conf/ppp0"
}
tztime local {
format = "%H:%M %d/%m/%Y"
}
load {
format = "%5min"
}
# cpu_temperature 0 {
# format = "T: %degrees °C"
# path = "/sys/devices/platform/coretemp.0/temp1_input"
# }
disk "/" {
format = "%free / "
}
disk "/home" {
format = "%free /home "
}