clone of my dotfiles.ssp.sh
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

add

+9 -2
+1 -1
hypr/.config/hypr/hyprsunset.conf
··· 6 6 } 7 7 8 8 profile { 9 - time = 20:30 9 + time = 21:30 10 10 temperature = 2800 11 11 gamma = 0.8 12 12 }
+1 -1
neomd/.config/neomd/config.toml
··· 1 - # auto_bcc = "sspaeti@hey.com" 1 + auto_bcc = "simon.spaeti@gmail.com" 2 2 3 3 [[accounts]] 4 4 name = "Personal"
+7
zsh/.dotfiles/zsh/configs.shrc
··· 83 83 } 84 84 zle -N fzfvim-widget 85 85 bindkey '^G' fzfvim-widget 86 + 87 + purge-cdn() { 88 + if [ -z "$BUNNY_API_KEY" ]; then echo "BUNNY_API_KEY not set"; return 1; fi 89 + local url="https://www.${1}" 90 + curl -s -X POST "https://api.bunny.net/purge?url=${url}&async=true" \ 91 + -H "AccessKey: $BUNNY_API_KEY" && echo "Purged: $url" 92 + }