mirror of
https://github.com/owenlejeune/zsh-plugins.git
synced 2025-11-17 21:10:54 -05:00
15 lines
152 B
Bash
Executable File
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 $@
|
|
}
|