diff --git a/REDME.md b/REDME.md new file mode 100644 index 0000000..765cdac --- /dev/null +++ b/REDME.md @@ -0,0 +1,6 @@ +# TODO +- [ ] more widgets +- [ ] popup +- [ ] notifications + +# Bugs diff --git a/bar.py b/bar.py index 52af0a1..f5f766a 100644 --- a/bar.py +++ b/bar.py @@ -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( diff --git a/dependencies.txt b/dependencies.txt new file mode 100644 index 0000000..fcdae44 --- /dev/null +++ b/dependencies.txt @@ -0,0 +1,2 @@ +python-psutil for qtile-extras + diff --git a/keys.py b/keys.py index aab5b9a..7824356 100644 --- a/keys.py +++ b/keys.py @@ -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"),