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 | |
| # Map workspaces to omarchy themes | |
| declare -A workspace_themes=( | |
| [1]="catppuccin" | |
| [2]="catppuccin-latte" | |
| [3]="ethereal" | |
| [4]="everforest" | |
| [5]="flexoki-light" | |
| [6]="gruvbox" |
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
| { | |
| "name": "freedom", | |
| "timestamp": 1760965601377, | |
| "palette": { | |
| "wallpaper": "", | |
| "colors": [ | |
| "#001820", | |
| "#FF5E5F", | |
| "#9b9d9a", | |
| "#FF9653", |
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
| { | |
| "name": "slowpoke", | |
| "timestamp": 1762450410528, | |
| "palette": { | |
| "wallpaper": "", | |
| "colors": [ | |
| "#0A0D0F", | |
| "#a95656", | |
| "#F3C241", | |
| "#c1ad86", |
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
| { | |
| "name": "Mushroom", | |
| "timestamp": 1761289460452, | |
| "palette": { | |
| "wallpaper": "", | |
| "colors": [ | |
| "#0F0517", | |
| "#F15166", | |
| "#44B2DF", | |
| "#FA9671", |
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
| { | |
| "name": "Zelda", | |
| "timestamp": 1761155692326, | |
| "palette": { | |
| "wallpaper": "", | |
| "colors": [ | |
| "#010401", | |
| "#bf5a7c", | |
| "#70cf6c", | |
| "#DFEC63", |
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
| return { | |
| { | |
| "bjarneo/aether.nvim", | |
| name = "aether", | |
| priority = 1000, | |
| opts = { | |
| disable_italics = false, | |
| colors = { | |
| -- Monotone shades (base00-base07) | |
| base00 = "#010401", -- Default background |
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
| { | |
| "name": "Hacker", | |
| "timestamp": 1760965387035, | |
| "palette": { | |
| "wallpaper": "", | |
| "colors": [ | |
| "#0B0C16", | |
| "#31f759", | |
| "#4fe88f", | |
| "#50f7d4", |
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
| return { | |
| { | |
| "bjarneo/aether.nvim", | |
| name = "aether", | |
| priority = 1000, | |
| opts = { | |
| disable_italics = false, | |
| colors = { | |
| -- Monotone shades (base00-base07) | |
| base00 = "#141114", -- Default background |
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 -euo pipefail | |
| # This script displays the 16 standard ANSI colors (0-15) as large squares | |
| # in two rows: first row shows colors 0-7, second row shows colors 8-15 | |
| echo "" | |
| # First row: ANSI colors 0-7 (dark colors) |
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 | |
| # Extract packages from npm.sh and search for them across the system | |
| # This script searches through package.json, yarn.lock, bun files, and node_modules | |
| # Default search paths (can be overridden with SEARCH_PATHS environment variable) | |
| DEFAULT_SEARCH_PATHS="/Users/ob907/Code" | |
| SEARCH_PATHS="${SEARCH_PATHS:-$DEFAULT_SEARCH_PATHS}" | |
| # Array of packages with versions extracted from npm.sh |
NewerOlder