Skip to content

Instantly share code, notes, and snippets.

View bjarneo's full-sized avatar
🏠
Working from home

bjarneo bjarneo

🏠
Working from home
View GitHub Profile
@bjarneo
bjarneo / theme-change-workspace.sh
Created December 1, 2025 16:27
Change your theme on hyprland workspace switch
#!/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"
{
"name": "freedom",
"timestamp": 1760965601377,
"palette": {
"wallpaper": "",
"colors": [
"#001820",
"#FF5E5F",
"#9b9d9a",
"#FF9653",
{
"name": "slowpoke",
"timestamp": 1762450410528,
"palette": {
"wallpaper": "",
"colors": [
"#0A0D0F",
"#a95656",
"#F3C241",
"#c1ad86",
@bjarneo
bjarneo / mushroom.json
Created October 24, 2025 07:08
Mushroom theme
{
"name": "Mushroom",
"timestamp": 1761289460452,
"palette": {
"wallpaper": "",
"colors": [
"#0F0517",
"#F15166",
"#44B2DF",
"#FA9671",
{
"name": "Zelda",
"timestamp": 1761155692326,
"palette": {
"wallpaper": "",
"colors": [
"#010401",
"#bf5a7c",
"#70cf6c",
"#DFEC63",
return {
{
"bjarneo/aether.nvim",
name = "aether",
priority = 1000,
opts = {
disable_italics = false,
colors = {
-- Monotone shades (base00-base07)
base00 = "#010401", -- Default background
@bjarneo
bjarneo / hackerman.json
Created October 20, 2025 18:05
Hackerman Blueprint for Aether
{
"name": "Hacker",
"timestamp": 1760965387035,
"palette": {
"wallpaper": "",
"colors": [
"#0B0C16",
"#31f759",
"#4fe88f",
"#50f7d4",
@bjarneo
bjarneo / .lua
Created October 12, 2025 06:13
aether.nvim with custom colors
return {
{
"bjarneo/aether.nvim",
name = "aether",
priority = 1000,
opts = {
disable_italics = false,
colors = {
-- Monotone shades (base00-base07)
base00 = "#141114", -- Default background
@bjarneo
bjarneo / .sh
Created September 25, 2025 16:40
ansi.sh
#!/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)
@bjarneo
bjarneo / package_search.sh
Last active September 17, 2025 07:19
Search for packages affected by the Shai-Halud attack
#!/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