mirror of
https://github.com/Nickiel12/nicks-nix-config.git
synced 2024-11-22 12:49:32 -08:00
swapped workspaces to work with ewwtilities update
This commit is contained in:
parent
2031055d7a
commit
e383b075e9
2 changed files with 21 additions and 20 deletions
|
@ -58,20 +58,18 @@
|
||||||
:spacing "12"
|
:spacing "12"
|
||||||
:css "* {margin-left: 20px; margin-right: 20px;}"
|
:css "* {margin-left: 20px; margin-right: 20px;}"
|
||||||
(box
|
(box
|
||||||
:class {current-idx == "1" ? "active-workspace" : "regular"}
|
:class {current-idx == "2" ? "active-workspace" : "regular"}
|
||||||
(label :text ""))
|
(label :text ""))
|
||||||
(box
|
(box
|
||||||
:class {current-idx == "3" ? "active-workspace" : "regular"}
|
:class {current-idx == "4" ? "active-workspace" : "regular"}
|
||||||
(label :text ""))
|
(label :text ""))
|
||||||
(box
|
(box
|
||||||
:class {current-idx == "5" ? "active-workspace" : "regular"}
|
:class {current-idx == "6" ? "active-workspace" : "regular"}
|
||||||
(label :text ""))
|
(label :text ""))
|
||||||
(box
|
(box
|
||||||
:class {current-idx == "7" ? "active-workspace" : "regular"}
|
:class {current-idx == "8" ? "active-workspace" : "regular"}
|
||||||
(label :text ""))
|
(label :text ""))
|
||||||
(box
|
))
|
||||||
:class {current-idx == "9" ? "active-workspace" : "regular"}
|
|
||||||
(label :text ""))))
|
|
||||||
|
|
||||||
(defwidget bar_right []
|
(defwidget bar_right []
|
||||||
(centerbox :orientation "h"
|
(centerbox :orientation "h"
|
||||||
|
@ -89,16 +87,19 @@
|
||||||
:spacing "12"
|
:spacing "12"
|
||||||
:css "* {margin-left: 20px; margin-right: 20px;}"
|
:css "* {margin-left: 20px; margin-right: 20px;}"
|
||||||
(box
|
(box
|
||||||
:class {current-idx == "2" ? "active-workspace" : "regular"}
|
:class {current-idx == "1" ? "active-workspace" : "regular"}
|
||||||
(label :text ""))
|
(label :text ""))
|
||||||
(box
|
(box
|
||||||
:class {current-idx == "4" ? "active-workspace" : "regular"}
|
:class {current-idx == "3" ? "active-workspace" : "regular"}
|
||||||
(label :text ""))
|
(label :text ""))
|
||||||
(box
|
(box
|
||||||
:class {current-idx == "6" ? "active-workspace" : "regular"}
|
:class {current-idx == "5" ? "active-workspace" : "regular"}
|
||||||
(label :text ""))
|
(label :text ""))
|
||||||
(box
|
(box
|
||||||
:class {current-idx == "8" ? "active-workspace" : "regular"}
|
:class {current-idx == "7" ? "active-workspace" : "regular"}
|
||||||
|
(label :text ""))
|
||||||
|
(box
|
||||||
|
:class {current-idx == "9" ? "active-workspace" : "regular"}
|
||||||
(label :text ""))))
|
(label :text ""))))
|
||||||
|
|
||||||
(defwindow full_screen_bar
|
(defwindow full_screen_bar
|
||||||
|
|
|
@ -15,16 +15,16 @@ in
|
||||||
];
|
];
|
||||||
|
|
||||||
workspace = if (hostname == "NicksNixDesktop") then [
|
workspace = if (hostname == "NicksNixDesktop") then [
|
||||||
"2,monitor:DP-3,default:true"
|
"1,monitor:DP-3,default:true"
|
||||||
"4,monitor:DP-3"
|
"3,monitor:DP-3"
|
||||||
"6,monitor:DP-3"
|
"5,monitor:DP-3"
|
||||||
"8,monitor:DP-3"
|
"7,monitor:DP-3"
|
||||||
|
|
||||||
"1,monitor:DP-2,default:true"
|
|
||||||
"3,monitor:DP-2"
|
|
||||||
"5,monitor:DP-2"
|
|
||||||
"7,monitor:DP-2"
|
|
||||||
"9,monitor:DP-2"
|
"9,monitor:DP-2"
|
||||||
|
|
||||||
|
"2,monitor:DP-2,default:true"
|
||||||
|
"4,monitor:DP-2"
|
||||||
|
"6,monitor:DP-2"
|
||||||
|
"8,monitor:DP-2"
|
||||||
] else [
|
] else [
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in a new issue