remove old scripts

master
Andrew Coleman 2019-07-09 12:51:08 -04:00
parent 290728b4af
commit 3d602496d2
3 changed files with 0 additions and 22 deletions

View File

@ -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

View File

@ -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

View File

@ -1,2 +0,0 @@
#!/bin/bash
ffmpeg -i "concat:$(ls -1 *.mp3 | paste -sd "|" -)" -c:a aac -b:a 64k -f mp4 o.mp4