mirror of
https://git.sr.ht/~neverness/ultima
synced 2025-01-09 19:43:52 +00:00
18 lines
401 B
Nix
18 lines
401 B
Nix
{ x, config, ... }:
|
|
let
|
|
m = config.wayland.windowManager.sway.config.modifier;
|
|
X = "exec";
|
|
inherit (x) False;
|
|
in {
|
|
module.wm.sway = {
|
|
bars = False;
|
|
programs = {
|
|
"${m}+b" = "${X} floorp";
|
|
"${m}+v" = "${X} telegram-desktop";
|
|
"${m}+n" = "${X} kitty -T Explorer yazi";
|
|
"${m}+u" = "${X} onlyoffice-desktopeditors";
|
|
"${m}+i" = "${X} libreoffice";
|
|
};
|
|
};
|
|
}
|