bugs on groupbox
This commit is contained in:
parent
7833ed0f0c
commit
89eb0892f0
6
REDME.md
Normal file
6
REDME.md
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
# TODO
|
||||||
|
- [ ] more widgets
|
||||||
|
- [ ] popup
|
||||||
|
- [ ] notifications
|
||||||
|
|
||||||
|
# Bugs
|
||||||
7
bar.py
7
bar.py
@ -27,6 +27,7 @@ colors = [["#293136", "#293136"], #bg_dim [0]
|
|||||||
["#DBBC7F", "#DBBC7F"], #yellow [8]
|
["#DBBC7F", "#DBBC7F"], #yellow [8]
|
||||||
["#E69875", "#E69875"], #orange [9]
|
["#E69875", "#E69875"], #orange [9]
|
||||||
['#ED8082', '#ED8080'], #red [10]
|
['#ED8082', '#ED8080'], #red [10]
|
||||||
|
['#00000000', '#00000000'], #transparent [11]
|
||||||
]
|
]
|
||||||
|
|
||||||
# Eye candy widgets
|
# Eye candy widgets
|
||||||
@ -67,14 +68,16 @@ icon = widget.TextBox(
|
|||||||
group_box = widget.GroupBox(
|
group_box = widget.GroupBox(
|
||||||
font="JetBrainsMono Nerd Font Mono",
|
font="JetBrainsMono Nerd Font Mono",
|
||||||
highlight_method='line',
|
highlight_method='line',
|
||||||
highlight_color=colors[2],
|
highlight_color= colors[11],
|
||||||
background = colors[4],
|
background = colors[4],
|
||||||
|
other_current_screen_border = colors[6],
|
||||||
|
other_screen_border = colors[6],
|
||||||
**rounded_left,
|
**rounded_left,
|
||||||
)
|
)
|
||||||
|
|
||||||
spacer = widget.Spacer(
|
spacer = widget.Spacer(
|
||||||
**rounded_right,
|
**rounded_right,
|
||||||
background = "#00000000", #transparent
|
background = colors[11], #transparent
|
||||||
)
|
)
|
||||||
|
|
||||||
kb_layout = widget.KeyboardLayout(
|
kb_layout = widget.KeyboardLayout(
|
||||||
|
|||||||
2
dependencies.txt
Normal file
2
dependencies.txt
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
python-psutil for qtile-extras
|
||||||
|
|
||||||
4
keys.py
4
keys.py
@ -53,9 +53,9 @@ keys = [
|
|||||||
Key([mod], "r", lazy.spawn("rofi -show drun -show-icons"), desc="Spawn rofi drun"),
|
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"], "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"], "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
|
# Change keyboard leyout
|
||||||
Key([mod], "z", lazy.widget["keyboardlayout"].next_keyboard(), desc="Next keyboard layout"),
|
Key([mod], "z", lazy.widget["keyboardlayout"].next_keyboard(), desc="Next keyboard layout"),
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user