Add touchpad workspace-swipe gestures, pacman/yay aliases, re-enable breadhelp package, fix identity URLs
Some checks failed
Mirror to GitHub / mirror (push) Failing after 3s
Build and publish calamares / calamares (push) Failing after 3m2s
Build and release ISO / release-iso (push) Successful in 11m52s

This commit is contained in:
Breadway 2026-07-19 03:08:24 +08:00
parent d826fd0576
commit c24202cff1
7 changed files with 29 additions and 12 deletions

View file

@ -9,10 +9,10 @@ strings:
versionedName: "BOS (rolling)"
shortVersionedName: "BOS"
bootloaderEntryName: "BOS"
productUrl: "https://github.com/Breadway/bos"
supportUrl: "https://github.com/Breadway/bos/issues"
knownIssuesUrl: "https://github.com/Breadway/bos/issues"
releaseNotesUrl: "https://github.com/Breadway/bos/releases"
productUrl: "https://git.breadway.dev/Breadway/bos"
supportUrl: "https://git.breadway.dev/Breadway/bos/issues"
knownIssuesUrl: "https://git.breadway.dev/Breadway/bos/issues"
releaseNotesUrl: "https://git.breadway.dev/Breadway/bos/releases"
images:
productLogo: "logo.png"

View file

@ -112,6 +112,19 @@ local function build_hl_config(v)
dwindle = { preserve_split = true },
animations = { enabled = true },
misc = { disable_hyprland_logo = true, disable_splash_rendering = true },
-- 3-finger touchpad swipe switches workspaces (touchscreen/touchpad
-- gesture, native to Hyprland — no plugin needed).
gestures = {
workspace_swipe = true,
workspace_swipe_fingers = 3,
workspace_swipe_distance = 300,
workspace_swipe_invert = true,
workspace_swipe_min_speed_to_force = 30,
workspace_swipe_cancel_ratio = 0.5,
workspace_swipe_create_new = true,
workspace_swipe_direction_lock = true,
workspace_swipe_forever = false,
},
}
end

View file

@ -81,6 +81,14 @@ alias ip='ip --color=auto'
alias update='bos-update'
alias pacman='sudo pacman'
# Package shortcuts — official repos via pacman, AUR via yay (alt-* prefix).
alias install='sudo pacman -S'
alias uninstall='sudo pacman -R'
alias srchpkg='sudo pacman -Ss'
alias alt-install='yay -S'
alias alt-uninstall='yay -R'
alias alt-srchpkg='yay -Ss'
# ~/.local/bin holds the bread* binaries baked in at build time.
export PATH="$HOME/.local/bin:$PATH"