mirror of
https://github.com/m-housh/dotfiles.git
synced 2026-02-14 22:22:40 +00:00
8 lines
102 B
Bash
Executable File
8 lines
102 B
Bash
Executable File
#!/bin/zsh
|
|
|
|
function clean-screenshots() {
|
|
for file in "$SCREENSHOTS"/*; do
|
|
rm "$file"
|
|
done
|
|
}
|