aboutsummaryrefslogtreecommitdiff
path: root/i3pystatus/conf.py
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--i3pystatus/.config/i3pystatus/conf.py (renamed from i3pystatus/conf.py)46
1 files changed, 33 insertions, 13 deletions
diff --git a/i3pystatus/conf.py b/i3pystatus/.config/i3pystatus/conf.py
index 6f29414..9202272 100644
--- a/i3pystatus/conf.py
+++ b/i3pystatus/.config/i3pystatus/conf.py
@@ -4,7 +4,7 @@ from i3pystatus import Status
status = Status(logfile='/home/neodarz/i3pystatus.log')
status.register("text",
- text=" ░▒▓█",)
+ text=" :: ",)
status.register("keyboard_locks",
format="{caps} {num}",
@@ -13,18 +13,18 @@ status.register("keyboard_locks",
num_off="",)
status.register("text",
- text=" ░▒▓█▓▒░ ",
+ text=" :: ",
hints = {"separator": False, "separator_block_width": 0},)
# Displays clock like this:
# Tue 30 Jul 11:59:46 PM KW31
# ^-- calendar week
status.register("clock",
- format=" %a %-d %b  %X",
+ format="%a %-d %b :: %X",
hints = {"separator": False, "separator_block_width": 0},)
status.register("text",
- text=" ░▒▓█▓▒░ ",
+ text=" :: ",
hints = {"separator": False, "separator_block_width": 0},)
@@ -74,16 +74,16 @@ status.register("text",
# Note: the network module requires PyPI package netifaces
status.register("network",
dynamic_color=True,
- start_color="#138491",
- color_down="#138491",
- end_color="#138491",
+ start_color="#420034",
+ color_down="#420034",
+ end_color="#420034",
interface="enp3s0",
- format_up="<span color=\"#138491\"> {v4cidr}</span>",
- format_down="<span color=\"#138491\"></span>",
+ format_up="<span color=\"#420034\"> {v4cidr}</span>",
+ format_down="<span color=\"#420034\"></span>",
hints = {"markup": "pango", "separator": False, "separator_block_width": 0},)
status.register("text",
- text=" ░▒▓█▓▒░ ",
+ text=" :: ",
hints = {"separator": False, "separator_block_width": 0},)
# Note: requires both netifaces and basiciw (for essid and quality)
@@ -97,13 +97,23 @@ status.register("text",
# 42/128G [86G]
status.register("disk",
path="/",
- format=" {avail}G",
+ format="[ / ] {avail}G",
hints = {"separator": False, "separator_block_width": 0},)
status.register("text",
- text=" ░▒▓█▓▒░ ",
+ text=" :: ",
hints = {"separator": False, "separator_block_width": 0},)
+status.register("disk",
+ path="/home",
+ format="[ /home ] {avail}G",
+ hints = {"separator": False, "separator_block_width": 0},)
+
+status.register("text",
+ text=" :: ",
+ hints = {"separator": False, "separator_block_width": 0},)
+
+
# Shows pulseaudio default sink volume
#
# Note: requires libpulseaudio from PyPI
@@ -112,7 +122,17 @@ status.register("pulseaudio",
hints = {"separator": False, "separator_block_width": 0},)
status.register("text",
- text=" █▓▒░ ",
+ text=" :: ",
+ hints = {"separator": False, "separator_block_width": 0},)
+
+
+status.register("shell",
+ command="sh ~/.config/i3pystatus/get_volume.sh",
+ interval=1,
+ hints = {"separator": False, "separator_block_width": 0},)
+
+status.register("text",
+ text=" :: ",
hints = {"separator": False, "separator_block_width": 0},)
#status.register("backlight",