summaryrefslogtreecommitdiff
path: root/users/kassouni/palette/screenshot.nix
blob: 00d11d1f357049dfd9f254f9978aa0f5f2ec6ef4 (plain)
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
      '';
    }
  ];
}