aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/home/.local/bin/vibe
diff options
context:
space:
mode:
authorLibravatar sommerfeld <[email protected]>2026-04-17 10:54:01 +0100
committerLibravatar sommerfeld <[email protected]>2026-04-17 10:54:01 +0100
commit5252d5e19e0397a93c9686698961c9e9754370fe (patch)
tree160b98301d77852af60e6aff1986fb85c81646dd /home/.local/bin/vibe
parent48121c013af862be9daca4757beb93f97e021163 (diff)
downloaddotfiles-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-xhome/.local/bin/vibe15
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"