distro_like

This commit is contained in:
pvincent
2026-08-08 12:25:51 +04:00
parent 9dbe304228
commit 91cd247e39
3 changed files with 17 additions and 2 deletions
+1 -2
View File
@@ -31,8 +31,7 @@ Any feedback would be appreciated.
## install
```bash
curl -s https://git.artcode.re/miaou/miaou-bash/raw/branch/main/install.sh \
| sudo bash && source /etc/bash.bashrc
curl -s https://git.artcode.re/miaou/miaou-bash/raw/branch/main/install.sh | sudo bash && exec bash
```
## upgrade
+11
View File
@@ -49,6 +49,17 @@ function _pluralize_simple {
## READ Functions
## ==============
function fetch_distro_like {
if grep -qE '^ID=debian|^ID_LIKE=debian' /etc/os-release; then
echo debian
elif grep -qE '^ID=arch|^ID_LIKE=arch' /etc/os-release; then
echo arch
else
echo -n 'unsupported distro: '
grep ^ID= /etc/os-release | cut -d= -f2
fi
}
function _confirm_destructive {
local message="${1:-This cannot be undone!}"
echo "⚠️ WARNING: $message"
+5
View File
@@ -54,6 +54,9 @@ function link_etc {
function link_config_files {
link_etc bash.bashrc
link_etc inputrc
[[ "$DISTRO_LIKE" == arch ]] && mkdir -p /etc/vim
link_etc vimrc.core vim
link_etc vimrc.miaou vim
link_etc vimrc.rookie vim
@@ -80,6 +83,8 @@ function in_azerty_zone {
[ "$UID" -ne 0 ] && echo 'root privilege required' && exit 1
source "$MIAOU_BASH_DIR/lib/functions.bash"
DISTRO_LIKE=$(fetch_distro_like)
required_packages
no_more_skeleton
link_config_files