Skip to content

Commit f903e34

Browse files
committed
6/10/2026
1 parent 890eb06 commit f903e34

5 files changed

Lines changed: 14 additions & 106 deletions

File tree

home/.claude/hooks/.rtk-hook.sha256

Lines changed: 0 additions & 1 deletion
This file was deleted.

home/.claude/hooks/rtk-rewrite.sh

Lines changed: 0 additions & 98 deletions
This file was deleted.

home/.claude/settings.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,17 @@
3131
"Read(~/.claude/plugins/cache)",
3232
"Read(~/.claude/projects)"
3333
],
34+
"deny": [
35+
"Bash(*git* clean *-f*)",
36+
"Bash(*git* clean *--force*)",
37+
"Bash(*git* reset *--hard*)"
38+
],
3439
"additionalDirectories": [
3540
"~/.claude/plugins/cache",
3641
"~/.claude/projects"
3742
]
3843
},
39-
"model": "us.anthropic.claude-opus-4-6-v1",
44+
"model": "opus",
4045
"hooks": {
4146
"Notification": [
4247
{
@@ -84,7 +89,7 @@
8489
"hooks": [
8590
{
8691
"type": "command",
87-
"command": "/Users/cemmer/.claude/hooks/rtk-rewrite.sh"
92+
"command": "rtk hook claude"
8893
}
8994
]
9095
}

install.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@ function link() {
3535
if [[ ! -e "${link}" ]]; then
3636
echo -e "\033[91mDeleting broken symlink:\033[0m ${link}"
3737
rm -f "${link}"
38+
elif [[ -d "${link}" && ! -z "$(find "${link}" -mindepth 1 -print -quit)" ]]; then
39+
echo -e "\033[91mDeleting symlink to empty directory:\033[0m ${link}"
40+
rm -f "${link}"
3841
else
3942
echo -e "\033[33mIgnoring:\033[0m ${link}"
4043
continue

packages.sh

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ if [[ "${OSTYPE:-}" == "darwin"* ]]; then
4141
fi
4242
command -v jq > /dev/null || brew install jq
4343
command -v rename > /dev/null || brew install rename
44-
command -v rtk > /dev/null || brew install rtk
44+
command -v rtk > /dev/null || brew install rtk
4545
command -v terminal-notifier > /dev/null || brew install terminal-notifier
4646
command -v tree > /dev/null || brew install tree
4747
command -v watch > /dev/null || brew install watch
@@ -58,7 +58,6 @@ if [[ "${OSTYPE:-}" == "darwin"* ]]; then
5858
#echo "discord"
5959
echo "disk-expert"
6060
echo "docker-desktop"
61-
echo "feedflow"
6261
echo "firefox"
6362
echo "github"
6463
echo "hiddenbar"
@@ -99,6 +98,7 @@ if [[ "${OSTYPE:-}" == "darwin"* ]]; then
9998
echo -e "\033[33mWARN:\033[0m you may be asked for your password to run 'brew uninstall --cask'"
10099
fi
101100
for cask in $(
101+
echo "feedflow"
102102
echo "messenger"
103103
); do
104104
printf "Checking for cask '${cask}' ... "
@@ -124,10 +124,9 @@ if [[ "${OSTYPE:-}" == "darwin"* ]]; then
124124
mas upgrade
125125
mas_list=$(mas list)
126126
for app_id in $(
127-
# ----- Developer Tools -----
128-
# Xcode
129-
# echo "497799835"
130127
# ----- Applications -----
128+
# Amphetamine
129+
echo "937984704"
131130
# Kindle
132131
echo "302584613"
133132
# Menu World Time

0 commit comments

Comments
 (0)