diff --git a/qtile/.config/qtile/Groups.py b/qtile/.config/qtile/Groups.py index e415a92..5792536 100644 --- a/qtile/.config/qtile/Groups.py +++ b/qtile/.config/qtile/Groups.py @@ -44,6 +44,7 @@ groups.append( 'bitwarden', 'bitwarden-desktop', on_focus_lost_hide=False, + match = Match(wm_class='bitwarden') ), DropDown( 'WhatsApp', @@ -61,7 +62,8 @@ groups.append( width = 0.8, x = .1, on_focus_lost_hide=False, - opacity = 1 + opacity = 1, + match = Match(wm_class='signal') ), DropDown( 'Qalculate!', @@ -88,7 +90,8 @@ groups.append( width = 0.8, x = 0.1, on_focus_lost_hide=False, - opacity=1 + opacity=1, + match = Match(wm_class='telegram-desktop') ) ]) ) diff --git a/qtile/.config/qtile/Keys.py b/qtile/.config/qtile/Keys.py index e7d1413..f83dcea 100644 --- a/qtile/.config/qtile/Keys.py +++ b/qtile/.config/qtile/Keys.py @@ -54,11 +54,11 @@ keys = [ Key([mod],'p',lazy.spawn("bwmenu --auto-lock -1"),desc="launch bwmenu"), # audio hotkeys - Key([], 'XF86AudioRaiseVolume', lazy.spawn('pulseaudio-ctl up 1'), desc="increase speaker volume"), - Key([], 'XF86AudioLowerVolume', lazy.spawn('pulseaudio-ctl down 1'), desc="decrease speaker volume"), + Key([], 'XF86AudioRaiseVolume', lazy.spawn('pulseaudio-ctl up 5'), desc="increase speaker volume"), + Key([], 'XF86AudioLowerVolume', lazy.spawn('pulseaudio-ctl down 5'), desc="decrease speaker volume"), Key([], 'XF86AudioMute', lazy.spawn('pulseaudio-ctl mute'), desc="toggle speaker mute"), - Key(['control'], 'XF86AudioRaiseVolume', lazy.spawn('amixer set Capture 1%+'), desc="increase mic volume"), - Key(['control'], 'XF86AudioLowerVolume', lazy.spawn('amixer set Capture 1%-'), desc="decrease mic volume"), + Key(['control'], 'XF86AudioRaiseVolume', lazy.spawn('amixer set Capture 5%+'), desc="increase mic volume"), + Key(['control'], 'XF86AudioLowerVolume', lazy.spawn('amixer set Capture 5%-'), desc="decrease mic volume"), Key(['control'], 'XF86AudioMute', lazy.spawn('amixer set Capture toggle'), desc="toggle mic mute"), Key([], 'XF86AudioMicMute', lazy.spawn('amixer set Capture toggle'), desc="toggle mic mute"), diff --git a/qtile/.config/qtile/autostart.sh b/qtile/.config/qtile/autostart.sh index abe29b5..7957b9e 100755 --- a/qtile/.config/qtile/autostart.sh +++ b/qtile/.config/qtile/autostart.sh @@ -13,4 +13,6 @@ udiskie -t & picom -b --experimental-backend & cbatticon & nm-applet & -blueman-applet & \ No newline at end of file +blueman-applet & +thunderbird & +clickup & \ No newline at end of file