1
0
Fork 0
mirror of https://git.sr.ht/~neverness/ultima synced 2025-01-08 18:53:53 +00:00
ultima/jetpure/home/parts/hyprland.nix

40 lines
1 KiB
Nix

{ pkgs, ... }:
{
module.wm.hyprland = {
autostart = [ "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, qutebrowser"
"$m $a, 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"
"$m, Z, exec, bottles"
"$m $s, Z, exec, prismlauncher"
"$m $a, Z, exec, qbittorrent"
# SCREENSHOTTER & VIDEO
", $PR, exec, ${grimblast}/bin/grimblast copysave area ${pic}"
"$s, $PR, exec, ${grimblast}/bin/grimblast copysave output ${pic}"
];
};
}