add screenshot M-s on xmonad

This commit is contained in:
mtgmonkey 2025-06-11 06:42:37 -04:00
parent 06dbc718d5
commit ad37645479
3 changed files with 10 additions and 3 deletions

View file

@ -72,6 +72,8 @@ in {
}; };
}; };
gh.enable = true;
nvf = { nvf = {
enable = true; enable = true;
settings.vim = { settings.vim = {
@ -200,10 +202,13 @@ in {
pkgs.acpi pkgs.acpi
pkgs.brush pkgs.brush
pkgs.brightnessctl pkgs.brightnessctl
pkgs.flameshot
pkgs.fzf
pkgs.jmtpfs pkgs.jmtpfs
pkgs.nix-output-monitor pkgs.nix-output-monitor
pkgs.lynx pkgs.lynx
pkgs.rip2 pkgs.rip2
pkgs.ripgrep
pkgs.tree pkgs.tree
# alias # alias

View file

@ -8,8 +8,8 @@
# rebecca has lavener bkg # rebecca has lavener bkg
# tube has dark gray bkg # tube has dark gray bkg
# silk-light is light theme # silk-light is light theme
base16Scheme = "${pkgs.base16-schemes}/share/themes/silk-light.yaml"; base16Scheme = "${pkgs.base16-schemes}/share/themes/tube.yaml";
polarity = "light"; polarity = "dark";
image = ./stylix/nix-wallpaper-gear.png; image = ./stylix/nix-wallpaper-gear.png;
fonts = { fonts = {
serif = config.stylix.fonts.monospace; serif = config.stylix.fonts.monospace;

View file

@ -8,4 +8,6 @@ main = xmonad $ def
modMask = mod4Mask -- map to <Super> modMask = mod4Mask -- map to <Super>
} }
`additionalKeysP` `additionalKeysP`
[ ("M-q" , spawn "qutebrowser" ) ] [ ("M-q" , spawn "qutebrowser" )
, ("M-s", spawn "flameshot gui" )
]