add notification for screenshot

This commit is contained in:
Kopatz
2025-07-15 15:02:33 +02:00
parent f1e9c8043b
commit 79f50ccf74
2 changed files with 14 additions and 2 deletions

View File

@@ -191,6 +191,7 @@ in
wl-copy = "${pkgs.wl-clipboard}/bin/wl-copy";
wl-paste = "${pkgs.wl-clipboard}/bin/wl-paste";
grimblast = "${pkgs.grimblast}/bin/grimblast";
saved-screenshot-cmd = ''${grimblast} --freeze save area $OUT && notify-send "Saved screenshot to $OUT" -h string:image-path:$OUT'';
pdfgrep = "${pkgs.pdfgrep}/bin/pdfgrep";
brightnessctl = "${pkgs.brightnessctl}/bin/brightnessctl";
#swaylock = "${pkgs.swaylock}/bin/swaylock";
@@ -215,9 +216,9 @@ in
"$mainMod, W, exec, hyprctl hyprpaper reload ,${config.stylix.image}"
" , Print, exec, hyprshade off && ${grimblast} --freeze copy area && hyprshade auto"
''
$mainMod, Print, exec, ${grimblast} --freeze save area /tmp/$(date +'%s_grim.png')''
$mainMod, Print, exec, export OUT=/tmp/$(date +'%s_grim.png') && ${saved-screenshot-cmd}''
''
Shift_L, Print, exec, ${grimblast} --freeze save area ~/Pictures/$(date +'%s_grim.png')''
Shift_L, Print, exec, export OUT=~/Pictures/$(date +'%s_grim.png') && ${saved-screenshot-cmd}''
"$mainMod, G, exec, ${peek}" # record gif
"$mainMod, SPACE, exec, ${rofi} -modi drun -show drun -config ~/.config/rofi/rofidmenu.rasi"
" , XF86AudioPlay, exec, ${playerctl} play-pause"

View File

@@ -106,6 +106,17 @@
services.jenkins.enable = false;
virtualisation.waydroid.enable = false;
services.postgresql = {
enable = true;
ensureDatabases = [ "mydatabase" ];
extensions = with pkgs.postgresql14Packages; [ pg_libversion ];
authentication = pkgs.lib.mkOverride 10 ''
#TYPE DATABASE USER ADDRESS METHOD
local all all trust
host all all 127.0.0.1/32 trust
'';
};
systemd.user.services.scheibnkleister-presence = {
description = "scheibnkleister-presence";
wantedBy = [ "graphical-session.target" ];