Files
zsh-plugins/linux/linux.plugin.zsh
2024-02-20 01:12:58 -06:00

15 lines
152 B
Bash
Executable File

alias fix-audio="pavucontrol"
function open() {
DIR="."
if [[ $# -gt 0 ]];
then
DIR="$1"
fi
gio open $DIR
}
function trash() {
gio trash $@
}