Compare commits

..

No commits in common. "6fb0e78d484e6b478f2485f2d9b09a150ed303ec" and "cfc3052e2db1c16871c18ebfc33060c3bb47f089" have entirely different histories.

3 changed files with 15 additions and 16 deletions

View File

@ -4,7 +4,7 @@ import = ["/home/grfreire/.config/alacritty/themes/tokyo-night.toml"]
size = 24
[font.normal]
family = "Iosevka"
family = "Cascadia Code"
[scrolling]
history = 100000

View File

@ -18,9 +18,6 @@ feh --bg-scale --no-fehbg ~/.config/wall.png
# Start conky
conky &
# Start X settings deamon
xsettingsd -c ~/.config/xsettingsd/xsettingsd.conf &
# Start network manager applet (systray)
nm-applet &

View File

@ -35,7 +35,7 @@ keys = [
Key([MOD], "j", lazy.layout.down(), desc="Move focus down"),
Key([MOD], "k", lazy.layout.up(), desc="Move focus up"),
Key([ALT], "Tab", lazy.layout.next(), desc="Move window focus to other window"),
Key([MOD], "apostrophe", lazy.next_screen(), desc="Move window focus to other screen"),
Key([MOD], "dead_grave", lazy.next_screen(), desc="Move window focus to other screen"),
# Move windows between left/right columns.
Key([MOD, "shift"], "h", lazy.layout.shuffle_left(), desc="Move window to the left"),
Key([MOD, "shift"], "l", lazy.layout.shuffle_right(), desc="Move window to the right"),
@ -420,9 +420,7 @@ def try_swallow(window):
Match(wm_class="Alacritty"),
]
not_swallow=[
Match(wm_class="voide-settings")
]
not_swallow=[]
if any(window.match(rule) for rule in not_swallow):
return
@ -470,21 +468,24 @@ def toggle_swallow(window):
def try_regroup_window(client):
time.sleep(0.01)
apps_wm_class = {
"google-chrome": "WWW",
"Navigator": "WWW",
"chromium": "WWW",
"wireshark": "DEV",
"code": "DEV",
"Steam": "GMG",
"heroic": "GMG",
"lutris": "GMG",
"nitrogen": "SYS",
"VirtualBox Manager": "SYS",
"virt-manager": "SYS",
"baobab": "SYS",
"gnome-disks": "SYS",
"gnome-system-monitor": "SYS",
"gnome-text-editor": "DOC",
"libreoffice": "DOC",
"Mail": "CHAT",
"gedit": "DOC",
"discord": "CHAT",
"microsoft teams - preview": "CHAT",
"spotify": "MUS",
"obs": "VID",
"shotcut": "EDT",
"ghb": "VID",
"resolve": "EDT",
"audacity": "EDT",
"krita": "EDT",
"mypaint": "EDT",
@ -492,7 +493,8 @@ def try_regroup_window(client):
# Notion for class is notion-nativefier-xxxx for example
apps_wm_class_incomplete = {
"burp": "DEV",
"notion": "DOC",
"todoist": "DOC",
}
wm_class = client.window.get_wm_class()[0]