29 lines
874 B
Bash
Executable file
29 lines
874 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# shellcheck disable=SC2139
|
|
|
|
# StarOpenSource Development
|
|
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"
|
|
|
|
# Safety
|
|
alias "rm=rm -ri"
|
|
|
|
# CPU Governor
|
|
alias "finfo=sudo cpupower frequency-info"
|
|
alias "fset=sudo cpupower frequency-set -g"
|
|
|
|
# Fun ;)
|
|
alias "fireplace=$(which fireplace) -f 60 -t 13"
|
|
alias "quote=fortune -s linux debian|cowsay"
|
|
|
|
# yt-dlp
|
|
alias "yt-dlp-audio=yt-dlp --audio-quality best --audio-format vorbis --embed-thumbnail -x"
|
|
alias "yt-dlp-video=yt-dlp --embed-thumbnail"
|
|
|
|
# Replacements
|
|
alias "ls=$(which eza) ${ARGS_EZA}"
|
|
alias "dir=$(which eza) ${ARGS_EZA}"
|
|
alias "eza=$(which eza) ${ARGS_EZA}"
|
|
alias "more=$(which moar) ${ARGS_MOAR}"
|
|
alias "less=$(which moar) ${ARGS_MOAR}"
|
|
alias "moar=$(which moar) ${ARGS_MOAR}"
|