mirror of
https://git.sr.ht/~neverness/ultima
synced 2025-01-09 21:03:53 +00:00
17 lines
516 B
Nix
17 lines
516 B
Nix
|
{ pkgs, config, False, ... }:
|
||
|
let
|
||
|
m = config.wayland.windowManager.sway.config.modifier;
|
||
|
x = "exec";
|
||
|
in {
|
||
|
module.wm.sway = {
|
||
|
bars = False;
|
||
|
programs = with pkgs; {
|
||
|
"${m}+b" = "${x} ${floorp}/bin/floorp";
|
||
|
"${m}+v" = "${x} ${_64gram}/bin/telegram-desktop";
|
||
|
"${m}+n" = "${x} ${kitty}/bin/kitty -T Explorer ${yazi}/bin/yazi";
|
||
|
"${m}+u" = "${x} ${onlyoffice-bin}/bin/onlyoffice-desktopeditors";
|
||
|
"${m}+i" = "${x} ${libreoffice}/lib/libreoffice/program/soffice.bin";
|
||
|
};
|
||
|
};
|
||
|
}
|