mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
feat: hyprland improvements, terraform email
This commit is contained in:
parent
4759970fe8
commit
c7c485f955
20 changed files with 205 additions and 100 deletions
|
|
@ -2,14 +2,14 @@
|
|||
inherit (std) list;
|
||||
in {
|
||||
wayland.windowManager.hyprland.settings.workspace = let
|
||||
commonOptions = "gapsin:0,gapsout:0,rounding:false";
|
||||
commonOptions = "gapsin:5,gapsout:5,rounding:true,persistent:true";
|
||||
in
|
||||
["1,monitor:DP-1,default:true,${commonOptions}"]
|
||||
["1,default:true,${commonOptions}"]
|
||||
++ (list.map (
|
||||
workspace: "${toString workspace},monitor:DP-1${commonOptions}"
|
||||
workspace: "${toString workspace},${commonOptions}"
|
||||
) (list.range 2 10))
|
||||
++ ["11,monitor:HDMI-A-1,default:true"]
|
||||
++ ["11,${commonOptions}"]
|
||||
++ (list.map (
|
||||
workspace: "${toString workspace},monitor:HDMI-A-1${commonOptions}"
|
||||
workspace: "${toString workspace},${commonOptions}"
|
||||
) (list.range 12 20));
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue