Compare commits
1 commit
be8ee9bf1e
...
a449d9041d
Author | SHA1 | Date | |
---|---|---|---|
a449d9041d |
2 changed files with 16 additions and 10 deletions
|
@ -73,9 +73,12 @@ in
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
# Startup scripts
|
# Startup scripts
|
||||||
startup = [
|
startup =
|
||||||
(cmdAlways "${configure-gtk}/bin/configure-gtk")
|
[
|
||||||
] ++ (builtins.map cmdAlways cfg.exec.always) ++ (builtins.map cmdOnce cfg.exec.once);
|
(cmdAlways "${configure-gtk}/bin/configure-gtk")
|
||||||
|
]
|
||||||
|
++ (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,13 +10,16 @@ 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"
|
[
|
||||||
"backlight"
|
"pulseaudio"
|
||||||
"battery"
|
"backlight"
|
||||||
"sway/language"
|
"battery"
|
||||||
"memory"
|
"sway/language"
|
||||||
] ++ lib.optional (cfg.tempInfo != null) "temperature" ++ [ "tray" ];
|
"memory"
|
||||||
|
]
|
||||||
|
++ 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