From 886fdf1580fb6009132bde0dfc433967cb74b2f3 Mon Sep 17 00:00:00 2001 From: Stephan Raabe Date: Tue, 1 Aug 2023 08:00:25 +0200 Subject: [PATCH] Updates --- polybar/config.ini | 12 +++++++++--- qtile/config.py | 4 ++-- 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/polybar/config.ini b/polybar/config.ini index 355b262..bc7fe86 100644 --- a/polybar/config.ini +++ b/polybar/config.ini @@ -32,7 +32,7 @@ separator = "" separator-foreground = ${colors.disabled} font-0 = "Fira Sans SemiBold:size=11;2" font-1 = "Font Awesome 6 Free Solid:pixelsize=11;2" -modules-left = appmenu xworkspaces outlook teams calculator chatgpt +modules-left = appmenu xworkspaces brave outlook teams calculator chatgpt modules-center = xwindow modules-right = battery xkeyboard mysystem filesystem pulseaudio memory cpu date exit cursor-click = pointer @@ -59,9 +59,15 @@ content-foreground = ${colors.foreground} content = "" click-left = "brave --app=https://teams.microsoft.com/go" -[module/appmenu] +[module/brave] type = custom/text content-foreground = ${colors.foreground} +content = "" +click-left = "brave" + +[module/appmenu] +type = custom/text +content-foreground = ${colors.primary} content = "" click-left = "~/dotfiles/scripts/applauncher.sh" @@ -91,7 +97,7 @@ click-left = "xfreerdp -grab-keyboard /v:192.168.122.42 /size:100% /cert-ignore [module/exit] type = custom/text -content-foreground = ${colors.foreground} +content-foreground = ${colors.primary} content = " " click-left = "~/dotfiles/scripts/powermenu.sh" diff --git a/qtile/config.py b/qtile/config.py index f095de3..8774e4e 100644 --- a/qtile/config.py +++ b/qtile/config.py @@ -86,8 +86,8 @@ keys = [ # Size # Key([mod], "h", lazy.layout.shrink(), lazy.layout.decrease_nmaster(), desc='Shrink window (MonadTall)'), # Key([mod], "l", lazy.layout.grow(), lazy.layout.increase_nmaster(), desc='Expand window (MonadTall)'), - Key([mod, "control"], "Left", lazy.layout.shrink(), desc="Grow window to the left"), - Key([mod, "control"], "Right", lazy.layout.grow(), desc="Grow window to the right"), + Key([mod, "control"], "Down", lazy.layout.shrink(), desc="Grow window to the left"), + Key([mod, "control"], "Up", lazy.layout.grow(), desc="Grow window to the right"), # Key([mod, "control"], "Down", lazy.layout.grow_down(), desc="Grow window down"), # Key([mod, "control"], "Up", lazy.layout.grow_up(), desc="Grow window up"), Key([mod], "n", lazy.layout.normalize(), desc="Reset all window sizes"),