feat: add flameshot keyboard shortcut

main
mandlm 2022-09-12 09:10:55 +02:00
parent c650a525c5
commit 8538d24ad4
Signed by: mandlm
GPG Key ID: 4AA25D647AA54CC7
1 changed files with 10 additions and 0 deletions

View File

@ -62,6 +62,7 @@ in
keybindings = lib.mkOptionDefault { keybindings = lib.mkOptionDefault {
"${cfg.config.modifier}+Shift+o" = "exec xdg-open \"zoommtg://zoom.us/join?action=join&confno=4861587170&pwd=ZVk3aHphcWppY21ONjZOMVh6STN6dz09\""; "${cfg.config.modifier}+Shift+o" = "exec xdg-open \"zoommtg://zoom.us/join?action=join&confno=4861587170&pwd=ZVk3aHphcWppY21ONjZOMVh6STN6dz09\"";
"${cfg.config.modifier}+Shift+s" = "exec flameshot gui";
}; };
startup = [ startup = [
@ -92,5 +93,14 @@ in
arguments = [ "--update /home/mandlm/.config/i3/wallpapers/nix-wallpaper-dracula.png" ]; arguments = [ "--update /home/mandlm/.config/i3/wallpapers/nix-wallpaper-dracula.png" ];
}; };
services.flameshot = {
enable = true;
settings = {
General = {
showStartupLaunchMessage = false;
};
};
};
services.unclutter.enable = true; services.unclutter.enable = true;
} }