Skip to content

Instantly share code, notes, and snippets.

@muness
muness / debolat.sh
Last active January 5, 2026 02:17
Bigme Hibreak Pro debloat script
#!/bin/bash
# Bigme Hibreak Pro Debloat Script
# Safe to disable packages
safe_packages=(
"com.xrz.ai"
"com.xrz.dictapp"
"com.b300.xrz.web"
"com.xrz.soundrecord"
@muness
muness / 0 tiling on mac README.md
Last active November 27, 2025 17:21
macos tiling window manager cheatsheet

Notes

I've wanted a clean tiling WM setup on my mac for years. This finally works for me:

  • Yabai for tiling
  • Ghostty for a fast terminal
  • Zellij for panes and tabs
  • JankyBorders for a clear focus highlight
  • A Raycast extension for quick layout toggles and restarts
  • skhd-zig for simple hotkeys
@muness
muness / tamper.js
Created December 17, 2025 18:52
Google Cloud Console Project + User default
// ==UserScript==
// @name GCP Auto Project & User Selector
// @namespace http://tampermonkey.net/
// @version 1.0
// @description Automatically sets the project and authuser in GCP Console URLs
// @author You
// @match https://console.cloud.google.com/*
// @grant none
// @run-at document-start
// ==/UserScript==
@muness
muness / recover-stacks.sh
Created January 10, 2026 12:34
Recover running Docker containers as Dockge stacks
#!/bin/bash
# Recover running containers as Dockge stacks
STACKS_DIR="${1:-/share/Container/stacks}"
mkdir -p "$STACKS_DIR"
# Get all running containers (excluding dockge itself)
containers=$(docker ps --format '{{.Names}}' | grep -v dockge)
for container in $containers; do