43 lines
1.0 KiB
Markdown
43 lines
1.0 KiB
Markdown
# Eget: установка программ из архивов
|
|
|
|
# Установка Eget
|
|
|
|
```sh
|
|
sudo apt install curl
|
|
mkdir -p ~/.local/bin && cd ~/.local/bin && curl https://zyedidia.github.io/eget.sh | sh
|
|
```
|
|
|
|
# Настройка Eget
|
|
|
|
```sh
|
|
curl -o ~/.eget.toml https://git.246060.ru/config/eget/raw/branch/master/eget.toml
|
|
```
|
|
|
|
# Установка программ
|
|
|
|
```sh
|
|
eget tj/git-extras
|
|
eget paulirish/git-open
|
|
eget jesseduffield/lazygit
|
|
eget jesseduffield/lazydocker
|
|
eget BurntSushi/ripgrep
|
|
eget junegunn/fzf
|
|
eget sharkdp/fd
|
|
eget sharkdp/bat
|
|
eget sharkdp/hyperfine
|
|
eget dbrgn/tealdeer
|
|
eget denisidoro/navi
|
|
eget jgm/pandoc
|
|
eget yt-dlp/yt-dlp
|
|
eget dundee/gdu
|
|
eget dandavison/delta
|
|
eget albfan/bash-ini-parser
|
|
```
|
|
|
|
Если определена переменная окружения `EGET_CONFIG`, то можно установить все
|
|
перечисленные в файле настроек программы командой:
|
|
|
|
```sh
|
|
grep '\[".*\/.*"\]' $EGET_CONFIG | tr -d '[]"' | xargs -L 1 eget
|
|
```
|