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 | |
# Arch Linux Post-Installation Script for Wayland | |
# Author: Speyll | |
# Last update: 20-03-2025 | |
set -e # Exit on error | |
# Update system | |
sudo pacman -Syu --noconfirm |
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/sh | |
# Debian Linux Post-Installation Script for Wayland | |
# Author: Speyll | |
# Last-update: 11-12-2024 | |
# NOTE: As of Debian 12 (Bookworm Stable), while Waybar and Neovim settings function, | |
# the Waybar height is misconfigured and Lua scripts for Neovim fail to load due to outdated packages. | |
# For improved compatibility, consider using the Testing branch. Future Debian versions may not require this adjustment. | |
# Enable debugging output and exit on error |
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/sh | |
# Void Linux Post-Installation Script for Wayland | |
# Author: Speyll | |
# Last-update: 20-03-2025 | |
# Enable debugging output and exit on error | |
set -x | |
# Add multilib and nonfree repositories | |
sudo xbps-install -Sy void-repo-nonfree |