ficheiros e configuraçoens atualizados
|
@ -1,5 +1,13 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
################################################################################
|
||||||
|
# Title: build-all.sh
|
||||||
|
# Description: Script to build My-distro ISO images
|
||||||
|
# Author: manuel rosa <manuelsilvarosa@gmail.com>
|
||||||
|
# Date: Outubro 29, 2023
|
||||||
|
# License: GPL-3.0-or-later
|
||||||
|
################################################################################
|
||||||
|
|
||||||
# update files
|
# update files
|
||||||
|
|
||||||
git pull --ff
|
git pull --ff
|
||||||
|
|
|
@ -43,7 +43,7 @@ efiBootMgr: "efibootmgr"
|
||||||
# setting the option here, keep in mind that the name is sanitized
|
# setting the option here, keep in mind that the name is sanitized
|
||||||
# (problematic characters, see above, are replaced).
|
# (problematic characters, see above, are replaced).
|
||||||
#
|
#
|
||||||
# efiBootloaderId: "dirname"
|
efiBootloaderId: "acoros"
|
||||||
|
|
||||||
# Optionally install a copy of the GRUB EFI bootloader as the EFI
|
# Optionally install a copy of the GRUB EFI bootloader as the EFI
|
||||||
# fallback loader (either bootia32.efi or bootx64.efi depending on
|
# fallback loader (either bootia32.efi or bootx64.efi depending on
|
||||||
|
@ -51,4 +51,4 @@ efiBootMgr: "efibootmgr"
|
||||||
# seems to be the only one). If you set this to false, take care
|
# seems to be the only one). If you set this to false, take care
|
||||||
# to add another module to optionally install the fallback on those
|
# to add another module to optionally install the fallback on those
|
||||||
# boards that need it.
|
# boards that need it.
|
||||||
installEFIFallback: false
|
installEFIFallback: true
|
||||||
|
|
|
@ -1,11 +1,27 @@
|
||||||
|
# SPDX-FileCopyrightText: no
|
||||||
|
# SPDX-License-Identifier: CC0-1.0
|
||||||
|
#
|
||||||
|
# Configure fstab options
|
||||||
|
#
|
||||||
---
|
---
|
||||||
mountOptions:
|
mountOptions:
|
||||||
default: defaults,noatime
|
default: defaults,noatime,nodiscard
|
||||||
btrfs: defaults,noatime,space_cache,autodefrag
|
btrfs: defaults,noatime,noautodefrag,nodiscard
|
||||||
ssdExtraMountOptions:
|
btrfs_swap: defaults
|
||||||
ext4: discard
|
swap: defaults
|
||||||
jfs: discard
|
|
||||||
xfs: discard
|
|
||||||
swap: discard
|
|
||||||
btrfs: discard,compress=lzo
|
|
||||||
crypttabOptions: luks,keyscript=/bin/cat
|
crypttabOptions: luks,keyscript=/bin/cat
|
||||||
|
|
||||||
|
efiMountOptions: umask=0077
|
||||||
|
|
||||||
|
ssdExtraMountOptions:
|
||||||
|
btrfs: ssd
|
||||||
|
|
||||||
|
tmpOptions:
|
||||||
|
default:
|
||||||
|
tmpfs: false
|
||||||
|
options: ""
|
||||||
|
ssd:
|
||||||
|
tmpfs: true
|
||||||
|
options: "defaults,noatime,mode=1777"
|
||||||
|
|
||||||
|
|
|
@ -1,18 +1,10 @@
|
||||||
# Mount filesystems in the target (generally, before treating the
|
# SPDX-FileCopyrightText: no
|
||||||
# target as a usable chroot / "live" system). Filesystems are
|
# SPDX-License-Identifier: CC0-1.0
|
||||||
# automatically mounted from the partitioning module. Filesystems
|
|
||||||
# listed here are **extra**. The filesystems listed in *extraMounts*
|
|
||||||
# are mounted in all target systems. The filesystems listed in
|
|
||||||
# *extraMountsEfi* are mounted in the target system **only** if
|
|
||||||
# the host machine uses UEFI.
|
|
||||||
---
|
|
||||||
# Extra filesystems to mount. The key's value is a list of entries; each
|
|
||||||
# entry has four keys:
|
|
||||||
# - device The device node to mount
|
|
||||||
# - fs The filesystem type to use
|
|
||||||
# - mountPoint Where to mount the filesystem
|
|
||||||
# - options (optional) Extra options to pass to mount(8)
|
|
||||||
#
|
#
|
||||||
|
# Mount filesystems in the target (generally, before treating the
|
||||||
|
# target as a usable chroot / "live" system).
|
||||||
|
---
|
||||||
|
|
||||||
extraMounts:
|
extraMounts:
|
||||||
- device: proc
|
- device: proc
|
||||||
fs: proc
|
fs: proc
|
||||||
|
@ -29,8 +21,18 @@ extraMounts:
|
||||||
- device: /run/udev
|
- device: /run/udev
|
||||||
mountPoint: /run/udev
|
mountPoint: /run/udev
|
||||||
options: bind
|
options: bind
|
||||||
|
|
||||||
extraMountsEfi:
|
|
||||||
- device: efivarfs
|
- device: efivarfs
|
||||||
fs: efivarfs
|
fs: efivarfs
|
||||||
mountPoint: /sys/firmware/efi/efivars
|
mountPoint: /sys/firmware/efi/efivars
|
||||||
|
|
||||||
|
btrfsSwapSubvol: /@swap
|
||||||
|
|
||||||
|
btrfsSubvolumes:
|
||||||
|
- mountPoint: /
|
||||||
|
subvolume: /@
|
||||||
|
- mountPoint: /home
|
||||||
|
subvolume: /@home
|
||||||
|
- mountPoint: /var/cache
|
||||||
|
subvolume: /@cache
|
||||||
|
- mountPoint: /var/log
|
||||||
|
subvolume: /@log
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
# SPDX-FileCopyrightText: no
|
||||||
|
# SPDX-License-Identifier: CC0-1.0
|
||||||
|
#
|
||||||
|
# Configuration file for opendmcryptcfg module
|
||||||
|
#
|
||||||
|
---
|
||||||
|
configFilePath: /etc/conf.d/dmcrypt
|
|
@ -7,6 +7,7 @@ operations:
|
||||||
- 'live-config'
|
- 'live-config'
|
||||||
- 'live-config-doc'
|
- 'live-config-doc'
|
||||||
- 'live-config-systemd'
|
- 'live-config-systemd'
|
||||||
|
- 'live-config-systemd'
|
||||||
- 'live-tools'
|
- 'live-tools'
|
||||||
- 'live-task-localisation'
|
- 'live-task-localisation'
|
||||||
- 'live-task-recommended'
|
- 'live-task-recommended'
|
||||||
|
|
|
@ -1,10 +1,15 @@
|
||||||
efiSystemPartition: "/boot/efi"
|
efiSystemPartition: "/boot/efi"
|
||||||
|
efiSystemPartitionSize: 800M
|
||||||
|
efiSystemPartitionName: EFI
|
||||||
userSwapChoices:
|
userSwapChoices:
|
||||||
- none # Create no swap, use no swap
|
- none # Create no swap, use no swap
|
||||||
- small # Up to 4GB
|
- small # Up to 4GB
|
||||||
- suspend # At least main memory size
|
- suspend # At least main memory size
|
||||||
- file # To swap file instead of partition
|
- file # To swap file instead of partition
|
||||||
|
swapPartitionName: SWAP
|
||||||
|
drawNestedPartitions: false
|
||||||
alwaysShowPartitionLabels: true
|
alwaysShowPartitionLabels: true
|
||||||
|
allowManualPartitioning: true
|
||||||
initialPartitioningChoice: erase
|
initialPartitioningChoice: erase
|
||||||
initialSwapChoice: none
|
initialSwapChoice: none
|
||||||
defaultFileSystemType: "ext4"
|
defaultFileSystemType: "ext4"
|
||||||
|
|
|
@ -0,0 +1,13 @@
|
||||||
|
# SPDX-FileCopyrightText: no
|
||||||
|
# SPDX-License-Identifier: CC0-1.0
|
||||||
|
#
|
||||||
|
# Systemd services manipulation.
|
||||||
|
#
|
||||||
|
# This module can enable services, timers and targets for systemd
|
||||||
|
# (if packaging doesn't already do that). It can also
|
||||||
|
# disable services and targets as well as mask units.
|
||||||
|
|
||||||
|
timers:
|
||||||
|
- name: "fstrim"
|
||||||
|
mandatory: false
|
||||||
|
|
|
@ -14,5 +14,10 @@ defaultGroups:
|
||||||
- bluetooth
|
- bluetooth
|
||||||
- sambashare
|
- sambashare
|
||||||
autologinGroup: autologin
|
autologinGroup: autologin
|
||||||
|
doAutologin: false
|
||||||
sudoersGroup: sudo
|
sudoersGroup: sudo
|
||||||
setRootPassword: true
|
setRootPassword: true
|
||||||
|
doReusePassword: true
|
||||||
|
allowWeakPasswords: true
|
||||||
|
allowWeakPasswordsDefault: true
|
||||||
|
userShell: /bin/bash
|
||||||
|
|
Before Width: | Height: | Size: 1.3 MiB After Width: | Height: | Size: 1.3 MiB |
Before Width: | Height: | Size: 234 KiB After Width: | Height: | Size: 234 KiB |
|
@ -1 +0,0 @@
|
||||||
../../plymouth/themes/futureprototype
|
|
Before Width: | Height: | Size: 1.3 MiB |
Before Width: | Height: | Size: 234 KiB |
|
@ -1,3 +0,0 @@
|
||||||
WALLPAPER=/usr/share/images/desktop-base/desktop-grub.png
|
|
||||||
COLOR_NORMAL=white/black
|
|
||||||
COLOR_HIGHLIGHT=black/white
|
|
|
@ -1,15 +1,34 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
### Error checking added to "lint-trap" section.
|
################################################################################
|
||||||
### Missing files no longer cause builds to fail.
|
# Title: 0520-applications.hook.chroot
|
||||||
|
# Description: Script to remove packages and other things
|
||||||
|
# Author: manuel rosa <manuelsilvarosa@gmail.com>
|
||||||
|
# Date: Outubro 29, 2023
|
||||||
|
# License: GPL-3.0-or-later
|
||||||
|
################################################################################
|
||||||
|
|
||||||
# Remove software
|
# Remove software
|
||||||
# apt remove -y firefox-esr
|
apt --purge --yes autoremove \
|
||||||
# apt remove -y termit
|
vim \
|
||||||
apt --purge --yes autoremove vim vim-tiny nautilus hv3 mpv murrine-themes konsole malcontent termit nvidia-tesla-470-alternative
|
vim-tiny \
|
||||||
|
nautilus \
|
||||||
|
hv3 \
|
||||||
|
mpv \
|
||||||
|
murrine-themes \
|
||||||
|
konsole \
|
||||||
|
malcontent \
|
||||||
|
termit \
|
||||||
|
nvidia-tesla-470-alternative \
|
||||||
|
systemsettings \
|
||||||
|
raspi-firmware
|
||||||
|
|
||||||
|
# Remove /boot/firmware folder
|
||||||
|
rm -r /boot/firmware
|
||||||
|
|
||||||
# Lowers the footprint in RAM at the small expense of added size to the ISO.
|
# Lowers the footprint in RAM at the small expense of added size to the ISO.
|
||||||
update-icon-caches /usr/share/icons/*
|
#update-icon-caches /usr/share/icons/*
|
||||||
|
find /usr/share/icons -type d -exec gtk-update-icon-cache -f {} \;
|
||||||
|
|
||||||
#add flatpak repo to gnome-software
|
#add flatpak repo to gnome-software
|
||||||
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
|
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
|
||||||
|
|
|
@ -1,4 +1,13 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
################################################################################
|
||||||
|
# Title: build.sh
|
||||||
|
# Description: Script to build My-distro ISO image
|
||||||
|
# Author: manuel rosa <manuelsilvarosa@gmail.com>
|
||||||
|
# Date: Outubro 29, 2023
|
||||||
|
# License: GPL-3.0-or-later
|
||||||
|
################################################################################
|
||||||
|
|
||||||
PATH="/sbin:/usr/sbin:/usr/local/sbin:$PATH"
|
PATH="/sbin:/usr/sbin:/usr/local/sbin:$PATH"
|
||||||
|
|
||||||
# Set the working folder variable
|
# Set the working folder variable
|
||||||
|
@ -193,6 +202,7 @@ tumbler-plugins-extra
|
||||||
ffmpegthumbnailer
|
ffmpegthumbnailer
|
||||||
xterm
|
xterm
|
||||||
grub-pc
|
grub-pc
|
||||||
|
spice-vdagent
|
||||||
|
|
||||||
" > $build/build/config/package-lists/packages.list.chroot
|
" > $build/build/config/package-lists/packages.list.chroot
|
||||||
|
|
||||||
|
|
|
@ -9,17 +9,17 @@ RELEASE="bookworm"
|
||||||
cat << EOF > $CHROOT/etc/apt/sources.list
|
cat << EOF > $CHROOT/etc/apt/sources.list
|
||||||
# See https://wiki.debian.org/SourcesList for more information.
|
# See https://wiki.debian.org/SourcesList for more information.
|
||||||
|
|
||||||
deb http://deb.debian.org/debian bookworm main contrib non-free
|
deb http://deb.debian.org/debian bookworm main contrib non-free non-free-firmware
|
||||||
deb-src http://deb.debian.org/debian bookworm main contrib non-free
|
deb-src http://deb.debian.org/debian bookworm main contrib non-free non-free-firmware
|
||||||
|
|
||||||
deb http://deb.debian.org/debian bookworm-updates main contrib non-free
|
deb http://deb.debian.org/debian bookworm-updates main contrib non-free non-free-firmware
|
||||||
deb-src http://deb.debian.org/debian bookworm-updates main contrib non-free
|
deb-src http://deb.debian.org/debian bookworm-updates main contrib non-free non-free-firmware
|
||||||
|
|
||||||
deb http://security.debian.org/debian-security bookworm-security main contrib non-free
|
deb http://security.debian.org/debian-security bookworm-security main contrib non-free non-free-firmware
|
||||||
deb-src http://security.debian.org/debian-security bookworm-security main contrib non-free
|
deb-src http://security.debian.org/debian-security bookworm-security main contrib non-free non-free-firmware
|
||||||
|
|
||||||
deb http://deb.debian.org/debian bookworm-backports main contrib non-free
|
deb http://deb.debian.org/debian bookworm-backports main contrib non-free non-free-firmware
|
||||||
deb-src http://deb.debian.org/debian bookworm-backports main contrib non-free
|
deb-src http://deb.debian.org/debian bookworm-backports main contrib non-free non-free-firmware
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
exit 0
|
exit 0
|
||||||
|
|
|
@ -1,4 +1,13 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
################################################################################
|
||||||
|
# Title: build.sh
|
||||||
|
# Description: Script to build My-distro ISO image
|
||||||
|
# Author: manuel rosa <manuelsilvarosa@gmail.com>
|
||||||
|
# Date: Outubro 29, 2023
|
||||||
|
# License: GPL-3.0-or-later
|
||||||
|
################################################################################
|
||||||
|
|
||||||
PATH="/sbin:/usr/sbin:/usr/local/sbin:$PATH"
|
PATH="/sbin:/usr/sbin:/usr/local/sbin:$PATH"
|
||||||
|
|
||||||
# Set the working folder variable
|
# Set the working folder variable
|
||||||
|
@ -193,6 +202,7 @@ tumbler-plugins-extra
|
||||||
ffmpegthumbnailer
|
ffmpegthumbnailer
|
||||||
xterm
|
xterm
|
||||||
grub-pc
|
grub-pc
|
||||||
|
spice-vdagent
|
||||||
|
|
||||||
" > $build/build/config/package-lists/packages.list.chroot
|
" > $build/build/config/package-lists/packages.list.chroot
|
||||||
|
|
||||||
|
|
|
@ -9,17 +9,17 @@ RELEASE="bookworm"
|
||||||
cat << EOF > $CHROOT/etc/apt/sources.list
|
cat << EOF > $CHROOT/etc/apt/sources.list
|
||||||
# See https://wiki.debian.org/SourcesList for more information.
|
# See https://wiki.debian.org/SourcesList for more information.
|
||||||
|
|
||||||
deb http://deb.debian.org/debian bookworm main contrib non-free
|
deb http://deb.debian.org/debian bookworm main contrib non-free non-free-firmware non-free non-free-firmware-firmware
|
||||||
deb-src http://deb.debian.org/debian bookworm main contrib non-free
|
deb-src http://deb.debian.org/debian bookworm main contrib non-free non-free-firmware
|
||||||
|
|
||||||
deb http://deb.debian.org/debian bookworm-updates main contrib non-free
|
deb http://deb.debian.org/debian bookworm-updates main contrib non-free non-free-firmware
|
||||||
deb-src http://deb.debian.org/debian bookworm-updates main contrib non-free
|
deb-src http://deb.debian.org/debian bookworm-updates main contrib non-free non-free-firmware
|
||||||
|
|
||||||
deb http://security.debian.org/debian-security bookworm-security main contrib non-free
|
deb http://security.debian.org/debian-security bookworm-security main contrib non-free non-free-firmware
|
||||||
deb-src http://security.debian.org/debian-security bookworm-security main contrib non-free
|
deb-src http://security.debian.org/debian-security bookworm-security main contrib non-free non-free-firmware
|
||||||
|
|
||||||
deb http://deb.debian.org/debian bookworm-backports main contrib non-free
|
deb http://deb.debian.org/debian bookworm-backports main contrib non-free non-free-firmware
|
||||||
deb-src http://deb.debian.org/debian bookworm-backports main contrib non-free
|
deb-src http://deb.debian.org/debian bookworm-backports main contrib non-free non-free-firmware
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
exit 0
|
exit 0
|
||||||
|
|
|
@ -1,4 +1,13 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
################################################################################
|
||||||
|
# Title: build.sh
|
||||||
|
# Description: Script to build My-distro ISO image
|
||||||
|
# Author: manuel rosa <manuelsilvarosa@gmail.com>
|
||||||
|
# Date: Outubro 29, 2023
|
||||||
|
# License: GPL-3.0-or-later
|
||||||
|
################################################################################
|
||||||
|
|
||||||
PATH="/sbin:/usr/sbin:/usr/local/sbin:$PATH"
|
PATH="/sbin:/usr/sbin:/usr/local/sbin:$PATH"
|
||||||
|
|
||||||
# Set the working folder variable
|
# Set the working folder variable
|
||||||
|
@ -192,6 +201,7 @@ tumbler-plugins-extra
|
||||||
ffmpegthumbnailer
|
ffmpegthumbnailer
|
||||||
xterm
|
xterm
|
||||||
grub-pc
|
grub-pc
|
||||||
|
spice-vdagent
|
||||||
|
|
||||||
" > $build/build/config/package-lists/packages.list.chroot
|
" > $build/build/config/package-lists/packages.list.chroot
|
||||||
|
|
||||||
|
|
|
@ -9,17 +9,17 @@ RELEASE="bookworm"
|
||||||
cat << EOF > $CHROOT/etc/apt/sources.list
|
cat << EOF > $CHROOT/etc/apt/sources.list
|
||||||
# See https://wiki.debian.org/SourcesList for more information.
|
# See https://wiki.debian.org/SourcesList for more information.
|
||||||
|
|
||||||
deb http://deb.debian.org/debian bookworm main contrib non-free
|
deb http://deb.debian.org/debian bookworm main contrib non-free non-free-firmware
|
||||||
deb-src http://deb.debian.org/debian bookworm main contrib non-free
|
deb-src http://deb.debian.org/debian bookworm main contrib non-free non-free-firmware
|
||||||
|
|
||||||
deb http://deb.debian.org/debian bookworm-updates main contrib non-free
|
deb http://deb.debian.org/debian bookworm-updates main contrib non-free non-free-firmware
|
||||||
deb-src http://deb.debian.org/debian bookworm-updates main contrib non-free
|
deb-src http://deb.debian.org/debian bookworm-updates main contrib non-free non-free-firmware
|
||||||
|
|
||||||
deb http://security.debian.org/debian-security bookworm-security main contrib non-free
|
deb http://security.debian.org/debian-security bookworm-security main contrib non-free non-free-firmware
|
||||||
deb-src http://security.debian.org/debian-security bookworm-security main contrib non-free
|
deb-src http://security.debian.org/debian-security bookworm-security main contrib non-free non-free-firmware
|
||||||
|
|
||||||
deb http://deb.debian.org/debian bookworm-backports main contrib non-free
|
deb http://deb.debian.org/debian bookworm-backports main contrib non-free non-free-firmware
|
||||||
deb-src http://deb.debian.org/debian bookworm-backports main contrib non-free
|
deb-src http://deb.debian.org/debian bookworm-backports main contrib non-free non-free-firmware
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
exit 0
|
exit 0
|
||||||
|
|
|
@ -1,4 +1,13 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
################################################################################
|
||||||
|
# Title: build.sh
|
||||||
|
# Description: Script to build My-distro ISO image
|
||||||
|
# Author: manuel rosa <manuelsilvarosa@gmail.com>
|
||||||
|
# Date: Outubro 29, 2023
|
||||||
|
# License: GPL-3.0-or-later
|
||||||
|
################################################################################
|
||||||
|
|
||||||
PATH="/sbin:/usr/sbin:/usr/local/sbin:$PATH"
|
PATH="/sbin:/usr/sbin:/usr/local/sbin:$PATH"
|
||||||
|
|
||||||
# Set the working folder variable
|
# Set the working folder variable
|
||||||
|
@ -193,6 +202,7 @@ tumbler-plugins-extra
|
||||||
ffmpegthumbnailer
|
ffmpegthumbnailer
|
||||||
xterm
|
xterm
|
||||||
grub-pc
|
grub-pc
|
||||||
|
spice-vdagent
|
||||||
|
|
||||||
" > $build/build/config/package-lists/packages.list.chroot
|
" > $build/build/config/package-lists/packages.list.chroot
|
||||||
|
|
||||||
|
|
|
@ -43,7 +43,7 @@ efiBootMgr: "efibootmgr"
|
||||||
# setting the option here, keep in mind that the name is sanitized
|
# setting the option here, keep in mind that the name is sanitized
|
||||||
# (problematic characters, see above, are replaced).
|
# (problematic characters, see above, are replaced).
|
||||||
#
|
#
|
||||||
# efiBootloaderId: "dirname"
|
efiBootloaderId: "acoros"
|
||||||
|
|
||||||
# Optionally install a copy of the GRUB EFI bootloader as the EFI
|
# Optionally install a copy of the GRUB EFI bootloader as the EFI
|
||||||
# fallback loader (either bootia32.efi or bootx64.efi depending on
|
# fallback loader (either bootia32.efi or bootx64.efi depending on
|
||||||
|
@ -51,4 +51,4 @@ efiBootMgr: "efibootmgr"
|
||||||
# seems to be the only one). If you set this to false, take care
|
# seems to be the only one). If you set this to false, take care
|
||||||
# to add another module to optionally install the fallback on those
|
# to add another module to optionally install the fallback on those
|
||||||
# boards that need it.
|
# boards that need it.
|
||||||
installEFIFallback: false
|
installEFIFallback: true
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
---
|
---
|
||||||
restartNowEnabled: true
|
restartNowEnabled: true
|
||||||
restartNowChecked: true
|
restartNowChecked: true
|
||||||
restartNowCommand: "reboot"
|
restartNowCommand: "systemctl -i reboot"
|
||||||
|
|
|
@ -1,11 +1,27 @@
|
||||||
|
# SPDX-FileCopyrightText: no
|
||||||
|
# SPDX-License-Identifier: CC0-1.0
|
||||||
|
#
|
||||||
|
# Configure fstab options
|
||||||
|
#
|
||||||
---
|
---
|
||||||
mountOptions:
|
mountOptions:
|
||||||
default: defaults,noatime
|
default: defaults,noatime,nodiscard
|
||||||
btrfs: defaults,noatime,space_cache,autodefrag
|
btrfs: defaults,noatime,noautodefrag,nodiscard
|
||||||
ssdExtraMountOptions:
|
btrfs_swap: defaults
|
||||||
ext4: discard
|
swap: defaults
|
||||||
jfs: discard
|
|
||||||
xfs: discard
|
|
||||||
swap: discard
|
|
||||||
btrfs: discard,compress=lzo
|
|
||||||
crypttabOptions: luks,keyscript=/bin/cat
|
crypttabOptions: luks,keyscript=/bin/cat
|
||||||
|
|
||||||
|
efiMountOptions: umask=0077
|
||||||
|
|
||||||
|
ssdExtraMountOptions:
|
||||||
|
btrfs: ssd
|
||||||
|
|
||||||
|
tmpOptions:
|
||||||
|
default:
|
||||||
|
tmpfs: false
|
||||||
|
options: ""
|
||||||
|
ssd:
|
||||||
|
tmpfs: true
|
||||||
|
options: "defaults,noatime,mode=1777"
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
---
|
---
|
||||||
# Whether to create /etc/machine-id for systemd.
|
# Whether to create /etc/machine-id for systemd.
|
||||||
systemd: false
|
systemd: true
|
||||||
# Whether to create /var/lib/dbus/machine-id for D-Bus.
|
# Whether to create /var/lib/dbus/machine-id for D-Bus.
|
||||||
dbus: true
|
dbus: true
|
||||||
# Whether /var/lib/dbus/machine-id should be a symlink to /etc/machine-id
|
# Whether /var/lib/dbus/machine-id should be a symlink to /etc/machine-id
|
||||||
|
|
|
@ -1,18 +1,10 @@
|
||||||
# Mount filesystems in the target (generally, before treating the
|
# SPDX-FileCopyrightText: no
|
||||||
# target as a usable chroot / "live" system). Filesystems are
|
# SPDX-License-Identifier: CC0-1.0
|
||||||
# automatically mounted from the partitioning module. Filesystems
|
|
||||||
# listed here are **extra**. The filesystems listed in *extraMounts*
|
|
||||||
# are mounted in all target systems. The filesystems listed in
|
|
||||||
# *extraMountsEfi* are mounted in the target system **only** if
|
|
||||||
# the host machine uses UEFI.
|
|
||||||
---
|
|
||||||
# Extra filesystems to mount. The key's value is a list of entries; each
|
|
||||||
# entry has four keys:
|
|
||||||
# - device The device node to mount
|
|
||||||
# - fs The filesystem type to use
|
|
||||||
# - mountPoint Where to mount the filesystem
|
|
||||||
# - options (optional) Extra options to pass to mount(8)
|
|
||||||
#
|
#
|
||||||
|
# Mount filesystems in the target (generally, before treating the
|
||||||
|
# target as a usable chroot / "live" system).
|
||||||
|
---
|
||||||
|
|
||||||
extraMounts:
|
extraMounts:
|
||||||
- device: proc
|
- device: proc
|
||||||
fs: proc
|
fs: proc
|
||||||
|
@ -29,8 +21,18 @@ extraMounts:
|
||||||
- device: /run/udev
|
- device: /run/udev
|
||||||
mountPoint: /run/udev
|
mountPoint: /run/udev
|
||||||
options: bind
|
options: bind
|
||||||
|
|
||||||
extraMountsEfi:
|
|
||||||
- device: efivarfs
|
- device: efivarfs
|
||||||
fs: efivarfs
|
fs: efivarfs
|
||||||
mountPoint: /sys/firmware/efi/efivars
|
mountPoint: /sys/firmware/efi/efivars
|
||||||
|
|
||||||
|
btrfsSwapSubvol: /@swap
|
||||||
|
|
||||||
|
btrfsSubvolumes:
|
||||||
|
- mountPoint: /
|
||||||
|
subvolume: /@
|
||||||
|
- mountPoint: /home
|
||||||
|
subvolume: /@home
|
||||||
|
- mountPoint: /var/cache
|
||||||
|
subvolume: /@cache
|
||||||
|
- mountPoint: /var/log
|
||||||
|
subvolume: /@log
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
# SPDX-FileCopyrightText: no
|
||||||
|
# SPDX-License-Identifier: CC0-1.0
|
||||||
|
#
|
||||||
|
# Configuration file for opendmcryptcfg module
|
||||||
|
#
|
||||||
|
---
|
||||||
|
configFilePath: /etc/conf.d/dmcrypt
|
|
@ -7,6 +7,7 @@ operations:
|
||||||
- 'live-config'
|
- 'live-config'
|
||||||
- 'live-config-doc'
|
- 'live-config-doc'
|
||||||
- 'live-config-systemd'
|
- 'live-config-systemd'
|
||||||
|
- 'live-config-systemd'
|
||||||
- 'live-tools'
|
- 'live-tools'
|
||||||
- 'live-task-localisation'
|
- 'live-task-localisation'
|
||||||
- 'live-task-recommended'
|
- 'live-task-recommended'
|
||||||
|
|
|
@ -1,10 +1,15 @@
|
||||||
efiSystemPartition: "/boot/efi"
|
efiSystemPartition: "/boot/efi"
|
||||||
|
efiSystemPartitionSize: 800M
|
||||||
|
efiSystemPartitionName: EFI
|
||||||
userSwapChoices:
|
userSwapChoices:
|
||||||
- none # Create no swap, use no swap
|
- none # Create no swap, use no swap
|
||||||
- small # Up to 4GB
|
- small # Up to 4GB
|
||||||
- suspend # At least main memory size
|
- suspend # At least main memory size
|
||||||
- file # To swap file instead of partition
|
- file # To swap file instead of partition
|
||||||
|
swapPartitionName: SWAP
|
||||||
|
drawNestedPartitions: false
|
||||||
alwaysShowPartitionLabels: true
|
alwaysShowPartitionLabels: true
|
||||||
|
allowManualPartitioning: true
|
||||||
initialPartitioningChoice: erase
|
initialPartitioningChoice: erase
|
||||||
initialSwapChoice: none
|
initialSwapChoice: none
|
||||||
defaultFileSystemType: "ext4"
|
defaultFileSystemType: "ext4"
|
||||||
|
|
|
@ -14,5 +14,10 @@ defaultGroups:
|
||||||
- bluetooth
|
- bluetooth
|
||||||
- sambashare
|
- sambashare
|
||||||
autologinGroup: autologin
|
autologinGroup: autologin
|
||||||
|
doAutologin: false
|
||||||
sudoersGroup: sudo
|
sudoersGroup: sudo
|
||||||
setRootPassword: true
|
setRootPassword: true
|
||||||
|
doReusePassword: true
|
||||||
|
allowWeakPasswords: true
|
||||||
|
allowWeakPasswordsDefault: true
|
||||||
|
userShell: /bin/bash
|
||||||
|
|
|
@ -1,15 +1,34 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
### Error checking added to "lint-trap" section.
|
################################################################################
|
||||||
### Missing files no longer cause builds to fail.
|
# Title: 0520-applications.hook.chroot
|
||||||
|
# Description: Script to remove packages and other things
|
||||||
|
# Author: manuel rosa <manuelsilvarosa@gmail.com>
|
||||||
|
# Date: Outubro 29, 2023
|
||||||
|
# License: GPL-3.0-or-later
|
||||||
|
################################################################################
|
||||||
|
|
||||||
# Remove software
|
# Remove software
|
||||||
# apt remove -y firefox-esr
|
apt --purge --yes autoremove \
|
||||||
# apt remove -y termit
|
vim \
|
||||||
apt --purge --yes autoremove vim vim-tiny nautilus hv3 mpv murrine-themes konsole malcontent termit nvidia-tesla-470-alternative
|
vim-tiny \
|
||||||
|
nautilus \
|
||||||
|
hv3 \
|
||||||
|
mpv \
|
||||||
|
murrine-themes \
|
||||||
|
konsole \
|
||||||
|
malcontent \
|
||||||
|
termit \
|
||||||
|
nvidia-tesla-470-alternative \
|
||||||
|
systemsettings \
|
||||||
|
raspi-firmware
|
||||||
|
|
||||||
|
# Remove /boot/firmware folder
|
||||||
|
rm -r /boot/firmware
|
||||||
|
|
||||||
# Lowers the footprint in RAM at the small expense of added size to the ISO.
|
# Lowers the footprint in RAM at the small expense of added size to the ISO.
|
||||||
update-icon-caches /usr/share/icons/*
|
#update-icon-caches /usr/share/icons/*
|
||||||
|
find /usr/share/icons -type d -exec gtk-update-icon-cache -f {} \;
|
||||||
|
|
||||||
#add flatpak repo to gnome-software
|
#add flatpak repo to gnome-software
|
||||||
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
|
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
../repos
|
|
|
@ -0,0 +1,2 @@
|
||||||
|
deb http://www.deb-multimedia.org bookworm main non-free
|
||||||
|
deb-src http://www.deb-multimedia.org bookworm main non-free
|
|
@ -0,0 +1,2 @@
|
||||||
|
deb http://www.deb-multimedia.org bookworm main non-free
|
||||||
|
deb-src http://www.deb-multimedia.org bookworm main non-free
|
|
@ -9,21 +9,21 @@ RELEASE="daedalus"
|
||||||
cat << EOF > $CHROOT/etc/apt/sources.list
|
cat << EOF > $CHROOT/etc/apt/sources.list
|
||||||
# See https://wiki.debian.org/SourcesList for more information.
|
# See https://wiki.debian.org/SourcesList for more information.
|
||||||
|
|
||||||
# Main Repo - main contrib non-free
|
# Main Repo - main contrib non-free non-free-firmware
|
||||||
deb http://deb.devuan.org/merged daedalus main contrib non-free
|
deb http://deb.devuan.org/merged daedalus main contrib non-free non-free-firmware
|
||||||
#deb-src http://deb.devuan.org/merged daedalus main contrib non-free
|
#deb-src http://deb.devuan.org/merged daedalus main contrib non-free non-free-firmware
|
||||||
|
|
||||||
# Security Repo - main contrib non-free
|
# Security Repo - main contrib non-free non-free-firmware
|
||||||
deb http://deb.devuan.org/merged daedalus-security main contrib non-free
|
deb http://deb.devuan.org/merged daedalus-security main contrib non-free non-free-firmware
|
||||||
#deb-src http://deb.devuan.org/merged daedalus-security main contrib non-free
|
#deb-src http://deb.devuan.org/merged daedalus-security main contrib non-free non-free-firmware
|
||||||
|
|
||||||
# Updates Repo - main contrib non-free
|
# Updates Repo - main contrib non-free non-free-firmware
|
||||||
deb http://deb.devuan.org/merged daedalus-updates main contrib non-free
|
deb http://deb.devuan.org/merged daedalus-updates main contrib non-free non-free-firmware
|
||||||
#deb-src http://deb.devuan.org/merged daedalus-updates main contrib non-free
|
#deb-src http://deb.devuan.org/merged daedalus-updates main contrib non-free non-free-firmware
|
||||||
|
|
||||||
# daedalus-backports, previously on backports.debian.org
|
# daedalus-backports, previously on backports.debian.org
|
||||||
deb http://deb.devuan.org/merged daedalus-backports main contrib non-free
|
deb http://deb.devuan.org/merged daedalus-backports main contrib non-free non-free-firmware
|
||||||
#deb-src http://deb.devuan.org/merged daedalus-backports main contrib non-free
|
#deb-src http://deb.devuan.org/merged daedalus-backports main contrib non-free non-free-firmware
|
||||||
|
|
||||||
|
|
||||||
EOF
|
EOF
|
||||||
|
|
|
@ -1,4 +1,13 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
################################################################################
|
||||||
|
# Title: build.sh
|
||||||
|
# Description: Script to build My-distro ISO image
|
||||||
|
# Author: manuel rosa <manuelsilvarosa@gmail.com>
|
||||||
|
# Date: Outubro 29, 2023
|
||||||
|
# License: GPL-3.0-or-later
|
||||||
|
################################################################################
|
||||||
|
|
||||||
PATH="/sbin:/usr/sbin:/usr/local/sbin:$PATH"
|
PATH="/sbin:/usr/sbin:/usr/local/sbin:$PATH"
|
||||||
|
|
||||||
# Set the working folder variable
|
# Set the working folder variable
|
||||||
|
@ -193,6 +202,7 @@ tumbler-plugins-extra
|
||||||
ffmpegthumbnailer
|
ffmpegthumbnailer
|
||||||
xterm
|
xterm
|
||||||
grub-pc
|
grub-pc
|
||||||
|
spice-vdagent
|
||||||
|
|
||||||
" > $build/build/config/package-lists/packages.list.chroot
|
" > $build/build/config/package-lists/packages.list.chroot
|
||||||
|
|
||||||
|
|
|
@ -43,7 +43,7 @@ efiBootMgr: "efibootmgr"
|
||||||
# setting the option here, keep in mind that the name is sanitized
|
# setting the option here, keep in mind that the name is sanitized
|
||||||
# (problematic characters, see above, are replaced).
|
# (problematic characters, see above, are replaced).
|
||||||
#
|
#
|
||||||
# efiBootloaderId: "dirname"
|
efiBootloaderId: "acoros"
|
||||||
|
|
||||||
# Optionally install a copy of the GRUB EFI bootloader as the EFI
|
# Optionally install a copy of the GRUB EFI bootloader as the EFI
|
||||||
# fallback loader (either bootia32.efi or bootx64.efi depending on
|
# fallback loader (either bootia32.efi or bootx64.efi depending on
|
||||||
|
@ -51,4 +51,4 @@ efiBootMgr: "efibootmgr"
|
||||||
# seems to be the only one). If you set this to false, take care
|
# seems to be the only one). If you set this to false, take care
|
||||||
# to add another module to optionally install the fallback on those
|
# to add another module to optionally install the fallback on those
|
||||||
# boards that need it.
|
# boards that need it.
|
||||||
installEFIFallback: false
|
installEFIFallback: true
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
---
|
---
|
||||||
restartNowEnabled: true
|
restartNowEnabled: true
|
||||||
restartNowChecked: true
|
restartNowChecked: true
|
||||||
restartNowCommand: "reboot"
|
restartNowCommand: "systemctl -i reboot"
|
||||||
|
|
|
@ -1,11 +1,27 @@
|
||||||
|
# SPDX-FileCopyrightText: no
|
||||||
|
# SPDX-License-Identifier: CC0-1.0
|
||||||
|
#
|
||||||
|
# Configure fstab options
|
||||||
|
#
|
||||||
---
|
---
|
||||||
mountOptions:
|
mountOptions:
|
||||||
default: defaults,noatime
|
default: defaults,noatime,nodiscard
|
||||||
btrfs: defaults,noatime,space_cache,autodefrag
|
btrfs: defaults,noatime,noautodefrag,nodiscard
|
||||||
ssdExtraMountOptions:
|
btrfs_swap: defaults
|
||||||
ext4: discard
|
swap: defaults
|
||||||
jfs: discard
|
|
||||||
xfs: discard
|
|
||||||
swap: discard
|
|
||||||
btrfs: discard,compress=lzo
|
|
||||||
crypttabOptions: luks,keyscript=/bin/cat
|
crypttabOptions: luks,keyscript=/bin/cat
|
||||||
|
|
||||||
|
efiMountOptions: umask=0077
|
||||||
|
|
||||||
|
ssdExtraMountOptions:
|
||||||
|
btrfs: ssd
|
||||||
|
|
||||||
|
tmpOptions:
|
||||||
|
default:
|
||||||
|
tmpfs: false
|
||||||
|
options: ""
|
||||||
|
ssd:
|
||||||
|
tmpfs: true
|
||||||
|
options: "defaults,noatime,mode=1777"
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
---
|
---
|
||||||
# Whether to create /etc/machine-id for systemd.
|
# Whether to create /etc/machine-id for systemd.
|
||||||
systemd: false
|
systemd: true
|
||||||
# Whether to create /var/lib/dbus/machine-id for D-Bus.
|
# Whether to create /var/lib/dbus/machine-id for D-Bus.
|
||||||
dbus: true
|
dbus: true
|
||||||
# Whether /var/lib/dbus/machine-id should be a symlink to /etc/machine-id
|
# Whether /var/lib/dbus/machine-id should be a symlink to /etc/machine-id
|
||||||
|
|
|
@ -1,18 +1,10 @@
|
||||||
# Mount filesystems in the target (generally, before treating the
|
# SPDX-FileCopyrightText: no
|
||||||
# target as a usable chroot / "live" system). Filesystems are
|
# SPDX-License-Identifier: CC0-1.0
|
||||||
# automatically mounted from the partitioning module. Filesystems
|
|
||||||
# listed here are **extra**. The filesystems listed in *extraMounts*
|
|
||||||
# are mounted in all target systems. The filesystems listed in
|
|
||||||
# *extraMountsEfi* are mounted in the target system **only** if
|
|
||||||
# the host machine uses UEFI.
|
|
||||||
---
|
|
||||||
# Extra filesystems to mount. The key's value is a list of entries; each
|
|
||||||
# entry has four keys:
|
|
||||||
# - device The device node to mount
|
|
||||||
# - fs The filesystem type to use
|
|
||||||
# - mountPoint Where to mount the filesystem
|
|
||||||
# - options (optional) Extra options to pass to mount(8)
|
|
||||||
#
|
#
|
||||||
|
# Mount filesystems in the target (generally, before treating the
|
||||||
|
# target as a usable chroot / "live" system).
|
||||||
|
---
|
||||||
|
|
||||||
extraMounts:
|
extraMounts:
|
||||||
- device: proc
|
- device: proc
|
||||||
fs: proc
|
fs: proc
|
||||||
|
@ -29,8 +21,18 @@ extraMounts:
|
||||||
- device: /run/udev
|
- device: /run/udev
|
||||||
mountPoint: /run/udev
|
mountPoint: /run/udev
|
||||||
options: bind
|
options: bind
|
||||||
|
|
||||||
extraMountsEfi:
|
|
||||||
- device: efivarfs
|
- device: efivarfs
|
||||||
fs: efivarfs
|
fs: efivarfs
|
||||||
mountPoint: /sys/firmware/efi/efivars
|
mountPoint: /sys/firmware/efi/efivars
|
||||||
|
|
||||||
|
btrfsSwapSubvol: /@swap
|
||||||
|
|
||||||
|
btrfsSubvolumes:
|
||||||
|
- mountPoint: /
|
||||||
|
subvolume: /@
|
||||||
|
- mountPoint: /home
|
||||||
|
subvolume: /@home
|
||||||
|
- mountPoint: /var/cache
|
||||||
|
subvolume: /@cache
|
||||||
|
- mountPoint: /var/log
|
||||||
|
subvolume: /@log
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
# SPDX-FileCopyrightText: no
|
||||||
|
# SPDX-License-Identifier: CC0-1.0
|
||||||
|
#
|
||||||
|
# Configuration file for opendmcryptcfg module
|
||||||
|
#
|
||||||
|
---
|
||||||
|
configFilePath: /etc/conf.d/dmcrypt
|
|
@ -7,6 +7,7 @@ operations:
|
||||||
- 'live-config'
|
- 'live-config'
|
||||||
- 'live-config-doc'
|
- 'live-config-doc'
|
||||||
- 'live-config-systemd'
|
- 'live-config-systemd'
|
||||||
|
- 'live-config-systemd'
|
||||||
- 'live-tools'
|
- 'live-tools'
|
||||||
- 'live-task-localisation'
|
- 'live-task-localisation'
|
||||||
- 'live-task-recommended'
|
- 'live-task-recommended'
|
||||||
|
|
|
@ -1,10 +1,15 @@
|
||||||
efiSystemPartition: "/boot/efi"
|
efiSystemPartition: "/boot/efi"
|
||||||
|
efiSystemPartitionSize: 800M
|
||||||
|
efiSystemPartitionName: EFI
|
||||||
userSwapChoices:
|
userSwapChoices:
|
||||||
- none # Create no swap, use no swap
|
- none # Create no swap, use no swap
|
||||||
- small # Up to 4GB
|
- small # Up to 4GB
|
||||||
- suspend # At least main memory size
|
- suspend # At least main memory size
|
||||||
- file # To swap file instead of partition
|
- file # To swap file instead of partition
|
||||||
|
swapPartitionName: SWAP
|
||||||
|
drawNestedPartitions: false
|
||||||
alwaysShowPartitionLabels: true
|
alwaysShowPartitionLabels: true
|
||||||
|
allowManualPartitioning: true
|
||||||
initialPartitioningChoice: erase
|
initialPartitioningChoice: erase
|
||||||
initialSwapChoice: none
|
initialSwapChoice: none
|
||||||
defaultFileSystemType: "ext4"
|
defaultFileSystemType: "ext4"
|
||||||
|
|
|
@ -14,5 +14,10 @@ defaultGroups:
|
||||||
- bluetooth
|
- bluetooth
|
||||||
- sambashare
|
- sambashare
|
||||||
autologinGroup: autologin
|
autologinGroup: autologin
|
||||||
|
doAutologin: false
|
||||||
sudoersGroup: sudo
|
sudoersGroup: sudo
|
||||||
setRootPassword: true
|
setRootPassword: true
|
||||||
|
doReusePassword: true
|
||||||
|
allowWeakPasswords: true
|
||||||
|
allowWeakPasswordsDefault: true
|
||||||
|
userShell: /bin/bash
|
||||||
|
|
|
@ -1,15 +1,34 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
### Error checking added to "lint-trap" section.
|
################################################################################
|
||||||
### Missing files no longer cause builds to fail.
|
# Title: 0520-applications.hook.chroot
|
||||||
|
# Description: Script to remove packages and other things
|
||||||
|
# Author: manuel rosa <manuelsilvarosa@gmail.com>
|
||||||
|
# Date: Outubro 29, 2023
|
||||||
|
# License: GPL-3.0-or-later
|
||||||
|
################################################################################
|
||||||
|
|
||||||
# Remove software
|
# Remove software
|
||||||
# apt remove -y firefox-esr
|
apt --purge --yes autoremove \
|
||||||
# apt remove -y termit
|
vim \
|
||||||
apt --purge --yes autoremove vim vim-tiny nautilus hv3 mpv murrine-themes konsole malcontent termit nvidia-tesla-470-alternative
|
vim-tiny \
|
||||||
|
nautilus \
|
||||||
|
hv3 \
|
||||||
|
mpv \
|
||||||
|
murrine-themes \
|
||||||
|
konsole \
|
||||||
|
malcontent \
|
||||||
|
termit \
|
||||||
|
nvidia-tesla-470-alternative \
|
||||||
|
systemsettings \
|
||||||
|
raspi-firmware
|
||||||
|
|
||||||
|
# Remove /boot/firmware folder
|
||||||
|
rm -r /boot/firmware
|
||||||
|
|
||||||
# Lowers the footprint in RAM at the small expense of added size to the ISO.
|
# Lowers the footprint in RAM at the small expense of added size to the ISO.
|
||||||
update-icon-caches /usr/share/icons/*
|
#update-icon-caches /usr/share/icons/*
|
||||||
|
find /usr/share/icons -type d -exec gtk-update-icon-cache -f {} \;
|
||||||
|
|
||||||
#add flatpak repo to gnome-software
|
#add flatpak repo to gnome-software
|
||||||
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
|
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
../repos
|
|
|
@ -0,0 +1,2 @@
|
||||||
|
deb http://www.deb-multimedia.org bookworm main non-free
|
||||||
|
deb-src http://www.deb-multimedia.org bookworm main non-free
|
|
@ -0,0 +1,2 @@
|
||||||
|
deb http://www.deb-multimedia.org bookworm main non-free
|
||||||
|
deb-src http://www.deb-multimedia.org bookworm main non-free
|
|
@ -9,21 +9,21 @@ RELEASE="daedalus"
|
||||||
cat << EOF > $CHROOT/etc/apt/sources.list
|
cat << EOF > $CHROOT/etc/apt/sources.list
|
||||||
# See https://wiki.debian.org/SourcesList for more information.
|
# See https://wiki.debian.org/SourcesList for more information.
|
||||||
|
|
||||||
# Main Repo - main contrib non-free
|
# Main Repo - main contrib non-free non-free-firmware
|
||||||
deb http://deb.devuan.org/merged daedalus main contrib non-free
|
deb http://deb.devuan.org/merged daedalus main contrib non-free non-free-firmware
|
||||||
#deb-src http://deb.devuan.org/merged daedalus main contrib non-free
|
#deb-src http://deb.devuan.org/merged daedalus main contrib non-free non-free-firmware
|
||||||
|
|
||||||
# Security Repo - main contrib non-free
|
# Security Repo - main contrib non-free non-free-firmware
|
||||||
deb http://deb.devuan.org/merged daedalus-security main contrib non-free
|
deb http://deb.devuan.org/merged daedalus-security main contrib non-free non-free-firmware
|
||||||
#deb-src http://deb.devuan.org/merged daedalus-security main contrib non-free
|
#deb-src http://deb.devuan.org/merged daedalus-security main contrib non-free non-free-firmware
|
||||||
|
|
||||||
# Updates Repo - main contrib non-free
|
# Updates Repo - main contrib non-free non-free-firmware
|
||||||
deb http://deb.devuan.org/merged daedalus-updates main contrib non-free
|
deb http://deb.devuan.org/merged daedalus-updates main contrib non-free non-free-firmware
|
||||||
#deb-src http://deb.devuan.org/merged daedalus-updates main contrib non-free
|
#deb-src http://deb.devuan.org/merged daedalus-updates main contrib non-free non-free-firmware
|
||||||
|
|
||||||
# daedalus-backports, previously on backports.debian.org
|
# daedalus-backports, previously on backports.debian.org
|
||||||
deb http://deb.devuan.org/merged daedalus-backports main contrib non-free
|
deb http://deb.devuan.org/merged daedalus-backports main contrib non-free non-free-firmware
|
||||||
#deb-src http://deb.devuan.org/merged daedalus-backports main contrib non-free
|
#deb-src http://deb.devuan.org/merged daedalus-backports main contrib non-free non-free-firmware
|
||||||
|
|
||||||
|
|
||||||
EOF
|
EOF
|
||||||
|
|
|
@ -1,4 +1,13 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
################################################################################
|
||||||
|
# Title: build.sh
|
||||||
|
# Description: Script to build My-distro ISO image
|
||||||
|
# Author: manuel rosa <manuelsilvarosa@gmail.com>
|
||||||
|
# Date: Outubro 29, 2023
|
||||||
|
# License: GPL-3.0-or-later
|
||||||
|
################################################################################
|
||||||
|
|
||||||
PATH="/sbin:/usr/sbin:/usr/local/sbin:$PATH"
|
PATH="/sbin:/usr/sbin:/usr/local/sbin:$PATH"
|
||||||
|
|
||||||
# Set the working folder variable
|
# Set the working folder variable
|
||||||
|
@ -192,6 +201,7 @@ tumbler-plugins-extra
|
||||||
ffmpegthumbnailer
|
ffmpegthumbnailer
|
||||||
xterm
|
xterm
|
||||||
grub-pc
|
grub-pc
|
||||||
|
spice-vdagent
|
||||||
|
|
||||||
" > $build/build/config/package-lists/packages.list.chroot
|
" > $build/build/config/package-lists/packages.list.chroot
|
||||||
|
|
||||||
|
|
|
@ -43,7 +43,7 @@ efiBootMgr: "efibootmgr"
|
||||||
# setting the option here, keep in mind that the name is sanitized
|
# setting the option here, keep in mind that the name is sanitized
|
||||||
# (problematic characters, see above, are replaced).
|
# (problematic characters, see above, are replaced).
|
||||||
#
|
#
|
||||||
# efiBootloaderId: "dirname"
|
efiBootloaderId: "acoros"
|
||||||
|
|
||||||
# Optionally install a copy of the GRUB EFI bootloader as the EFI
|
# Optionally install a copy of the GRUB EFI bootloader as the EFI
|
||||||
# fallback loader (either bootia32.efi or bootx64.efi depending on
|
# fallback loader (either bootia32.efi or bootx64.efi depending on
|
||||||
|
@ -51,4 +51,4 @@ efiBootMgr: "efibootmgr"
|
||||||
# seems to be the only one). If you set this to false, take care
|
# seems to be the only one). If you set this to false, take care
|
||||||
# to add another module to optionally install the fallback on those
|
# to add another module to optionally install the fallback on those
|
||||||
# boards that need it.
|
# boards that need it.
|
||||||
installEFIFallback: false
|
installEFIFallback: true
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
---
|
---
|
||||||
restartNowEnabled: true
|
restartNowEnabled: true
|
||||||
restartNowChecked: true
|
restartNowChecked: true
|
||||||
restartNowCommand: "reboot"
|
restartNowCommand: "systemctl -i reboot"
|
||||||
|
|
|
@ -1,11 +1,27 @@
|
||||||
|
# SPDX-FileCopyrightText: no
|
||||||
|
# SPDX-License-Identifier: CC0-1.0
|
||||||
|
#
|
||||||
|
# Configure fstab options
|
||||||
|
#
|
||||||
---
|
---
|
||||||
mountOptions:
|
mountOptions:
|
||||||
default: defaults,noatime
|
default: defaults,noatime,nodiscard
|
||||||
btrfs: defaults,noatime,space_cache,autodefrag
|
btrfs: defaults,noatime,noautodefrag,nodiscard
|
||||||
ssdExtraMountOptions:
|
btrfs_swap: defaults
|
||||||
ext4: discard
|
swap: defaults
|
||||||
jfs: discard
|
|
||||||
xfs: discard
|
|
||||||
swap: discard
|
|
||||||
btrfs: discard,compress=lzo
|
|
||||||
crypttabOptions: luks,keyscript=/bin/cat
|
crypttabOptions: luks,keyscript=/bin/cat
|
||||||
|
|
||||||
|
efiMountOptions: umask=0077
|
||||||
|
|
||||||
|
ssdExtraMountOptions:
|
||||||
|
btrfs: ssd
|
||||||
|
|
||||||
|
tmpOptions:
|
||||||
|
default:
|
||||||
|
tmpfs: false
|
||||||
|
options: ""
|
||||||
|
ssd:
|
||||||
|
tmpfs: true
|
||||||
|
options: "defaults,noatime,mode=1777"
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
---
|
---
|
||||||
# Whether to create /etc/machine-id for systemd.
|
# Whether to create /etc/machine-id for systemd.
|
||||||
systemd: false
|
systemd: true
|
||||||
# Whether to create /var/lib/dbus/machine-id for D-Bus.
|
# Whether to create /var/lib/dbus/machine-id for D-Bus.
|
||||||
dbus: true
|
dbus: true
|
||||||
# Whether /var/lib/dbus/machine-id should be a symlink to /etc/machine-id
|
# Whether /var/lib/dbus/machine-id should be a symlink to /etc/machine-id
|
||||||
|
|
|
@ -1,18 +1,10 @@
|
||||||
# Mount filesystems in the target (generally, before treating the
|
# SPDX-FileCopyrightText: no
|
||||||
# target as a usable chroot / "live" system). Filesystems are
|
# SPDX-License-Identifier: CC0-1.0
|
||||||
# automatically mounted from the partitioning module. Filesystems
|
|
||||||
# listed here are **extra**. The filesystems listed in *extraMounts*
|
|
||||||
# are mounted in all target systems. The filesystems listed in
|
|
||||||
# *extraMountsEfi* are mounted in the target system **only** if
|
|
||||||
# the host machine uses UEFI.
|
|
||||||
---
|
|
||||||
# Extra filesystems to mount. The key's value is a list of entries; each
|
|
||||||
# entry has four keys:
|
|
||||||
# - device The device node to mount
|
|
||||||
# - fs The filesystem type to use
|
|
||||||
# - mountPoint Where to mount the filesystem
|
|
||||||
# - options (optional) Extra options to pass to mount(8)
|
|
||||||
#
|
#
|
||||||
|
# Mount filesystems in the target (generally, before treating the
|
||||||
|
# target as a usable chroot / "live" system).
|
||||||
|
---
|
||||||
|
|
||||||
extraMounts:
|
extraMounts:
|
||||||
- device: proc
|
- device: proc
|
||||||
fs: proc
|
fs: proc
|
||||||
|
@ -29,8 +21,18 @@ extraMounts:
|
||||||
- device: /run/udev
|
- device: /run/udev
|
||||||
mountPoint: /run/udev
|
mountPoint: /run/udev
|
||||||
options: bind
|
options: bind
|
||||||
|
|
||||||
extraMountsEfi:
|
|
||||||
- device: efivarfs
|
- device: efivarfs
|
||||||
fs: efivarfs
|
fs: efivarfs
|
||||||
mountPoint: /sys/firmware/efi/efivars
|
mountPoint: /sys/firmware/efi/efivars
|
||||||
|
|
||||||
|
btrfsSwapSubvol: /@swap
|
||||||
|
|
||||||
|
btrfsSubvolumes:
|
||||||
|
- mountPoint: /
|
||||||
|
subvolume: /@
|
||||||
|
- mountPoint: /home
|
||||||
|
subvolume: /@home
|
||||||
|
- mountPoint: /var/cache
|
||||||
|
subvolume: /@cache
|
||||||
|
- mountPoint: /var/log
|
||||||
|
subvolume: /@log
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
# SPDX-FileCopyrightText: no
|
||||||
|
# SPDX-License-Identifier: CC0-1.0
|
||||||
|
#
|
||||||
|
# Configuration file for opendmcryptcfg module
|
||||||
|
#
|
||||||
|
---
|
||||||
|
configFilePath: /etc/conf.d/dmcrypt
|
|
@ -7,6 +7,7 @@ operations:
|
||||||
- 'live-config'
|
- 'live-config'
|
||||||
- 'live-config-doc'
|
- 'live-config-doc'
|
||||||
- 'live-config-systemd'
|
- 'live-config-systemd'
|
||||||
|
- 'live-config-systemd'
|
||||||
- 'live-tools'
|
- 'live-tools'
|
||||||
- 'live-task-localisation'
|
- 'live-task-localisation'
|
||||||
- 'live-task-recommended'
|
- 'live-task-recommended'
|
||||||
|
|
|
@ -1,10 +1,15 @@
|
||||||
efiSystemPartition: "/boot/efi"
|
efiSystemPartition: "/boot/efi"
|
||||||
|
efiSystemPartitionSize: 800M
|
||||||
|
efiSystemPartitionName: EFI
|
||||||
userSwapChoices:
|
userSwapChoices:
|
||||||
- none # Create no swap, use no swap
|
- none # Create no swap, use no swap
|
||||||
- small # Up to 4GB
|
- small # Up to 4GB
|
||||||
- suspend # At least main memory size
|
- suspend # At least main memory size
|
||||||
- file # To swap file instead of partition
|
- file # To swap file instead of partition
|
||||||
|
swapPartitionName: SWAP
|
||||||
|
drawNestedPartitions: false
|
||||||
alwaysShowPartitionLabels: true
|
alwaysShowPartitionLabels: true
|
||||||
|
allowManualPartitioning: true
|
||||||
initialPartitioningChoice: erase
|
initialPartitioningChoice: erase
|
||||||
initialSwapChoice: none
|
initialSwapChoice: none
|
||||||
defaultFileSystemType: "ext4"
|
defaultFileSystemType: "ext4"
|
||||||
|
|
|
@ -14,5 +14,10 @@ defaultGroups:
|
||||||
- bluetooth
|
- bluetooth
|
||||||
- sambashare
|
- sambashare
|
||||||
autologinGroup: autologin
|
autologinGroup: autologin
|
||||||
|
doAutologin: false
|
||||||
sudoersGroup: sudo
|
sudoersGroup: sudo
|
||||||
setRootPassword: true
|
setRootPassword: true
|
||||||
|
doReusePassword: true
|
||||||
|
allowWeakPasswords: true
|
||||||
|
allowWeakPasswordsDefault: true
|
||||||
|
userShell: /bin/bash
|
||||||
|
|
|
@ -1,15 +1,34 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
### Error checking added to "lint-trap" section.
|
################################################################################
|
||||||
### Missing files no longer cause builds to fail.
|
# Title: 0520-applications.hook.chroot
|
||||||
|
# Description: Script to remove packages and other things
|
||||||
|
# Author: manuel rosa <manuelsilvarosa@gmail.com>
|
||||||
|
# Date: Outubro 29, 2023
|
||||||
|
# License: GPL-3.0-or-later
|
||||||
|
################################################################################
|
||||||
|
|
||||||
# Remove software
|
# Remove software
|
||||||
# apt remove -y firefox-esr
|
apt --purge --yes autoremove \
|
||||||
# apt remove -y termit
|
vim \
|
||||||
apt --purge --yes autoremove vim vim-tiny nautilus hv3 mpv murrine-themes konsole malcontent termit nvidia-tesla-470-alternative
|
vim-tiny \
|
||||||
|
nautilus \
|
||||||
|
hv3 \
|
||||||
|
mpv \
|
||||||
|
murrine-themes \
|
||||||
|
konsole \
|
||||||
|
malcontent \
|
||||||
|
termit \
|
||||||
|
nvidia-tesla-470-alternative \
|
||||||
|
systemsettings \
|
||||||
|
raspi-firmware
|
||||||
|
|
||||||
|
# Remove /boot/firmware folder
|
||||||
|
rm -r /boot/firmware
|
||||||
|
|
||||||
# Lowers the footprint in RAM at the small expense of added size to the ISO.
|
# Lowers the footprint in RAM at the small expense of added size to the ISO.
|
||||||
update-icon-caches /usr/share/icons/*
|
#update-icon-caches /usr/share/icons/*
|
||||||
|
find /usr/share/icons -type d -exec gtk-update-icon-cache -f {} \;
|
||||||
|
|
||||||
#add flatpak repo to gnome-software
|
#add flatpak repo to gnome-software
|
||||||
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
|
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
../repos
|
|
|
@ -0,0 +1,2 @@
|
||||||
|
deb http://www.deb-multimedia.org bookworm main non-free
|
||||||
|
deb-src http://www.deb-multimedia.org bookworm main non-free
|
|
@ -0,0 +1,2 @@
|
||||||
|
deb http://www.deb-multimedia.org bookworm main non-free
|
||||||
|
deb-src http://www.deb-multimedia.org bookworm main non-free
|
|
@ -9,21 +9,21 @@ RELEASE="daedalus"
|
||||||
cat << EOF > $CHROOT/etc/apt/sources.list
|
cat << EOF > $CHROOT/etc/apt/sources.list
|
||||||
# See https://wiki.debian.org/SourcesList for more information.
|
# See https://wiki.debian.org/SourcesList for more information.
|
||||||
|
|
||||||
# Main Repo - main contrib non-free
|
# Main Repo - main contrib non-free non-free-firmware
|
||||||
deb http://deb.devuan.org/merged daedalus main contrib non-free
|
deb http://deb.devuan.org/merged daedalus main contrib non-free non-free-firmware
|
||||||
#deb-src http://deb.devuan.org/merged daedalus main contrib non-free
|
#deb-src http://deb.devuan.org/merged daedalus main contrib non-free non-free-firmware
|
||||||
|
|
||||||
# Security Repo - main contrib non-free
|
# Security Repo - main contrib non-free non-free-firmware
|
||||||
deb http://deb.devuan.org/merged daedalus-security main contrib non-free
|
deb http://deb.devuan.org/merged daedalus-security main contrib non-free non-free-firmware
|
||||||
#deb-src http://deb.devuan.org/merged daedalus-security main contrib non-free
|
#deb-src http://deb.devuan.org/merged daedalus-security main contrib non-free non-free-firmware
|
||||||
|
|
||||||
# Updates Repo - main contrib non-free
|
# Updates Repo - main contrib non-free non-free-firmware
|
||||||
deb http://deb.devuan.org/merged daedalus-updates main contrib non-free
|
deb http://deb.devuan.org/merged daedalus-updates main contrib non-free non-free-firmware
|
||||||
#deb-src http://deb.devuan.org/merged daedalus-updates main contrib non-free
|
#deb-src http://deb.devuan.org/merged daedalus-updates main contrib non-free non-free-firmware
|
||||||
|
|
||||||
# daedalus-backports, previously on backports.debian.org
|
# daedalus-backports, previously on backports.debian.org
|
||||||
deb http://deb.devuan.org/merged daedalus-backports main contrib non-free
|
deb http://deb.devuan.org/merged daedalus-backports main contrib non-free non-free-firmware
|
||||||
#deb-src http://deb.devuan.org/merged daedalus-backports main contrib non-free
|
#deb-src http://deb.devuan.org/merged daedalus-backports main contrib non-free non-free-firmware
|
||||||
|
|
||||||
|
|
||||||
EOF
|
EOF
|
||||||
|
|
|
@ -1,4 +1,13 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
################################################################################
|
||||||
|
# Title: build.sh
|
||||||
|
# Description: Script to build My-distro ISO image
|
||||||
|
# Author: manuel rosa <manuelsilvarosa@gmail.com>
|
||||||
|
# Date: Outubro 29, 2023
|
||||||
|
# License: GPL-3.0-or-later
|
||||||
|
################################################################################
|
||||||
|
|
||||||
PATH="/sbin:/usr/sbin:/usr/local/sbin:$PATH"
|
PATH="/sbin:/usr/sbin:/usr/local/sbin:$PATH"
|
||||||
|
|
||||||
# Set the working folder variable
|
# Set the working folder variable
|
||||||
|
@ -183,6 +192,7 @@ ffmpegthumbnailer
|
||||||
linux-firmware
|
linux-firmware
|
||||||
xterm
|
xterm
|
||||||
grub-pc
|
grub-pc
|
||||||
|
spice-vdagent
|
||||||
|
|
||||||
" > $build/build/config/package-lists/packages.list.chroot
|
" > $build/build/config/package-lists/packages.list.chroot
|
||||||
|
|
||||||
|
@ -250,9 +260,7 @@ cp -r $build/calamares/* $build/build/config/includes.chroot/etc/calamares
|
||||||
cp -r $build/configs/* $build/build/config/includes.chroot/etc/
|
cp -r $build/configs/* $build/build/config/includes.chroot/etc/
|
||||||
cp -r $build/icons/* $build/build/config/includes.chroot/usr/share/icons
|
cp -r $build/icons/* $build/build/config/includes.chroot/usr/share/icons
|
||||||
cp -r $build/themes/* $build/build/config/includes.chroot/usr/share/themes
|
cp -r $build/themes/* $build/build/config/includes.chroot/usr/share/themes
|
||||||
cp -r $build/desktop-base/* $build/build/config/includes.chroot/usr/share/desktop-base
|
#cp -r $build/packages/* $build/build/config/packages.chroot
|
||||||
cp -r $build/plymouth/* $build/build/config/includes.chroot/usr/share/plymouth
|
|
||||||
cp -r $build/packages/* $build/build/config/packages.chroot
|
|
||||||
cp -r $build/grub/themes/* $build/build/config/includes.chroot/boot/grub/themes
|
cp -r $build/grub/themes/* $build/build/config/includes.chroot/boot/grub/themes
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -15,4 +15,4 @@ defaultGroups:
|
||||||
- sambashare
|
- sambashare
|
||||||
autologinGroup: autologin
|
autologinGroup: autologin
|
||||||
sudoersGroup: sudo
|
sudoersGroup: sudo
|
||||||
setRootPassword: true
|
setRootPassword: false
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
../desktop-base
|
|
|
@ -1,14 +1,35 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
### Error checking added to "lint-trap" section.
|
################################################################################
|
||||||
### Missing files no longer cause builds to fail.
|
# Title: 0520-applications.hook.chroot
|
||||||
|
# Description: Script to remove packages and other things
|
||||||
|
# Author: manuel rosa <manuelsilvarosa@gmail.com>
|
||||||
|
# Date: Outubro 29, 2023
|
||||||
|
# License: GPL-3.0-or-later
|
||||||
|
################################################################################
|
||||||
|
|
||||||
# Remove software
|
# Remove software
|
||||||
# apt remove -y firefox-esr
|
apt --purge --yes autoremove \
|
||||||
# apt remove -y termit
|
vim \
|
||||||
apt --purge --yes autoremove vim vim-tiny murrine-themes termit gnome-shell gdm3 ubuntu-session mutter gnome-control-center gnome-control-center-data gnome-control-center-faces gnome-online-accounts gedit* apport update-notifier-common update-notifier
|
vim-tiny \
|
||||||
|
murrine-themes \
|
||||||
|
termit \
|
||||||
|
gnome-shell \
|
||||||
|
gdm3 \
|
||||||
|
ubuntu-session \
|
||||||
|
mutter \
|
||||||
|
gnome-control-center \
|
||||||
|
gnome-control-center-data \
|
||||||
|
gnome-control-center-faces \
|
||||||
|
gnome-online-accounts \
|
||||||
|
gedit* \
|
||||||
|
apport \
|
||||||
|
update-notifier-common \
|
||||||
|
update-notifier
|
||||||
|
|
||||||
# Lowers the footprint in RAM at the small expense of added size to the ISO.
|
# Lowers the footprint in RAM at the small expense of added size to the ISO.
|
||||||
update-icon-caches /usr/share/icons/*
|
#update-icon-caches /usr/share/icons/*
|
||||||
|
find /usr/share/icons -type d -exec gtk-update-icon-cache -f {} \;
|
||||||
|
|
||||||
#add flatpak repo to gnome-software
|
#add flatpak repo to gnome-software
|
||||||
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
|
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
../plymouth
|
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
|
@ -4,5 +4,5 @@ Description=A theme inspired by the Bauhaus movement
|
||||||
ModuleName=script
|
ModuleName=script
|
||||||
|
|
||||||
[script]
|
[script]
|
||||||
ImageDir=/usr/share/plymouth/themes/homeworld
|
ImageDir=/usr/share/plymouth/themes/emerald
|
||||||
ScriptFile=/usr/share/plymouth/themes/homeworld/homeworld.script
|
ScriptFile=/usr/share/plymouth/themes/homeworld/emerald.script
|
Before Width: | Height: | Size: 35 KiB After Width: | Height: | Size: 35 KiB |
Before Width: | Height: | Size: 2.7 KiB After Width: | Height: | Size: 2.7 KiB |
Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 2.9 KiB |
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 17 KiB After Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 230 B After Width: | Height: | Size: 230 B |
Before Width: | Height: | Size: 1.9 MiB After Width: | Height: | Size: 1.9 MiB |
Before Width: | Height: | Size: 12 KiB |
|
@ -1,8 +0,0 @@
|
||||||
[Plymouth Theme]
|
|
||||||
Name=Default theme for Debian 10.0 Buster
|
|
||||||
Description=A theme that features a white debian 10 logo in a white spinning circle
|
|
||||||
ModuleName=script
|
|
||||||
|
|
||||||
[script]
|
|
||||||
ImageDir=/usr/share/plymouth/themes/futureprototype
|
|
||||||
ScriptFile=/usr/share/plymouth/themes/futureprototype/futureprototype.script
|
|
Before Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 1.4 MiB |
Before Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 35 KiB |
Before Width: | Height: | Size: 2.7 KiB |