add plugin for linux

This commit is contained in:
2020-09-29 09:59:44 -04:00
parent a32f50b808
commit 24796df740

14
linux/linux.plugin.zsh Normal file
View File

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