diff options
| author | 2026-04-17 10:54:01 +0100 | |
|---|---|---|
| committer | 2026-04-17 10:54:01 +0100 | |
| commit | 5252d5e19e0397a93c9686698961c9e9754370fe (patch) | |
| tree | 160b98301d77852af60e6aff1986fb85c81646dd /home/.local/bin/vibe | |
| parent | 48121c013af862be9daca4757beb93f97e021163 (diff) | |
| download | dotfiles-5252d5e19e0397a93c9686698961c9e9754370fe.tar.gz dotfiles-5252d5e19e0397a93c9686698961c9e9754370fe.tar.bz2 dotfiles-5252d5e19e0397a93c9686698961c9e9754370fe.zip | |
chore: remove X11-only scripts replaced by sway/wayland
- input-setup: replaced by sway input blocks
- display-setup: replaced by sway output config + display-toggle.sh
- launch-polybar: replaced by waybar
- locknpause: replaced by swaylock
- vibe: removed (xclip + xdotool, no wayland use case)
- automute: removed (xdotool focus tracking, no wayland use case)
Diffstat (limited to 'home/.local/bin/vibe')
| -rwxr-xr-x | home/.local/bin/vibe | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/home/.local/bin/vibe b/home/.local/bin/vibe deleted file mode 100755 index b3bbd42..0000000 --- a/home/.local/bin/vibe +++ /dev/null @@ -1,15 +0,0 @@ -#!/usr/bin/env sh - -output_file=$(mktemp) -model_path="/usr/share/whisper.cpp-model-large-v3-turbo/ggml-large-v3-turbo.bin" -whisper-stream --model "$model_path" --threads 16 -f "$output_file" & -pid="$!" - -while [ ! -s "$FILE" ]; do - sleep 0.1 -done - -read -r line < "$output_file" -kill "$pid" -printf '%s' "$line" | xclip -selection clipboard -f -xdotool type "$line" |
