Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 1 addition & 24 deletions profiles/linux-dev/workstation-v0/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,7 @@ install_system(){
}

install_brew(){
err "brew not found. Install Homebrew/Linuxbrew, then re-run."
err "macOS: https://brew.sh"
err "Linuxbrew: https://docs.brew.sh/Homebrew-on-Linux"
err "brew not found. Install brew first, then re-run."
exit 2
}

Expand Down Expand Up @@ -107,27 +105,6 @@ apply_palette_hotkey(){
fi
}

# Legacy functions retained for backwards compatibility. Not invoked.
apply_albert_install(){
local script="$PROFILE_DIR/gnome/albert-install.sh"
if [[ -x "$script" ]]; then
info "Installing Albert (best-effort)"
"$script" || warn "Albert install failed (non-fatal)"
else
warn "Albert install script not found: $script"
fi
}

apply_albert_hotkey(){
local script="$PROFILE_DIR/gnome/albert-hotkey.sh"
if [[ -x "$script" ]]; then
info "Setting Albert hotkey (best-effort)"
"$script" || warn "Albert hotkey setup failed (non-fatal)"
else
warn "Albert hotkey script not found: $script"
fi
}

main(){
[[ -f "$MANIFEST" ]] || { err "manifest missing: $MANIFEST"; exit 2; }
install_system
Expand Down