fix: stub in root-overlay, dbus-symlink: false, DE rename, screenshot fix
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
---
|
||||
systemd: false
|
||||
dbus: true
|
||||
dbus-symlink: true
|
||||
dbus-symlink: false
|
||||
entropy-copy: false
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
systemd: false
|
||||
dbus: true
|
||||
dbus-symlink: true
|
||||
dbus-symlink: false
|
||||
entropy-copy: false
|
||||
|
||||
@@ -68,7 +68,7 @@
|
||||
- artix-grub-theme
|
||||
|
||||
- name: "Desktop"
|
||||
description: "Desktop Environment"
|
||||
description: "DE"
|
||||
selected: true
|
||||
critical: false
|
||||
subgroups:
|
||||
|
||||
@@ -13,7 +13,7 @@ items:
|
||||
- id: OpenRC
|
||||
name: openrc
|
||||
description: "OpenRC init system"
|
||||
screenshot: ":/images/if.png"
|
||||
screenshot: ""
|
||||
netinstall:
|
||||
name: "openrc"
|
||||
description: "OpenRC init system"
|
||||
@@ -84,7 +84,7 @@ items:
|
||||
- id: Dinit
|
||||
name: dinit
|
||||
description: "Dinit init system"
|
||||
screenshot: ":/images/if.png"
|
||||
screenshot: ""
|
||||
netinstall:
|
||||
name: "dinit"
|
||||
description: "Dinit init system"
|
||||
@@ -154,7 +154,7 @@ items:
|
||||
- id: S6
|
||||
name: s6
|
||||
description: "S6 init system"
|
||||
screenshot: ":/images/if.png"
|
||||
screenshot: ""
|
||||
netinstall:
|
||||
name: "s6"
|
||||
description: "S6 init system"
|
||||
@@ -225,7 +225,7 @@ items:
|
||||
- id: Runit
|
||||
name: runit
|
||||
description: "Runit init system"
|
||||
screenshot: ":/images/if.png"
|
||||
screenshot: ""
|
||||
netinstall:
|
||||
name: "runit"
|
||||
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