feat(apt_search_and_install.sh): add support for fuzzy search of packages using fzf tool
feat(install_software.sh): add fzf and locales to the list of software to install, and update locale generation commands
This commit is contained in:
parent
cf57ab492d
commit
a249f93641
|
@ -0,0 +1 @@
|
|||
apt-cache search '' | sort | cut --delimiter ' ' --fields 1 | fzf --multi --cycle --reverse --preview 'apt-cache show {1}' | xargs -r sudo apt install -y
|
|
@ -29,7 +29,8 @@ obs-studio `# for screen recording` \
|
|||
python3-pip `# pip` \
|
||||
tensorrt-libs \
|
||||
bat \
|
||||
locales
|
||||
locales \
|
||||
fzf
|
||||
|
||||
sudo locale-gen ru_RU
|
||||
sudo locale-gen ru_RU.UTF-8
|
||||
|
|
Loading…
Reference in New Issue