17 lines
280 B
Bash
Executable file
17 lines
280 B
Bash
Executable file
#!/bin/sh
|
|
|
|
clean(){
|
|
rm ~/.bash*
|
|
rm ~/.fehbg
|
|
rm ~/.lesshst
|
|
rm ~/.python*
|
|
rm ~/.Xauthority
|
|
rm ~/*png
|
|
rm ~/Desktop -rf
|
|
rm ~/Downloads/* -rf
|
|
rm ~/.screenlayout -rf
|
|
rm ~/.node_repl_history
|
|
rm ~/.wget-hsts
|
|
}
|
|
|
|
alias clean='clean 2> /dev/null'
|