Compare commits

...

2 Commits

Author SHA1 Message Date
0e5fd8a923 yabridge install wine-staging 2022-08-27 20:05:20 -04:00
67be4e0b36 zsh install script 2022-08-27 19:02:54 -04:00
2 changed files with 18 additions and 0 deletions

View File

@ -5,6 +5,15 @@
# Import library
source $(dirname ${BASH_SOURCE[0]})/install-lib.sh
# Install wine if not already installed
if ! command -v wine &> /dev/null; then
if command -v dnf &> /dev/null; then
sudo dnf config-manager --add-repo \
https://dl.winehq.org/wine-builds/fedora/36/winehq.repo
fi
sudo $(packageManager) install winehq-staging
fi
program=yabridgectl
programVersion=$(yabridgectl --help | filterVersion)
url=$(curl -s https://github.com/robbert-vdh/yabridge/releases/ | grep .tar.gz \

View File

@ -0,0 +1,9 @@
#!/usr/bin/env bash
# Install and set zsh as the default shell.
# Import library
source $(dirname ${BASH_SOURCE[0]})/install-lib.sh
sudo $(packageManager) install zsh
chsh -s $(which zsh)