mirror of
https://git.sr.ht/~neverness/ultima
synced 2025-01-08 18:33:52 +00:00
19 lines
394 B
Nix
19 lines
394 B
Nix
{ x, config, ... }:
|
|
with x;
|
|
let
|
|
m = config.wayland.windowManager.sway.config.modifier;
|
|
X = "exec";
|
|
in
|
|
{
|
|
module.wm.sway = {
|
|
programs = {
|
|
# PROGRAMS
|
|
"${m}+b" = "${X} qutebrowser";
|
|
"${m}+v" = "${X} telegram-desktop";
|
|
"${m}+n" = "${X} kitty -T Explorer yazi";
|
|
"${m}+u" = "${X} onlyoffice-desktopeditors";
|
|
# "${m}+i" = "${X} libreoffice";
|
|
};
|
|
};
|
|
}
|