Last active
December 12, 2025 05:10
-
-
Save dneumann42/a03e71f31f3b1a770abdf6d6cf9f0439 to your computer and use it in GitHub Desktop.
Bootstraps alatar desktop
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env sh | |
| # Fail fast if zypper errors | |
| set -e | |
| # Install git if needed | |
| command -v git >/dev/null 2>&1 || sudo zypper --non-interactive install git | |
| # Clone alatar repo | |
| git clone https://github.com/dneumann42/alatar.git $HOME/.alatar |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment