From 3d602496d2dd446e041952db21df92a692339072 Mon Sep 17 00:00:00 2001 From: Andrew Coleman Date: Tue, 9 Jul 2019 12:51:08 -0400 Subject: [PATCH] remove old scripts --- bin/cpu-freqs.sh | 5 ----- bin/kitty.completion.bash | 15 --------------- bin/make-m4b.sh | 2 -- 3 files changed, 22 deletions(-) delete mode 100755 bin/cpu-freqs.sh delete mode 100644 bin/kitty.completion.bash delete mode 100755 bin/make-m4b.sh diff --git a/bin/cpu-freqs.sh b/bin/cpu-freqs.sh deleted file mode 100755 index 00dbfb3..0000000 --- a/bin/cpu-freqs.sh +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/bash - -for i in 0 1 2 3 4 5 6 7 ; do - echo -n "cpu${i} " && cat /sys/devices/system/cpu/cpu${i}/cpufreq/scaling_cur_freq -done diff --git a/bin/kitty.completion.bash b/bin/kitty.completion.bash deleted file mode 100644 index 905cfe4..0000000 --- a/bin/kitty.completion.bash +++ /dev/null @@ -1,15 +0,0 @@ - -_kitty_completions() { - local src - local limit - # Send all words up to the word the cursor is currently on - let limit=1+$COMP_CWORD - src=$(printf "%s -" "${COMP_WORDS[@]: 0:$limit}" | kitty +complete bash) - if [[ $? == 0 ]]; then - eval ${src} - fi -} - -complete -o nospace -F _kitty_completions kitty - diff --git a/bin/make-m4b.sh b/bin/make-m4b.sh deleted file mode 100755 index 7cdd7b3..0000000 --- a/bin/make-m4b.sh +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -ffmpeg -i "concat:$(ls -1 *.mp3 | paste -sd "|" -)" -c:a aac -b:a 64k -f mp4 o.mp4