This commit is contained in:
Franzi 2020-06-21 13:20:58 +02:00
parent c97e7a53df
commit 1dbc95269b
Signed by untrusted user: kunsi
GPG key ID: 12E3D2136B818350
3 changed files with 27 additions and 9 deletions

View file

@ -29,7 +29,7 @@ status.register("shell",
on_rightclick="xset s off")
status.register("clock",
format="%a, %Y-%m-%d %H:%M:%S UTC",)
format="%a, %Y-%m-%d %H:%M:%S",)
status.register("battery",
battery_ident="BAT0",
@ -71,6 +71,11 @@ status.register("shell",
hints = {"markup": "pango"},
command="/home/kunsi/.config/i3pystatus/rfkill-bt.py",
interval=1)
status.register("shell",
format="{output}",
hints = {"markup": "pango"},
command="/home/kunsi/.config/i3pystatus/redshift.py",
interval=1)
status.register("shell",
format="{output}",
hints = {"markup": "pango"},
@ -88,6 +93,21 @@ status.register("network",
divisor=1024,
hints={"markup":"pango"})
#status.register("mpd",
# format="{status} [{pos}/{len}: ][{artist} - ]{title}{filename}[ ({song_elapsed}/{song_length})]",
# status={
# "pause": "▷",
# "play": "▶",
# "stop": "◾",
# },
# host="172.19.138.20",
# color="#666666",
# on_rightclick="stop",
# on_upscroll="previous_song",
# on_downscroll="next_song",
# hide_inactive=True,
# max_field_len=200)
status.register("disk",
path="/home",
format="{used}/{total}G",)