Moving to py3status
This commit is contained in:
parent
b0288b2a31
commit
e968f322d6
|
@ -12,7 +12,7 @@ exec chromium
|
||||||
|
|
||||||
# Start i3bar to display a workspace bar
|
# Start i3bar to display a workspace bar
|
||||||
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
|
||||||
output $maindisp
|
output $maindisp
|
||||||
# $i3-theme-bar
|
# $i3-theme-bar
|
||||||
|
|
|
@ -1,30 +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 += "run_watch DHCP"
|
#order += "run_watch DHCP"
|
||||||
order += "run_watch SPVPN"
|
order += "run_watch SPVPN"
|
||||||
order += "wireless _first_"
|
order += "wifi"
|
||||||
order += "ethernet _first_"
|
order += "ethernet _first_"
|
||||||
#order += "battery 0"
|
#order += "battery 0"
|
||||||
|
order += "keyboard_locks"
|
||||||
order += "load"
|
order += "load"
|
||||||
order += "tztime local"
|
order += "tztime local"
|
||||||
|
|
||||||
wireless _first_ {
|
wifi {
|
||||||
format_up = "W: (%quality at %essid) %ip"
|
format = "W: {icon} {signal_dbm} {ssid} {ip}|W: down"
|
||||||
format_down = "W: down"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
ethernet _first_ {
|
ethernet _first_ {
|
||||||
|
@ -57,8 +57,37 @@ disk "/" {
|
||||||
format = "%avail"
|
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}/{aur}'
|
||||||
|
hide_if_zero = True
|
||||||
|
include_aur = True
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue