fedora upgrades

This commit is contained in:
Wryn (yage) Wagner 2025-02-04 10:49:59 -07:00
parent 498868c676
commit f5daa98dc3
Signed by: wrynegade
SSH Key Fingerprint: SHA256:zBGO05Uz1oT7pnehoPelgUmYX632oFjt3MBH0MlEvrs
2 changed files with 44 additions and 2 deletions

View File

@ -0,0 +1,42 @@
autoconf
automake
bat
binutils
bison
cmake
cowsay
feh
figlet
file
findutils
flex
fzf
gettext
go
htop
java-latest-openjdk
jq
libtool
lolcat
mono-complete
ncurses
neofetch
nodejs
npm
openssh
patch
pkg-config
python3-pip
python3-pylint
python3-virtualenv
ripgrep
rust
sed
sudo
tmux
vi
vim-enhanced
yamllint
yq
zip
zsh

View File

@ -16,7 +16,7 @@ OS__GET_OS() {
local OS_NAME=$(lsb_release -is 2>/dev/null | tr '[:upper:]' '[:lower:]')
[ ! ${OS_NAME} ] \
&& OS_NAME=$(cat /etc/os-release 2>/dev/null | grep '^ID=' | sed 's/^ID=//')
&& OS_NAME=$(cat /etc/os-release 2>/dev/null | sed -n 's/^ID=//p')
[ ! ${OS_NAME} ] \
&& WARNING 'failed to detect operating system' \
@ -128,7 +128,7 @@ INSTALL_MANAGED__generic() {
OS__MAKE_REQUIRED_RESOURCES() {
local ERRORS=0
local DIRECTORIES=(
"${XDG_CONFIG_HOME:-${HOME}.config}/wryn"
"${XDG_CONFIG_HOME:-${HOME}/.config}/wryn"
"${HOME}/.local/bin"
)