fix: stub in root-overlay, dbus-symlink: false, DE rename, screenshot fix
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
systemd: false
|
systemd: false
|
||||||
dbus: true
|
dbus: true
|
||||||
dbus-symlink: true
|
dbus-symlink: false
|
||||||
entropy-copy: false
|
entropy-copy: false
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
systemd: false
|
systemd: false
|
||||||
dbus: true
|
dbus: true
|
||||||
dbus-symlink: true
|
dbus-symlink: false
|
||||||
entropy-copy: false
|
entropy-copy: false
|
||||||
|
|||||||
@@ -68,7 +68,7 @@
|
|||||||
- artix-grub-theme
|
- artix-grub-theme
|
||||||
|
|
||||||
- name: "Desktop"
|
- name: "Desktop"
|
||||||
description: "Desktop Environment"
|
description: "DE"
|
||||||
selected: true
|
selected: true
|
||||||
critical: false
|
critical: false
|
||||||
subgroups:
|
subgroups:
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ items:
|
|||||||
- id: OpenRC
|
- id: OpenRC
|
||||||
name: openrc
|
name: openrc
|
||||||
description: "OpenRC init system"
|
description: "OpenRC init system"
|
||||||
screenshot: ":/images/if.png"
|
screenshot: ""
|
||||||
netinstall:
|
netinstall:
|
||||||
name: "openrc"
|
name: "openrc"
|
||||||
description: "OpenRC init system"
|
description: "OpenRC init system"
|
||||||
@@ -84,7 +84,7 @@ items:
|
|||||||
- id: Dinit
|
- id: Dinit
|
||||||
name: dinit
|
name: dinit
|
||||||
description: "Dinit init system"
|
description: "Dinit init system"
|
||||||
screenshot: ":/images/if.png"
|
screenshot: ""
|
||||||
netinstall:
|
netinstall:
|
||||||
name: "dinit"
|
name: "dinit"
|
||||||
description: "Dinit init system"
|
description: "Dinit init system"
|
||||||
@@ -154,7 +154,7 @@ items:
|
|||||||
- id: S6
|
- id: S6
|
||||||
name: s6
|
name: s6
|
||||||
description: "S6 init system"
|
description: "S6 init system"
|
||||||
screenshot: ":/images/if.png"
|
screenshot: ""
|
||||||
netinstall:
|
netinstall:
|
||||||
name: "s6"
|
name: "s6"
|
||||||
description: "S6 init system"
|
description: "S6 init system"
|
||||||
@@ -225,7 +225,7 @@ items:
|
|||||||
- id: Runit
|
- id: Runit
|
||||||
name: runit
|
name: runit
|
||||||
description: "Runit init system"
|
description: "Runit init system"
|
||||||
screenshot: ":/images/if.png"
|
screenshot: ""
|
||||||
netinstall:
|
netinstall:
|
||||||
name: "runit"
|
name: "runit"
|
||||||
description: "Runit init system"
|
description: "Runit init system"
|
||||||
|
|||||||
-8
@@ -1,8 +0,0 @@
|
|||||||
[Desktop Entry]
|
|
||||||
Type=Application
|
|
||||||
Name=Set Antergos NeXT Wallpaper
|
|
||||||
Comment=Apply Antergos NeXT default wallpaper on live session start
|
|
||||||
Exec=/usr/local/bin/set-antergos-wallpaper.sh
|
|
||||||
Terminal=false
|
|
||||||
X-KDE-autostart-phase=2
|
|
||||||
NoDisplay=true
|
|
||||||
@@ -0,0 +1,29 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
ROOT=""
|
||||||
|
|
||||||
|
for arg in "$@"; do
|
||||||
|
case "$arg" in
|
||||||
|
--root=*)
|
||||||
|
ROOT="${arg#*=}"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
|
||||||
|
MACHINE_ID_FILE="${ROOT}/etc/machine-id"
|
||||||
|
|
||||||
|
if [ -f "$MACHINE_ID_FILE" ] && [ -s "$MACHINE_ID_FILE" ]; then
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
mkdir -p "$(dirname "$MACHINE_ID_FILE")"
|
||||||
|
|
||||||
|
if command -v dbus-uuidgen &>/dev/null; then
|
||||||
|
dbus-uuidgen --ensure 2>/dev/null
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -f "$MACHINE_ID_FILE" ] || [ ! -s "$MACHINE_ID_FILE" ]; then
|
||||||
|
od -An -N16 -tx1 /dev/urandom | tr -d ' \n' > "$MACHINE_ID_FILE"
|
||||||
|
fi
|
||||||
|
|
||||||
|
chmod 0644 "$MACHINE_ID_FILE"
|
||||||
Reference in New Issue
Block a user