My dotfiles
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

10 righe
195 B

  1. #!/bin/sh
  2. if [ $# -eq 0 ]
  3. then
  4. magick import -window root ~/Screenshots/"$(date +%Y.%m.%d-%T)".jpg
  5. else
  6. magick import temp.jpg
  7. xclip -selection clipboard -t image/png temp.jpg
  8. rm temp.png
  9. fi