summaryrefslogtreecommitdiff
path: root/dotfiles/common/.local/bin
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2026-02-08 21:34:07 -0600
committerCraig Jennings <c@cjennings.net>2026-02-08 21:34:07 -0600
commit54566b220c4310e7887cf7543053cee5e40a329a (patch)
tree07a397692e912da9efefa9159d5ecc63efafbafd /dotfiles/common/.local/bin
parent0ae72d5ae238066eb0feba650820792c0f84a0c6 (diff)
feat(archsetup): add slack with Wayland/DWM conditional
Add slack-desktop-wayland for Hyprland, slack-desktop for DWM. Update Claude startup prompts, fix Hyprland portal/waybar startup order, add signal-desktop Wayland .desktop override.
Diffstat (limited to 'dotfiles/common/.local/bin')
-rwxr-xr-xdotfiles/common/.local/bin/ai-assistants2
-rwxr-xr-xdotfiles/common/.local/bin/aix8
2 files changed, 5 insertions, 5 deletions
diff --git a/dotfiles/common/.local/bin/ai-assistants b/dotfiles/common/.local/bin/ai-assistants
index 51028fe..3b4d80e 100755
--- a/dotfiles/common/.local/bin/ai-assistants
+++ b/dotfiles/common/.local/bin/ai-assistants
@@ -21,7 +21,7 @@ projects=(
)
# Claude command to run in each window
-CLAUDE_CMD='claude "Read docs/protocols.org and docs/NOTES.org, follow instructions exactly, then begin the session-start workflow"'
+CLAUDE_CMD='claude "Read docs/protocols.org and follow all instructions."'
# Create session with first project
first="${projects[0]}"
diff --git a/dotfiles/common/.local/bin/aix b/dotfiles/common/.local/bin/aix
index 0f70d23..35cab64 100755
--- a/dotfiles/common/.local/bin/aix
+++ b/dotfiles/common/.local/bin/aix
@@ -1,7 +1,7 @@
#!/bin/bash
-# Launch tmux session with Claude in fzf-selected project directories
+# Launch tmux session with an LLM in fzf-selected project directories
-SESSION="claude"
+SESSION="ai"
# If session exists, attach or switch to it
if tmux has-session -t "$SESSION" 2>/dev/null; then
@@ -41,13 +41,13 @@ selections=$(printf '%s\n' "${candidates[@]}" | fzf --multi --height=70% --rever
# Claude command — separated for safe editing
AI_CMD="claude"
-AI_INSTRUCTIONS='Read docs/protocols.org and docs/NOTES.org, follow instructions exactly, then begin the session-start workflow'
+AI_INSTRUCTIONS='Read docs/protocols.org and follow all instructions.'
# Read selections into array
selected=()
while IFS= read -r line; do
selected+=("$line")
-done <<< "$selections"
+done <<<"$selections"
# Create session with first selection
first="${selected[0]}"