bugs on groupbox

This commit is contained in:
ggodot 2024-12-22 12:12:45 +01:00
parent 7833ed0f0c
commit 89eb0892f0
4 changed files with 15 additions and 4 deletions

6
REDME.md Normal file
View File

@ -0,0 +1,6 @@
# TODO
- [ ] more widgets
- [ ] popup
- [ ] notifications
# Bugs

7
bar.py
View File

@ -27,6 +27,7 @@ colors = [["#293136", "#293136"], #bg_dim [0]
["#DBBC7F", "#DBBC7F"], #yellow [8]
["#E69875", "#E69875"], #orange [9]
['#ED8082', '#ED8080'], #red [10]
['#00000000', '#00000000'], #transparent [11]
]
# Eye candy widgets
@ -67,14 +68,16 @@ icon = widget.TextBox(
group_box = widget.GroupBox(
font="JetBrainsMono Nerd Font Mono",
highlight_method='line',
highlight_color=colors[2],
highlight_color= colors[11],
background = colors[4],
other_current_screen_border = colors[6],
other_screen_border = colors[6],
**rounded_left,
)
spacer = widget.Spacer(
**rounded_right,
background = "#00000000", #transparent
background = colors[11], #transparent
)
kb_layout = widget.KeyboardLayout(

2
dependencies.txt Normal file
View File

@ -0,0 +1,2 @@
python-psutil for qtile-extras

View File

@ -53,9 +53,9 @@ keys = [
Key([mod], "r", lazy.spawn("rofi -show drun -show-icons"), desc="Spawn rofi drun"),
Key([mod, "control"], "Down", lazy.spawn("wlr-randr --output VGA-1 --transform normal"), desc="sets second monitor to normal rotation"),
Key([mod, "control"], "Right", lazy.spawn("wlr-randr --output VGA-1 --transform 90"), desc="sets second monitor to 90 rotation"),
Key([mod, "control"], "Left", lazy.spawn("wlr-randr --output VGA-1 --transform 90"), desc="sets second monitor to 90 rotation"),
Key([mod, "control"], "Up", lazy.spawn("wlr-randr --output VGA-1 --transform 180"), desc="sets second monitor to 180 rotation"),
Key([mod, "control"], "Left", lazy.spawn("wlr-randr --output VGA-1 --transform 270"), desc="sets second monitor to 270 rotation"),
Key([mod, "control"], "Right", lazy.spawn("wlr-randr --output VGA-1 --transform 270"), desc="sets second monitor to 270 rotation"),
# Change keyboard leyout
Key([mod], "z", lazy.widget["keyboardlayout"].next_keyboard(), desc="Next keyboard layout"),