diff options
Diffstat (limited to '.config/qtile')
-rw-r--r-- | .config/qtile/groups.py | 3 | ||||
-rwxr-xr-x | .config/qtile/statusbar/void-updates.sh | 2 | ||||
-rw-r--r-- | .config/qtile/workspaces.py | 1 |
3 files changed, 4 insertions, 2 deletions
diff --git a/.config/qtile/groups.py b/.config/qtile/groups.py index 3f13d52..1d5c273 100644 --- a/.config/qtile/groups.py +++ b/.config/qtile/groups.py @@ -40,7 +40,8 @@ groups.append( # it is placed in the upper third of the screen by default DropDown( "term", - terminal + " -a 'Terminal'", + # terminal + " -e 'Terminal'", + terminal + " --class scratchpad", height=0.50, width=0.50, x=0.25, diff --git a/.config/qtile/statusbar/void-updates.sh b/.config/qtile/statusbar/void-updates.sh index 94298ae..2f102ed 100755 --- a/.config/qtile/statusbar/void-updates.sh +++ b/.config/qtile/statusbar/void-updates.sh @@ -2,7 +2,7 @@ case $1 in key-update) - foot bash -c "sudo xbps-install -Suv" + kitty bash -c "sudo xbps-install -Suv" qtile cmd-obj -o widget checkupdates -f force_update ;; *) diff --git a/.config/qtile/workspaces.py b/.config/qtile/workspaces.py index 42e203f..28ca8db 100644 --- a/.config/qtile/workspaces.py +++ b/.config/qtile/workspaces.py @@ -21,6 +21,7 @@ workspaces = [ "key": "2", "matches": [ Match(wm_class='foot'), + Match(wm_class='kitty'), Match(wm_class='ranger'), ], "layout": "monadtall", |