Moved thurstybook to py3status

This commit is contained in:
David Thurstenson 2017-06-09 10:41:13 -05:00
parent f110035123
commit a1efaaf31c
2 changed files with 65 additions and 50 deletions

View File

@ -1,32 +1,30 @@
# i3status configuration file. # py3status configuration file.
# see "man i3status" for documentation. # see "https://py3status.readthedocs.io/en/latest/modules.html" for documentation.
# It is important that this file is edited as UTF-8.
# The following line should contain a sharp s:
# ß
# If the above line is not correctly displayed, fix your editor first!
general { general {
colors = true colors = true
interval = 5 interval = 5
color = '#FFFFFF'
color_good = '#0088CC'
color_bad = '#DD0000'
} }
order += "arch_updates"
order += "spotify"
order += "ipv6" order += "ipv6"
order += "volume master" order += "volume_status"
order += "disk /" order += "disk /"
order += "disk /home" #order += "run_watch DHCP"
order += "run_watch VPN" order += "run_watch SPVPN"
order += "wireless _first_" order += "wifi"
order += "ethernet _first_" order += "ethernet _first_"
order += "run_watch DHCP" order += "battery_level"
order += "battery 1" order += "keyboard_locks"
order += "load" order += "sysdata"
order += "cpu_temperature 0"
order += "tztime local" order += "tztime local"
wireless _first_ { wifi {
format_up = "W: (%essid: %quality) %ip" format = "W: {icon} {signal_dbm} {ssid} {ip}|W: down"
format_down = "W: down"
} }
ethernet _first_ { ethernet _first_ {
@ -35,48 +33,65 @@ ethernet _first_ {
format_down = "E: down" format_down = "E: down"
} }
battery 1 { battery_level {
format = "%status %percentage %remaining %consumption" format = "{icon} {percent}% {time_remaining}"
status_chr = "⚇" blocks = '🔋'
status_bat = "⚡" hide_seconds = True
status_full = "☻" notify_low_level = True
last_full_capacity = true
low_threshold = "20"
threshold_type = "percentage"
hide_seconds = true
integer_battery_capacity = true
} }
cpu_temperature 0 { #run_watch DHCP {
format = "%degreesC" # pidfile = "/var/run/dhclient*.pid"
} #}
run_watch DHCP { run_watch SPVPN {
pidfile = "/var/run/dhclient*.pid" pidfile = "/var/run/spvpn@*.pid"
}
run_watch VPN {
pidfile = "/var/run/vpnc/pid"
} }
tztime local { tztime local {
format = "%Y-%m-%d %H:%M" format = "%Y-%m-%d %H:%M"
} }
load {
format = "%1min"
}
disk "/home" {
format = "/home: %percentage_used"
}
disk "/" { disk "/" {
format = "/: %percentage_used" format = "%avail"
} }
volume master { volume_status {
format = "🔈%volume" format = '🔈{percentage}%'
format_muted = "🔇" format_muted = '🔇'
device = "pulse" device = "pulse"
button_mute = 1
# Scroll wheel
button_up = 4
button_down = 5
thresholds = [
(1, '#FFFFFF')
]
}
spotify {
format_down = ''
format_stopped = ''
}
keyboard_locks {
format = '{num} {caps} {scr}'
icon_caps_on = 'C'
icon_caps_off = 'C'
icon_num_on = 'N'
icon_num_off = 'N'
icon_scr_on = 'S'
icon_scr_off = 'S'
color_bad = '#DDDDDD'
}
arch_updates {
format = 'Updates: {pacman}'
hide_if_zero = True
}
sysdata {
cache_timeout = 5
format = "[\?color=cpu CPU: {cpu_usage}%], [\?color=mem Mem: {mem_used_percent}%], [\?color=load L1: {load1}]"
#format = '[\?color=cpu CPU: {cpu_usage}%], '
} }

View File

@ -1,5 +1,5 @@
bar { bar {
status_command i3status -c ~/.config/i3/status/$HOSTNAME.config status_command py3status -c ~/.config/i3/status/$HOSTNAME.config
tray_output primary tray_output primary
# $i3-theme-bar # $i3-theme-bar
} }