mirror of
https://github.com/stornic56/debianito-post-install.git
synced 2026-07-16 05:49:49 +00:00
11 lines
204 B
Bash
11 lines
204 B
Bash
#!/usr/bin/env bash
|
|
# Shared helpers for extras categories
|
|
|
|
_inst() {
|
|
if is_installed "$1"; then echo " (installed)"; else echo ""; fi
|
|
}
|
|
|
|
_state() {
|
|
is_installed "$1" && echo "ON" || echo "OFF"
|
|
}
|