diff options
| author | Omar Magdy <omar.professional8777@gmail.com> | 2022-05-30 00:12:11 +0200 |
|---|---|---|
| committer | Omar Magdy <omar.professional8777@gmail.com> | 2022-05-30 00:12:11 +0200 |
| commit | 8f5ab51dcce5554153903314c43b931ba7ebfbef (patch) | |
| tree | b80336de51d17646256f5b637046b1d97d11e749 /scripts/.scripts/cleanup.sh | |
| parent | 491c1bf7bfeb03fab156c1464d57292409059a94 (diff) | |
| download | dotfiles-8f5ab51dcce5554153903314c43b931ba7ebfbef.tar.xz dotfiles-8f5ab51dcce5554153903314c43b931ba7ebfbef.zip | |
Editted rc.lua and turned off the functionality that allows mouse scroll to switch beteween workspaces and also added a new script cleanup.sh and tweaked some scripts
Diffstat (limited to 'scripts/.scripts/cleanup.sh')
| -rwxr-xr-x | scripts/.scripts/cleanup.sh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/scripts/.scripts/cleanup.sh b/scripts/.scripts/cleanup.sh new file mode 100755 index 0000000..9299f4f --- /dev/null +++ b/scripts/.scripts/cleanup.sh @@ -0,0 +1,11 @@ +#!/bin/sh + +files=$(fd --extension cpp | sed 's/\.\///') + +for file in $files +do + tmp=$(echo $file | sed 's/.cpp//') + mkdir $tmp + mv $file $tmp +done + |
