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 bash | |
# | |
# Universal Icon Theme Installer for VinceLiuice themes | |
# | |
set -e | |
# ------------------- | |
# Config & Defaults | |
# ------------------- |
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
#!/bin/bash | |
set -e | |
# Install prerequisites | |
echo "Installing required packages..." | |
sudo zypper install -y zsh git curl | |
# Clone Oh My Zsh globally | |
echo "Cloning Oh My Zsh into /opt/oh-my-zsh..." |