mirror of
https://github.com/sbrl/bin.git
synced 2018-01-10 21:33:46 +00:00
Merge branch 'master' of github.com:sbrl/bin
This commit is contained in:
commit
7cf0213dda
2 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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}";
|
||||
|
||||
|
|
Loading…
Reference in a new issue