Compare commits
2 commits
ed83a74b30
...
5dd0c868dc
Author | SHA1 | Date | |
---|---|---|---|
5dd0c868dc | |||
04e878da68 |
1 changed files with 16 additions and 0 deletions
|
@ -9,6 +9,22 @@ alias "fireplace=$(which fireplace) -f 60 -t 13"
|
|||
alias "quote=fortune -s linux debian|cowsay"
|
||||
alias "besseretests=godot --headless -d -v -s --path . addons/besseretests/src/cmd.gd"
|
||||
alias "besseretests-gui=godot -d -v -s --path . addons/besseretests/src/cmd.gd"
|
||||
alias "rm=rm -ri"
|
||||
function osu-oszimport() {
|
||||
if [ ! -f "${HOME}/.cache/osu.AppImage" ]; then
|
||||
echo "--> Could not find ~/.cache/osu.AppImage"
|
||||
echo " Please download and start osu! using osu!boot first."
|
||||
else
|
||||
for file in *.osz; do
|
||||
if [ "${file}" == "*.osz" ]; then
|
||||
echo "--> No .osz file has been found"
|
||||
else
|
||||
echo "--> Importing ${file}"
|
||||
~/.cache/osu.AppImage "${file}"
|
||||
fi
|
||||
done
|
||||
fi
|
||||
}
|
||||
export "RUSTFLAGS=-Z threads=$(nproc)"
|
||||
export "EDITOR=nano"
|
||||
function cleanhome() {
|
||||
|
|
Loading…
Reference in a new issue