1 2 3 4 5 6 7 8 9 10 11 12 13
{ pkgs, ... }: { kassouni.palette.commands = [ { name = "screenshot"; icon = ""; exe = pkgs.writers.writeBash "screenshot" '' set -eu ${pkgs.maim}/bin/maim -s | ${pkgs.xclip}/bin/xclip -selection clipboard -t image/png ''; } ]; }