feat(sway): comments, helper function and other changes

This commit is contained in:
Nydragon 2024-06-05 15:22:18 +09:00
parent a09491a655
commit 1a624a18ba
No known key found for this signature in database
GPG key ID: 14AA30A865EA1209

View file

@ -33,6 +33,8 @@
}; };
}; };
wallpaper = "${homeDirectory}/Pictures/backgrounds/catppucchin"; wallpaper = "${homeDirectory}/Pictures/backgrounds/catppucchin";
mkRegexList = list: "^(${(lib.strings.concatStringsSep "|" list)})$";
in in
{ {
enable = true; enable = true;
@ -147,7 +149,7 @@
#: }}} #: }}}
assigns = { assigns = {
"2" = [ { app_id = "firefox"; } ]; "2" = [ { app_id = "firefox"; } ];
"3" = [ ]; "3" = [ { app_id = "obsidian"; } ];
"4" = [ "4" = [
{ class = "discord"; } { class = "discord"; }
{ app_id = "com.discordapp.Discord"; } { app_id = "com.discordapp.Discord"; }
@ -172,20 +174,21 @@
} }
{ {
command = "floating enable"; command = "floating enable";
criteria.app_id = "^(${ criteria.app_id = mkRegexList [
(lib.strings.concatStringsSep "|" [ "org.keepassxc.KeePassXC"
"org.keepassxc.KeePassXC" "xdg-desktop-portal-gtk"
"xdg-desktop-portal-gtk" "org.kde.polkit-kde-authentication-agent-1"
"org.kde.polkit-kde-authentication-agent-1" "com.nextcloud.desktopclient.nextcloud"
"com.nextcloud.desktopclient.nextcloud" "org.kde.kdeconnect.daemon"
]) ];
})$";
} }
{ {
# Make it clear which window runs using xwayland
command = ''title_format "[XWayland] %title"''; command = ''title_format "[XWayland] %title"'';
criteria.shell = "xwayland"; criteria.shell = "xwayland";
} }
{ {
# Nextcloud closes when its not focused, thus moving the mouse over any other window will close it
command = "move position mouse"; command = "move position mouse";
criteria.app_id = "com.nextcloud.desktopclient.nextcloud"; criteria.app_id = "com.nextcloud.desktopclient.nextcloud";
} }