[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
-3
View File
@@ -117,9 +117,6 @@ bindd = $mainMod Shift, T, $d terminal emulator , exec, alacritty
bindd = Control Alt, T, $d terminal emulator , exec, $TERMINAL
# bindd = Control Shift, Alt, T, $d terminal emulator , exec, tilix # launch tilix terminal emulator - using for ssh
bindd = $mainMod Control, T, $d terminal emulator, exec, tilix # launch tilix terminal emulator
# bindd = $mainMod, R, $d pyradio, exec, $TERMINAL pyradio #radio
bindd = $mainMod, I, $d work, exec, kitty --session ~/.config/kitty/c2.conf
bindd = $mainMod, O, $d work, exec, kitty --session ~/.config/kitty/runners.conf
bindd = $mainMod, R, $d pyradio, exec, kitty --session ~/.config/kitty/music.conf
bindd = $mainMod, E, $d file explorer , exec, $EXPLORER
bindd = $mainMod, C, $d neovim, exec, $TERMINAL nvim #editor
+3 -3
View File
@@ -200,13 +200,13 @@ window#waybar.empty #custom-sr_end {
}
window#waybar.cavabar {
background: transparent;
/* background: transparent; */
background: alpha(@main-bg, 0.1);
}
window#waybar.cavabar #custom-cava {
font-size: 24px;
color: alpha(@main-fg, 0.7);
background: rgba(0, 0, 0, 0.2);
color: alpha(@main-fg, 0.5);
margin: 0px;
padding: 0px;
}