update polybar colors

This commit is contained in:
ksyasuda
2021-11-09 00:59:34 -08:00
parent 2cbb08284e
commit 19126b976d
13 changed files with 32 additions and 20 deletions

View File

@@ -26,7 +26,7 @@ def get_volume() -> int:
args = ['pulsemixer --get-volume']
proc = execute_with_capture(args)
output = proc.stdout
volume = output.split(' ')[0]
volume = int(output.split(' ')[0])
return volume