diff options
author | Alan Pearce | 2023-08-01 16:27:01 +0200 |
---|---|---|
committer | Alan Pearce | 2023-08-01 16:27:01 +0200 |
commit | b77835e16f91967281209d1c30605207f126dd72 (patch) | |
tree | dcc39932011d332606860ea5a02050f42ca2c480 /system | |
parent | f6dd29fb7b85c0ab069b3d5f2173adf34a410e88 (diff) | |
download | nixfiles-b77835e16f91967281209d1c30605207f126dd72.tar.lz nixfiles-b77835e16f91967281209d1c30605207f126dd72.tar.zst nixfiles-b77835e16f91967281209d1c30605207f126dd72.zip |
Make i3 window-workspace assignments system-specific
Diffstat (limited to 'system')
-rw-r--r-- | system/satoshipad.nix | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/system/satoshipad.nix b/system/satoshipad.nix index d3f4c1a0..662d3359 100644 --- a/system/satoshipad.nix +++ b/system/satoshipad.nix @@ -43,5 +43,15 @@ networking.hostName = "satoshipad"; services.avahi.hostName = "alan-satoshipay"; + xsession.windowManager.i3.config = { + assigns = { + "1" = [{ class = "^Ripcord$"; }]; + "3" = [{ class = "^Firefox Developer Edition$"; }]; + "8" = [{ class = "^Emacs$"; }]; + "9" = [{ class = "\.exe$"; }]; + "10" = [{ class = "^Barrier$"; }]; + }; + }; + system.stateVersion = "18.03"; } |