Vendor the command set the menu and shell depend on

This commit is contained in:
2026-09-19 23:57:12 -04:00
parent 9501f2bb4d
commit c5434026a8
179 changed files with 12414 additions and 54 deletions
+15
View File
@@ -0,0 +1,15 @@
#!/bin/bash
# blob:summary=Open a config file in the user's editor and surface a toast
# blob:args=<path>
# blob:examples=blob launch config-editor ~/.config/hypr/hyprland.lua
path="${1-}"
if [[ -z $path ]]; then
echo "Usage: blob-launch-config-editor <path>" >&2
exit 1
fi
blob-notify-send -u low "Editing config file" "$path"
exec blob-launch-editor "$path"