My dotfiles
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

screenshot.sh 169 B

4 yıl önce
12345678
  1. if [ $# -eq 0 ]
  2. then
  3. magick import ~/Screenshots/$(date +%e.%m.%y-%T).png
  4. else
  5. magick import temp.png
  6. xclip -selection clipboard -t image/png temp.png
  7. rm temp.png
  8. fi