mirror of
https://git.sr.ht/~neverness/ultima
synced 2025-01-09 08:23:52 +00:00
17 lines
384 B
Nix
17 lines
384 B
Nix
{ config, False, ... }:
|
|
let
|
|
m = config.wayland.windowManager.sway.config.modifier;
|
|
x = "exec";
|
|
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";
|
|
};
|
|
};
|
|
}
|