writeScript* -> writeShellScript*

This commit is contained in:
Charlotte Van Petegem 2020-10-16 10:14:34 +02:00
parent 10d39faff4
commit 23b7c3f5a7
No known key found for this signature in database
GPG key ID: 019E764B7184435A
9 changed files with 12 additions and 38 deletions

View file

@ -1,8 +1,6 @@
{ pkgs }:
pkgs.writeScriptBin "color_picker" ''
#!${pkgs.zsh}/bin/zsh
pkgs.writeShellScriptBin "color_picker" ''
color=$(${pkgs.grim}/bin/grim -t png -g "$(${pkgs.slurp}/bin/slurp -p)" - | ${pkgs.imagemagick}/bin/convert png:- -unique-colors txt:- | grep -o '#[A-F0-9]\+')
${pkgs.sway}/bin/swaymsg exec -- "echo -n '$color' | ${pkgs.wl-clipboard}/bin/wl-copy --foreground"