mirror of
https://github.com/elkowar/dots-of-war.git
synced 2024-11-06 03:12:24 +00:00
Migrate to new monitor setup
This commit is contained in:
parent
00a166ab17
commit
cf19c78688
3 changed files with 15 additions and 10 deletions
|
@ -115,7 +115,7 @@
|
||||||
|
|
||||||
|
|
||||||
(defwindow bar_1
|
(defwindow bar_1
|
||||||
:monitor 1
|
:monitor "DisplayPort-0"
|
||||||
:stacking "bg"
|
:stacking "bg"
|
||||||
:geometry (geometry :x 0 :y 0 :width "40px" :height "100%")
|
:geometry (geometry :x 0 :y 0 :width "40px" :height "100%")
|
||||||
:anchor "top left"
|
:anchor "top left"
|
||||||
|
@ -123,7 +123,7 @@
|
||||||
(bar :screen 1))
|
(bar :screen 1))
|
||||||
|
|
||||||
(defwindow bar_2
|
(defwindow bar_2
|
||||||
:monitor 2
|
:monitor "HDMI-A-1"
|
||||||
:geometry (geometry :x 0 :y 0 :width "40px" :height "100%")
|
:geometry (geometry :x 0 :y 0 :width "40px" :height "100%")
|
||||||
:anchor "top left"
|
:anchor "top left"
|
||||||
:reserve (struts :distance "40px" :side "left")
|
:reserve (struts :distance "40px" :side "left")
|
||||||
|
|
|
@ -119,7 +119,9 @@
|
||||||
:server {:on_attach on_attach
|
:server {:on_attach on_attach
|
||||||
:capabilities default-capabilities
|
:capabilities default-capabilities
|
||||||
:settings {:rust-analyzer {:cargo {:loadOutDirsFromCheck true}
|
:settings {:rust-analyzer {:cargo {:loadOutDirsFromCheck true}
|
||||||
:procMacro {:enable true}}}}}))
|
:procMacro {:enable true}
|
||||||
|
:diagnostics {:enable false ;; native rust analyzer diagnostics
|
||||||
|
:experimental {:enable false}}}}}}))
|
||||||
|
|
||||||
;:cmd ["/home/leon/coding/prs/rust-analyzer/target/release/rust-analyzer"]}}))
|
;:cmd ["/home/leon/coding/prs/rust-analyzer/target/release/rust-analyzer"]}}))
|
||||||
|
|
||||||
|
|
|
@ -257,7 +257,7 @@ myStartupHook = do
|
||||||
--spawnOnce "/home/leon/Downloads/picom --config /home/leon/.config/picom.conf --experimental-backends --backend xrender" --no-fading-openclose"
|
--spawnOnce "/home/leon/Downloads/picom --config /home/leon/.config/picom.conf --experimental-backends --backend xrender" --no-fading-openclose"
|
||||||
spawnOnce "/home/leon/Downloads/picom-epic-animations --config /home/leon/.config/picom.conf --experimental-backends --animations --animation-stiffness 200 --animation-dampening 20" --backend glx" --no-fading-openclose"
|
spawnOnce "/home/leon/Downloads/picom-epic-animations --config /home/leon/.config/picom.conf --experimental-backends --animations --animation-stiffness 200 --animation-dampening 20" --backend glx" --no-fading-openclose"
|
||||||
--spawn "/home/leon/.config/polybar/launch.sh"
|
--spawn "/home/leon/.config/polybar/launch.sh"
|
||||||
setupPolybarOn "DisplayPort-0"
|
setupPolybarOn "DisplayPort-1"
|
||||||
spawnOnce "eww -c /home/leon/.config/eww-bar open-many bar_2 bar_1 &"
|
spawnOnce "eww -c /home/leon/.config/eww-bar open-many bar_2 bar_1 &"
|
||||||
spawn "xsetroot -cursor_name left_ptr"
|
spawn "xsetroot -cursor_name left_ptr"
|
||||||
spawnOnce "nitrogen --restore"
|
spawnOnce "nitrogen --restore"
|
||||||
|
@ -294,6 +294,9 @@ removedKeys :: [String]
|
||||||
removedKeys = ["M-<Tab>", "M-S-c", "M-S-q", "M-h", "M-l", "M-j", "M-k", "M-S-<Return>", "M-S-j", "M-S-k"]
|
removedKeys = ["M-<Tab>", "M-S-c", "M-S-q", "M-h", "M-l", "M-j", "M-k", "M-S-<Return>", "M-S-j", "M-S-k"]
|
||||||
++ [key ++ show n | key <- ["M-", "M-S-", "M-C-"], n <- [1..9 :: Int]]
|
++ [key ++ show n | key <- ["M-", "M-S-", "M-C-"], n <- [1..9 :: Int]]
|
||||||
|
|
||||||
|
screenIndexMain = 0
|
||||||
|
screenIndexVert = 1
|
||||||
|
screenIndexTop = 2
|
||||||
|
|
||||||
myKeys :: [(String, X ())]
|
myKeys :: [(String, X ())]
|
||||||
myKeys = concat [ zoomRowBindings, tabbedBindings, multiMonitorBindings, programLaunchBindings, miscBindings, windowControlBindings, workspaceBindings ]
|
myKeys = concat [ zoomRowBindings, tabbedBindings, multiMonitorBindings, programLaunchBindings, miscBindings, windowControlBindings, workspaceBindings ]
|
||||||
|
@ -329,12 +332,12 @@ myKeys = concat [ zoomRowBindings, tabbedBindings, multiMonitorBindings, program
|
||||||
|
|
||||||
multiMonitorBindings :: [(String, X ())]
|
multiMonitorBindings :: [(String, X ())]
|
||||||
multiMonitorBindings =
|
multiMonitorBindings =
|
||||||
[ ("M-a", windows $ IS.focusScreen 0)
|
[ ("M-a", windows $ IS.focusScreen screenIndexVert)
|
||||||
, ("M-s", windows $ IS.focusScreen 2)
|
, ("M-s", windows $ IS.focusScreen screenIndexTop)
|
||||||
, ("M-d", windows $ IS.focusScreen 1)
|
, ("M-d", windows $ IS.focusScreen screenIndexMain)
|
||||||
, ("M-S-a", windows $ IS.withWspOnScreen 0 (\wsp -> W.view wsp . W.shift wsp))
|
, ("M-S-a", windows $ IS.withWspOnScreen screenIndexVert (\wsp -> W.view wsp . W.shift wsp))
|
||||||
, ("M-S-s", windows $ IS.withWspOnScreen 2 (\wsp -> W.view wsp . W.shift wsp))
|
, ("M-S-s", windows $ IS.withWspOnScreen screenIndexTop (\wsp -> W.view wsp . W.shift wsp))
|
||||||
, ("M-S-d", windows $ IS.withWspOnScreen 1 (\wsp -> W.view wsp . W.shift wsp))
|
, ("M-S-d", windows $ IS.withWspOnScreen screenIndexMain (\wsp -> W.view wsp . W.shift wsp))
|
||||||
, ("M-C-s", windows swapScreenContents)
|
, ("M-C-s", windows swapScreenContents)
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue