1
0
Fork 0
mirror of https://git.sr.ht/~neverness/ultima synced 2025-01-09 21:03:53 +00:00
ultima/workst/home/parts/hyprland.nix

35 lines
956 B
Nix
Raw Normal View History

2024-11-21 09:24:15 +00:00
{ pkgs, ... }: {
module.wm.hyprland = {
autostart = [ "${pkgs.mako}/bin/mako" ];
programs = let
c = "--class";
pic = "$(xdg-user-dir PICTURES)/$(date +'scr_%d-%m-%y|%H:%M:%S.png')";
in with pkgs; [
# PROGRAMS
"$m, $rt, exec, kitty"
"$m $s, $rt, exec, kitty ${c}=termfloat"
"$m, V, exec, telegram-desktop"
"$m $s, V, exec, thunderbird"
"$m, B, exec, zen"
"$m $s, B, exec, floorp"
"$m, N, exec, kitty yazi"
"$m $s, N, exec, nemo"
"$m, M, exec, spotify"
"$m $s, M, exec, kitty ${c}=anicliru anicli-ru -q 1080"
"$m $a, M, exec, onlyoffice"
2024-11-22 10:54:28 +00:00
"$m, Z, exec, bottles"
"$m $s, Z, exec, prismlauncher"
"$m $a, Z, exec, qbittorrent"
2024-11-21 09:24:15 +00:00
# SCREENSHOTTER & VIDEO
", $PR, exec, ${grimblast}/bin/grimblast copysave area"
"$s, $PR, exec, ${grimblast}/bin/grimblast copysave output ${pic}"
];
};
}