[Sync] llm stuff

This commit is contained in:
Coja
2026-09-17 20:58:21 +02:00
parent ed7e34552d
commit d8f6b30e2c
52 changed files with 2233 additions and 237 deletions
+9
View File
@@ -0,0 +1,9 @@
## gui package — put HyDE's script dir on the *session* PATH: the compositor and
## everything it spawns directly (raw exec binds, terminals) resolve bare hyde
## script names through it. Nothing else adds it — HyDE only self-bootstraps PATH
## inside its own wrappers (hyde-shell/app.sh), so a bare script name execed
## outside that lineage is "command not found" (TROUBLESHOOTING.md symptom 8).
## The systemd-unit side is covered by the twin
## gui/.config/environment.d/10-hyde-path.conf — both are needed.
## No ordering constraint vs hyde.fish (it never touches this dir).
fish_add_path --global ~/.local/lib/hyde
-8
View File
@@ -1,8 +0,0 @@
## gui package — waybar helpers. Lives in conf.d/ (fish sources every conf.d/*.fish),
## NOT in host.fish: each host package ships its own host.fish, which stow deploys last
## with --override — a gui/host.fish would be shadowed on every host that has one.
# Reload the custom waybar (kill + relaunch, detached so it survives this shell).
# Same invocation as userprefs.conf exec-once / the Ctrl+Alt+W bind. Killing waybar
# also stops its cava child (cava-waybar.sh is a child of the bar).
abbr wbar 'killall waybar; setsid -f waybar -c ~/.config/waybar/layouts/custom.jsonc -s ~/.config/waybar/layouts/custom.css'
@@ -18,7 +18,7 @@
## Nothing else from hyde.fish is undone here: its aliases lose to config.fish,
## which fish loads after conf.d, and its `df` wrapper is a function we do not
## otherwise define. Delete this file if you ever decide you want starship.
for f in fish_prompt fish_right_prompt
for f in fish_prompt fish_right_prompt fish_mode_prompt
if test -r $__fish_config_dir/functions/$f.fish
source $__fish_config_dir/functions/$f.fish
end
@@ -0,0 +1,3 @@
function fish_mode_prompt --description "Displays the current vi mode"
fish_default_mode_prompt
end