Compare commits

...

2 commits

Author SHA1 Message Date
5dd0c868dc
Add osz import helper 2024-04-19 21:16:01 +02:00
04e878da68
MAKE RM ASK EVERY TIME 2024-04-19 21:15:47 +02:00

View file

@ -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() {