mirror of
https://github.com/JaKooLit/Debian-Hyprland.git
synced 2025-12-21 10:20:12 +01:00
Compare commits
21 Commits
e21452b70d
...
859ccae389
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
859ccae389 | ||
|
|
5928c27dca | ||
|
|
a1a4bb4622 | ||
|
|
307a0c641f | ||
|
|
d298480443 | ||
|
|
5a156b1b91 | ||
|
|
6f97a5c359 | ||
|
|
704d4b3c28 | ||
|
|
64754089d4 | ||
|
|
f776563d3e | ||
|
|
95708df841 | ||
|
|
98c7c31635 | ||
|
|
becb1af622 | ||
|
|
82367a41ae | ||
|
|
ce70cf5c63 | ||
|
|
b61d659a48 | ||
|
|
47b260d877 | ||
|
|
0d1ca1a7c8 | ||
|
|
5a34836119 | ||
|
|
0593df837e | ||
|
|
bc8b456e3b |
@ -1,5 +1,62 @@
|
|||||||
## CHANGELOGS
|
## CHANGELOGS
|
||||||
|
|
||||||
|
## 10 October 2025
|
||||||
|
|
||||||
|
### Hyprland 0.51.x install support
|
||||||
|
|
||||||
|
- Hyprland builds 0.51.x from source
|
||||||
|
- Added documentation for upgrading from 0.49/0.50.x to 0.51.1.
|
||||||
|
|
||||||
|
### New scripts and modules
|
||||||
|
- update-hyprland.sh: Manage the Hyprland stack with:
|
||||||
|
- --install / --dry-run build modes
|
||||||
|
- --only and --skip for selective components
|
||||||
|
- --with-deps to (re)install build deps
|
||||||
|
- --set {KEY=TAG} and --restore tag backup support
|
||||||
|
- --fetch-latest to pull latest GitHub release tags
|
||||||
|
- --via-helper to delegate summary-only dry-runs
|
||||||
|
- dry-run-build.sh: Compile-only helper with summary output
|
||||||
|
- install-scripts/wayland-protocols-src.sh: Build wayland-protocols from
|
||||||
|
source (>= 1.45) to satisfy Hyprland 0.51.x requirements
|
||||||
|
|
||||||
|
### Core features
|
||||||
|
- Centralized tag management via hypr-tags.env; tags exported to all
|
||||||
|
modules. Environment overrides remain first priority.
|
||||||
|
- Automatic dependency ordering for Hyprland 0.51.x:
|
||||||
|
wayland-protocols-src → hyprland-protocols → hyprutils → hyprlang →
|
||||||
|
aquamarine → hyprland
|
||||||
|
- Optional auto-fetch of latest tags on install runs that include
|
||||||
|
hyprland (can be disabled via --no-fetch)
|
||||||
|
- Selective updates for targeted components and skip lists
|
||||||
|
- Dry-run mode to validate builds without installing
|
||||||
|
|
||||||
|
### Installer integration
|
||||||
|
- install.sh reads hypr-tags.env and optionally refreshes tags.
|
||||||
|
- Ensures wayland-protocols-src is built before Hyprland.
|
||||||
|
- Maintains proper sequencing for the Hyprland dependencies.
|
||||||
|
|
||||||
|
### Docs
|
||||||
|
- Debian-Hyprland-Install-Upgrade.md and .es.md:
|
||||||
|
- Add explicit section: Upgrade 0.49/0.50.x → 0.51.1
|
||||||
|
- Recommend: `./update-hyprland.sh --install --only hyprland`
|
||||||
|
- Provide optional `--with-deps` and `--dry-run` flows
|
||||||
|
- Full install via install.sh is not required for this
|
||||||
|
upgrade unless optional modules need refresh
|
||||||
|
|
||||||
|
### Usage highlights
|
||||||
|
- Pin and upgrade to 0.51.1:
|
||||||
|
./update-hyprland.sh --set HYPRLAND=v0.51.1
|
||||||
|
./update-hyprland.sh --install --only hyprland
|
||||||
|
- Optional:
|
||||||
|
./update-hyprland.sh --with-deps --install --only hyprland
|
||||||
|
./update-hyprland.sh --dry-run --only hyprland
|
||||||
|
|
||||||
|
### Notes
|
||||||
|
- Target OS remains Debian Trixie/Testing/SID
|
||||||
|
- Run as sudo-capable user (not root)
|
||||||
|
- Ensure deb-src entries are enabled.
|
||||||
|
|
||||||
|
|
||||||
## 22 July 2025
|
## 22 July 2025
|
||||||
- Updated sddm theme and script to work with the updated simple_sddm_2 theme
|
- Updated sddm theme and script to work with the updated simple_sddm_2 theme
|
||||||
- Manual building process
|
- Manual building process
|
||||||
|
|||||||
423
Debian-Hyprland-Install-Upgrade.es.md
Normal file
423
Debian-Hyprland-Install-Upgrade.es.md
Normal file
@ -0,0 +1,423 @@
|
|||||||
|
# Guía de Instalación y Actualización de Debian-Hyprland
|
||||||
|
|
||||||
|
Esta guía cubre los flujos de instalación y actualización mejorados para el proyecto Debian-Hyprland de KooL, incluyendo nuevas funciones de automatización, gestión centralizada de versiones y capacidades de dry-run.
|
||||||
|
|
||||||
|
## Tabla de Contenidos
|
||||||
|
|
||||||
|
1. [Resumen](#resumen)
|
||||||
|
2. [Nuevas Funciones](#nuevas-funciones)
|
||||||
|
3. [Gestión Central de Versiones](#gestión-central-de-versiones)
|
||||||
|
4. [Métodos de Instalación](#métodos-de-instalación)
|
||||||
|
5. [Flujos de Actualización](#flujos-de-actualización)
|
||||||
|
6. [Pruebas con Dry-Run](#pruebas-con-dry-run)
|
||||||
|
7. [Gestión de Logs](#gestión-de-logs)
|
||||||
|
8. [Uso Avanzado](#uso-avanzado)
|
||||||
|
9. [Solución de Problemas](#solución-de-problemas)
|
||||||
|
|
||||||
|
## Resumen
|
||||||
|
|
||||||
|
El proyecto Debian-Hyprland ahora incluye herramientas de automatización y gestión mejoradas, manteniendo la compatibilidad con el script original install.sh. Las principales adiciones son:
|
||||||
|
|
||||||
|
- **Gestión centralizada de versiones** mediante `hypr-tags.env`
|
||||||
|
- **Orden automático de dependencias** para los requisitos de Hyprland 0.51.x
|
||||||
|
- **Pruebas de compilación con dry-run** sin modificar el sistema
|
||||||
|
- **Actualizaciones selectivas de componentes** con `update-hyprland.sh`
|
||||||
|
- **Obtención automática de últimas versiones** desde GitHub
|
||||||
|
|
||||||
|
## Nuevas Funciones
|
||||||
|
|
||||||
|
### install.sh mejorado
|
||||||
|
El script original ahora:
|
||||||
|
|
||||||
|
- **Unifica versiones**: Lee `hypr-tags.env` y exporta variables de versión a todos los módulos
|
||||||
|
- **wayland-protocols automático**: Instala wayland-protocols desde el código fuente (≥1.45) antes de Hyprland
|
||||||
|
- **Orden robusto de dependencias**: Garantiza la secuencia correcta de requisitos
|
||||||
|
|
||||||
|
### Nuevos Scripts
|
||||||
|
|
||||||
|
#### update-hyprland.sh
|
||||||
|
Herramienta enfocada para gestionar y compilar solo el stack de Hyprland:
|
||||||
|
```bash
|
||||||
|
chmod +x ./update-hyprland.sh
|
||||||
|
./update-hyprland.sh --help # Ver todas las opciones
|
||||||
|
```
|
||||||
|
|
||||||
|
#### dry-run-build.sh
|
||||||
|
Herramienta de pruebas que compila componentes sin instalarlos:
|
||||||
|
```bash
|
||||||
|
chmod +x ./dry-run-build.sh
|
||||||
|
./dry-run-build.sh --help # Ver todas las opciones
|
||||||
|
```
|
||||||
|
|
||||||
|
#### wayland-protocols-src.sh
|
||||||
|
Módulo que compila wayland-protocols desde el origen para satisfacer los requisitos de Hyprland 0.51.x.
|
||||||
|
|
||||||
|
## Gestión Central de Versiones
|
||||||
|
|
||||||
|
### hypr-tags.env
|
||||||
|
Archivo con etiquetas de versión para todos los componentes de Hyprland:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Versiones actuales (ejemplo)
|
||||||
|
HYPRLAND_TAG=v0.51.1
|
||||||
|
AQUAMARINE_TAG=v0.9.3
|
||||||
|
HYPRUTILS_TAG=v0.8.2
|
||||||
|
HYPRLANG_TAG=v0.6.4
|
||||||
|
HYPRGRAPHICS_TAG=v0.1.5
|
||||||
|
HYPRWAYLAND_SCANNER_TAG=v0.4.5
|
||||||
|
HYPRLAND_PROTOCOLS_TAG=v0.6.4
|
||||||
|
HYPRLAND_QT_SUPPORT_TAG=v0.1.0
|
||||||
|
HYPRLAND_QTUTILS_TAG=v0.1.4
|
||||||
|
WAYLAND_PROTOCOLS_TAG=1.45
|
||||||
|
```
|
||||||
|
|
||||||
|
### Prioridad de Sobrescritura de Versiones
|
||||||
|
1. Variables de entorno (exportadas)
|
||||||
|
2. Valores en el archivo `hypr-tags.env`
|
||||||
|
3. Valores por defecto en cada módulo
|
||||||
|
|
||||||
|
## Métodos de Instalación
|
||||||
|
|
||||||
|
### Método 1: Instalación Completa Original
|
||||||
|
```bash
|
||||||
|
# Instalación estándar con todos los componentes
|
||||||
|
chmod +x install.sh
|
||||||
|
./install.sh
|
||||||
|
```
|
||||||
|
|
||||||
|
Ahora, este método automáticamente:
|
||||||
|
- Carga versiones desde `hypr-tags.env`
|
||||||
|
- Instala wayland-protocols desde el origen antes de Hyprland
|
||||||
|
- Mantiene el orden correcto de dependencias
|
||||||
|
|
||||||
|
### Método 2: Solo el Stack de Hyprland
|
||||||
|
```bash
|
||||||
|
# Instala solo Hyprland y componentes esenciales
|
||||||
|
./update-hyprland.sh --install
|
||||||
|
```
|
||||||
|
|
||||||
|
### Método 3: Instalación Nueva con Últimas Versiones
|
||||||
|
```bash
|
||||||
|
# Obtiene últimas versiones de GitHub e instala
|
||||||
|
./update-hyprland.sh --fetch-latest --install
|
||||||
|
```
|
||||||
|
|
||||||
|
### Método 4: Instalación con Preset
|
||||||
|
```bash
|
||||||
|
# Usa un preset para elecciones automáticas
|
||||||
|
./install.sh --preset ./preset.sh
|
||||||
|
```
|
||||||
|
|
||||||
|
## Flujos de Actualización
|
||||||
|
|
||||||
|
Enlace rápido: [Actualización 0.49/0.50.x → 0.51.1](#actualización-049050x--0511)
|
||||||
|
|
||||||
|
### Actualizar a la Última Versión de Hyprland
|
||||||
|
|
||||||
|
#### Opción A: Descubrimiento Automático
|
||||||
|
```bash
|
||||||
|
# Obtiene las últimas etiquetas e instala
|
||||||
|
./update-hyprland.sh --fetch-latest --install
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Opción B: Versión Específica
|
||||||
|
```bash
|
||||||
|
# Establece una versión específica de Hyprland
|
||||||
|
./update-hyprland.sh --set HYPRLAND=v0.51.1 --install
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Opción C: Probar Antes de Instalar
|
||||||
|
```bash
|
||||||
|
# Prueba la compilación primero, luego instala si es exitoso
|
||||||
|
./update-hyprland.sh --fetch-latest --dry-run
|
||||||
|
# Si es exitoso:
|
||||||
|
./update-hyprland.sh --install
|
||||||
|
```
|
||||||
|
|
||||||
|
### Actualizar Componentes Individuales
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Actualiza solo librerías núcleo (a menudo necesario para nuevas versiones de Hyprland)
|
||||||
|
./update-hyprland.sh --fetch-latest --install --only hyprutils,hyprlang
|
||||||
|
|
||||||
|
# Actualiza aquamarine específicamente
|
||||||
|
./update-hyprland.sh --set AQUAMARINE=v0.9.3 --install --only aquamarine
|
||||||
|
```
|
||||||
|
|
||||||
|
### Actualizaciones Selectivas
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Instalar todo excepto los componentes Qt
|
||||||
|
./update-hyprland.sh --install --skip hyprland-qt-support,hyprland-qtutils
|
||||||
|
|
||||||
|
# Instalar solo componentes específicos
|
||||||
|
./update-hyprland.sh --install --only hyprland,aquamarine
|
||||||
|
```
|
||||||
|
|
||||||
|
### Actualización: 0.49/0.50.x ➜ 0.51.1
|
||||||
|
|
||||||
|
Si actualmente estás en Hyprland 0.49 o 0.50.x, puedes actualizar directamente a 0.51.1 sin una reinstalación completa.
|
||||||
|
|
||||||
|
Ruta recomendada:
|
||||||
|
```bash
|
||||||
|
# Asegura que hypr-tags.env apunte a la versión objetivo (omitir si ya es v0.51.1)
|
||||||
|
./update-hyprland.sh --set HYPRLAND=v0.51.1
|
||||||
|
|
||||||
|
# Actualiza Hyprland (los prerrequisitos se incluyen y ordenan automáticamente)
|
||||||
|
./update-hyprland.sh --install --only hyprland
|
||||||
|
```
|
||||||
|
|
||||||
|
Notas:
|
||||||
|
- El comando garantiza y ejecuta, según sea necesario: wayland-protocols-src, hyprland-protocols, hyprutils, hyprlang, aquamarine y luego hyprland.
|
||||||
|
- No es necesario usar install.sh para esta actualización, a menos que también quieras instalar/actualizar módulos opcionales (p. ej., SDDM, Bluetooth, Thunar, AGS, dotfiles) o estés recuperándote de una instalación fallida/parcial.
|
||||||
|
- Opcional: agrega --with-deps para reinstalar dependencias primero:
|
||||||
|
```bash
|
||||||
|
./update-hyprland.sh --with-deps --install --only hyprland
|
||||||
|
```
|
||||||
|
- Puedes hacer un dry-run primero para validar:
|
||||||
|
```bash
|
||||||
|
./update-hyprland.sh --dry-run --only hyprland
|
||||||
|
```
|
||||||
|
|
||||||
|
## Pruebas con Dry-Run
|
||||||
|
|
||||||
|
### ¿Por qué usar Dry-Run?
|
||||||
|
- Probar compatibilidad de compilación antes de instalar
|
||||||
|
- Validar combinaciones de versiones
|
||||||
|
- Depurar problemas de compilación sin cambios en el sistema
|
||||||
|
- Integración en CI/CD
|
||||||
|
|
||||||
|
### Uso Básico de Dry-Run
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Probar la configuración actual de versiones
|
||||||
|
./update-hyprland.sh --dry-run
|
||||||
|
|
||||||
|
# Probar con últimas versiones de GitHub
|
||||||
|
./update-hyprland.sh --fetch-latest --dry-run
|
||||||
|
|
||||||
|
# Probar una versión específica
|
||||||
|
./update-hyprland.sh --set HYPRLAND=v0.51.1 --dry-run
|
||||||
|
```
|
||||||
|
|
||||||
|
### Pruebas Avanzadas con Dry-Run
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Formato alternativo de resumen
|
||||||
|
./update-hyprland.sh --via-helper
|
||||||
|
|
||||||
|
# Probar con instalación de dependencias
|
||||||
|
./dry-run-build.sh --with-deps
|
||||||
|
|
||||||
|
# Probar solo componentes específicos
|
||||||
|
./dry-run-build.sh --only hyprland,aquamarine
|
||||||
|
```
|
||||||
|
|
||||||
|
### Limitaciones de Dry-Run
|
||||||
|
- **Las dependencias se instalan**: apt se ejecuta para asegurar la compilación
|
||||||
|
- **Requisitos de pkg-config**: Algunos componentes necesitan requisitos instalados en el sistema
|
||||||
|
- **Sin cambios en el sistema**: No instala archivos en /usr/local o /usr
|
||||||
|
|
||||||
|
## Gestión de Logs
|
||||||
|
|
||||||
|
### Ubicación de Logs
|
||||||
|
Todas las actividades de construcción generan logs con sello de tiempo en:
|
||||||
|
```
|
||||||
|
Install-Logs/
|
||||||
|
├── 01-Hyprland-Install-Scripts-YYYY-MM-DD-HHMMSS.log # Log principal de instalación
|
||||||
|
├── install-DD-HHMMSS_module-name.log # Logs por módulo
|
||||||
|
├── build-dry-run-YYYY-MM-DD-HHMMSS.log # Resumen de dry-run
|
||||||
|
└── update-hypr-YYYY-MM-DD-HHMMSS.log # Resumen de actualización
|
||||||
|
```
|
||||||
|
|
||||||
|
### Análisis de Logs
|
||||||
|
```bash
|
||||||
|
# Ver el log de instalación más reciente
|
||||||
|
ls -t Install-Logs/*.log | head -1 | xargs less
|
||||||
|
|
||||||
|
# Buscar errores en un módulo específico
|
||||||
|
grep -i error Install-Logs/install-*hyprland*.log
|
||||||
|
|
||||||
|
# Ver resumen de dry-run
|
||||||
|
cat Install-Logs/build-dry-run-*.log
|
||||||
|
```
|
||||||
|
|
||||||
|
### Retención de Logs
|
||||||
|
- Los logs se acumulan con el tiempo para referencia histórica
|
||||||
|
- Se recomienda limpieza manual periódica:
|
||||||
|
```bash
|
||||||
|
# Mantener solo logs de los últimos 30 días
|
||||||
|
find Install-Logs/ -name "*.log" -mtime +30 -delete
|
||||||
|
```
|
||||||
|
|
||||||
|
## Uso Avanzado
|
||||||
|
|
||||||
|
### Gestión de Versiones
|
||||||
|
|
||||||
|
#### Copia de Seguridad y Restauración
|
||||||
|
```bash
|
||||||
|
# Las etiquetas se respaldan automáticamente cuando cambian
|
||||||
|
# Restaurar la copia más reciente
|
||||||
|
./update-hyprland.sh --restore --dry-run
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Múltiples Conjuntos de Versiones
|
||||||
|
```bash
|
||||||
|
# Guardar configuración actual
|
||||||
|
cp hypr-tags.env hypr-tags-stable.env
|
||||||
|
|
||||||
|
# Probar versiones experimentales
|
||||||
|
./update-hyprland.sh --fetch-latest --dry-run
|
||||||
|
|
||||||
|
# Restaurar estable si es necesario
|
||||||
|
cp hypr-tags-stable.env hypr-tags.env
|
||||||
|
```
|
||||||
|
|
||||||
|
### Integración con el Entorno
|
||||||
|
|
||||||
|
#### PKG_CONFIG_PATH personalizado
|
||||||
|
```bash
|
||||||
|
# Asegurar que /usr/local tenga prioridad
|
||||||
|
export PKG_CONFIG_PATH="/usr/local/lib/pkgconfig:/usr/local/share/pkgconfig:${PKG_CONFIG_PATH:-}"
|
||||||
|
./update-hyprland.sh --install
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Compilaciones en Paralelo
|
||||||
|
```bash
|
||||||
|
# Controlar el paralelismo (por defecto: todos los núcleos)
|
||||||
|
export MAKEFLAGS="-j4"
|
||||||
|
./update-hyprland.sh --install
|
||||||
|
```
|
||||||
|
|
||||||
|
### Flujo de Trabajo de Desarrollo
|
||||||
|
|
||||||
|
#### Probar Nuevos Lanzamientos
|
||||||
|
```bash
|
||||||
|
# 1. Crear entorno de pruebas
|
||||||
|
cp hypr-tags.env hypr-tags.backup
|
||||||
|
|
||||||
|
# 2. Probar nueva versión
|
||||||
|
./update-hyprland.sh --set HYPRLAND=v0.52.0 --dry-run
|
||||||
|
|
||||||
|
# 3. Instalar si es exitoso
|
||||||
|
./update-hyprland.sh --install
|
||||||
|
|
||||||
|
# 4. Revertir si hay problemas
|
||||||
|
./update-hyprland.sh --restore --install
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Desarrollo de Componentes
|
||||||
|
```bash
|
||||||
|
# Solo instalar dependencias
|
||||||
|
./update-hyprland.sh --with-deps --dry-run
|
||||||
|
|
||||||
|
# Pruebas manuales de módulo
|
||||||
|
DRY_RUN=1 ./install-scripts/hyprland.sh
|
||||||
|
|
||||||
|
# Ver logs de un módulo específico
|
||||||
|
tail -f Install-Logs/install-*hyprland*.log
|
||||||
|
```
|
||||||
|
|
||||||
|
## Solución de Problemas
|
||||||
|
|
||||||
|
### Problemas Comunes
|
||||||
|
|
||||||
|
#### Falla de Configuración con CMake
|
||||||
|
**Síntomas**: "Package dependency requirement not satisfied"
|
||||||
|
|
||||||
|
**Soluciones**:
|
||||||
|
```bash
|
||||||
|
# Instalar requisitos faltantes
|
||||||
|
./update-hyprland.sh --install --only wayland-protocols-src,hyprutils,hyprlang
|
||||||
|
|
||||||
|
# Limpiar caché de compilación
|
||||||
|
rm -rf hyprland aquamarine hyprutils hyprlang
|
||||||
|
|
||||||
|
# Reintentar instalación
|
||||||
|
./update-hyprland.sh --install --only hyprland
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Errores de Compilación
|
||||||
|
**Síntomas**: "too many errors emitted"
|
||||||
|
|
||||||
|
**Soluciones**:
|
||||||
|
```bash
|
||||||
|
# Actualizar dependencias núcleo primero
|
||||||
|
./update-hyprland.sh --fetch-latest --install --only hyprutils,hyprlang
|
||||||
|
|
||||||
|
# Revisar incompatibilidades de API en logs
|
||||||
|
grep -A5 -B5 "error:" Install-Logs/install-*hyprland*.log
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Etiqueta No Encontrada
|
||||||
|
**Síntomas**: "Remote branch X not found"
|
||||||
|
|
||||||
|
**Soluciones**:
|
||||||
|
```bash
|
||||||
|
# Ver etiquetas disponibles
|
||||||
|
git ls-remote --tags https://github.com/hyprwm/Hyprland
|
||||||
|
|
||||||
|
# Usar etiqueta confirmada
|
||||||
|
./update-hyprland.sh --set HYPRLAND=v0.50.1 --install
|
||||||
|
```
|
||||||
|
|
||||||
|
### Pasos de Depuración
|
||||||
|
|
||||||
|
1. **Verificar compatibilidad del sistema**:
|
||||||
|
```bash
|
||||||
|
# Verificar versión de Debian
|
||||||
|
cat /etc/os-release
|
||||||
|
|
||||||
|
# Asegurar deb-src habilitado
|
||||||
|
grep -E "^deb-src" /etc/apt/sources.list
|
||||||
|
```
|
||||||
|
|
||||||
|
2. **Verificar entorno**:
|
||||||
|
```bash
|
||||||
|
# Ver etiquetas actuales
|
||||||
|
cat hypr-tags.env
|
||||||
|
|
||||||
|
# Probar dry-run primero
|
||||||
|
./update-hyprland.sh --dry-run --only hyprland
|
||||||
|
```
|
||||||
|
|
||||||
|
3. **Analizar logs**:
|
||||||
|
```bash
|
||||||
|
# Errores más recientes
|
||||||
|
grep -i "error\|fail" Install-Logs/*.log | tail -20
|
||||||
|
|
||||||
|
# Problemas por módulo
|
||||||
|
ls -la Install-Logs/install-*[component]*.log
|
||||||
|
```
|
||||||
|
|
||||||
|
### Obtener Ayuda
|
||||||
|
|
||||||
|
1. **Revisar logs**: Consulte siempre Install-Logs/ para detalles
|
||||||
|
2. **Probar dry-run**: Valide antes de instalar
|
||||||
|
3. **Soporte de la comunidad**: Envíe issues con extractos de logs
|
||||||
|
4. **Documentación**: Consulte README.md del proyecto para requisitos base
|
||||||
|
|
||||||
|
## Migración desde Versiones Previas
|
||||||
|
|
||||||
|
### Instalaciones Existentes
|
||||||
|
Las nuevas herramientas funcionan junto a instalaciones existentes:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Actualizar instalación existente
|
||||||
|
./update-hyprland.sh --install
|
||||||
|
|
||||||
|
# Probar sin afectar el sistema actual
|
||||||
|
./update-hyprland.sh --dry-run
|
||||||
|
```
|
||||||
|
|
||||||
|
### Convertir a Gestión por Etiquetas
|
||||||
|
```bash
|
||||||
|
# Las versiones actuales se guardan en hypr-tags.env automáticamente
|
||||||
|
# Verificar con:
|
||||||
|
cat hypr-tags.env
|
||||||
|
|
||||||
|
# Modificar versiones según necesidad:
|
||||||
|
./update-hyprland.sh --set HYPRLAND=v0.51.1
|
||||||
|
```
|
||||||
|
|
||||||
|
El flujo mejorado ofrece mayor control, capacidad de prueba y automatización, manteniendo la compatibilidad total con el proceso de instalación original.
|
||||||
423
Debian-Hyprland-Install-Upgrade.md
Normal file
423
Debian-Hyprland-Install-Upgrade.md
Normal file
@ -0,0 +1,423 @@
|
|||||||
|
# Debian-Hyprland Install & Upgrade Guide
|
||||||
|
|
||||||
|
This guide covers the enhanced installation and upgrade workflows for KooL's Debian-Hyprland project, including new automation features, centralized version management, and dry-run capabilities.
|
||||||
|
|
||||||
|
## Table of Contents
|
||||||
|
|
||||||
|
1. [Overview](#overview)
|
||||||
|
2. [New Features](#new-features)
|
||||||
|
3. [Central Version Management](#central-version-management)
|
||||||
|
4. [Installation Methods](#installation-methods)
|
||||||
|
5. [Upgrade Workflows](#upgrade-workflows)
|
||||||
|
6. [Dry-Run Testing](#dry-run-testing)
|
||||||
|
7. [Log Management](#log-management)
|
||||||
|
8. [Advanced Usage](#advanced-usage)
|
||||||
|
9. [Troubleshooting](#troubleshooting)
|
||||||
|
|
||||||
|
## Overview
|
||||||
|
|
||||||
|
The Debian-Hyprland project now includes enhanced automation and management tools while maintaining backward compatibility with the original install.sh script. The key additions are:
|
||||||
|
|
||||||
|
- **Centralized version management** via `hypr-tags.env`
|
||||||
|
- **Automated dependency ordering** for Hyprland 0.51.x requirements
|
||||||
|
- **Dry-run compilation testing** without system modifications
|
||||||
|
- **Selective component updates** via `update-hyprland.sh`
|
||||||
|
- **GitHub latest tag fetching** for automatic version discovery
|
||||||
|
|
||||||
|
## New Features
|
||||||
|
|
||||||
|
### Enhanced install.sh
|
||||||
|
The original install.sh script now includes:
|
||||||
|
|
||||||
|
- **Tag consistency**: Reads `hypr-tags.env` and exports version variables to all modules
|
||||||
|
- **Automatic wayland-protocols**: Installs wayland-protocols from source (≥1.45) before Hyprland
|
||||||
|
- **Robust dependency ordering**: Ensures prerequisites are built in the correct sequence
|
||||||
|
|
||||||
|
### New Scripts
|
||||||
|
|
||||||
|
#### update-hyprland.sh
|
||||||
|
A focused tool for managing and building just the Hyprland stack:
|
||||||
|
```bash
|
||||||
|
chmod +x ./update-hyprland.sh
|
||||||
|
./update-hyprland.sh --help # View all options
|
||||||
|
```
|
||||||
|
|
||||||
|
#### dry-run-build.sh
|
||||||
|
A testing tool that compiles components without installing:
|
||||||
|
```bash
|
||||||
|
chmod +x ./dry-run-build.sh
|
||||||
|
./dry-run-build.sh --help # View all options
|
||||||
|
```
|
||||||
|
|
||||||
|
#### wayland-protocols-src.sh
|
||||||
|
A new module that builds wayland-protocols from source to satisfy Hyprland 0.51.x requirements.
|
||||||
|
|
||||||
|
## Central Version Management
|
||||||
|
|
||||||
|
### hypr-tags.env
|
||||||
|
This file contains version tags for all Hyprland components:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Current versions (example)
|
||||||
|
HYPRLAND_TAG=v0.51.1
|
||||||
|
AQUAMARINE_TAG=v0.9.3
|
||||||
|
HYPRUTILS_TAG=v0.8.2
|
||||||
|
HYPRLANG_TAG=v0.6.4
|
||||||
|
HYPRGRAPHICS_TAG=v0.1.5
|
||||||
|
HYPRWAYLAND_SCANNER_TAG=v0.4.5
|
||||||
|
HYPRLAND_PROTOCOLS_TAG=v0.6.4
|
||||||
|
HYPRLAND_QT_SUPPORT_TAG=v0.1.0
|
||||||
|
HYPRLAND_QTUTILS_TAG=v0.1.4
|
||||||
|
WAYLAND_PROTOCOLS_TAG=1.45
|
||||||
|
```
|
||||||
|
|
||||||
|
### Version Override Priority
|
||||||
|
1. Environment variables (exported)
|
||||||
|
2. hypr-tags.env file values
|
||||||
|
3. Default hardcoded values in each module
|
||||||
|
|
||||||
|
## Installation Methods
|
||||||
|
|
||||||
|
### Method 1: Original Full Installation
|
||||||
|
```bash
|
||||||
|
# Standard installation with all components
|
||||||
|
chmod +x install.sh
|
||||||
|
./install.sh
|
||||||
|
```
|
||||||
|
|
||||||
|
This method now automatically:
|
||||||
|
- Loads versions from `hypr-tags.env`
|
||||||
|
- Installs wayland-protocols from source before Hyprland
|
||||||
|
- Maintains proper dependency ordering
|
||||||
|
|
||||||
|
### Method 2: Hyprland Stack Only
|
||||||
|
```bash
|
||||||
|
# Install only Hyprland and essential components
|
||||||
|
./update-hyprland.sh --install
|
||||||
|
```
|
||||||
|
|
||||||
|
### Method 3: Fresh Installation with Latest Versions
|
||||||
|
```bash
|
||||||
|
# Fetch latest GitHub releases and install
|
||||||
|
./update-hyprland.sh --fetch-latest --install
|
||||||
|
```
|
||||||
|
|
||||||
|
### Method 4: Preset-Based Installation
|
||||||
|
```bash
|
||||||
|
# Use preset file for automated choices
|
||||||
|
./install.sh --preset ./preset.sh
|
||||||
|
```
|
||||||
|
|
||||||
|
## Upgrade Workflows
|
||||||
|
|
||||||
|
Quick link: [Upgrade 0.49/0.50.x → 0.51.1](#upgrade-049050x--0511)
|
||||||
|
|
||||||
|
### Upgrading to Latest Hyprland Release
|
||||||
|
|
||||||
|
#### Option A: Automatic Discovery
|
||||||
|
```bash
|
||||||
|
# Fetch latest tags and install
|
||||||
|
./update-hyprland.sh --fetch-latest --install
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Option B: Specific Version
|
||||||
|
```bash
|
||||||
|
# Set specific Hyprland version
|
||||||
|
./update-hyprland.sh --set HYPRLAND=v0.51.1 --install
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Option C: Test Before Installing
|
||||||
|
```bash
|
||||||
|
# Test compilation first, then install if successful
|
||||||
|
./update-hyprland.sh --fetch-latest --dry-run
|
||||||
|
# If successful:
|
||||||
|
./update-hyprland.sh --install
|
||||||
|
```
|
||||||
|
|
||||||
|
### Upgrading Individual Components
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Update only core libraries (often needed for new Hyprland versions)
|
||||||
|
./update-hyprland.sh --fetch-latest --install --only hyprutils,hyprlang
|
||||||
|
|
||||||
|
# Update aquamarine specifically
|
||||||
|
./update-hyprland.sh --set AQUAMARINE=v0.9.3 --install --only aquamarine
|
||||||
|
```
|
||||||
|
|
||||||
|
### Selective Updates
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Install everything except Qt components
|
||||||
|
./update-hyprland.sh --install --skip hyprland-qt-support,hyprland-qtutils
|
||||||
|
|
||||||
|
# Install only specific components
|
||||||
|
./update-hyprland.sh --install --only hyprland,aquamarine
|
||||||
|
```
|
||||||
|
|
||||||
|
### Upgrade: 0.49/0.50.x ➜ 0.51.1
|
||||||
|
|
||||||
|
If you’re currently on Hyprland 0.49 or 0.50.x, you can upgrade directly to 0.51.1 without a full reinstall.
|
||||||
|
|
||||||
|
Recommended path:
|
||||||
|
```bash
|
||||||
|
# Ensure hypr-tags.env pins the target version (skip if already v0.51.1)
|
||||||
|
./update-hyprland.sh --set HYPRLAND=v0.51.1
|
||||||
|
|
||||||
|
# Upgrade Hyprland (prerequisites are auto-included and ordered)
|
||||||
|
./update-hyprland.sh --install --only hyprland
|
||||||
|
```
|
||||||
|
|
||||||
|
Notes:
|
||||||
|
- The command will automatically ensure and run, as needed: wayland-protocols-src, hyprland-protocols, hyprutils, hyprlang, aquamarine, then hyprland.
|
||||||
|
- Full install via install.sh is not required for this upgrade unless you also want to install/refresh optional modules (e.g., SDDM, Bluetooth, Thunar, AGS, dotfiles) or you’re recovering from a failed/partial setup.
|
||||||
|
- Optional: add --with-deps to re-run dependency installation first:
|
||||||
|
```bash
|
||||||
|
./update-hyprland.sh --with-deps --install --only hyprland
|
||||||
|
```
|
||||||
|
- You can dry-run first to validate:
|
||||||
|
```bash
|
||||||
|
./update-hyprland.sh --dry-run --only hyprland
|
||||||
|
```
|
||||||
|
|
||||||
|
## Dry-Run Testing
|
||||||
|
|
||||||
|
### Why Use Dry-Run?
|
||||||
|
- Test compilation compatibility before installing
|
||||||
|
- Validate version combinations
|
||||||
|
- Debug build issues without system changes
|
||||||
|
- CI/CD pipeline integration
|
||||||
|
|
||||||
|
### Basic Dry-Run Usage
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Test current tag configuration
|
||||||
|
./update-hyprland.sh --dry-run
|
||||||
|
|
||||||
|
# Test with latest GitHub releases
|
||||||
|
./update-hyprland.sh --fetch-latest --dry-run
|
||||||
|
|
||||||
|
# Test specific version
|
||||||
|
./update-hyprland.sh --set HYPRLAND=v0.51.1 --dry-run
|
||||||
|
```
|
||||||
|
|
||||||
|
### Advanced Dry-Run Testing
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Use alternative summary format
|
||||||
|
./update-hyprland.sh --via-helper
|
||||||
|
|
||||||
|
# Test with dependencies installation
|
||||||
|
./dry-run-build.sh --with-deps
|
||||||
|
|
||||||
|
# Test only specific components
|
||||||
|
./dry-run-build.sh --only hyprland,aquamarine
|
||||||
|
```
|
||||||
|
|
||||||
|
### Dry-Run Limitations
|
||||||
|
- **Dependencies still install**: apt operations run to ensure compilation succeeds
|
||||||
|
- **pkg-config requirements**: Some components need system-installed prerequisites
|
||||||
|
- **No system changes**: No files installed to /usr/local or /usr
|
||||||
|
|
||||||
|
## Log Management
|
||||||
|
|
||||||
|
### Log Location
|
||||||
|
All build activities generate timestamped logs in:
|
||||||
|
```
|
||||||
|
Install-Logs/
|
||||||
|
├── 01-Hyprland-Install-Scripts-YYYY-MM-DD-HHMMSS.log # Main install log
|
||||||
|
├── install-DD-HHMMSS_module-name.log # Per-module logs
|
||||||
|
├── build-dry-run-YYYY-MM-DD-HHMMSS.log # Dry-run summary
|
||||||
|
└── update-hypr-YYYY-MM-DD-HHMMSS.log # Update tool summary
|
||||||
|
```
|
||||||
|
|
||||||
|
### Log Analysis
|
||||||
|
```bash
|
||||||
|
# View most recent install log
|
||||||
|
ls -t Install-Logs/*.log | head -1 | xargs less
|
||||||
|
|
||||||
|
# Check for errors in specific module
|
||||||
|
grep -i error Install-Logs/install-*hyprland*.log
|
||||||
|
|
||||||
|
# View dry-run summary
|
||||||
|
cat Install-Logs/build-dry-run-*.log
|
||||||
|
```
|
||||||
|
|
||||||
|
### Log Retention
|
||||||
|
- Logs accumulate over time for historical reference
|
||||||
|
- Manual cleanup recommended periodically:
|
||||||
|
```bash
|
||||||
|
# Keep only logs from last 30 days
|
||||||
|
find Install-Logs/ -name "*.log" -mtime +30 -delete
|
||||||
|
```
|
||||||
|
|
||||||
|
## Advanced Usage
|
||||||
|
|
||||||
|
### Tag Management
|
||||||
|
|
||||||
|
#### Backup and Restore
|
||||||
|
```bash
|
||||||
|
# Tags are automatically backed up on changes
|
||||||
|
# Restore most recent backup
|
||||||
|
./update-hyprland.sh --restore --dry-run
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Multiple Version Sets
|
||||||
|
```bash
|
||||||
|
# Save current configuration
|
||||||
|
cp hypr-tags.env hypr-tags-stable.env
|
||||||
|
|
||||||
|
# Try experimental versions
|
||||||
|
./update-hyprland.sh --fetch-latest --dry-run
|
||||||
|
|
||||||
|
# Restore stable if needed
|
||||||
|
cp hypr-tags-stable.env hypr-tags.env
|
||||||
|
```
|
||||||
|
|
||||||
|
### Environment Integration
|
||||||
|
|
||||||
|
#### Custom PKG_CONFIG_PATH
|
||||||
|
```bash
|
||||||
|
# Ensure /usr/local takes precedence
|
||||||
|
export PKG_CONFIG_PATH="/usr/local/lib/pkgconfig:/usr/local/share/pkgconfig:${PKG_CONFIG_PATH:-}"
|
||||||
|
./update-hyprland.sh --install
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Parallel Builds
|
||||||
|
```bash
|
||||||
|
# Control build parallelism (default: all cores)
|
||||||
|
export MAKEFLAGS="-j4"
|
||||||
|
./update-hyprland.sh --install
|
||||||
|
```
|
||||||
|
|
||||||
|
### Development Workflow
|
||||||
|
|
||||||
|
#### Testing New Releases
|
||||||
|
```bash
|
||||||
|
# 1. Create test environment
|
||||||
|
cp hypr-tags.env hypr-tags.backup
|
||||||
|
|
||||||
|
# 2. Test new version
|
||||||
|
./update-hyprland.sh --set HYPRLAND=v0.52.0 --dry-run
|
||||||
|
|
||||||
|
# 3. Install if successful
|
||||||
|
./update-hyprland.sh --install
|
||||||
|
|
||||||
|
# 4. Rollback if issues
|
||||||
|
./update-hyprland.sh --restore --install
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Component Development
|
||||||
|
```bash
|
||||||
|
# Install dependencies only
|
||||||
|
./update-hyprland.sh --with-deps --dry-run
|
||||||
|
|
||||||
|
# Manual module testing
|
||||||
|
DRY_RUN=1 ./install-scripts/hyprland.sh
|
||||||
|
|
||||||
|
# Check logs for specific module
|
||||||
|
tail -f Install-Logs/install-*hyprland*.log
|
||||||
|
```
|
||||||
|
|
||||||
|
## Troubleshooting
|
||||||
|
|
||||||
|
### Common Issues
|
||||||
|
|
||||||
|
#### CMake Configuration Fails
|
||||||
|
**Symptoms**: "Package dependency requirement not satisfied"
|
||||||
|
|
||||||
|
**Solutions**:
|
||||||
|
```bash
|
||||||
|
# Install missing prerequisites
|
||||||
|
./update-hyprland.sh --install --only wayland-protocols-src,hyprutils,hyprlang
|
||||||
|
|
||||||
|
# Clear build cache
|
||||||
|
rm -rf hyprland aquamarine hyprutils hyprlang
|
||||||
|
|
||||||
|
# Retry installation
|
||||||
|
./update-hyprland.sh --install --only hyprland
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Compilation Errors
|
||||||
|
**Symptoms**: "too many errors emitted"
|
||||||
|
|
||||||
|
**Solutions**:
|
||||||
|
```bash
|
||||||
|
# Update core dependencies first
|
||||||
|
./update-hyprland.sh --fetch-latest --install --only hyprutils,hyprlang
|
||||||
|
|
||||||
|
# Check for API mismatches in logs
|
||||||
|
grep -A5 -B5 "error:" Install-Logs/install-*hyprland*.log
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Tag Not Found
|
||||||
|
**Symptoms**: "Remote branch X not found"
|
||||||
|
|
||||||
|
**Solutions**:
|
||||||
|
```bash
|
||||||
|
# Check available tags
|
||||||
|
git ls-remote --tags https://github.com/hyprwm/Hyprland
|
||||||
|
|
||||||
|
# Use confirmed existing tag
|
||||||
|
./update-hyprland.sh --set HYPRLAND=v0.50.1 --install
|
||||||
|
```
|
||||||
|
|
||||||
|
### Debug Steps
|
||||||
|
|
||||||
|
1. **Check system compatibility**:
|
||||||
|
```bash
|
||||||
|
# Verify Debian version
|
||||||
|
cat /etc/os-release
|
||||||
|
|
||||||
|
# Ensure deb-src enabled
|
||||||
|
grep -E "^deb-src" /etc/apt/sources.list
|
||||||
|
```
|
||||||
|
|
||||||
|
2. **Verify environment**:
|
||||||
|
```bash
|
||||||
|
# Check current tags
|
||||||
|
cat hypr-tags.env
|
||||||
|
|
||||||
|
# Test dry-run first
|
||||||
|
./update-hyprland.sh --dry-run --only hyprland
|
||||||
|
```
|
||||||
|
|
||||||
|
3. **Analyze logs**:
|
||||||
|
```bash
|
||||||
|
# Most recent errors
|
||||||
|
grep -i "error\|fail" Install-Logs/*.log | tail -20
|
||||||
|
|
||||||
|
# Module-specific issues
|
||||||
|
ls -la Install-Logs/install-*[component]*.log
|
||||||
|
```
|
||||||
|
|
||||||
|
### Getting Help
|
||||||
|
|
||||||
|
1. **Check logs**: Always review Install-Logs/ for detailed error information
|
||||||
|
2. **Test dry-run**: Use --dry-run to validate before installing
|
||||||
|
3. **Community support**: Submit issues with relevant log excerpts
|
||||||
|
4. **Documentation**: Refer to main project README.md for base requirements
|
||||||
|
|
||||||
|
## Migration from Previous Versions
|
||||||
|
|
||||||
|
### Existing Installations
|
||||||
|
The new tools work alongside existing installations:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Update existing installation
|
||||||
|
./update-hyprland.sh --install
|
||||||
|
|
||||||
|
# Test without affecting current system
|
||||||
|
./update-hyprland.sh --dry-run
|
||||||
|
```
|
||||||
|
|
||||||
|
### Converting to Tag Management
|
||||||
|
```bash
|
||||||
|
# Current versions are saved to hypr-tags.env automatically
|
||||||
|
# Verify with:
|
||||||
|
cat hypr-tags.env
|
||||||
|
|
||||||
|
# Modify versions as needed:
|
||||||
|
./update-hyprland.sh --set HYPRLAND=v0.51.1
|
||||||
|
```
|
||||||
|
|
||||||
|
The enhanced workflow provides better control, testing capabilities, and automation while maintaining full compatibility with the original installation process.
|
||||||
26
README.md
26
README.md
@ -71,7 +71,7 @@ https://github.com/user-attachments/assets/49bc12b2-abaf-45de-a21c-67aacd9bb872
|
|||||||
#### ⚠️ Pre-requisites and VERY Important! ###
|
#### ⚠️ Pre-requisites and VERY Important! ###
|
||||||
- Do not run this installer as sudo or as root
|
- Do not run this installer as sudo or as root
|
||||||
- This Installer requires a user with a priviledge to install packages
|
- This Installer requires a user with a priviledge to install packages
|
||||||
- Needs a Debian 13 Testing (Trixie) Branch as it needs a newer wayland packages! I have tried on Stable Debian 12 Bookworm in which, Hyprland wont build.
|
- Needs a Debian 13 Trixie or greater. As it needs a newer wayland packages! I have tried on Stable Debian 12 Bookworm in which, Hyprland wont build.
|
||||||
- edit your /etc/apt/sources.list and remove # on lines with deb-src to enable source packaging else will not install properly especially Hyprland
|
- edit your /etc/apt/sources.list and remove # on lines with deb-src to enable source packaging else will not install properly especially Hyprland
|
||||||
```bash
|
```bash
|
||||||
sudo nano /etc/apt/sources.list
|
sudo nano /etc/apt/sources.list
|
||||||
@ -80,6 +80,14 @@ sudo nano /etc/apt/sources.list
|
|||||||
- ensure to allow to install non-free drivers especially for users with NVIDIA gpus. You can also install non-free drivers if required. Edit install-scripts/nvidia.sh and change the nvidia stuff's if required
|
- ensure to allow to install non-free drivers especially for users with NVIDIA gpus. You can also install non-free drivers if required. Edit install-scripts/nvidia.sh and change the nvidia stuff's if required
|
||||||
|
|
||||||
### 🪧🪧🪧 ANNOUNCEMENT 🪧🪧🪧
|
### 🪧🪧🪧 ANNOUNCEMENT 🪧🪧🪧
|
||||||
|
|
||||||
|
- 10 OCTOBER 2025 Update!
|
||||||
|
- Hyprland-Debian nows builds 0.51.1 from source!
|
||||||
|
- The installer now can be used to install newer releases later
|
||||||
|
- If you are currently running 0.49, or 0.50, you can upgrade to 0.51.1
|
||||||
|
- You do not have to re-install everything, but re-running `install.sh` works also
|
||||||
|
- Intstructions are available in English and Spanish
|
||||||
|
|
||||||
- 25 July 2025 Update!
|
- 25 July 2025 Update!
|
||||||
- All Hyprland and associated packages set to install using this script are downloaded and built from source (github). However, do note that it is downloaded from each individual releases. You can set versions by editing the scripts located install-scripts directory.
|
- All Hyprland and associated packages set to install using this script are downloaded and built from source (github). However, do note that it is downloaded from each individual releases. You can set versions by editing the scripts located install-scripts directory.
|
||||||
- These packages are NOT updated automatically. You need to manually update it yourself
|
- These packages are NOT updated automatically. You need to manually update it yourself
|
||||||
@ -91,11 +99,12 @@ sudo nano /etc/apt/sources.list
|
|||||||
- the wallpaper offered to be downloaded towards the end is from this [`WALLPAPER-REPO`](https://github.com/JaKooLit/Wallpaper-Bank)
|
- the wallpaper offered to be downloaded towards the end is from this [`WALLPAPER-REPO`](https://github.com/JaKooLit/Wallpaper-Bank)
|
||||||
|
|
||||||
#### ✨ Some notes on this installer / Prerequisites
|
#### ✨ Some notes on this installer / Prerequisites
|
||||||
- This script is meant to install in Debian Testing (Trixie) and Debian Unstable (SID). This script Will NOT work with Bookworm
|
- This script is meant to install in Debian Trixie or newer . This script Will NOT work with Bookworm
|
||||||
- If However, decided to try, recommend to install SDDM. Apart from GDM and SDDM, any other Login Manager may not work nor launch Hyprland. However, hyprland can be launched through tty by type Hyprland
|
- If However, decided to try, recommend to install SDDM. Apart from GDM and SDDM, any other Login Manager may not work nor launch Hyprland. However, hyprland can be launched through tty by type Hyprland
|
||||||
- 🕯️ network-manager-gnome (nm-applet) has been removed from the packages to install. This is because it is known to restart the networkmanager causing issues in the installation process. After you boot up, inorder to get the network-manager applet, install network-manager-gnome. `sudo apt install network-manager-gnome` See below if your network or wifi became unmanaged after installation
|
- 🕯️ network-manager-gnome (nm-applet) has been removed from the packages to install. This is because it is known to restart the networkmanager causing issues in the installation process. After you boot up, inorder to get the network-manager applet, install network-manager-gnome. `sudo apt install network-manager-gnome` See below if your network or wifi became unmanaged after installation
|
||||||
- If you have nvidia, and wanted to use proprietary drivers, uninstall nouveau first (if installed). This script will be installing proprietary nvidia drivers and will not deal with removal of nouveau.
|
- If you have nvidia, and wanted to use proprietary drivers, uninstall nouveau first (if installed). This script will be installing proprietary nvidia drivers and will not deal with removal of nouveau.
|
||||||
- NVIDIA users / owners, after installation, check [`THIS`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Notes_to_remember#--for-nvidia-gpu-users)
|
- NVIDIA users / owners, after installation, check [`THIS`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Notes_to_remember#--for-nvidia-gpu-users)
|
||||||
|
- NIVIDIA users: Strongly suggest you visit this site and install current drivers for newer GPUs. [`NVIDIA-Drivers`](https://github.com/mexersus/debian-nvidia-drivers)
|
||||||
|
|
||||||
#### ✨ Costumize the packages to be installed
|
#### ✨ Costumize the packages to be installed
|
||||||
- inside the install-scripts directory, you can edit 01-hypr-pkgs.sh. Do not edit 00-dependencies.sh unless you know what you are doing. Care though as the Hyprland Dots may not work properly!
|
- inside the install-scripts directory, you can edit 01-hypr-pkgs.sh. Do not edit 00-dependencies.sh unless you know what you are doing. Care though as the Hyprland Dots may not work properly!
|
||||||
@ -126,7 +135,7 @@ sudo apt install --no-install-recommends -y sddm
|
|||||||
|
|
||||||
## ✨ Auto clone and install
|
## ✨ Auto clone and install
|
||||||
> [!CAUTION]
|
> [!CAUTION]
|
||||||
> If you are using FISH SHELL, DO NOT use this function. Clone and ran install.sh instead
|
> If you are using FISH SHELL, DO NOT use this function. Clone and run install.sh instead
|
||||||
|
|
||||||
- you can use this command to automatically clone the installer and ran the script for you
|
- you can use this command to automatically clone the installer and ran the script for you
|
||||||
- NOTE: `curl` package is required before running this command
|
- NOTE: `curl` package is required before running this command
|
||||||
@ -181,13 +190,9 @@ source ~/.zshrc
|
|||||||
#### Most common question I got is, Hey Ja, Why the heck it is taking long time to install? Other distro like Arch its only a minute or two. Why here takes like forever?!?!?!
|
#### Most common question I got is, Hey Ja, Why the heck it is taking long time to install? Other distro like Arch its only a minute or two. Why here takes like forever?!?!?!
|
||||||
- Well, most of the core packages are downloaded and Build and compiled from SOURCE. Unlike Other distros, they already have prepacked binary that can just download and install.
|
- Well, most of the core packages are downloaded and Build and compiled from SOURCE. Unlike Other distros, they already have prepacked binary that can just download and install.
|
||||||
|
|
||||||
## 🛎 *** DEBIAN and UBUNTU Hyprland Dots UPDATING NOTES ***
|
## 🛎 *** DEBIAN Hyprland Dots UPDATING NOTES ***
|
||||||
> [!IMPORTANT]
|
> [!CHANGE]
|
||||||
> This is very Important for Debian and Ubuntu Dots
|
- With this new update to Debian-Hyprland the current Hyprland-Dots are now compatible with Debian. This applies only to Debian, not ubuntu.
|
||||||
- Some parts of KooL's Hyprland Dots [`LINK`](https://github.com/JaKooLit/Hyprland-Dots) are not compatible on Debian and Ubuntu especially the hyprland settings.
|
|
||||||
- That is the reason the DOTS for those distro's are "fixed" and they are being pulled on different branch of KooL Dots.
|
|
||||||
|
|
||||||
- To update your KooL's Dots follow this [WIKI](https://github.com/JaKooLit/Hyprland-Dots/wiki#--debian-and-ubuntu-hyprland-dots-updating-notes-)
|
|
||||||
|
|
||||||
> [!NOTE]
|
> [!NOTE]
|
||||||
> This script does not setup audio. Kindly set up. If you have not, I recommend pipewire. `sudo apt install -y pipewire`
|
> This script does not setup audio. Kindly set up. If you have not, I recommend pipewire. `sudo apt install -y pipewire`
|
||||||
@ -284,7 +289,6 @@ cd ~/Debian-Hyprland
|
|||||||
- Want to contribute on KooL-Hyprland-Dots Click [`HERE`](https://github.com/JaKooLit/Hyprland-Dots/blob/main/CONTRIBUTING.md) for a guide how to contribute
|
- Want to contribute on KooL-Hyprland-Dots Click [`HERE`](https://github.com/JaKooLit/Hyprland-Dots/blob/main/CONTRIBUTING.md) for a guide how to contribute
|
||||||
- Want to contribute on This Installer? Click [`HERE`](https://github.com/JaKooLit/Debian-Hyprland/blob/main/CONTRIBUTING.md) for a guide how to contribute
|
- Want to contribute on This Installer? Click [`HERE`](https://github.com/JaKooLit/Debian-Hyprland/blob/main/CONTRIBUTING.md) for a guide how to contribute
|
||||||
|
|
||||||
|
|
||||||
#### 👍👍👍 Thanks and Credits!
|
#### 👍👍👍 Thanks and Credits!
|
||||||
- [`Hyprland`](https://hyprland.org/) Of course to Hyprland and @vaxerski for this awesome Dynamic Tiling Manager.
|
- [`Hyprland`](https://hyprland.org/) Of course to Hyprland and @vaxerski for this awesome Dynamic Tiling Manager.
|
||||||
|
|
||||||
|
|||||||
0
auto-install.sh
Normal file → Executable file
0
auto-install.sh
Normal file → Executable file
151
dry-run-build.sh
Executable file
151
dry-run-build.sh
Executable file
@ -0,0 +1,151 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
# Dry-run orchestrator for Hyprland and companion modules
|
||||||
|
# - Compiles components but skips installation (uses DRY_RUN=1)
|
||||||
|
# - Summarizes PASS/FAIL per module to Install-Logs/
|
||||||
|
#
|
||||||
|
# Usage:
|
||||||
|
# chmod +x ./dry-run-build.sh
|
||||||
|
# ./dry-run-build.sh # run full stack dry-run
|
||||||
|
# ./dry-run-build.sh --with-deps # install dependencies first, then dry-run build
|
||||||
|
# ./dry-run-build.sh --only hyprland # run a subset (comma-separated allowed)
|
||||||
|
# ./dry-run-build.sh --skip qtutils # skip one or more (comma-separated)
|
||||||
|
#
|
||||||
|
# Notes:
|
||||||
|
# - Run from the repository root. Do not cd into install-scripts/.
|
||||||
|
# - You can also call modules directly, e.g., DRY_RUN=1 ./install-scripts/hyprland.sh
|
||||||
|
|
||||||
|
set -u
|
||||||
|
set -o pipefail
|
||||||
|
|
||||||
|
REPO_ROOT=$(pwd)
|
||||||
|
LOG_DIR="$REPO_ROOT/Install-Logs"
|
||||||
|
mkdir -p "$LOG_DIR"
|
||||||
|
TS=$(date +%F-%H%M%S)
|
||||||
|
SUMMARY_LOG="$LOG_DIR/build-dry-run-$TS.log"
|
||||||
|
|
||||||
|
# Default module order (core first, then Hyprland)
|
||||||
|
DEFAULT_MODULES=(
|
||||||
|
hyprutils
|
||||||
|
hyprlang
|
||||||
|
wayland-protocols-src
|
||||||
|
aquamarine
|
||||||
|
hyprgraphics
|
||||||
|
hyprwayland-scanner
|
||||||
|
hyprland-protocols
|
||||||
|
hyprland-qt-support
|
||||||
|
hyprland-qtutils
|
||||||
|
hyprland
|
||||||
|
)
|
||||||
|
|
||||||
|
WITH_DEPS=0
|
||||||
|
ONLY_LIST=""
|
||||||
|
SKIP_LIST=""
|
||||||
|
|
||||||
|
usage() {
|
||||||
|
grep '^# ' "$0" | sed 's/^# \{0,1\}//'
|
||||||
|
}
|
||||||
|
|
||||||
|
# Parse args
|
||||||
|
while [[ $# -gt 0 ]]; do
|
||||||
|
case "$1" in
|
||||||
|
-h|--help)
|
||||||
|
usage
|
||||||
|
exit 0
|
||||||
|
;;
|
||||||
|
--with-deps)
|
||||||
|
WITH_DEPS=1
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
--only)
|
||||||
|
ONLY_LIST=${2:-}
|
||||||
|
shift 2
|
||||||
|
;;
|
||||||
|
--skip)
|
||||||
|
SKIP_LIST=${2:-}
|
||||||
|
shift 2
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
echo "Unknown argument: $1" >&2
|
||||||
|
exit 2
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
|
||||||
|
# Build module list based on --only/--skip
|
||||||
|
MODULES=()
|
||||||
|
if [[ -n "$ONLY_LIST" ]]; then
|
||||||
|
IFS=',' read -r -a MODULES <<< "$ONLY_LIST"
|
||||||
|
else
|
||||||
|
MODULES=("${DEFAULT_MODULES[@]}")
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ -n "$SKIP_LIST" ]]; then
|
||||||
|
IFS=',' read -r -a _SKIPS <<< "$SKIP_LIST"
|
||||||
|
FILTERED=()
|
||||||
|
for m in "${MODULES[@]}"; do
|
||||||
|
skip_it=0
|
||||||
|
for s in "${_SKIPS[@]}"; do
|
||||||
|
if [[ "$m" == "$s" ]]; then
|
||||||
|
skip_it=1
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
if [[ $skip_it -eq 0 ]]; then
|
||||||
|
FILTERED+=("$m")
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
MODULES=("${FILTERED[@]}")
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Optionally install dependencies (not a dry-run)
|
||||||
|
if [[ $WITH_DEPS -eq 1 ]]; then
|
||||||
|
echo "[INFO] Installing dependencies via 00-dependencies.sh" | tee -a "$SUMMARY_LOG"
|
||||||
|
if ! "$REPO_ROOT/install-scripts/00-dependencies.sh"; then
|
||||||
|
echo "[ERROR] Dependencies installation failed. See logs under Install-Logs/." | tee -a "$SUMMARY_LOG"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Run each module with DRY_RUN=1 and capture exit codes
|
||||||
|
declare -A RESULTS
|
||||||
|
|
||||||
|
echo "[INFO] Starting dry-run build at $TS" | tee -a "$SUMMARY_LOG"
|
||||||
|
|
||||||
|
for mod in "${MODULES[@]}"; do
|
||||||
|
script_path="$REPO_ROOT/install-scripts/$mod.sh"
|
||||||
|
echo "\n=== $mod (DRY RUN) ===" | tee -a "$SUMMARY_LOG"
|
||||||
|
if [[ ! -x "$script_path" ]]; then
|
||||||
|
# Try to make executable if it exists
|
||||||
|
if [[ -f "$script_path" ]]; then
|
||||||
|
chmod +x "$script_path" || true
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
if [[ ! -f "$script_path" ]]; then
|
||||||
|
echo "[WARN] Missing script: $script_path" | tee -a "$SUMMARY_LOG"
|
||||||
|
RESULTS[$mod]="MISSING"
|
||||||
|
continue
|
||||||
|
fi
|
||||||
|
if DRY_RUN=1 "$script_path"; then
|
||||||
|
RESULTS[$mod]="PASS"
|
||||||
|
else
|
||||||
|
RESULTS[$mod]="FAIL"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
# Summary
|
||||||
|
{
|
||||||
|
echo "\nSummary (dry-run):"
|
||||||
|
for mod in "${MODULES[@]}"; do
|
||||||
|
printf "%-24s %s\n" "$mod" "${RESULTS[$mod]:-SKIPPED}"
|
||||||
|
done
|
||||||
|
echo "\nLogs: individual module logs are under Install-Logs/. This summary: $SUMMARY_LOG"
|
||||||
|
} | tee -a "$SUMMARY_LOG"
|
||||||
|
|
||||||
|
# Exit non-zero if any FAIL occurred
|
||||||
|
failed=0
|
||||||
|
for mod in "${MODULES[@]}"; do
|
||||||
|
if [[ "${RESULTS[$mod]:-}" == "FAIL" ]]; then
|
||||||
|
failed=1
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
exit $failed
|
||||||
14
hypr-tags.env
Normal file
14
hypr-tags.env
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
# Central tag overrides for the Hyprland stack
|
||||||
|
# You can edit these values or let update-hyprland.sh manage them.
|
||||||
|
# Each module script reads its TAG from these environment variables if set.
|
||||||
|
|
||||||
|
HYPRLAND_TAG=v0.51.1
|
||||||
|
AQUAMARINE_TAG=v0.9.3
|
||||||
|
HYPRUTILS_TAG=v0.8.3
|
||||||
|
HYPRLANG_TAG=v0.6.4
|
||||||
|
HYPRGRAPHICS_TAG=v0.1.5
|
||||||
|
HYPRWAYLAND_SCANNER_TAG=v0.4.5
|
||||||
|
HYPRLAND_PROTOCOLS_TAG=v0.6.4
|
||||||
|
HYPRLAND_QT_SUPPORT_TAG=v0.1.0
|
||||||
|
HYPRLAND_QTUTILS_TAG=v0.1.4
|
||||||
|
WAYLAND_PROTOCOLS_TAG=1.45
|
||||||
@ -5,7 +5,16 @@
|
|||||||
|
|
||||||
|
|
||||||
#specific branch or release
|
#specific branch or release
|
||||||
tag="v0.9.2"
|
tag="v0.9.3"
|
||||||
|
# Allow environment override
|
||||||
|
if [ -n "${AQUAMARINE_TAG:-}" ]; then tag="$AQUAMARINE_TAG"; fi
|
||||||
|
|
||||||
|
# Dry-run support
|
||||||
|
DO_INSTALL=1
|
||||||
|
if [ "$1" = "--dry-run" ] || [ "${DRY_RUN}" = "1" ] || [ "${DRY_RUN}" = "true" ]; then
|
||||||
|
DO_INSTALL=0
|
||||||
|
echo "${NOTE} DRY RUN: install step will be skipped."
|
||||||
|
fi
|
||||||
|
|
||||||
## WARNING: DO NOT EDIT BEYOND THIS LINE IF YOU DON'T KNOW WHAT YOU ARE DOING! ##
|
## WARNING: DO NOT EDIT BEYOND THIS LINE IF YOU DON'T KNOW WHAT YOU ARE DOING! ##
|
||||||
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||||
@ -38,13 +47,17 @@ if git clone --recursive -b $tag https://github.com/hyprwm/aquamarine.git; then
|
|||||||
cd aquamarine || exit 1
|
cd aquamarine || exit 1
|
||||||
cmake --no-warn-unused-cli -DCMAKE_BUILD_TYPE:STRING=Release -DCMAKE_INSTALL_PREFIX:PATH=/usr -S . -B ./build
|
cmake --no-warn-unused-cli -DCMAKE_BUILD_TYPE:STRING=Release -DCMAKE_INSTALL_PREFIX:PATH=/usr -S . -B ./build
|
||||||
cmake --build ./build --config Release --target all -j`nproc 2>/dev/null || getconf NPROCESSORS_CONF`
|
cmake --build ./build --config Release --target all -j`nproc 2>/dev/null || getconf NPROCESSORS_CONF`
|
||||||
|
if [ $DO_INSTALL -eq 1 ]; then
|
||||||
if sudo cmake --install ./build 2>&1 | tee -a "$MLOG" ; then
|
if sudo cmake --install ./build 2>&1 | tee -a "$MLOG" ; then
|
||||||
printf "${OK} ${MAGENTA}aquamarine $tag${RESET} installed successfully.\n" 2>&1 | tee -a "$MLOG"
|
printf "${OK} ${MAGENTA}aquamarine $tag${RESET} installed successfully.\n" 2>&1 | tee -a "$MLOG"
|
||||||
else
|
else
|
||||||
echo -e "${ERROR} Installation failed for ${YELLOW}aquamarine $tag${RESET}" 2>&1 | tee -a "$MLOG"
|
echo -e "${ERROR} Installation failed for ${YELLOW}aquamarine $tag${RESET}" 2>&1 | tee -a "$MLOG"
|
||||||
fi
|
fi
|
||||||
|
else
|
||||||
|
echo "${NOTE} DRY RUN: Skipping installation of aquamarine $tag."
|
||||||
|
fi
|
||||||
#moving the addional logs to Install-Logs directory
|
#moving the addional logs to Install-Logs directory
|
||||||
mv $MLOG ../Install-Logs/ || true
|
[ -f "$MLOG" ] && mv "$MLOG" ../Install-Logs/
|
||||||
cd ..
|
cd ..
|
||||||
else
|
else
|
||||||
echo -e "${ERROR} Download failed for ${YELLOW}aquamarine $tag${RESET}" 2>&1 | tee -a "$LOG"
|
echo -e "${ERROR} Download failed for ${YELLOW}aquamarine $tag${RESET}" 2>&1 | tee -a "$LOG"
|
||||||
|
|||||||
@ -3,7 +3,8 @@
|
|||||||
# Hyprland-Dots to download a specific release #
|
# Hyprland-Dots to download a specific release #
|
||||||
|
|
||||||
# Define the specific release version to download
|
# Define the specific release version to download
|
||||||
specific_version="v2.3.3-Deb-Untu-Hyprland-0.41.2"
|
specific_version="v2.3.16"
|
||||||
|
#specific_version="v2.3.3-Deb-Untu-Hyprland-0.41.2"
|
||||||
|
|
||||||
## WARNING: DO NOT EDIT BEYOND THIS LINE IF YOU DON'T KNOW WHAT YOU ARE DOING! ##
|
## WARNING: DO NOT EDIT BEYOND THIS LINE IF YOU DON'T KNOW WHAT YOU ARE DOING! ##
|
||||||
|
|
||||||
|
|||||||
@ -9,6 +9,15 @@ hyprgraphics=(
|
|||||||
|
|
||||||
#specific branch or release
|
#specific branch or release
|
||||||
tag="v0.1.5"
|
tag="v0.1.5"
|
||||||
|
# Allow environment override
|
||||||
|
if [ -n "${HYPRGRAPHICS_TAG:-}" ]; then tag="$HYPRGRAPHICS_TAG"; fi
|
||||||
|
|
||||||
|
# Dry-run support
|
||||||
|
DO_INSTALL=1
|
||||||
|
if [ "$1" = "--dry-run" ] || [ "${DRY_RUN}" = "1" ] || [ "${DRY_RUN}" = "true" ]; then
|
||||||
|
DO_INSTALL=0
|
||||||
|
echo "${NOTE} DRY RUN: install step will be skipped."
|
||||||
|
fi
|
||||||
|
|
||||||
## WARNING: DO NOT EDIT BEYOND THIS LINE IF YOU DON'T KNOW WHAT YOU ARE DOING! ##
|
## WARNING: DO NOT EDIT BEYOND THIS LINE IF YOU DON'T KNOW WHAT YOU ARE DOING! ##
|
||||||
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||||
@ -50,13 +59,17 @@ if git clone --recursive -b $tag https://github.com/hyprwm/hyprgraphics.git; the
|
|||||||
cd hyprgraphics || exit 1
|
cd hyprgraphics || exit 1
|
||||||
cmake --no-warn-unused-cli -DCMAKE_BUILD_TYPE:STRING=Release -DCMAKE_INSTALL_PREFIX:PATH=/usr -S . -B ./build
|
cmake --no-warn-unused-cli -DCMAKE_BUILD_TYPE:STRING=Release -DCMAKE_INSTALL_PREFIX:PATH=/usr -S . -B ./build
|
||||||
cmake --build ./build --config Release --target hyprgraphics -j`nproc 2>/dev/null || getconf _NPROCESSORS_CONF`
|
cmake --build ./build --config Release --target hyprgraphics -j`nproc 2>/dev/null || getconf _NPROCESSORS_CONF`
|
||||||
|
if [ $DO_INSTALL -eq 1 ]; then
|
||||||
if sudo cmake --install ./build 2>&1 | tee -a "$MLOG" ; then
|
if sudo cmake --install ./build 2>&1 | tee -a "$MLOG" ; then
|
||||||
printf "${OK} ${MAGENTA}hyprgraphics $tag${RESET} installed successfully.\n" 2>&1 | tee -a "$MLOG"
|
printf "${OK} ${MAGENTA}hyprgraphics $tag${RESET} installed successfully.\n" 2>&1 | tee -a "$MLOG"
|
||||||
else
|
else
|
||||||
echo -e "${ERROR} Installation failed for ${YELLOW}hyprgraphics $graphics${RESET}" 2>&1 | tee -a "$MLOG"
|
echo -e "${ERROR} Installation failed for ${YELLOW}hyprgraphics $graphics${RESET}" 2>&1 | tee -a "$MLOG"
|
||||||
fi
|
fi
|
||||||
|
else
|
||||||
|
echo "${NOTE} DRY RUN: Skipping installation of hyprgraphics $tag."
|
||||||
|
fi
|
||||||
#moving the addional logs to Install-Logs directory
|
#moving the addional logs to Install-Logs directory
|
||||||
mv $MLOG ../Install-Logs/ || true
|
[ -f "$MLOG" ] && mv "$MLOG" ../Install-Logs/
|
||||||
cd ..
|
cd ..
|
||||||
else
|
else
|
||||||
echo -e "${ERROR} Download failed for ${YELLOW}hyprgraphics $graphics${RESET}" 2>&1 | tee -a "$LOG"
|
echo -e "${ERROR} Download failed for ${YELLOW}hyprgraphics $graphics${RESET}" 2>&1 | tee -a "$LOG"
|
||||||
|
|||||||
@ -6,6 +6,15 @@
|
|||||||
|
|
||||||
#specific branch or release
|
#specific branch or release
|
||||||
tag="v0.6.4"
|
tag="v0.6.4"
|
||||||
|
# Allow environment override
|
||||||
|
if [ -n "${HYPRLAND_PROTOCOLS_TAG:-}" ]; then tag="$HYPRLAND_PROTOCOLS_TAG"; fi
|
||||||
|
|
||||||
|
# Dry-run support
|
||||||
|
DO_INSTALL=1
|
||||||
|
if [ "$1" = "--dry-run" ] || [ "${DRY_RUN}" = "1" ] || [ "${DRY_RUN}" = "true" ]; then
|
||||||
|
DO_INSTALL=0
|
||||||
|
echo "${NOTE} DRY RUN: install step will be skipped."
|
||||||
|
fi
|
||||||
|
|
||||||
## WARNING: DO NOT EDIT BEYOND THIS LINE IF YOU DON'T KNOW WHAT YOU ARE DOING! ##
|
## WARNING: DO NOT EDIT BEYOND THIS LINE IF YOU DON'T KNOW WHAT YOU ARE DOING! ##
|
||||||
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||||
@ -37,13 +46,17 @@ printf "${INFO} Installing ${YELLOW}hyprland-protocols $tag${RESET} ...\n"
|
|||||||
if git clone --recursive -b $tag https://github.com/hyprwm/hyprland-protocols.git; then
|
if git clone --recursive -b $tag https://github.com/hyprwm/hyprland-protocols.git; then
|
||||||
cd hyprland-protocols || exit 1
|
cd hyprland-protocols || exit 1
|
||||||
meson setup build
|
meson setup build
|
||||||
|
if [ $DO_INSTALL -eq 1 ]; then
|
||||||
if sudo meson install -C build 2>&1 | tee -a "$MLOG" ; then
|
if sudo meson install -C build 2>&1 | tee -a "$MLOG" ; then
|
||||||
printf "${OK} ${MAGENTA}hyprland-protocols $tag${RESET} installed successfully.\n" 2>&1 | tee -a "$MLOG"
|
printf "${OK} ${MAGENTA}hyprland-protocols $tag${RESET} installed successfully.\n" 2>&1 | tee -a "$MLOG"
|
||||||
else
|
else
|
||||||
echo -e "${ERROR} Installation failed for ${YELLOW}hyprland-protocols $tag${RESET}" 2>&1 | tee -a "$MLOG"
|
echo -e "${ERROR} Installation failed for ${YELLOW}hyprland-protocols $tag${RESET}" 2>&1 | tee -a "$MLOG"
|
||||||
fi
|
fi
|
||||||
|
else
|
||||||
|
echo "${NOTE} DRY RUN: Skipping installation of hyprland-protocols $tag."
|
||||||
|
fi
|
||||||
#moving the addional logs to Install-Logs directory
|
#moving the addional logs to Install-Logs directory
|
||||||
mv $MLOG ../Install-Logs/ || true
|
[ -f "$MLOG" ] && mv "$MLOG" ../Install-Logs/
|
||||||
cd ..
|
cd ..
|
||||||
else
|
else
|
||||||
echo -e "${ERROR} Download failed for ${YELLOW}hyprland-protocols tag${RESET}" 2>&1 | tee -a "$LOG"
|
echo -e "${ERROR} Download failed for ${YELLOW}hyprland-protocols tag${RESET}" 2>&1 | tee -a "$LOG"
|
||||||
|
|||||||
@ -16,6 +16,15 @@ qt_support=(
|
|||||||
|
|
||||||
#specific branch or release
|
#specific branch or release
|
||||||
tag="v0.1.0"
|
tag="v0.1.0"
|
||||||
|
# Allow environment override
|
||||||
|
if [ -n "${HYPRLAND_QT_SUPPORT_TAG:-}" ]; then tag="$HYPRLAND_QT_SUPPORT_TAG"; fi
|
||||||
|
|
||||||
|
# Dry-run support
|
||||||
|
DO_INSTALL=1
|
||||||
|
if [ "$1" = "--dry-run" ] || [ "${DRY_RUN}" = "1" ] || [ "${DRY_RUN}" = "true" ]; then
|
||||||
|
DO_INSTALL=0
|
||||||
|
echo "${NOTE} DRY RUN: install step will be skipped."
|
||||||
|
fi
|
||||||
|
|
||||||
## WARNING: DO NOT EDIT BEYOND THIS LINE IF YOU DON'T KNOW WHAT YOU ARE DOING! ##
|
## WARNING: DO NOT EDIT BEYOND THIS LINE IF YOU DON'T KNOW WHAT YOU ARE DOING! ##
|
||||||
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||||
@ -58,13 +67,17 @@ if git clone --recursive -b $tag https://github.com/hyprwm/hyprland-qt-support.g
|
|||||||
cd hyprland-qt-support || exit 1
|
cd hyprland-qt-support || exit 1
|
||||||
cmake --no-warn-unused-cli -DCMAKE_BUILD_TYPE:STRING=Release -DCMAKE_INSTALL_PREFIX:PATH=/usr -S . -B ./build
|
cmake --no-warn-unused-cli -DCMAKE_BUILD_TYPE:STRING=Release -DCMAKE_INSTALL_PREFIX:PATH=/usr -S . -B ./build
|
||||||
cmake --build ./build --config Release --target all -j`nproc 2>/dev/null || getconf NPROCESSORS_CONF`
|
cmake --build ./build --config Release --target all -j`nproc 2>/dev/null || getconf NPROCESSORS_CONF`
|
||||||
|
if [ $DO_INSTALL -eq 1 ]; then
|
||||||
if sudo cmake --install ./build 2>&1 | tee -a "$MLOG" ; then
|
if sudo cmake --install ./build 2>&1 | tee -a "$MLOG" ; then
|
||||||
printf "${OK} ${MAGENTA}hyprland-qt-support $tag${RESET} installed successfully.\n" 2>&1 | tee -a "$MLOG"
|
printf "${OK} ${MAGENTA}hyprland-qt-support $tag${RESET} installed successfully.\n" 2>&1 | tee -a "$MLOG"
|
||||||
else
|
else
|
||||||
echo -e "${ERROR} Installation failed for ${YELLOW}hyprland-qt-support $tag${RESET}" 2>&1 | tee -a "$MLOG"
|
echo -e "${ERROR} Installation failed for ${YELLOW}hyprland-qt-support $tag${RESET}" 2>&1 | tee -a "$MLOG"
|
||||||
fi
|
fi
|
||||||
|
else
|
||||||
|
echo "${NOTE} DRY RUN: Skipping installation of hyprland-qt-support $tag."
|
||||||
|
fi
|
||||||
#moving the addional logs to Install-Logs directory
|
#moving the addional logs to Install-Logs directory
|
||||||
mv $MLOG ../Install-Logs/ || true
|
[ -f "$MLOG" ] && mv "$MLOG" ../Install-Logs/
|
||||||
cd ..
|
cd ..
|
||||||
else
|
else
|
||||||
echo -e "${ERROR} Download failed for ${YELLOW}hyprland-qt-support $tag${RESET}" 2>&1 | tee -a "$LOG"
|
echo -e "${ERROR} Download failed for ${YELLOW}hyprland-qt-support $tag${RESET}" 2>&1 | tee -a "$LOG"
|
||||||
|
|||||||
@ -18,6 +18,15 @@ qtutils=(
|
|||||||
|
|
||||||
#specific branch or release
|
#specific branch or release
|
||||||
tag="v0.1.4"
|
tag="v0.1.4"
|
||||||
|
# Allow environment override
|
||||||
|
if [ -n "${HYPRLAND_QTUTILS_TAG:-}" ]; then tag="$HYPRLAND_QTUTILS_TAG"; fi
|
||||||
|
|
||||||
|
# Dry-run support
|
||||||
|
DO_INSTALL=1
|
||||||
|
if [ "$1" = "--dry-run" ] || [ "${DRY_RUN}" = "1" ] || [ "${DRY_RUN}" = "true" ]; then
|
||||||
|
DO_INSTALL=0
|
||||||
|
echo "${NOTE} DRY RUN: install step will be skipped."
|
||||||
|
fi
|
||||||
|
|
||||||
## WARNING: DO NOT EDIT BEYOND THIS LINE IF YOU DON'T KNOW WHAT YOU ARE DOING! ##
|
## WARNING: DO NOT EDIT BEYOND THIS LINE IF YOU DON'T KNOW WHAT YOU ARE DOING! ##
|
||||||
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||||
@ -60,13 +69,17 @@ if git clone --recursive -b $tag https://github.com/hyprwm/hyprland-qtutils.git;
|
|||||||
cd hyprland-qtutils || exit 1
|
cd hyprland-qtutils || exit 1
|
||||||
cmake --no-warn-unused-cli -DCMAKE_BUILD_TYPE:STRING=Release -DCMAKE_INSTALL_PREFIX:PATH=/usr -S . -B ./build
|
cmake --no-warn-unused-cli -DCMAKE_BUILD_TYPE:STRING=Release -DCMAKE_INSTALL_PREFIX:PATH=/usr -S . -B ./build
|
||||||
cmake --build ./build --config Release --target all -j`nproc 2>/dev/null || getconf NPROCESSORS_CONF`
|
cmake --build ./build --config Release --target all -j`nproc 2>/dev/null || getconf NPROCESSORS_CONF`
|
||||||
|
if [ $DO_INSTALL -eq 1 ]; then
|
||||||
if sudo cmake --install ./build 2>&1 | tee -a "$MLOG" ; then
|
if sudo cmake --install ./build 2>&1 | tee -a "$MLOG" ; then
|
||||||
printf "${OK} ${MAGENTA}hyprland-qtutils $tag${RESET} installed successfully.\n" 2>&1 | tee -a "$MLOG"
|
printf "${OK} ${MAGENTA}hyprland-qtutils $tag${RESET} installed successfully.\n" 2>&1 | tee -a "$MLOG"
|
||||||
else
|
else
|
||||||
echo -e "${ERROR} Installation failed for ${YELLOW}hyprland-qtutils $tag${RESET}" 2>&1 | tee -a "$MLOG"
|
echo -e "${ERROR} Installation failed for ${YELLOW}hyprland-qtutils $tag${RESET}" 2>&1 | tee -a "$MLOG"
|
||||||
fi
|
fi
|
||||||
|
else
|
||||||
|
echo "${NOTE} DRY RUN: Skipping installation of hyprland-qtutils $tag."
|
||||||
|
fi
|
||||||
#moving the addional logs to Install-Logs directory
|
#moving the addional logs to Install-Logs directory
|
||||||
mv $MLOG ../Install-Logs/ || true
|
[ -f "$MLOG" ] && mv "$MLOG" ../Install-Logs/
|
||||||
cd ..
|
cd ..
|
||||||
else
|
else
|
||||||
echo -e "${ERROR} Download failed for ${YELLOW}hyprland-qtutils $tag${RESET}" 2>&1 | tee -a "$LOG"
|
echo -e "${ERROR} Download failed for ${YELLOW}hyprland-qtutils $tag${RESET}" 2>&1 | tee -a "$LOG"
|
||||||
|
|||||||
@ -3,7 +3,16 @@
|
|||||||
# Main Hyprland Package#
|
# Main Hyprland Package#
|
||||||
|
|
||||||
#specific branch or release
|
#specific branch or release
|
||||||
tag="v0.50.1"
|
tag="v0.51.1"
|
||||||
|
# Allow environment override
|
||||||
|
if [ -n "${HYPRLAND_TAG:-}" ]; then tag="$HYPRLAND_TAG"; fi
|
||||||
|
|
||||||
|
# Dry-run support
|
||||||
|
DO_INSTALL=1
|
||||||
|
if [ "$1" = "--dry-run" ] || [ "${DRY_RUN}" = "1" ] || [ "${DRY_RUN}" = "true" ]; then
|
||||||
|
DO_INSTALL=0
|
||||||
|
echo "${NOTE} DRY RUN: install step will be skipped."
|
||||||
|
fi
|
||||||
|
|
||||||
hyprland=(
|
hyprland=(
|
||||||
clang
|
clang
|
||||||
@ -67,14 +76,55 @@ fi
|
|||||||
|
|
||||||
if git clone --recursive -b $tag "https://github.com/hyprwm/Hyprland"; then
|
if git clone --recursive -b $tag "https://github.com/hyprwm/Hyprland"; then
|
||||||
cd "Hyprland" || exit 1
|
cd "Hyprland" || exit 1
|
||||||
|
# Apply patch only if it applies cleanly; otherwise skip
|
||||||
|
if [ -f ../assets/0001-fix-hyprland-compile-issue.patch ]; then
|
||||||
|
if patch -p1 --dry-run < ../assets/0001-fix-hyprland-compile-issue.patch >/dev/null 2>&1; then
|
||||||
patch -p1 < ../assets/0001-fix-hyprland-compile-issue.patch
|
patch -p1 < ../assets/0001-fix-hyprland-compile-issue.patch
|
||||||
CXX=clang++ CXXFLAGS=-std=gnu++26 make all
|
else
|
||||||
if sudo make install 2>&1 | tee -a "$MLOG"; then
|
echo "${NOTE} Hyprland compile patch does not apply on $tag; skipping."
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
# By default, build Hyprland with bundled hyprutils/hyprlang to avoid version mismatches
|
||||||
|
# You can force system libs by exporting USE_SYSTEM_HYPRLIBS=1 before running this script.
|
||||||
|
USE_SYSTEM=${USE_SYSTEM_HYPRLIBS:-1}
|
||||||
|
if [ "$USE_SYSTEM" = "1" ]; then
|
||||||
|
export PKG_CONFIG_PATH="/usr/local/lib/pkgconfig:/usr/local/share/pkgconfig:${PKG_CONFIG_PATH:-}"
|
||||||
|
export CMAKE_PREFIX_PATH="/usr/local:${CMAKE_PREFIX_PATH:-}"
|
||||||
|
SYSTEM_FLAGS=("-DUSE_SYSTEM_HYPRUTILS=ON" "-DUSE_SYSTEM_HYPRLANG=ON")
|
||||||
|
else
|
||||||
|
# Ensure we do not accidentally pick up mismatched system headers
|
||||||
|
unset PKG_CONFIG_PATH || true
|
||||||
|
SYSTEM_FLAGS=("-DUSE_SYSTEM_HYPRUTILS=OFF" "-DUSE_SYSTEM_HYPRLANG=OFF")
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Make sure submodules are present when building bundled deps
|
||||||
|
git submodule update --init --recursive || true
|
||||||
|
|
||||||
|
# Force Clang toolchain to support required language features and flags
|
||||||
|
export CC="${CC:-clang}"
|
||||||
|
export CXX="${CXX:-clang++}"
|
||||||
|
CONFIG_FLAGS=(
|
||||||
|
-DCMAKE_BUILD_TYPE=Release
|
||||||
|
-DCMAKE_C_COMPILER="${CC}"
|
||||||
|
-DCMAKE_CXX_COMPILER="${CXX}"
|
||||||
|
-DCMAKE_CXX_STANDARD=26
|
||||||
|
-DCMAKE_CXX_STANDARD_REQUIRED=ON
|
||||||
|
-DCMAKE_CXX_EXTENSIONS=ON
|
||||||
|
"${SYSTEM_FLAGS[@]}"
|
||||||
|
)
|
||||||
|
cmake -S . -B build "${CONFIG_FLAGS[@]}"
|
||||||
|
cmake --build build -j "$(nproc 2>/dev/null || getconf _NPROCESSORS_CONF)"
|
||||||
|
|
||||||
|
if [ $DO_INSTALL -eq 1 ]; then
|
||||||
|
if sudo cmake --install build 2>&1 | tee -a "$MLOG"; then
|
||||||
printf "${OK} ${MAGENTA}Hyprland tag${RESET} installed successfully.\n" 2>&1 | tee -a "$MLOG"
|
printf "${OK} ${MAGENTA}Hyprland tag${RESET} installed successfully.\n" 2>&1 | tee -a "$MLOG"
|
||||||
else
|
else
|
||||||
echo -e "${ERROR} Installation failed for ${YELLOW}Hyprland $tag${RESET}" 2>&1 | tee -a "$MLOG"
|
echo -e "${ERROR} Installation failed for ${YELLOW}Hyprland $tag${RESET}" 2>&1 | tee -a "$MLOG"
|
||||||
fi
|
fi
|
||||||
mv $MLOG ../Install-Logs/ || true
|
else
|
||||||
|
echo "${NOTE} DRY RUN: Skipping installation of Hyprland $tag."
|
||||||
|
fi
|
||||||
|
[ -f "$MLOG" ] && mv "$MLOG" ../Install-Logs/
|
||||||
cd ..
|
cd ..
|
||||||
else
|
else
|
||||||
echo -e "${ERROR} Download failed for ${YELLOW}Hyprland $tag${RESET}" 2>&1 | tee -a "$LOG"
|
echo -e "${ERROR} Download failed for ${YELLOW}Hyprland $tag${RESET}" 2>&1 | tee -a "$LOG"
|
||||||
|
|||||||
@ -6,6 +6,15 @@
|
|||||||
|
|
||||||
#specific branch or release
|
#specific branch or release
|
||||||
tag="v0.6.4"
|
tag="v0.6.4"
|
||||||
|
# Allow environment override
|
||||||
|
if [ -n "${HYPRLANG_TAG:-}" ]; then tag="$HYPRLANG_TAG"; fi
|
||||||
|
|
||||||
|
# Dry-run support
|
||||||
|
DO_INSTALL=1
|
||||||
|
if [ "$1" = "--dry-run" ] || [ "${DRY_RUN}" = "1" ] || [ "${DRY_RUN}" = "true" ]; then
|
||||||
|
DO_INSTALL=0
|
||||||
|
echo "${NOTE} DRY RUN: install step will be skipped."
|
||||||
|
fi
|
||||||
|
|
||||||
## WARNING: DO NOT EDIT BEYOND THIS LINE IF YOU DON'T KNOW WHAT YOU ARE DOING! ##
|
## WARNING: DO NOT EDIT BEYOND THIS LINE IF YOU DON'T KNOW WHAT YOU ARE DOING! ##
|
||||||
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||||
@ -36,15 +45,19 @@ fi
|
|||||||
printf "${INFO} Installing ${YELLOW}hyprlang $tag${RESET} ...\n"
|
printf "${INFO} Installing ${YELLOW}hyprlang $tag${RESET} ...\n"
|
||||||
if git clone --recursive -b $tag https://github.com/hyprwm/hyprlang.git; then
|
if git clone --recursive -b $tag https://github.com/hyprwm/hyprlang.git; then
|
||||||
cd hyprlang || exit 1
|
cd hyprlang || exit 1
|
||||||
cmake --no-warn-unused-cli -DCMAKE_BUILD_TYPE:STRING=Release -DCMAKE_INSTALL_PREFIX:PATH=/usr -S . -B ./build
|
cmake --no-warn-unused-cli -DCMAKE_BUILD_TYPE:STRING=Release -DCMAKE_INSTALL_PREFIX:PATH=/usr/local -S . -B ./build
|
||||||
cmake --build ./build --config Release --target hyprlang -j`nproc 2>/dev/null || getconf _NPROCESSORS_CONF`
|
cmake --build ./build --config Release --target hyprlang -j`nproc 2>/dev/null || getconf _NPROCESSORS_CONF`
|
||||||
|
if [ $DO_INSTALL -eq 1 ]; then
|
||||||
if sudo cmake --install ./build 2>&1 | tee -a "$MLOG" ; then
|
if sudo cmake --install ./build 2>&1 | tee -a "$MLOG" ; then
|
||||||
printf "${OK} ${MAGENTA}hyprlang tag${RESET} installed successfully.\n" 2>&1 | tee -a "$MLOG"
|
printf "${OK} ${MAGENTA}hyprlang tag${RESET} installed successfully.\n" 2>&1 | tee -a "$MLOG"
|
||||||
else
|
else
|
||||||
echo -e "${ERROR} Installation failed for ${YELLOW}hyprlang $tag${RESET}" 2>&1 | tee -a "$MLOG"
|
echo -e "${ERROR} Installation failed for ${YELLOW}hyprlang $tag${RESET}" 2>&1 | tee -a "$MLOG"
|
||||||
fi
|
fi
|
||||||
|
else
|
||||||
|
echo "${NOTE} DRY RUN: Skipping installation of hyprlang $tag."
|
||||||
|
fi
|
||||||
#moving the addional logs to Install-Logs directory
|
#moving the addional logs to Install-Logs directory
|
||||||
mv $MLOG ../Install-Logs/ || true
|
[ -f "$MLOG" ] && mv "$MLOG" ../Install-Logs/
|
||||||
cd ..
|
cd ..
|
||||||
else
|
else
|
||||||
echo -e "${ERROR} Download failed for ${YELLOW}hyprlang $tag${RESET}" 2>&1 | tee -a "$LOG"
|
echo -e "${ERROR} Download failed for ${YELLOW}hyprlang $tag${RESET}" 2>&1 | tee -a "$LOG"
|
||||||
|
|||||||
@ -5,6 +5,15 @@
|
|||||||
|
|
||||||
#specific branch or release
|
#specific branch or release
|
||||||
tag="v0.8.2"
|
tag="v0.8.2"
|
||||||
|
# Allow environment override
|
||||||
|
if [ -n "${HYPRUTILS_TAG:-}" ]; then tag="$HYPRUTILS_TAG"; fi
|
||||||
|
|
||||||
|
# Dry-run support
|
||||||
|
DO_INSTALL=1
|
||||||
|
if [ "$1" = "--dry-run" ] || [ "${DRY_RUN}" = "1" ] || [ "${DRY_RUN}" = "true" ]; then
|
||||||
|
DO_INSTALL=0
|
||||||
|
echo "${NOTE} DRY RUN: install step will be skipped."
|
||||||
|
fi
|
||||||
|
|
||||||
## WARNING: DO NOT EDIT BEYOND THIS LINE IF YOU DON'T KNOW WHAT YOU ARE DOING! ##
|
## WARNING: DO NOT EDIT BEYOND THIS LINE IF YOU DON'T KNOW WHAT YOU ARE DOING! ##
|
||||||
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||||
@ -34,14 +43,18 @@ fi
|
|||||||
|
|
||||||
if git clone -b $tag "https://github.com/hyprwm/hyprutils.git"; then
|
if git clone -b $tag "https://github.com/hyprwm/hyprutils.git"; then
|
||||||
cd "hyprutils" || exit 1
|
cd "hyprutils" || exit 1
|
||||||
cmake --no-warn-unused-cli -DCMAKE_BUILD_TYPE:STRING=Release -DCMAKE_INSTALL_PREFIX:PATH=/usr -S . -B ./build
|
cmake --no-warn-unused-cli -DCMAKE_BUILD_TYPE:STRING=Release -DCMAKE_INSTALL_PREFIX:PATH=/usr/local -S . -B ./build
|
||||||
cmake --build ./build --config Release --target all -j`nproc 2>/dev/null || getconf _NPROCESSORS_CONF`
|
cmake --build ./build --config Release --target all -j`nproc 2>/dev/null || getconf _NPROCESSORS_CONF`
|
||||||
|
if [ $DO_INSTALL -eq 1 ]; then
|
||||||
if sudo cmake --install build 2>&1 | tee -a "$MLOG"; then
|
if sudo cmake --install build 2>&1 | tee -a "$MLOG"; then
|
||||||
printf "${OK} hyprutils installed successfully.\n" 2>&1 | tee -a "$MLOG"
|
printf "${OK} hyprutils installed successfully.\n" 2>&1 | tee -a "$MLOG"
|
||||||
else
|
else
|
||||||
echo -e "${ERROR} Installation failed for hyprutils." 2>&1 | tee -a "$MLOG"
|
echo -e "${ERROR} Installation failed for hyprutils." 2>&1 | tee -a "$MLOG"
|
||||||
fi
|
fi
|
||||||
mv $MLOG ../Install-Logs/ || true
|
else
|
||||||
|
echo "${NOTE} DRY RUN: Skipping installation of hyprutils $tag."
|
||||||
|
fi
|
||||||
|
[ -f "$MLOG" ] && mv "$MLOG" ../Install-Logs/
|
||||||
cd ..
|
cd ..
|
||||||
else
|
else
|
||||||
echo -e "${ERROR} Download failed for hyprutils" 2>&1 | tee -a "$LOG"
|
echo -e "${ERROR} Download failed for hyprutils" 2>&1 | tee -a "$LOG"
|
||||||
|
|||||||
@ -9,6 +9,15 @@ scan_depend=(
|
|||||||
|
|
||||||
#specific branch or release
|
#specific branch or release
|
||||||
tag="v0.4.5"
|
tag="v0.4.5"
|
||||||
|
# Allow environment override
|
||||||
|
if [ -n "${HYPRWAYLAND_SCANNER_TAG:-}" ]; then tag="$HYPRWAYLAND_SCANNER_TAG"; fi
|
||||||
|
|
||||||
|
# Dry-run support
|
||||||
|
DO_INSTALL=1
|
||||||
|
if [ "$1" = "--dry-run" ] || [ "${DRY_RUN}" = "1" ] || [ "${DRY_RUN}" = "true" ]; then
|
||||||
|
DO_INSTALL=0
|
||||||
|
echo "${NOTE} DRY RUN: install step will be skipped."
|
||||||
|
fi
|
||||||
|
|
||||||
## WARNING: DO NOT EDIT BEYOND THIS LINE IF YOU DON'T KNOW WHAT YOU ARE DOING! ##
|
## WARNING: DO NOT EDIT BEYOND THIS LINE IF YOU DON'T KNOW WHAT YOU ARE DOING! ##
|
||||||
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||||
@ -53,13 +62,17 @@ if git clone --recursive -b $tag https://github.com/hyprwm/hyprwayland-scanner.g
|
|||||||
cd hyprwayland-scanner || exit 1
|
cd hyprwayland-scanner || exit 1
|
||||||
cmake -DCMAKE_INSTALL_PREFIX=/usr -B build
|
cmake -DCMAKE_INSTALL_PREFIX=/usr -B build
|
||||||
cmake --build build -j `nproc`
|
cmake --build build -j `nproc`
|
||||||
|
if [ $DO_INSTALL -eq 1 ]; then
|
||||||
if sudo cmake --install build 2>&1 | tee -a "$MLOG" ; then
|
if sudo cmake --install build 2>&1 | tee -a "$MLOG" ; then
|
||||||
printf "${OK} hyprwayland-scanner installed successfully.\n" 2>&1 | tee -a "$MLOG"
|
printf "${OK} hyprwayland-scanner installed successfully.\n" 2>&1 | tee -a "$MLOG"
|
||||||
else
|
else
|
||||||
echo -e "${ERROR} Installation failed for hyprwayland-scanner." 2>&1 | tee -a "$MLOG"
|
echo -e "${ERROR} Installation failed for hyprwayland-scanner." 2>&1 | tee -a "$MLOG"
|
||||||
fi
|
fi
|
||||||
|
else
|
||||||
|
echo "${NOTE} DRY RUN: Skipping installation of hyprwayland-scanner $tag."
|
||||||
|
fi
|
||||||
#moving the addional logs to Install-Logs directory
|
#moving the addional logs to Install-Logs directory
|
||||||
mv $MLOG ../Install-Logs/ || true
|
[ -f "$MLOG" ] && mv "$MLOG" ../Install-Logs/
|
||||||
cd ..
|
cd ..
|
||||||
else
|
else
|
||||||
echo -e "${ERROR} Download failed for hyprwayland-scanner. Please check log." 2>&1 | tee -a "$LOG"
|
echo -e "${ERROR} Download failed for hyprwayland-scanner. Please check log." 2>&1 | tee -a "$LOG"
|
||||||
|
|||||||
83
install-scripts/wayland-protocols-src.sh
Normal file
83
install-scripts/wayland-protocols-src.sh
Normal file
@ -0,0 +1,83 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
# 💫 https://github.com/JaKooLit 💫 #
|
||||||
|
# Build and install wayland-protocols from source
|
||||||
|
# Provides a newer wayland-protocols.pc for pkg-config when distro version is too old
|
||||||
|
|
||||||
|
#specific tag or release (e.g., 1.45, 1.46)
|
||||||
|
tag="1.45"
|
||||||
|
# Allow environment override
|
||||||
|
if [ -n "${WAYLAND_PROTOCOLS_TAG:-}" ]; then tag="$WAYLAND_PROTOCOLS_TAG"; fi
|
||||||
|
|
||||||
|
# Dry-run support
|
||||||
|
DO_INSTALL=1
|
||||||
|
if [ "$1" = "--dry-run" ] || [ "${DRY_RUN}" = "1" ] || [ "${DRY_RUN}" = "true" ]; then
|
||||||
|
DO_INSTALL=0
|
||||||
|
echo "${NOTE} DRY RUN: install step will be skipped."
|
||||||
|
fi
|
||||||
|
|
||||||
|
## WARNING: DO NOT EDIT BEYOND THIS LINE IF YOU DON'T KNOW WHAT YOU ARE DOING! ##
|
||||||
|
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||||
|
|
||||||
|
# Change the working directory to the parent directory of the script
|
||||||
|
PARENT_DIR="$SCRIPT_DIR/.."
|
||||||
|
cd "$PARENT_DIR" || { echo "${ERROR} Failed to change directory to $PARENT_DIR"; exit 1; }
|
||||||
|
|
||||||
|
# Source the global functions script
|
||||||
|
if ! source "$(dirname "$(readlink -f "$0")")/Global_functions.sh"; then
|
||||||
|
echo "Failed to source Global_functions.sh"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Set the name of the log file to include the current date and time
|
||||||
|
LOG="Install-Logs/install-$(date +%d-%H%M%S)_wayland-protocols.log"
|
||||||
|
MLOG="install-$(date +%d-%H%M%S)_wayland-protocols2.log"
|
||||||
|
|
||||||
|
printf "\n%s - Installing ${YELLOW}wayland-protocols (from source)${RESET} .... \n" "${INFO}"
|
||||||
|
|
||||||
|
# Clean previous clone
|
||||||
|
if [ -d "wayland-protocols" ]; then
|
||||||
|
rm -rf "wayland-protocols"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Clone and build (meson)
|
||||||
|
# Upstream: https://gitlab.freedesktop.org/wayland/wayland-protocols.git
|
||||||
|
printf "${INFO} Installing ${YELLOW}wayland-protocols $tag${RESET} ...\n"
|
||||||
|
repo_url="https://gitlab.freedesktop.org/wayland/wayland-protocols.git"
|
||||||
|
if git clone --depth=1 --filter=blob:none "$repo_url" wayland-protocols; then
|
||||||
|
cd wayland-protocols || exit 1
|
||||||
|
# Fetch tags and attempt to checkout the requested tag, trying both raw and v-prefixed
|
||||||
|
git fetch --tags --depth=1 >/dev/null 2>&1 || true
|
||||||
|
checked_out=0
|
||||||
|
for candidate in "$tag" "v$tag"; do
|
||||||
|
if git rev-parse -q --verify "refs/tags/$candidate" >/dev/null; then
|
||||||
|
git checkout -q "refs/tags/$candidate"
|
||||||
|
checked_out=1
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
if [ "$checked_out" -ne 1 ]; then
|
||||||
|
echo "${ERROR} Tag $tag not found in $repo_url" | tee -a "$LOG"
|
||||||
|
echo "${NOTE} Available tags (truncated):" | tee -a "$LOG"
|
||||||
|
git tag --list | tail -n 20 | tee -a "$LOG" || true
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
# Install to /usr/local so pkg-config can prefer it over distro /usr
|
||||||
|
meson setup build --prefix=/usr/local
|
||||||
|
meson compile -C build -j"$(nproc 2>/dev/null || getconf _NPROCESSORS_CONF)"
|
||||||
|
if [ $DO_INSTALL -eq 1 ]; then
|
||||||
|
if sudo meson install -C build 2>&1 | tee -a "$MLOG" ; then
|
||||||
|
printf "${OK} ${MAGENTA}wayland-protocols $tag${RESET} installed successfully.\n" 2>&1 | tee -a "$MLOG"
|
||||||
|
else
|
||||||
|
echo -e "${ERROR} Installation failed for ${YELLOW}wayland-protocols $tag${RESET}" 2>&1 | tee -a "$MLOG"
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
echo "${NOTE} DRY RUN: Skipping installation of wayland-protocols $tag."
|
||||||
|
fi
|
||||||
|
# Move additional logs to Install-Logs directory if they exist
|
||||||
|
[ -f "$MLOG" ] && mv "$MLOG" ../Install-Logs/ || true
|
||||||
|
cd ..
|
||||||
|
else
|
||||||
|
echo -e "${ERROR} Download failed for ${YELLOW}wayland-protocols $tag${RESET}" 2>&1 | tee -a "$LOG"
|
||||||
|
fi
|
||||||
|
|
||||||
|
printf "\n%.0s" {1..2}
|
||||||
64
install.sh
64
install.sh
@ -28,7 +28,7 @@ print_color() {
|
|||||||
printf "\n%.0s" {1..2}
|
printf "\n%.0s" {1..2}
|
||||||
print_color $YELLOW "
|
print_color $YELLOW "
|
||||||
█▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀█
|
█▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀█
|
||||||
KooL's Debian - Hyprland July 2025 Update
|
KooL's Debian - Hyprland October 2025 Update
|
||||||
|
|
||||||
Most Hyprland packages are built from Source
|
Most Hyprland packages are built from Source
|
||||||
|
|
||||||
@ -40,9 +40,11 @@ print_color $YELLOW "
|
|||||||
However, do note that it is downloaded from each individual releases. You can set versions by editing the scripts
|
However, do note that it is downloaded from each individual releases. You can set versions by editing the scripts
|
||||||
located install-scripts directory.
|
located install-scripts directory.
|
||||||
|
|
||||||
These packages are NOT updated automatically. You need to manually update it yourself
|
These packages are NOT updated automatically.
|
||||||
|
|
||||||
BE WARNED!!!!! Installation may take longer!!
|
See the HOWTO documentation on how to get next release of Hyprland installed
|
||||||
|
|
||||||
|
BE WARNED!!!!! Installation will take longer!!
|
||||||
|
|
||||||
|
|
||||||
█▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀█
|
█▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀█
|
||||||
@ -52,22 +54,18 @@ print_color $YELLOW "
|
|||||||
|
|
||||||
█▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄█
|
█▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄█
|
||||||
|
|
||||||
Debian is not my main Distro. As stated above, Most Hyprland and dependencies as built from release.
|
|
||||||
|
|
||||||
I cannot monitor the updates or changes. If there are new versions, please submit an Merge Request for any updates.
|
|
||||||
|
|
||||||
Thank you!
|
Thank you!
|
||||||
"
|
"
|
||||||
printf "\n%.0s" {1..2}
|
printf "\n%.0s" {1..2}
|
||||||
|
|
||||||
|
|
||||||
# Prompt user to continue or exit
|
# Prompt user to continue or exit
|
||||||
read -rp "Do you want to continue with the installation? [y/N]: " confirm
|
read -rp "Do you want to continue with the installation? [y/N]: " confirm
|
||||||
case "$confirm" in
|
case "$confirm" in
|
||||||
[yY][eE][sS]|[yY])
|
[yY][eE][sS] | [yY])
|
||||||
echo -e "${OK} Continuing with installation..."
|
echo -e "${OK} Continuing with installation..."
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
echo -e "${NOTE} You chose not to continue. Exiting..."
|
echo -e "${NOTE} You chose not to continue. Exiting..."
|
||||||
exit 1
|
exit 1
|
||||||
;;
|
;;
|
||||||
@ -110,7 +108,6 @@ if ! command -v whiptail >/dev/null; then
|
|||||||
printf "\n%.0s" {1..1}
|
printf "\n%.0s" {1..1}
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
printf "\n%.0s" {1..2}
|
printf "\n%.0s" {1..2}
|
||||||
echo -e "\e[35m
|
echo -e "\e[35m
|
||||||
╦╔═┌─┐┌─┐╦ ╦ ╦┬ ┬┌─┐┬─┐┬ ┌─┐┌┐┌┌┬┐
|
╦╔═┌─┐┌─┐╦ ╦ ╦┬ ┬┌─┐┬─┐┬ ┌─┐┌┐┌┌┬┐
|
||||||
@ -120,10 +117,10 @@ echo -e "\e[35m
|
|||||||
printf "\n%.0s" {1..1}
|
printf "\n%.0s" {1..1}
|
||||||
|
|
||||||
# Welcome message using whiptail (for displaying information)
|
# Welcome message using whiptail (for displaying information)
|
||||||
whiptail --title "KooL Debian-Hyprland Trixie-SID (2025) Install Script" \
|
whiptail --title "KooL Debian-Hyprland Trixie+ (2025) Install Script" \
|
||||||
--msgbox "Welcome to KooL Debian-Hyprland Trixie-SID (2025) Install Script!!!\n\n\
|
--msgbox "Welcome to KooL Debian-Hyprland Trixie+ (2025) Install Script!!!\n\n\
|
||||||
ATTENTION: Run a full system update and Reboot first !!! (Highly Recommended)\n\n\
|
ATTENTION: Run a full system update and Reboot first !!! (Highly Recommended)\n\n\
|
||||||
NOTE: If you are installing on a VM, ensure to enable 3D acceleration else Hyprland may NOT start!" \
|
NOTE: If you are installing on a VM, ensure to enable 3D acceleration otherwise Hyprland may NOT start!" \
|
||||||
15 80
|
15 80
|
||||||
|
|
||||||
# Ask if the user wants to proceed
|
# Ask if the user wants to proceed
|
||||||
@ -141,13 +138,12 @@ sleep 1
|
|||||||
printf "\n%.0s" {1..1}
|
printf "\n%.0s" {1..1}
|
||||||
|
|
||||||
# install pciutils if detected not installed. Necessary for detecting GPU
|
# install pciutils if detected not installed. Necessary for detecting GPU
|
||||||
if ! dpkg -l | grep -w pciutils > /dev/null; then
|
if ! dpkg -l | grep -w pciutils >/dev/null; then
|
||||||
echo "pciutils is not installed. Installing..." | tee -a "$LOG"
|
echo "pciutils is not installed. Installing..." | tee -a "$LOG"
|
||||||
sudo apt install -y pciutils
|
sudo apt install -y pciutils
|
||||||
printf "\n%.0s" {1..1}
|
printf "\n%.0s" {1..1}
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
# Path to the install-scripts directory
|
# Path to the install-scripts directory
|
||||||
script_directory=install-scripts
|
script_directory=install-scripts
|
||||||
|
|
||||||
@ -167,6 +163,24 @@ execute_script() {
|
|||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# Load centralized Hyprland stack tags if present and export for child scripts
|
||||||
|
if [ -f "./hypr-tags.env" ]; then
|
||||||
|
# shellcheck disable=SC1091
|
||||||
|
source "./hypr-tags.env"
|
||||||
|
# If core tags are set to auto/latest, refresh to resolve concrete versions
|
||||||
|
if [ "${HYPRUTILS_TAG:-}" = "auto" ] || [ "${HYPRUTILS_TAG:-}" = "latest" ] || [ -z "${HYPRUTILS_TAG:-}" ] ||
|
||||||
|
[ "${HYPRLANG_TAG:-}" = "auto" ] || [ "${HYPRLANG_TAG:-}" = "latest" ] || [ -z "${HYPRLANG_TAG:-}" ]; then
|
||||||
|
if [ -f ./refresh-hypr-tags.sh ]; then
|
||||||
|
chmod +x ./refresh-hypr-tags.sh || true
|
||||||
|
./refresh-hypr-tags.sh
|
||||||
|
# reload after refresh
|
||||||
|
# shellcheck disable=SC1091
|
||||||
|
source "./hypr-tags.env"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
export HYPRLAND_TAG AQUAMARINE_TAG HYPRUTILS_TAG HYPRLANG_TAG HYPRGRAPHICS_TAG HYPRWAYLAND_SCANNER_TAG HYPRLAND_PROTOCOLS_TAG HYPRLAND_QT_SUPPORT_TAG HYPRLAND_QTUTILS_TAG WAYLAND_PROTOCOLS_TAG
|
||||||
|
fi
|
||||||
|
|
||||||
#################
|
#################
|
||||||
## Default values for the options (will be overwritten by preset file if available)
|
## Default values for the options (will be overwritten by preset file if available)
|
||||||
gtk_themes="OFF"
|
gtk_themes="OFF"
|
||||||
@ -227,7 +241,7 @@ fi
|
|||||||
|
|
||||||
# Check if NVIDIA GPU is detected
|
# Check if NVIDIA GPU is detected
|
||||||
nvidia_detected=false
|
nvidia_detected=false
|
||||||
if lspci | grep -i "nvidia" &> /dev/null; then
|
if lspci | grep -i "nvidia" &>/dev/null; then
|
||||||
nvidia_detected=true
|
nvidia_detected=true
|
||||||
whiptail --title "NVIDIA GPU Detected" --msgbox "NVIDIA GPU detected in your system.\n\nNOTE: The script will install nvidia-dkms, nvidia-utils, and nvidia-settings if you choose to configure." 12 60
|
whiptail --title "NVIDIA GPU Detected" --msgbox "NVIDIA GPU detected in your system.\n\nNOTE: The script will install nvidia-dkms, nvidia-utils, and nvidia-settings if you choose to configure." 12 60
|
||||||
fi
|
fi
|
||||||
@ -300,7 +314,7 @@ while true; do
|
|||||||
selected_options=$(echo "$selected_options" | tr -d '"' | tr -s ' ')
|
selected_options=$(echo "$selected_options" | tr -d '"' | tr -s ' ')
|
||||||
|
|
||||||
# Convert selected options into an array (preserving spaces in values)
|
# Convert selected options into an array (preserving spaces in values)
|
||||||
IFS=' ' read -r -a options <<< "$selected_options"
|
IFS=' ' read -r -a options <<<"$selected_options"
|
||||||
|
|
||||||
# Check if the "dots" option was selected
|
# Check if the "dots" option was selected
|
||||||
dots_selected="OFF"
|
dots_selected="OFF"
|
||||||
@ -361,6 +375,13 @@ echo "${INFO} Installing ${SKY_BLUE}necessary fonts...${RESET}" | tee -a "$LOG"
|
|||||||
sleep 1
|
sleep 1
|
||||||
execute_script "fonts.sh"
|
execute_script "fonts.sh"
|
||||||
|
|
||||||
|
# Optional: refresh tags before building the Hyprland stack
|
||||||
|
# Set FETCH_LATEST=1 to opt-in (default is no-refresh to honor pinned tags)
|
||||||
|
if [ "${FETCH_LATEST:-0}" = "1" ] && [ -f ./refresh-hypr-tags.sh ]; then
|
||||||
|
chmod +x ./refresh-hypr-tags.sh || true
|
||||||
|
./refresh-hypr-tags.sh
|
||||||
|
fi
|
||||||
|
|
||||||
echo "${INFO} Installing ${SKY_BLUE}KooL Hyprland packages...${RESET}" | tee -a "$LOG"
|
echo "${INFO} Installing ${SKY_BLUE}KooL Hyprland packages...${RESET}" | tee -a "$LOG"
|
||||||
sleep 1
|
sleep 1
|
||||||
execute_script "01-hypr-pkgs.sh"
|
execute_script "01-hypr-pkgs.sh"
|
||||||
@ -383,6 +404,9 @@ execute_script "hyprland-qtutils.sh"
|
|||||||
sleep 1
|
sleep 1
|
||||||
execute_script "hyprland-protocols.sh"
|
execute_script "hyprland-protocols.sh"
|
||||||
sleep 1
|
sleep 1
|
||||||
|
# Ensure wayland-protocols (from source) is installed to satisfy Hyprland's >= 1.45 requirement
|
||||||
|
execute_script "wayland-protocols-src.sh"
|
||||||
|
sleep 1
|
||||||
execute_script "hyprland.sh"
|
execute_script "hyprland.sh"
|
||||||
sleep 1
|
sleep 1
|
||||||
execute_script "hyprpolkitagent.sh"
|
execute_script "hyprpolkitagent.sh"
|
||||||
@ -405,7 +429,7 @@ sleep 1
|
|||||||
selected_options=$(echo "$selected_options" | tr -d '"' | tr -s ' ')
|
selected_options=$(echo "$selected_options" | tr -d '"' | tr -s ' ')
|
||||||
|
|
||||||
# Convert selected options into an array (splitting by spaces)
|
# Convert selected options into an array (splitting by spaces)
|
||||||
IFS=' ' read -r -a options <<< "$selected_options"
|
IFS=' ' read -r -a options <<<"$selected_options"
|
||||||
|
|
||||||
# Loop through selected options
|
# Loop through selected options
|
||||||
for option in "${options[@]}"; do
|
for option in "${options[@]}"; do
|
||||||
@ -486,7 +510,6 @@ for file in "${files_to_delete[@]}"; do
|
|||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
|
|
||||||
clear
|
clear
|
||||||
|
|
||||||
# copy fastfetch config if debian is not present
|
# copy fastfetch config if debian is not present
|
||||||
@ -526,7 +549,7 @@ if [ -e /usr/local/bin/hyprland ] || [ -f /usr/local/bin/Hyprland ]; then
|
|||||||
echo "👌 ${OK} You chose NOT to reboot"
|
echo "👌 ${OK} You chose NOT to reboot"
|
||||||
printf "\n%.0s" {1..1}
|
printf "\n%.0s" {1..1}
|
||||||
# Check if NVIDIA GPU is present
|
# Check if NVIDIA GPU is present
|
||||||
if lspci | grep -i "nvidia" &> /dev/null; then
|
if lspci | grep -i "nvidia" &>/dev/null; then
|
||||||
echo "${INFO} HOWEVER ${YELLOW}NVIDIA GPU${RESET} detected. Reminder that you must REBOOT your SYSTEM..."
|
echo "${INFO} HOWEVER ${YELLOW}NVIDIA GPU${RESET} detected. Reminder that you must REBOOT your SYSTEM..."
|
||||||
printf "\n%.0s" {1..1}
|
printf "\n%.0s" {1..1}
|
||||||
fi
|
fi
|
||||||
@ -543,4 +566,3 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
printf "\n%.0s" {1..2}
|
printf "\n%.0s" {1..2}
|
||||||
|
|
||||||
|
|||||||
92
refresh-hypr-tags.sh
Normal file
92
refresh-hypr-tags.sh
Normal file
@ -0,0 +1,92 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
# Refresh hypr-tags.env with latest release tags from upstream
|
||||||
|
# Safe to run multiple times; creates timestamped backups
|
||||||
|
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
|
REPO_ROOT=$(pwd)
|
||||||
|
TAGS_FILE="$REPO_ROOT/hypr-tags.env"
|
||||||
|
LOG_DIR="$REPO_ROOT/Install-Logs"
|
||||||
|
mkdir -p "$LOG_DIR"
|
||||||
|
TS=$(date +%F-%H%M%S)
|
||||||
|
SUMMARY_LOG="$LOG_DIR/refresh-tags-$TS.log"
|
||||||
|
|
||||||
|
# Ensure tags file exists
|
||||||
|
if [[ ! -f "$TAGS_FILE" ]]; then
|
||||||
|
cat > "$TAGS_FILE" <<'EOF'
|
||||||
|
HYPRLAND_TAG=v0.51.1
|
||||||
|
AQUAMARINE_TAG=v0.9.3
|
||||||
|
HYPRUTILS_TAG=v0.8.2
|
||||||
|
HYPRLANG_TAG=v0.6.4
|
||||||
|
HYPRGRAPHICS_TAG=v0.1.5
|
||||||
|
HYPRWAYLAND_SCANNER_TAG=v0.4.5
|
||||||
|
HYPRLAND_PROTOCOLS_TAG=v0.6.4
|
||||||
|
HYPRLAND_QT_SUPPORT_TAG=v0.1.0
|
||||||
|
HYPRLAND_QTUTILS_TAG=v0.1.4
|
||||||
|
WAYLAND_PROTOCOLS_TAG=1.45
|
||||||
|
EOF
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Backup
|
||||||
|
cp "$TAGS_FILE" "$TAGS_FILE.bak-$TS"
|
||||||
|
echo "[INFO] Backed up $TAGS_FILE to $TAGS_FILE.bak-$TS" | tee -a "$SUMMARY_LOG"
|
||||||
|
|
||||||
|
if ! command -v curl >/dev/null 2>&1; then
|
||||||
|
echo "[ERROR] curl is required to refresh tags" | tee -a "$SUMMARY_LOG"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Map of env var -> repo
|
||||||
|
declare -A repos=(
|
||||||
|
[HYPRLAND_TAG]="hyprwm/Hyprland"
|
||||||
|
[AQUAMARINE_TAG]="hyprwm/aquamarine"
|
||||||
|
[HYPRUTILS_TAG]="hyprwm/hyprutils"
|
||||||
|
[HYPRLANG_TAG]="hyprwm/hyprlang"
|
||||||
|
[HYPRGRAPHICS_TAG]="hyprwm/hyprgraphics"
|
||||||
|
[HYPRWAYLAND_SCANNER_TAG]="hyprwm/hyprwayland-scanner"
|
||||||
|
[HYPRLAND_PROTOCOLS_TAG]="hyprwm/hyprland-protocols"
|
||||||
|
[HYPRLAND_QT_SUPPORT_TAG]="hyprwm/hyprland-qt-support"
|
||||||
|
[HYPRLAND_QTUTILS_TAG]="hyprwm/hyprland-qtutils"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Read existing
|
||||||
|
declare -A cur
|
||||||
|
while IFS='=' read -r k v; do
|
||||||
|
[[ -z "${k:-}" || "$k" =~ ^# ]] && continue
|
||||||
|
cur[$k]="$v"
|
||||||
|
edone < "$TAGS_FILE"
|
||||||
|
|
||||||
|
# Fetch latest, but only update keys set to 'auto' or 'latest' unless forced
|
||||||
|
FORCE=${FORCE:-0}
|
||||||
|
for key in "${!repos[@]}"; do
|
||||||
|
repo="${repos[$key]}"
|
||||||
|
url="https://api.github.com/repos/$repo/releases/latest"
|
||||||
|
echo "[INFO] Checking latest tag for $repo" | tee -a "$SUMMARY_LOG"
|
||||||
|
body=$(curl -fsSL "$url" || true)
|
||||||
|
[[ -z "$body" ]] && { echo "[WARN] Empty response for $repo" | tee -a "$SUMMARY_LOG"; continue; }
|
||||||
|
if command -v jq >/dev/null 2>&1; then
|
||||||
|
tag=$(printf '%s' "$body" | jq -r '.tag_name // empty')
|
||||||
|
else
|
||||||
|
tag=$(printf '%s' "$body" | grep -m1 '"tag_name"' | sed -E 's/.*"tag_name"\s*:\s*"([^"]+)".*/\1/')
|
||||||
|
fi
|
||||||
|
if [[ -z "$tag" ]]; then
|
||||||
|
echo "[WARN] Could not parse tag for $repo" | tee -a "$SUMMARY_LOG"
|
||||||
|
continue
|
||||||
|
fi
|
||||||
|
existing="${cur[$key]:-}"
|
||||||
|
if [[ $FORCE -eq 1 ]] || [[ "$existing" =~ ^(auto|latest)$ ]] || [[ -z "$existing" ]]; then
|
||||||
|
cur[$key]="$tag"
|
||||||
|
echo "[OK] $key := $tag" | tee -a "$SUMMARY_LOG"
|
||||||
|
else
|
||||||
|
echo "[SKIP] $key pinned ($existing), not overriding" | tee -a "$SUMMARY_LOG"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
# Write back
|
||||||
|
{
|
||||||
|
for k in "${!cur[@]}"; do
|
||||||
|
echo "$k=${cur[$k]}"
|
||||||
|
done | sort
|
||||||
|
} > "$TAGS_FILE"
|
||||||
|
|
||||||
|
echo "[OK] Refreshed tags written to $TAGS_FILE" | tee -a "$SUMMARY_LOG"
|
||||||
520
update-hyprland.sh
Executable file
520
update-hyprland.sh
Executable file
@ -0,0 +1,520 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
# update-hyprland.sh
|
||||||
|
# Manage and build just the Hyprland stack (Hyprland + companion apps/libs)
|
||||||
|
# - Maintains a central tag file (hypr-tags.env) with versions
|
||||||
|
# - Can fetch latest release tags from GitHub and update hypr-tags.env
|
||||||
|
# - Can restore tags from a backup
|
||||||
|
# - Can run a dry-run build (compile only) or install build of the stack
|
||||||
|
#
|
||||||
|
# Usage examples:
|
||||||
|
# chmod +x ./update-hyprland.sh
|
||||||
|
# ./update-hyprland.sh --dry-run # compile-only using current tags
|
||||||
|
# ./update-hyprland.sh --install # compile + install using current tags
|
||||||
|
# ./update-hyprland.sh --fetch-latest --dry-run # refresh tags to latest, then dry-run
|
||||||
|
# ./update-hyprland.sh --set HYPRLAND=v0.51.1 --dry-run # set one or more tags
|
||||||
|
# ./update-hyprland.sh --restore --dry-run # restore most recent backup of tags and dry-run
|
||||||
|
# ./update-hyprland.sh --only hyprland,hyprutils --dry-run
|
||||||
|
# ./update-hyprland.sh --skip aquamarine --install
|
||||||
|
# ./update-hyprland.sh --with-deps --dry-run
|
||||||
|
# ./update-hyprland.sh --fetch-latest --via-helper # use dry-run-build.sh for a summary-only run
|
||||||
|
#
|
||||||
|
# Notes:
|
||||||
|
# - Requires curl; for --fetch-latest, jq is recommended (installed by 00-dependencies.sh)
|
||||||
|
# - Works from repo root; do not cd into install-scripts/
|
||||||
|
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
|
REPO_ROOT=$(pwd)
|
||||||
|
TAGS_FILE="$REPO_ROOT/hypr-tags.env"
|
||||||
|
LOG_DIR="$REPO_ROOT/Install-Logs"
|
||||||
|
mkdir -p "$LOG_DIR"
|
||||||
|
TS=$(date +%F-%H%M%S)
|
||||||
|
SUMMARY_LOG="$LOG_DIR/update-hypr-$TS.log"
|
||||||
|
|
||||||
|
# Default module order (core first, then Hyprland)
|
||||||
|
DEFAULT_MODULES=(
|
||||||
|
hyprutils
|
||||||
|
hyprlang
|
||||||
|
wayland-protocols-src
|
||||||
|
aquamarine
|
||||||
|
hyprgraphics
|
||||||
|
hyprwayland-scanner
|
||||||
|
hyprland-protocols
|
||||||
|
hyprland-qt-support
|
||||||
|
hyprland-qtutils
|
||||||
|
hyprland
|
||||||
|
)
|
||||||
|
|
||||||
|
WITH_DEPS=0
|
||||||
|
DO_INSTALL=0
|
||||||
|
DO_DRY_RUN=0
|
||||||
|
FETCH_LATEST=0
|
||||||
|
RESTORE=0
|
||||||
|
VIA_HELPER=0
|
||||||
|
NO_FETCH=0
|
||||||
|
ONLY_LIST=""
|
||||||
|
SKIP_LIST=""
|
||||||
|
SET_ARGS=()
|
||||||
|
|
||||||
|
usage() {
|
||||||
|
sed -n '2,120p' "$0" | sed -n '/^# /p' | sed 's/^# \{0,1\}//'
|
||||||
|
}
|
||||||
|
|
||||||
|
ensure_tags_file() {
|
||||||
|
if [[ ! -f "$TAGS_FILE" ]]; then
|
||||||
|
echo "[INFO] Creating default tags file: $TAGS_FILE" | tee -a "$SUMMARY_LOG"
|
||||||
|
cat >"$TAGS_FILE" <<'EOF'
|
||||||
|
HYPRLAND_TAG=v0.50.1
|
||||||
|
AQUAMARINE_TAG=v0.9.2
|
||||||
|
HYPRUTILS_TAG=v0.8.2
|
||||||
|
HYPRLANG_TAG=v0.6.4
|
||||||
|
HYPRGRAPHICS_TAG=v0.1.5
|
||||||
|
HYPRWAYLAND_SCANNER_TAG=v0.4.5
|
||||||
|
HYPRLAND_PROTOCOLS_TAG=v0.6.4
|
||||||
|
HYPRLAND_QT_SUPPORT_TAG=v0.1.0
|
||||||
|
HYPRLAND_QTUTILS_TAG=v0.1.4
|
||||||
|
EOF
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
backup_tags() {
|
||||||
|
ensure_tags_file
|
||||||
|
cp "$TAGS_FILE" "$TAGS_FILE.bak-$TS"
|
||||||
|
echo "[INFO] Backed up $TAGS_FILE to $TAGS_FILE.bak-$TS" | tee -a "$SUMMARY_LOG"
|
||||||
|
}
|
||||||
|
|
||||||
|
restore_tags() {
|
||||||
|
latest_bak=$(ls -1t "$TAGS_FILE".bak-* 2>/dev/null | head -n1 || true)
|
||||||
|
if [[ -z "$latest_bak" ]]; then
|
||||||
|
echo "[ERROR] No backup tags file found." | tee -a "$SUMMARY_LOG"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
cp "$latest_bak" "$TAGS_FILE"
|
||||||
|
echo "[INFO] Restored tags from $latest_bak" | tee -a "$SUMMARY_LOG"
|
||||||
|
}
|
||||||
|
|
||||||
|
set_tags_from_args() {
|
||||||
|
ensure_tags_file
|
||||||
|
backup_tags
|
||||||
|
# load existing into assoc map
|
||||||
|
declare -A map
|
||||||
|
while IFS='=' read -r k v; do
|
||||||
|
[[ -z "$k" || "$k" =~ ^# ]] && continue
|
||||||
|
map[$k]="$v"
|
||||||
|
done <"$TAGS_FILE"
|
||||||
|
for kv in "${SET_ARGS[@]}"; do
|
||||||
|
key="${kv%%=*}"
|
||||||
|
val="${kv#*=}"
|
||||||
|
case "$key" in
|
||||||
|
HYPRLAND | hyprland) key=HYPRLAND_TAG ;;
|
||||||
|
AQUAMARINE | aquamarine) key=AQUAMARINE_TAG ;;
|
||||||
|
HYPRUTILS | hyprutils) key=HYPRUTILS_TAG ;;
|
||||||
|
HYPRLANG | hyprlang) key=HYPRLANG_TAG ;;
|
||||||
|
HYPRGRAPHICS | hyprgraphics) key=HYPRGRAPHICS_TAG ;;
|
||||||
|
HYPRWAYLAND_SCANNER | hyprwayland-scanner | hyprwayland_scanner) key=HYPRWAYLAND_SCANNER_TAG ;;
|
||||||
|
HYPRLAND_PROTOCOLS | hyprland-protocols | hyprland_protocols) key=HYPRLAND_PROTOCOLS_TAG ;;
|
||||||
|
HYPRLAND_QT_SUPPORT | hyprland-qt-support | hyprland_qt_support) key=HYPRLAND_QT_SUPPORT_TAG ;;
|
||||||
|
HYPRLAND_QTUTILS | hyprland-qtutils | hyprland_qtutils) key=HYPRLAND_QTUTILS_TAG ;;
|
||||||
|
esac
|
||||||
|
map[$key]="$val"
|
||||||
|
done
|
||||||
|
{
|
||||||
|
for k in "${!map[@]}"; do
|
||||||
|
echo "$k=${map[$k]}"
|
||||||
|
done | sort
|
||||||
|
} >"$TAGS_FILE"
|
||||||
|
echo "[INFO] Updated $TAGS_FILE with provided tags" | tee -a "$SUMMARY_LOG"
|
||||||
|
}
|
||||||
|
|
||||||
|
# Fetch latest release tags from GitHub for the stack
|
||||||
|
fetch_latest_tags() {
|
||||||
|
ensure_tags_file
|
||||||
|
backup_tags
|
||||||
|
|
||||||
|
# Require curl; jq is preferred. Fallback to grep/sed if jq is missing.
|
||||||
|
if ! command -v curl >/dev/null 2>&1; then
|
||||||
|
echo "[ERROR] curl is required." | tee -a "$SUMMARY_LOG"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Read existing to respect pinned values (only update keys set to 'auto' or 'latest')
|
||||||
|
declare -A existing
|
||||||
|
while IFS='=' read -r k v; do
|
||||||
|
[[ -z "$k" || "$k" =~ ^# ]] && continue
|
||||||
|
existing[$k]="$v"
|
||||||
|
done <"$TAGS_FILE"
|
||||||
|
|
||||||
|
declare -A repos=(
|
||||||
|
[HYPRLAND_TAG]="hyprwm/Hyprland"
|
||||||
|
[AQUAMARINE_TAG]="hyprwm/aquamarine"
|
||||||
|
[HYPRUTILS_TAG]="hyprwm/hyprutils"
|
||||||
|
[HYPRLANG_TAG]="hyprwm/hyprlang"
|
||||||
|
[HYPRGRAPHICS_TAG]="hyprwm/hyprgraphics"
|
||||||
|
[HYPRWAYLAND_SCANNER_TAG]="hyprwm/hyprwayland-scanner"
|
||||||
|
[HYPRLAND_PROTOCOLS_TAG]="hyprwm/hyprland-protocols"
|
||||||
|
[HYPRLAND_QT_SUPPORT_TAG]="hyprwm/hyprland-qt-support"
|
||||||
|
[HYPRLAND_QTUTILS_TAG]="hyprwm/hyprland-qtutils"
|
||||||
|
)
|
||||||
|
|
||||||
|
declare -A tags
|
||||||
|
|
||||||
|
for key in "${!repos[@]}"; do
|
||||||
|
repo="${repos[$key]}"
|
||||||
|
url="https://api.github.com/repos/$repo/releases/latest"
|
||||||
|
echo "[INFO] Fetching latest tag for $repo" | tee -a "$SUMMARY_LOG"
|
||||||
|
body=$(curl -fsSL "$url" || true)
|
||||||
|
if [[ -z "$body" ]]; then
|
||||||
|
echo "[WARN] Empty response for $repo; leaving $key unchanged" | tee -a "$SUMMARY_LOG"
|
||||||
|
continue
|
||||||
|
fi
|
||||||
|
if command -v jq >/dev/null 2>&1; then
|
||||||
|
tag=$(printf '%s' "$body" | jq -r '.tag_name // empty')
|
||||||
|
else
|
||||||
|
tag=$(printf '%s' "$body" | grep -m1 '"tag_name"' | sed -E 's/.*"tag_name"\s*:\s*"([^"]+)".*/\1/')
|
||||||
|
fi
|
||||||
|
if [[ -n "$tag" ]]; then
|
||||||
|
tags[$key]="$tag"
|
||||||
|
else
|
||||||
|
echo "[WARN] Could not parse tag for $repo; leaving $key unchanged" | tee -a "$SUMMARY_LOG"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
# Merge into existing file
|
||||||
|
declare -A map
|
||||||
|
while IFS='=' read -r k v; do
|
||||||
|
[[ -z "$k" || "$k" =~ ^# ]] && continue
|
||||||
|
map[$k]="$v"
|
||||||
|
done <"$TAGS_FILE"
|
||||||
|
|
||||||
|
for k in "${!tags[@]}"; do
|
||||||
|
# Only override if pinned value is 'auto' or 'latest'
|
||||||
|
if [[ "${existing[$k]:-}" =~ ^(auto|latest)$ ]] || [[ -z "${existing[$k]:-}" ]]; then
|
||||||
|
map[$k]="${tags[$k]}"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
{
|
||||||
|
for k in "${!map[@]}"; do
|
||||||
|
echo "$k=${map[$k]}"
|
||||||
|
done | sort
|
||||||
|
} >"$TAGS_FILE"
|
||||||
|
|
||||||
|
echo "[INFO] Refreshed tags written to $TAGS_FILE" | tee -a "$SUMMARY_LOG"
|
||||||
|
}
|
||||||
|
|
||||||
|
# Build runner using module scripts. Uses env vars from TAGS_FILE.
|
||||||
|
run_stack() {
|
||||||
|
# shellcheck disable=SC1090
|
||||||
|
source "$TAGS_FILE"
|
||||||
|
# Export tags so child scripts inherit them
|
||||||
|
export HYPRLAND_TAG AQUAMARINE_TAG HYPRUTILS_TAG HYPRLANG_TAG HYPRGRAPHICS_TAG HYPRWAYLAND_SCANNER_TAG HYPRLAND_PROTOCOLS_TAG HYPRLAND_QT_SUPPORT_TAG HYPRLAND_QTUTILS_TAG WAYLAND_PROTOCOLS_TAG
|
||||||
|
|
||||||
|
# Optionally install dependencies (not dry-run)
|
||||||
|
if [[ $WITH_DEPS -eq 1 ]]; then
|
||||||
|
echo "[INFO] Installing dependencies via 00-dependencies.sh" | tee -a "$SUMMARY_LOG"
|
||||||
|
if ! "$REPO_ROOT/install-scripts/00-dependencies.sh"; then
|
||||||
|
echo "[ERROR] Dependencies installation failed." | tee -a "$SUMMARY_LOG"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Build module list based on --only/--skip
|
||||||
|
local modules
|
||||||
|
if [[ -n "$ONLY_LIST" ]]; then
|
||||||
|
IFS=',' read -r -a modules <<<"$ONLY_LIST"
|
||||||
|
else
|
||||||
|
modules=("${DEFAULT_MODULES[@]}")
|
||||||
|
fi
|
||||||
|
if [[ -n "$SKIP_LIST" ]]; then
|
||||||
|
IFS=',' read -r -a _skips <<<"$SKIP_LIST"
|
||||||
|
local filtered=()
|
||||||
|
for m in "${modules[@]}"; do
|
||||||
|
local skip_it=0
|
||||||
|
for s in "${_skips[@]}"; do
|
||||||
|
[[ "$m" == "$s" ]] && {
|
||||||
|
skip_it=1
|
||||||
|
break
|
||||||
|
}
|
||||||
|
done
|
||||||
|
[[ $skip_it -eq 0 ]] && filtered+=("$m")
|
||||||
|
done
|
||||||
|
modules=("${filtered[@]}")
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Ensure core prerequisites are installed before hyprland on install runs
|
||||||
|
# Order: wayland-protocols-src, hyprland-protocols, hyprutils, hyprlang, aquamarine, hyprland
|
||||||
|
if [[ $DO_INSTALL -eq 1 ]]; then
|
||||||
|
# Auto-fetch latest tags for Hyprland stack unless disabled
|
||||||
|
if [[ $NO_FETCH -eq 0 ]]; then
|
||||||
|
# Detect whether hyprland is part of the run
|
||||||
|
need_fetch=0
|
||||||
|
for m in "${modules[@]}"; do
|
||||||
|
[[ "$m" == "hyprland" ]] && need_fetch=1
|
||||||
|
done
|
||||||
|
if [[ $need_fetch -eq 1 ]]; then
|
||||||
|
echo "[INFO] Auto-fetching latest tags for Hyprland stack" | tee -a "$SUMMARY_LOG"
|
||||||
|
fetch_latest_tags
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
local has_hl=0 has_aqua=0 has_wp=0 has_utils=0 has_lang=0 has_hlprot=0
|
||||||
|
for m in "${modules[@]}"; do
|
||||||
|
[[ "$m" == "hyprland" ]] && has_hl=1
|
||||||
|
[[ "$m" == "aquamarine" ]] && has_aqua=1
|
||||||
|
[[ "$m" == "wayland-protocols-src" ]] && has_wp=1
|
||||||
|
[[ "$m" == "hyprland-protocols" ]] && has_hlprot=1
|
||||||
|
[[ "$m" == "hyprutils" ]] && has_utils=1
|
||||||
|
[[ "$m" == "hyprlang" ]] && has_lang=1
|
||||||
|
done
|
||||||
|
if [[ $has_hl -eq 1 ]]; then
|
||||||
|
# ensure each prerequisite is present
|
||||||
|
[[ $has_wp -eq 0 ]] && modules=("wayland-protocols-src" "${modules[@]}")
|
||||||
|
[[ $has_hlprot -eq 0 ]] && modules=("hyprland-protocols" "${modules[@]}")
|
||||||
|
[[ $has_utils -eq 0 ]] && modules=("hyprutils" "${modules[@]}")
|
||||||
|
[[ $has_lang -eq 0 ]] && modules=("hyprlang" "${modules[@]}")
|
||||||
|
[[ $has_aqua -eq 0 ]] && modules=("aquamarine" "${modules[@]}")
|
||||||
|
|
||||||
|
# Reorder to exact sequence before hyprland
|
||||||
|
# Remove existing occurrences and rebuild in correct order
|
||||||
|
local tmp=()
|
||||||
|
local inserted_wp=0 inserted_hlprot=0 inserted_utils=0 inserted_lang=0 inserted_aqua=0
|
||||||
|
for m in "${modules[@]}"; do
|
||||||
|
if [[ "$m" == "wayland-protocols-src" ]]; then
|
||||||
|
if [[ $inserted_wp -eq 0 ]]; then
|
||||||
|
tmp+=("wayland-protocols-src")
|
||||||
|
inserted_wp=1
|
||||||
|
fi
|
||||||
|
elif [[ "$m" == "hyprland-protocols" ]]; then
|
||||||
|
if [[ $inserted_hlprot -eq 0 ]]; then
|
||||||
|
# ensure wayland-protocols-src before hyprland-protocols
|
||||||
|
if [[ $inserted_wp -eq 0 ]]; then
|
||||||
|
tmp+=("wayland-protocols-src")
|
||||||
|
inserted_wp=1
|
||||||
|
fi
|
||||||
|
tmp+=("hyprland-protocols")
|
||||||
|
inserted_hlprot=1
|
||||||
|
fi
|
||||||
|
elif [[ "$m" == "hyprutils" ]]; then
|
||||||
|
if [[ $inserted_utils -eq 0 ]]; then
|
||||||
|
# ensure protocols before utils
|
||||||
|
if [[ $inserted_wp -eq 0 ]]; then
|
||||||
|
tmp+=("wayland-protocols-src")
|
||||||
|
inserted_wp=1
|
||||||
|
fi
|
||||||
|
if [[ $inserted_hlprot -eq 0 ]]; then
|
||||||
|
tmp+=("hyprland-protocols")
|
||||||
|
inserted_hlprot=1
|
||||||
|
fi
|
||||||
|
tmp+=("hyprutils")
|
||||||
|
inserted_utils=1
|
||||||
|
fi
|
||||||
|
elif [[ "$m" == "hyprlang" ]]; then
|
||||||
|
if [[ $inserted_lang -eq 0 ]]; then
|
||||||
|
# ensure utils before lang
|
||||||
|
if [[ $inserted_utils -eq 0 ]]; then
|
||||||
|
if [[ $inserted_wp -eq 0 ]]; then
|
||||||
|
tmp+=("wayland-protocols-src")
|
||||||
|
inserted_wp=1
|
||||||
|
fi
|
||||||
|
if [[ $inserted_hlprot -eq 0 ]]; then
|
||||||
|
tmp+=("hyprland-protocols")
|
||||||
|
inserted_hlprot=1
|
||||||
|
fi
|
||||||
|
tmp+=("hyprutils")
|
||||||
|
inserted_utils=1
|
||||||
|
fi
|
||||||
|
tmp+=("hyprlang")
|
||||||
|
inserted_lang=1
|
||||||
|
fi
|
||||||
|
elif [[ "$m" == "aquamarine" ]]; then
|
||||||
|
if [[ $inserted_aqua -eq 0 ]]; then
|
||||||
|
# ensure lang before aquamarine
|
||||||
|
if [[ $inserted_lang -eq 0 ]]; then
|
||||||
|
if [[ $inserted_utils -eq 0 ]]; then
|
||||||
|
if [[ $inserted_wp -eq 0 ]]; then
|
||||||
|
tmp+=("wayland-protocols-src")
|
||||||
|
inserted_wp=1
|
||||||
|
fi
|
||||||
|
if [[ $inserted_hlprot -eq 0 ]]; then
|
||||||
|
tmp+=("hyprland-protocols")
|
||||||
|
inserted_hlprot=1
|
||||||
|
fi
|
||||||
|
tmp+=("hyprutils")
|
||||||
|
inserted_utils=1
|
||||||
|
fi
|
||||||
|
tmp+=("hyprlang")
|
||||||
|
inserted_lang=1
|
||||||
|
fi
|
||||||
|
tmp+=("aquamarine")
|
||||||
|
inserted_aqua=1
|
||||||
|
fi
|
||||||
|
elif [[ "$m" == "hyprland" ]]; then
|
||||||
|
# ensure all prerequisites already present
|
||||||
|
if [[ $inserted_wp -eq 0 ]]; then
|
||||||
|
tmp+=("wayland-protocols-src")
|
||||||
|
inserted_wp=1
|
||||||
|
fi
|
||||||
|
if [[ $inserted_hlprot -eq 0 ]]; then
|
||||||
|
tmp+=("hyprland-protocols")
|
||||||
|
inserted_hlprot=1
|
||||||
|
fi
|
||||||
|
if [[ $inserted_utils -eq 0 ]]; then
|
||||||
|
tmp+=("hyprutils")
|
||||||
|
inserted_utils=1
|
||||||
|
fi
|
||||||
|
if [[ $inserted_lang -eq 0 ]]; then
|
||||||
|
tmp+=("hyprlang")
|
||||||
|
inserted_lang=1
|
||||||
|
fi
|
||||||
|
if [[ $inserted_aqua -eq 0 ]]; then
|
||||||
|
tmp+=("aquamarine")
|
||||||
|
inserted_aqua=1
|
||||||
|
fi
|
||||||
|
tmp+=("hyprland")
|
||||||
|
else
|
||||||
|
tmp+=("$m")
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
modules=("${tmp[@]}")
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
declare -A results
|
||||||
|
|
||||||
|
for mod in "${modules[@]}"; do
|
||||||
|
local script="$REPO_ROOT/install-scripts/$mod.sh"
|
||||||
|
echo "\n=== $mod ===" | tee -a "$SUMMARY_LOG"
|
||||||
|
[[ -f "$script" ]] || {
|
||||||
|
echo "[WARN] Missing $script" | tee -a "$SUMMARY_LOG"
|
||||||
|
results[$mod]="MISSING"
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
chmod +x "$script" || true
|
||||||
|
if [[ $DO_DRY_RUN -eq 1 ]]; then
|
||||||
|
if DRY_RUN=1 "$script"; then results[$mod]="PASS"; else results[$mod]="FAIL"; fi
|
||||||
|
else
|
||||||
|
if "$script"; then results[$mod]="INSTALLED"; else results[$mod]="FAIL"; fi
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
{
|
||||||
|
echo "\nSummary:"
|
||||||
|
for mod in "${modules[@]}"; do
|
||||||
|
printf "%-24s %s\n" "$mod" "${results[$mod]:-SKIPPED}"
|
||||||
|
done
|
||||||
|
echo "\nLogs under: $LOG_DIR. This run: $SUMMARY_LOG"
|
||||||
|
} | tee -a "$SUMMARY_LOG"
|
||||||
|
|
||||||
|
# Non-zero on any FAILs
|
||||||
|
local failed=0
|
||||||
|
for mod in "${modules[@]}"; do
|
||||||
|
[[ "${results[$mod]:-}" == FAIL ]] && failed=1
|
||||||
|
done
|
||||||
|
return $failed
|
||||||
|
}
|
||||||
|
|
||||||
|
# Parse args
|
||||||
|
while [[ $# -gt 0 ]]; do
|
||||||
|
case "$1" in
|
||||||
|
-h | --help)
|
||||||
|
usage
|
||||||
|
exit 0
|
||||||
|
;;
|
||||||
|
--with-deps)
|
||||||
|
WITH_DEPS=1
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
--dry-run)
|
||||||
|
DO_DRY_RUN=1
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
--install)
|
||||||
|
DO_INSTALL=1
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
--fetch-latest)
|
||||||
|
FETCH_LATEST=1
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
--restore)
|
||||||
|
RESTORE=1
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
--via-helper)
|
||||||
|
VIA_HELPER=1
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
--no-fetch)
|
||||||
|
NO_FETCH=1
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
--only)
|
||||||
|
ONLY_LIST=${2:-}
|
||||||
|
shift 2
|
||||||
|
;;
|
||||||
|
--skip)
|
||||||
|
SKIP_LIST=${2:-}
|
||||||
|
shift 2
|
||||||
|
;;
|
||||||
|
--set)
|
||||||
|
shift
|
||||||
|
while [[ $# -gt 0 && "$1" != --* ]]; do
|
||||||
|
SET_ARGS+=("$1")
|
||||||
|
shift
|
||||||
|
done
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
echo "Unknown argument: $1"
|
||||||
|
exit 2
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
|
||||||
|
# Validate options
|
||||||
|
if [[ $DO_INSTALL -eq 1 && $DO_DRY_RUN -eq 1 ]]; then
|
||||||
|
echo "[ERROR] Use either --dry-run or --install, not both." | tee -a "$SUMMARY_LOG"
|
||||||
|
exit 2
|
||||||
|
fi
|
||||||
|
|
||||||
|
ensure_tags_file
|
||||||
|
|
||||||
|
# Apply tag operations
|
||||||
|
if [[ $RESTORE -eq 1 ]]; then
|
||||||
|
restore_tags
|
||||||
|
fi
|
||||||
|
if [[ ${#SET_ARGS[@]} -gt 0 ]]; then
|
||||||
|
set_tags_from_args
|
||||||
|
fi
|
||||||
|
if [[ $FETCH_LATEST -eq 1 ]]; then
|
||||||
|
fetch_latest_tags
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Run the stack
|
||||||
|
if [[ $DO_DRY_RUN -eq 0 && $DO_INSTALL -eq 0 ]]; then
|
||||||
|
echo "[INFO] No build option specified. Defaulting to --dry-run." | tee -a "$SUMMARY_LOG"
|
||||||
|
DO_DRY_RUN=1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# If using helper, delegate to dry-run-build.sh for summary-only output
|
||||||
|
if [[ $VIA_HELPER -eq 1 ]]; then
|
||||||
|
if [[ $DO_INSTALL -eq 1 ]]; then
|
||||||
|
echo "[ERROR] --via-helper cannot be combined with --install (helper is dry-run only)." | tee -a "$SUMMARY_LOG"
|
||||||
|
exit 2
|
||||||
|
fi
|
||||||
|
# shellcheck disable=SC1090
|
||||||
|
source "$TAGS_FILE"
|
||||||
|
export HYPRLAND_TAG AQUAMARINE_TAG HYPRUTILS_TAG HYPRLANG_TAG HYPRGRAPHICS_TAG HYPRWAYLAND_SCANNER_TAG HYPRLAND_PROTOCOLS_TAG HYPRLAND_QT_SUPPORT_TAG HYPRLAND_QTUTILS_TAG WAYLAND_PROTOCOLS_TAG
|
||||||
|
helper="$REPO_ROOT/dry-run-build.sh"
|
||||||
|
if [[ ! -x "$helper" ]]; then
|
||||||
|
echo "[ERROR] dry-run-build.sh not found or not executable at $helper" | tee -a "$SUMMARY_LOG"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
args=()
|
||||||
|
[[ $WITH_DEPS -eq 1 ]] && args+=("--with-deps")
|
||||||
|
[[ -n "$ONLY_LIST" ]] && args+=("--only" "$ONLY_LIST")
|
||||||
|
[[ -n "$SKIP_LIST" ]] && args+=("--skip" "$SKIP_LIST")
|
||||||
|
echo "[INFO] Delegating to dry-run-build.sh ${args[*]}" | tee -a "$SUMMARY_LOG"
|
||||||
|
"$helper" "${args[@]}"
|
||||||
|
exit $?
|
||||||
|
fi
|
||||||
|
|
||||||
|
run_stack
|
||||||
Loading…
x
Reference in New Issue
Block a user