Mercurial > dotfiles
view .chezmoiscripts/run_onchange_after_14-install-ubuntu-packages.sh.tmpl @ 1082:f27c3aa3233c draft
feat: update mercurial to 6.9.2
author | Zeger Van de Vannet <zeger@vandevan.net> |
---|---|
date | Sat, 22 Feb 2025 17:53:59 +0100 |
parents | 04ad0b576298 |
children | 6a132d60cb29 |
line wrap: on
line source
{{ if eq .chezmoi.os "linux" -}} {{ if eq .chezmoi.osRelease.name "Ubuntu" -}} {{ $packages := list "build-essential" "libsqlite3-dev" "libreadline-dev" "libbz2-dev" "libncurses-dev" "zlib1g-dev" "libffi-dev" "libssl-dev" "software-properties-common" "fd-find" "ripgrep" "jq" "pass" "apt-file" "fonts-firacode" "kitty" "yodl" "libevent-core-2.1-7" "libevent-dev" "pipx" "bison" "flex" "libnotify4" "autoconf" -}} {{ $ppa := list "ppa:maveonair/helix-editor" "ppa:mozillateam/ppa" "ppa:fish-shell/release-3" -}} {{ $extra_packages := list "helix" "firefox" "fish" -}} #!/usr/bin/env bash set -xe sudo apt install -y {{ $packages | join " "}} {{ range $ppa }} sudo add-apt-repository -y --no-update --ppa {{ . }} {{ end }} sudo mkdir -p /etc/apt/preferences.d/ sudo cp -v {{ .chezmoi.sourceDir }}/system/ubuntu/mozilla-firefox /etc/apt/preferences.d/mozilla-firefox sudo apt update sudo apt install -y {{ $extra_packages | join " " }} sudo update-alternatives --set x-terminal-emulator /usr/bin/kitty {{- end }} {{- end }}