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 python3 | |
| """ | |
| opinstall | |
| ========= | |
| A pacman wrapper that handles optional dependencies intelligently. | |
| :goals: | |
| - **Install with awareness**: interactively present optional deps for | |
| every package in a resolved transaction, letting the user cherry-pick |
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
| { | |
| description = "Catalina-Safe Nix + Unstable Packages"; | |
| inputs = { | |
| nixpkgs-stable.url = "github:NixOS/nixpkgs/nixos-24.11"; | |
| nix-darwin.url = "github:nix-darwin/nix-darwin/nix-darwin-24.11"; | |
| nix-darwin.inputs.nixpkgs.follows = "nixpkgs-stable"; | |
| nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; | |
| }; | |
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 | |
| # NOTE: Install gtk-nocsd-git from AUR first | |
| set -euo pipefail | |
| readonly WRAPPER_PATH="/usr/local/bin/gtk-nocsd-wrapper" | |
| readonly DEST_DIR="${HOME}/.local/share/applications" | |
| # ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ |
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 | |
| set -euo pipefail | |
| BASE_DIR="/srv/xlibre/website/chimera/main/x86_64" | |
| PORT=47188 | |
| REPO_URL="http://localhost:$PORT/website/chimera/main" | |
| APK_REPOS="/etc/apk/repositories" | |
| # Check for root privileges |