Files
zsh-plugins/linux/linux.plugin.zsh
2020-09-29 09:59:44 -04:00

15 lines
152 B
Bash

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