Hi guys,
Now that I finished uni I fully moved to Linux and qtile and therefore I am trying to make it the way I want it. However, I am having a couple of issues:
- My battery widget is set this way:
widget.Battery(
background=myColor[14],
battery=0,
format="{char}",
charge_char=" ",
discharge_char=" ",
empty_char=" ",
padding=5,
foreground=myColor[2],
mouse_callbacks={
"Button1": lambda: qtile.cmd_spawn(
terminal
+ " --hold upower -i /org/freedesktop/UPower/devices/battery_BAT0") },
),
widget.Battery(
foreground=myColor[1],
background=myColor[14],
format="{percent:2.0%}",
mouse_callbacks={
"Button1": lambda: qtile.cmd_spawn(
terminal
+ " --hold upower -i /org/freedesktop/UPower/devices/battery_BAT0") },
),
The problem is this case is that most of the time instead of the characters set in "charge_char", "discharge_char" and "empty_char" a question mark is shown.
Also is it possible to add something like "full_char", "half_char" and "quarter_char"?
For the volume I would like to ask the same thing as a suggested to the battery, so
"full_vol_char" and so on?
Last, I have a two monitor setup and the systray widget always crash on my second screen. Is there anything to make it work?
Thanks for everything,
Eddie