remove old scripts
parent
290728b4af
commit
3d602496d2
|
@ -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
|
|
@ -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
|
||||
|
|
@ -1,2 +0,0 @@
|
|||
#!/bin/bash
|
||||
ffmpeg -i "concat:$(ls -1 *.mp3 | paste -sd "|" -)" -c:a aac -b:a 64k -f mp4 o.mp4
|
Reference in New Issue