1
0
Fork 0

Merge branch 'master' of github.com:sbrl/bin

This commit is contained in:
Starbeamrainbowlabs 2017-11-15 21:57:44 +00:00
commit 7cf0213dda
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,6 @@
mogrify -format jpg *.png
find . -type f -exec grep -Hin testing "{}" ';'
rspamc learn_spam *
youtube-dl -f 'bestvideo[ext=webm]+bestaudio[ext=webm]/bestvideo/bestaudio' "https://www.youtube.com/watch?v=Hp0cdTXv5Js&feature=youtu.be"
youtube-dl -F "https://www.youtube.com/watch?v=Hp0cdTXv5Js&feature=youtu.be"
xinput --set-prop 12 "libinput Accel Speed" 0.6

View File

@ -7,7 +7,7 @@ if [[ "$#" -lt "1" ]]; then
echo -e "Quote generation tool"
echo -e "By Starbeamrainbowlabs"
echo -e ""
echo -e "Downloads and caches a quote file and picks out a random (per day) quote."
echo -e "Downloads and caches a quote file and picks out a random quote."
echo -e ""
echo -e "Usage:"
echo -e " quote-get {quote-file-url}"
@ -48,4 +48,3 @@ RANDOM=$(date +%Y%m%d);
quote_line=$((( $RANDOM % ${quote_count} )));
sed -n ${quote_line}p "${quotes_cache_file}";