Compare commits
1 commit
a449d9041d
...
be8ee9bf1e
Author | SHA1 | Date | |
---|---|---|---|
be8ee9bf1e |
2 changed files with 10 additions and 16 deletions
|
@ -73,12 +73,9 @@ in
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
# Startup scripts
|
# Startup scripts
|
||||||
startup =
|
startup = [
|
||||||
[
|
|
||||||
(cmdAlways "${configure-gtk}/bin/configure-gtk")
|
(cmdAlways "${configure-gtk}/bin/configure-gtk")
|
||||||
]
|
] ++ (builtins.map cmdAlways cfg.exec.always) ++ (builtins.map cmdOnce cfg.exec.once);
|
||||||
++ (builtins.map cmdAlways cfg.exec.always)
|
|
||||||
++ (builtins.map cmdOnce cfg.exec.once);
|
|
||||||
# Keyboard configuration
|
# Keyboard configuration
|
||||||
input."type:keyboard" = {
|
input."type:keyboard" = {
|
||||||
repeat_delay = "300";
|
repeat_delay = "300";
|
||||||
|
|
|
@ -10,16 +10,13 @@ in
|
||||||
# Choose the order of the modules
|
# Choose the order of the modules
|
||||||
modules-left = [ "sway/workspaces" ];
|
modules-left = [ "sway/workspaces" ];
|
||||||
modules-center = [ "clock" ];
|
modules-center = [ "clock" ];
|
||||||
modules-right =
|
modules-right = [
|
||||||
[
|
|
||||||
"pulseaudio"
|
"pulseaudio"
|
||||||
"backlight"
|
"backlight"
|
||||||
"battery"
|
"battery"
|
||||||
"sway/language"
|
"sway/language"
|
||||||
"memory"
|
"memory"
|
||||||
]
|
] ++ lib.optional (cfg.tempInfo != null) "temperature" ++ [ "tray" ];
|
||||||
++ lib.optional (cfg.tempInfo != null) "temperature"
|
|
||||||
++ [ "tray" ];
|
|
||||||
"sway/workspaces" = {
|
"sway/workspaces" = {
|
||||||
disable-scroll = true;
|
disable-scroll = true;
|
||||||
persistent-workspaces = {
|
persistent-workspaces = {
|
||||||
|
|
Loading…
Add table
Reference in a new issue