diff options
author | Freya Murphy <freya@freyacat.org> | 2024-10-18 00:04:03 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2024-10-18 00:04:03 -0400 |
commit | de5b3744903ac290199963b4339036cf13423453 (patch) | |
tree | bdb0ccf3b1fc13c7c817d01fced2b0ab211576ac /home/config/zsh/zshrc | |
parent | update channels (diff) | |
download | dotfiles-guix-de5b3744903ac290199963b4339036cf13423453.tar.gz dotfiles-guix-de5b3744903ac290199963b4339036cf13423453.tar.bz2 dotfiles-guix-de5b3744903ac290199963b4339036cf13423453.zip |
merge dots updates from arch laptop
Diffstat (limited to 'home/config/zsh/zshrc')
-rw-r--r-- | home/config/zsh/zshrc | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/home/config/zsh/zshrc b/home/config/zsh/zshrc index 3dc32ef..7fe8642 100644 --- a/home/config/zsh/zshrc +++ b/home/config/zsh/zshrc @@ -101,6 +101,17 @@ _wine() { alias wine32="_wine 32" alias wine64="_wine 64" +_winetricks() { + export WINEPREFIX="$HOME/.wine$1" + export WINEARCH="win$1" + /usr/bin/winetricks "${@:2}" + unset WINEARCH + unset WINEPREFIX +} + +alias winetricks32="_winetricks 32" +alias winetricks64="_winetricks 64" + proton() { if [ $# -lt 1 ]; then return |