1
0
Fork 0
mirror of https://git.sr.ht/~neverness/ultima synced 2025-01-09 19:23:52 +00:00
ultima/jetpure/home/parts/sway.nix

17 lines
516 B
Nix
Raw Normal View History

2024-11-21 09:24:15 +00:00
{ 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";
};
};
}