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

40 lines
1 KiB
Nix
Raw Normal View History

{ pkgs, ... }:
{
2024-11-21 09:24:15 +00:00
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"
2024-11-21 09:24:15 +00:00
"$m, V, exec, telegram-desktop"
"$m $s, V, exec, thunderbird"
2024-11-21 09:24:15 +00:00
"$m, B, exec, zen"
"$m $s, B, exec, qutebrowser"
"$m $a, B, exec, floorp"
2024-11-21 09:24:15 +00:00
"$m, N, exec, kitty yazi"
"$m $s, N, exec, nemo"
2024-11-21 09:24:15 +00:00
"$m, M, exec, spotify"
"$m $s, M, exec, kitty ${c}=anicliru anicli-ru -q 1080"
"$m $a, M, exec, onlyoffice"
2024-11-21 09:24:15 +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 ${pic}"
"$s, $PR, exec, ${grimblast}/bin/grimblast copysave output ${pic}"
];
2024-11-21 09:24:15 +00:00
};
}