mirror of
https://github.com/AquaMorph/dotfiles.git
synced 2025-04-29 17:25:34 +00:00
Compare commits
2 Commits
19bd5c6dc8
...
0e5fd8a923
Author | SHA1 | Date | |
---|---|---|---|
0e5fd8a923 | |||
67be4e0b36 |
@ -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 \
|
||||
|
9
scripts/installers/zsh-install.sh
Executable file
9
scripts/installers/zsh-install.sh
Executable 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)
|
Loading…
x
Reference in New Issue
Block a user