Compare commits

...

3 commits

Author SHA1 Message Date
b3ddfd1615
nix: update flake sources to c2a0396 2025-10-11 22:38:08 +11:00
d12ad9533e
applications(darwin): add zen 2025-10-11 22:38:08 +11:00
002bc26da7
sketchybar: put workspaces at leftmost of bar
order on left is: workspaces, window name, music
2025-10-11 22:38:08 +11:00
3 changed files with 17 additions and 16 deletions

18
flake.lock generated
View file

@ -137,11 +137,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1759387127, "lastModified": 1759815224,
"narHash": "sha256-uuwJAP92SkHmnI1zo7rrK/gEuHtb97vFZcMa5w+0SZA=", "narHash": "sha256-HbdOyjqHm38j6o5mV24i0bn+r5ykS+VJBnWJuZ0fE+A=",
"owner": "Jovian-Experiments", "owner": "Jovian-Experiments",
"repo": "Jovian-NixOS", "repo": "Jovian-NixOS",
"rev": "0cc290e05882745060fccfe6d7d073f913e0cce7", "rev": "ee974f496a080c61b3164992c850f43741edcc52",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -225,11 +225,11 @@
"nixpkgs": "nixpkgs" "nixpkgs": "nixpkgs"
}, },
"locked": { "locked": {
"lastModified": 1758765258, "lastModified": 1760147325,
"narHash": "sha256-orU21BYUJn/7zMhIYbY7T5EDqZ8NtRMSH/f8Qtu047Q=", "narHash": "sha256-mBHP1GhvuRE/n8ZXh1lfh+Tn+5oOwB2zCuoPs2mM7IQ=",
"owner": "Infinidoge", "owner": "Infinidoge",
"repo": "nix-minecraft", "repo": "nix-minecraft",
"rev": "5a6c66b90ab4519b7578b54300abc308008c544e", "rev": "701fd12530b71a059e7a130fb58b28cb15c38bfb",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -272,11 +272,11 @@
}, },
"nixpkgs_2": { "nixpkgs_2": {
"locked": { "locked": {
"lastModified": 1759381078, "lastModified": 1760038930,
"narHash": "sha256-gTrEEp5gEspIcCOx9PD8kMaF1iEmfBcTbO0Jag2QhQs=", "narHash": "sha256-Oncbh0UmHjSlxO7ErQDM3KM0A5/Znfofj2BSzlHLeVw=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "7df7ff7d8e00218376575f0acdcc5d66741351ee", "rev": "0b4defa2584313f3b781240b29d61f6f9f7e0df3",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -5,7 +5,7 @@
# dock # dock
system.defaults.dock.persistent-apps = [ system.defaults.dock.persistent-apps = [
"/Applications/Firefox.app" "/Applications/Zen.app"
"/Applications/Ghostty.app" "/Applications/Ghostty.app"
"/System/Applications/Music.app" "/System/Applications/Music.app"
"/Applications/1Password.app" "/Applications/1Password.app"
@ -39,6 +39,7 @@
enable = true; enable = true;
onActivation.cleanup = "zap"; onActivation.cleanup = "zap";
casks = [ casks = [
"zen"
"firefox" "firefox"
"ghostty" "ghostty"
"krita" "krita"

View file

@ -46,12 +46,6 @@ sketchybar --default "${default[@]}"
# Adding Left Items # Adding Left Items
# #
# Focused window title
sketchybar --add item front_app left \
--set front_app icon="󱂬 " \
script="$PLUGIN_DIR/front_app.sh" \
--subscribe front_app front_app_switched \
# Aerospace workspace indicators # Aerospace workspace indicators
sketchybar --add event aerospace_workspace_change sketchybar --add event aerospace_workspace_change
for sid in $(aerospace list-workspaces --all); do for sid in $(aerospace list-workspaces --all); do
@ -72,6 +66,12 @@ for sid in $(aerospace list-workspaces --all); do
done done
# background.corner_radius=0 \ # background.corner_radius=0 \
# Focused window title
sketchybar --add item front_app left \
--set front_app icon="󱂬 " \
script="$PLUGIN_DIR/front_app.sh" \
--subscribe front_app front_app_switched \
# Currently playing music status (only works for Music.app) # Currently playing music status (only works for Music.app)
sketchybar --add item music left \ sketchybar --add item music left \
--set music icon="󰎇 " update_freq=10 \ --set music icon="󰎇 " update_freq=10 \