Skip to content

Instantly share code, notes, and snippets.

@0xSmartis
0xSmartis / patch-omarchy-arm-packages.sh
Last active April 30, 2026 13:53
Patch Omarchy ARM
#!/usr/bin/env bash
set -euo pipefail
cd "$HOME/.local/share/omarchy"
REMOVE_LIST="/tmp/remove-arm-missing.txt"
PATCH_FILES="/tmp/omarchy-patch-files.txt"
cat > "$REMOVE_LIST" <<'PKGS'
1password-beta
@0xSmartis
0xSmartis / Create-dotnet-sln.sh
Created September 21, 2023 12:12
Bash script for creating a dotnet solution with console and dll
#!/bin/bash
# Get the name from the input
name=$1
# Create Output folder from name and move into it
mkdir $name
cd $name
# Create a new solution