Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
e81b86a09a | |||
|
09eb7fd981 | ||
|
90d4e38687 | ||
|
b330650b57 |
14
README.md
14
README.md
@ -2,11 +2,13 @@ zenigrub-custom - A simple GTK (Zenity) or CLI interface to edit basic settings
|
||||
=========================================================================================
|
||||
|
||||
### Downloads:
|
||||
* [zenigrub-custom-1.6.tar.gz](https://github.com/q3aql/zenigrub-custom/releases/download/v1.6/zenigrub-custom-1.6.tar.gz) - Generic package (English + Spanish Languages).
|
||||
* [zenigrub-custom-1.6-en.deb](https://github.com/q3aql/zenigrub-custom/releases/download/v1.6/zenigrub-custom-1.6-en.deb) - Debian based package (English version).
|
||||
* [zenigrub-custom-1.6-en.rpm](https://github.com/q3aql/zenigrub-custom/releases/download/v1.6/zenigrub-custom-1.6-en.rpm) - RedHat/Fedora based package (English version).
|
||||
* [zenigrub-custom-1.6-es.deb](https://github.com/q3aql/zenigrub-custom/releases/download/v1.6/zenigrub-custom-1.6-es.deb) - Debian based package (Spanish version).
|
||||
* [zenigrub-custom-1.6-es.rpm](https://github.com/q3aql/zenigrub-custom/releases/download/v1.6/zenigrub-custom-1.6-es.rpm) - RedHat/Fedora based package (Spanish version).
|
||||
* [zenigrub-custom-1.6.tar.gz](https://drive.proton.me/urls/C2DT57XHFR#2jlr292SnMhb) (Generic Linux)
|
||||
* [zenigrub-custom-1.6-en.deb](https://drive.proton.me/urls/C2DT57XHFR#2jlr292SnMhb) (Debian/Ubuntu)
|
||||
* [zenigrub-custom-1.6-en.rpm](https://drive.proton.me/urls/C2DT57XHFR#2jlr292SnMhb) (RedHat/Fedora)
|
||||
* [zenigrub-custom-1.6-en.pkg.tar.zst](https://drive.proton.me/urls/C2DT57XHFR#2jlr292SnMhb) (Arch Linux)
|
||||
* [zenigrub-custom-1.6-es.deb](https://drive.proton.me/urls/C2DT57XHFR#2jlr292SnMhb) (Debian/Ubuntu - Spanish)
|
||||
* [zenigrub-custom-1.6-es.rpm](https://drive.proton.me/urls/C2DT57XHFR#2jlr292SnMhb) (RedHat/Fedora - Spanish)
|
||||
* [zenigrub-custom-1.6-es.pkg.tar.zst](https://drive.proton.me/urls/C2DT57XHFR#2jlr292SnMhb) (Arch Linux - Spanish)
|
||||
|
||||
_Dependencies: bash, coreutils, zenity, xterm, grep, sed_
|
||||
|
||||
@ -32,7 +34,7 @@ _Dependencies: bash, coreutils, zenity, xterm, grep, sed_
|
||||
|
||||
### Images (Screenshots - GUI Version)
|
||||
|
||||
<img src="https://raw.githubusercontent.com/q3aql/zenigrub-custom/main/img/zenigrub-image.png" width="876" />
|
||||

|
||||
|
||||
### CLI Version:
|
||||
|
||||
|
@ -29,6 +29,7 @@ function comprobarAdministrador() {
|
||||
administrador=$?
|
||||
if [ ${administrador} -eq 0 ] ; then
|
||||
rm -rf /etc/root
|
||||
mkdir -p ${defaultGrubFiles}
|
||||
touch ${zenigrubInit}
|
||||
else
|
||||
zenity --title "zenigrub-custom ${VERSION} (${M_DATE})" --window-icon=${iconPath} --warning --width=340 \
|
||||
@ -42,6 +43,11 @@ function comprobarAdministrador() {
|
||||
fi
|
||||
}
|
||||
|
||||
# Funcion para actualizar el grub
|
||||
function update-grub() {
|
||||
grub-mkconfig -o /boot/grub/grub.cfg
|
||||
}
|
||||
|
||||
# Funcion para comprobar si existen los ficheros necesarios del grub
|
||||
function comprobarFicheros() {
|
||||
if [ -f ${defaultGrub} ] ; then
|
||||
|
@ -29,6 +29,7 @@ function comprobarAdministrador() {
|
||||
administrador=$?
|
||||
if [ ${administrador} -eq 0 ] ; then
|
||||
rm -rf /etc/root
|
||||
mkdir -p ${defaultGrubFiles}
|
||||
touch ${zenigrubInit}
|
||||
else
|
||||
echo ""
|
||||
@ -40,6 +41,11 @@ function comprobarAdministrador() {
|
||||
fi
|
||||
}
|
||||
|
||||
# Funcion para actualizar el grub
|
||||
function update-grub() {
|
||||
grub-mkconfig -o /boot/grub/grub.cfg
|
||||
}
|
||||
|
||||
# Funcion para comprobar si existen los ficheros necesarios del grub
|
||||
function comprobarFicheros() {
|
||||
if [ -f ${defaultGrub} ] ; then
|
||||
|
@ -29,6 +29,7 @@ function comprobarAdministrador() {
|
||||
administrador=$?
|
||||
if [ ${administrador} -eq 0 ] ; then
|
||||
rm -rf /etc/root
|
||||
mkdir -p ${defaultGrubFiles}
|
||||
touch ${zenigrubInit}
|
||||
else
|
||||
zenity --title "zenigrub-custom ${VERSION} (${M_DATE})" --window-icon=${iconPath} --warning --width=340 \
|
||||
@ -42,6 +43,11 @@ function comprobarAdministrador() {
|
||||
fi
|
||||
}
|
||||
|
||||
# Funcion para actualizar el grub
|
||||
function update-grub() {
|
||||
grub-mkconfig -o /boot/grub/grub.cfg
|
||||
}
|
||||
|
||||
# Funcion para comprobar si existen los ficheros necesarios del grub
|
||||
function comprobarFicheros() {
|
||||
if [ -f ${defaultGrub} ] ; then
|
||||
|
@ -29,6 +29,7 @@ function comprobarAdministrador() {
|
||||
administrador=$?
|
||||
if [ ${administrador} -eq 0 ] ; then
|
||||
rm -rf /etc/root
|
||||
mkdir -p ${defaultGrubFiles}
|
||||
touch ${zenigrubInit}
|
||||
else
|
||||
echo ""
|
||||
@ -40,6 +41,11 @@ function comprobarAdministrador() {
|
||||
fi
|
||||
}
|
||||
|
||||
# Funcion para actualizar el grub
|
||||
function update-grub() {
|
||||
grub-mkconfig -o /boot/grub/grub.cfg
|
||||
}
|
||||
|
||||
# Funcion para comprobar si existen los ficheros necesarios del grub
|
||||
function comprobarFicheros() {
|
||||
if [ -f ${defaultGrub} ] ; then
|
||||
|
Loading…
x
Reference in New Issue
Block a user