diff options
author | Saumit Dinesan <justsaumit@protonmail.com> | 2022-07-05 11:18:09 +0530 |
---|---|---|
committer | Saumit Dinesan <justsaumit@protonmail.com> | 2022-07-05 11:18:09 +0530 |
commit | 5a9f4d37f4ed192d84b27472a1ad84cf6db13cd7 (patch) | |
tree | 2cb501a9295144a3871dc1d6be2f87188bfa37e4 /.scripts | |
parent | 7631fefc29e95a89d9a6c243456af6e7a43b1801 (diff) |
sxhkd dmenukill keybinding changes+mpv wheel speed control+order script
Diffstat (limited to '.scripts')
-rw-r--r-- | .scripts/order | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.scripts/order b/.scripts/order new file mode 100644 index 0000000..155e039 --- /dev/null +++ b/.scripts/order @@ -0,0 +1,14 @@ +#!/bin/sh + +noofdirs=$(find . -mindepth 1 -maxdepth 1 -type d | wc -l) +lenofnod=$(echo -n "$noofdirs" | wc -m) ## Flag n to prevent newline count + +for f in * ; +do mv -n "$f" "$(date -r "$f" +"%Y%m%d_%H%M%S")_$f"; +done + +#open in vimv +#let @a=1 | g/^.\{0,16}/s//\=i.'.' | let i=i+1 +#add zeroes in front if lenofnod = 1 +#add zeroes in front if lenofnod = 2 + |