NixOS-Config/modules/home/sway/rules/default.nix

133 lines
3.7 KiB
Nix
Raw Normal View History

2024-10-19 19:59:55 -04:00
{ config, ... }:
2024-10-09 03:36:08 -04:00
{
2024-08-24 22:16:51 -04:00
wayland.windowManager.sway = {
2024-09-23 16:22:01 -04:00
config = {
2024-10-15 02:40:43 -04:00
# Assign workspaces to config
2024-08-24 22:16:51 -04:00
workspaceOutputAssign = let
2024-09-23 16:22:01 -04:00
workspaces1 = [
2024-10-15 02:40:43 -04:00
"${config.ws.w0}"
"${config.ws.w1}"
"${config.ws.w2}"
"${config.ws.w3}"
"${config.ws.w1a}"
"${config.ws.w2a}"
"${config.ws.w3a}"
2024-09-23 16:22:01 -04:00
];
workspaces2 = [
2024-10-15 02:40:43 -04:00
"${config.ws.w4}"
"${config.ws.w5}"
"${config.ws.w6}"
"${config.ws.w4a}"
"${config.ws.w5a}"
"${config.ws.w6a}"
2024-09-23 16:22:01 -04:00
];
workspaces3 = [
2024-10-15 02:40:43 -04:00
"${config.ws.w7}"
"${config.ws.w8}"
"${config.ws.w9}"
"${config.ws.w7a}"
"${config.ws.w8a}"
"${config.ws.w9a}"
2024-09-23 16:22:01 -04:00
];
2024-08-24 22:16:51 -04:00
assign = output: workspaces:
map (workspace: {
inherit workspace;
inherit output;
})
workspaces;
in
2024-10-15 02:40:43 -04:00
(assign "${config.displays.d1}" workspaces1) ++
(assign "${config.displays.d2}" workspaces2) ++
(assign "${config.displays.d3}" workspaces3);
2024-08-24 22:16:51 -04:00
# Rules
window = {
2024-10-15 02:40:43 -04:00
border = config.look.border.int;
2024-08-24 22:16:51 -04:00
titlebar = false;
commands = [
# Scratchpads
{
criteria = {con_mark = "scratchpad";};
command = ''floating enable, sticky enable, move scratchpad, mark borderless'';
}
{
criteria = {app_id = "gotop";};
command = ''mark scratchpad'';
}
{
criteria = {app_id = "music";};
command = ''mark scratchpad'';
}
{
criteria = {app_id = "sound";};
command = ''mark scratchpad'';
}
{
criteria = {app_id = "com.github.wwmm.easyeffects";};
command = ''mark scratchpad, opacity 0.9'';
}
# Create a "Scratchpad" for apps I don't want to be seen when launched
{
criteria = {con_mark = "hiddenaway";};
command = ''move scratchpad'';
}
# Give apps that don't have them borders
{
criteria = {con_mark = "borderless";};
2024-10-15 02:40:43 -04:00
command = ''border pixel ${config.look.border.string}'';
2024-08-24 22:16:51 -04:00
}
{
criteria = {app_id = "com.github.wwmm.easyeffects";};
command = ''mark borderless'';
}
{
criteria = {class = "steam";};
command = ''mark borderless'';
}
{
criteria = {app_id = "swappy";};
command = ''mark borderless'';
}
{
criteria = {app_id = "virt-manager";};
command = ''mark borderless'';
}
{
criteria = {window_role = "pop-up";};
command = ''mark borderless'';
}
# Floating or fullscreen rules
{
criteria = {app_id = "float";};
command = ''floating enable'';
}
{
criteria = {title = "^GlobalShot";};
command = ''floating enable, fullscreen enable global'';
}
];
};
assigns = {
2024-10-15 02:40:43 -04:00
# Broconfig.wsers
"${config.ws.w1}" = [{app_id = "JimBrowser";}];
"${config.ws.w1a}" = [{app_id = "AltBrowser";}];
2024-08-24 22:16:51 -04:00
# Communication
2024-10-15 02:40:43 -04:00
"${config.ws.w3a}" = [{class = "zoom";}];
"${config.ws.w7}" = [{app_id = "MiscBrowser";} {app_id = "vesktop";} {class = "vesktop";}];
"${config.ws.w8}" = [{app_id = "org.gnome.Fractal";}];
"${config.ws.w9}" = [{app_id = "thunderbird";}];
2024-08-24 22:16:51 -04:00
# Else
2024-10-15 02:40:43 -04:00
"${config.ws.w2}" = [{class = "steam";} {app_id = "heroic";}];
"${config.ws.w2a}" = [{app_id = "looking-glass-client";}];
"${config.ws.w4a}" = [{app_id = "com.obsproject.Studio";}];
2024-08-24 22:16:51 -04:00
};
focus.newWindow = "focus";
};
};
}