Compare commits
77 Commits
Author | SHA1 | Date | |
---|---|---|---|
5c92145b84 | |||
bb1253ebfd | |||
0a8870072c | |||
9b83ddffd6 | |||
724a1a1a1d | |||
955edeccff | |||
d6771f98c5 | |||
7935573e60 | |||
706d23304d | |||
6cb4fe0e96 | |||
8b46c6fc94 | |||
3cbfc2da68 | |||
224335630c | |||
efa1a973bd | |||
08cbc763f2 | |||
8136cca4fe | |||
ce79e7f0f3 | |||
8bb280f60b | |||
c49d1b3a0f | |||
6b1304db21 | |||
725dae74fd | |||
642fcb5366 | |||
680df089cb | |||
2b46c882db | |||
e1c89a11ec | |||
f1a4c85b74 | |||
b2d385131a | |||
5ad74bf470 | |||
19a7567b8e | |||
256f995116 | |||
f349514783 | |||
6ea616421f | |||
7f7873c249 | |||
0925f9fac1 | |||
910782403a | |||
6586c3abe5 | |||
41c633b751 | |||
ef24b302cd | |||
fa62e15c05 | |||
ad79b20eb8 | |||
c03c0e89fc | |||
d38973a0db | |||
a9bbd7bdd8 | |||
6968d9f26e | |||
f9670a4baa | |||
aec2297f47 | |||
d1d1a9cb15 | |||
e6b5cb134a | |||
ffd500d77a | |||
6f89fb6102 | |||
a70155a110 | |||
7bfd397cfd | |||
05cc37dba8 | |||
3562caa193 | |||
|
64cbabce38 | ||
|
7632d91311 | ||
|
061a10371f | ||
|
3d7e3822ef | ||
|
991c8f23f0 | ||
|
a44ef72c2e | ||
8cd1baf6f2 | |||
|
2a0134b5c8 | ||
|
976b4ced94 | ||
|
d296bd1544 | ||
|
3605e8e6b1 | ||
|
a824de094a | ||
|
506a812fea | ||
|
5fa5352830 | ||
|
b30b810038 | ||
|
1ddd96619f | ||
|
b457f4bf68 | ||
|
b3993011e4 | ||
|
b576fd2573 | ||
|
27ac9b3159 | ||
|
34725e5ffb | ||
|
ae31765826 | ||
|
22bfa38a2b |
40
README.md
@ -1,25 +1,31 @@
|
||||
# svpro_gnu
|
||||
# SVPROGNU
|
||||
|
||||
Système d'exploitation 64 bits - 100% GNU basé sur Debian 12 (Bookworm)
|
||||
|
||||
Système d'exploitation x64 - 100% GNU basé sur Debian
|
||||
|
||||
## Installation (root)
|
||||
### Générer ISO seule
|
||||
```
|
||||
curl https://git.weblib.re/svpro/svpro_gnu/raw/branch/develop/build_svprognu | bash
|
||||
```
|
||||
### Créer clef usb + persistence
|
||||
**Attention ! La clef ne doit pas être montée par un autre processus (explorateur de fichiers, utilitaire d'auto-mount...)
|
||||
* Cloner le dépot
|
||||
```
|
||||
curl https://git.weblib.re/svpro/svpro_gnu/raw/branch/develop/build_svprognu | bash -s -- -d /dev/sdX
|
||||
git clone https://git.vermeulen.pro/SVPRO/svprognu.git && cd svprognu
|
||||
```
|
||||
**La persistence sera configurée lors du 1er boot. Le démarrage peut prendre quelques minutes.
|
||||
* Si vous avez déjà téléchatgé l'image ISO, dans le même répertoire :
|
||||
```
|
||||
./build_svprognu -d /dev/sdX # sdX étant la cible physique de la clé
|
||||
```
|
||||
* Ou récupérer l'image depuis le serveur :
|
||||
```
|
||||
./build_svprognu -r -d /dev/sdX # sdX étant la cible physique de la clé
|
||||
```
|
||||
**La persistence sera configurée lors du 1er boot. Le démarrage peut prendre quelques minutes.**
|
||||
|
||||
**Note :** Le mot de passe pour la session « Live User » est `svpro_gnu`
|
||||
|
||||
### Installation physique
|
||||
Depuis le menu du live, choisir "Installation Graphique ou Experts"
|
||||
|
||||
|
||||
|
||||
## Build iso avec live-build (expoerts)
|
||||
## Build iso avec live-build (experts)
|
||||
Cloner le dépôt puis :
|
||||
```
|
||||
apt install live-build
|
||||
@ -28,13 +34,5 @@ lb config
|
||||
lb build
|
||||
```
|
||||
|
||||
### Démo (Session Live via noVNC)
|
||||
En ligne uniquement en journée
|
||||
https://svprognu.weblib.re/
|
||||
|
||||
|
||||
### ToDo
|
||||
|
||||
- [x] Installeur
|
||||
- [x] Live Persistence
|
||||
- [ ] Integration Yunohost
|
||||
### WIKI
|
||||
https://svprognu.vermeulen.pro/
|
||||
|
BIN
Screenshot.png
Before Width: | Height: | Size: 251 KiB |
@ -4,9 +4,9 @@ set -e
|
||||
|
||||
lb config noauto \
|
||||
--bootloaders "syslinux,grub-efi" \
|
||||
--distribution "buster" \
|
||||
--distribution "bookworm" \
|
||||
--architectures "amd64" \
|
||||
--archive-areas "main contrib non-free" \
|
||||
--archive-areas "main contrib non-free non-free-firmware" \
|
||||
--apt-recommends "true" \
|
||||
--debian-installer-gui "true" \
|
||||
--debian-installer "live" \
|
||||
@ -16,8 +16,9 @@ lb config noauto \
|
||||
--uefi-secure-boot "enable" \
|
||||
--linux-flavours "amd64" \
|
||||
--linux-packages "linux-image linux-headers" \
|
||||
--iso-volume "SVPRO_GNU" \
|
||||
--iso-application "SVPRO_GNU" \
|
||||
--iso-volume "SVPROGNU-12" \
|
||||
--iso-application "SVPROGNU-12" \
|
||||
--backports "false" \
|
||||
--updates "true" \
|
||||
--security "true" \
|
||||
"${@}"
|
||||
|
@ -1,25 +1,46 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Creation de la clef ./build_svprognu -d /dev/sdX
|
||||
# Creation de l'iso seule ./build_svprognu
|
||||
|
||||
|
||||
set -e
|
||||
|
||||
apt install -y live-build git
|
||||
git clone https://git.weblib.re/svpro/svpro_gnu.git
|
||||
cd svpro_gnu && git checkout $(git tag -l | tail -n 1)
|
||||
ISO="live-svprognu-bookworm_amd64.iso"
|
||||
|
||||
# Build iso
|
||||
lb clean
|
||||
lb config
|
||||
lb build
|
||||
ISO=$(ls *.iso)
|
||||
echo "ISO créée $(pwd)/$ISO"
|
||||
# Copie de l'image iso sur clé
|
||||
while getopts ":d: " opt; do
|
||||
|
||||
while getopts ":r d:" opt; do
|
||||
case $opt in
|
||||
r)
|
||||
# Recuperation iso
|
||||
echo "Téléchargement de l'iso..."
|
||||
sleep 5
|
||||
wget -O ${ISO} https://dl.vermeulen.pro/SVPROGNU/${ISO}
|
||||
wget -O ${ISO}.md5sum https://dl.vermeulen.pro/SVPROGNU/${ISO}.md5sum
|
||||
echo "Vérification de l'image..."
|
||||
|
||||
if ! md5sum -c ${ISO}.md5sum
|
||||
then
|
||||
echo "ISO Corompue. Abandon !!"
|
||||
rm -f ${ISO} ${ISO}.md5
|
||||
exit 1
|
||||
fi
|
||||
;;
|
||||
|
||||
# Copie de l'image iso sur clé
|
||||
|
||||
d)
|
||||
echo "Transfert en cours..."
|
||||
|
||||
#Vérification montage support
|
||||
if mount | grep -q $OPTARG > /dev/null
|
||||
then
|
||||
umount $OPTARG* || /bin/true
|
||||
fi
|
||||
|
||||
#Réinitialisation de la clé : Table DOS
|
||||
printf 'o\nw' | fdisk $OPTARG
|
||||
|
||||
#Transfert
|
||||
dd if=${ISO} of=$OPTARG bs=4M status=progress
|
||||
sync
|
||||
|
||||
@ -27,6 +48,8 @@ case $opt in
|
||||
echo "Création de la persistence..."
|
||||
sleep 5
|
||||
printf 'n\np\n\n\n\nw' | fdisk $OPTARG
|
||||
echo "Formatage..."
|
||||
sleep 10
|
||||
mkfs.ext4 -L persistence ${OPTARG}3
|
||||
|
||||
# Configuratio de la partition
|
||||
@ -34,6 +57,9 @@ case $opt in
|
||||
mount ${OPTARG}3 ./tmp
|
||||
echo "/ union" > ./tmp/persistence.conf
|
||||
umount ./tmp
|
||||
echo "Finalisation..."
|
||||
sleep 10
|
||||
rm -rf ./tmp
|
||||
|
||||
# Fin
|
||||
echo "Terminé ! Vous pouvez booter sur la clé USB, la persistence sera auto-configurée lors du premier Boot !"
|
||||
|
173
config/binary
@ -1,170 +1,119 @@
|
||||
# config/binary - options for live-build(7), binary stage
|
||||
|
||||
# $LB_BINARY_FILESYSTEM: set image filesystem
|
||||
# (Default: fat32)
|
||||
# Set image type
|
||||
LB_IMAGE_TYPE="iso-hybrid"
|
||||
|
||||
# Set image filesystem
|
||||
LB_BINARY_FILESYSTEM="fat32"
|
||||
|
||||
# $LB_APT_INDICES: set apt/aptitude generic indices
|
||||
# (Default: true)
|
||||
# Set apt/aptitude generic indices
|
||||
LB_APT_INDICES="true"
|
||||
|
||||
# $LB_BOOTAPPEND_LIVE: set boot parameters
|
||||
# (Default: empty)
|
||||
# Set boot parameters
|
||||
LB_BOOTAPPEND_LIVE="lang=fr_FR.UTF-8 locales=fr_FR.UTF-8 keyboard-layouts=fr splash timezone=Europe/Paris utc=yes keyboard-model=pc105 hostname=svprognu boot=live persistence components username=svpro_gnu"
|
||||
|
||||
# $LB_BOOTAPPEND_INSTALL: set boot parameters
|
||||
# (Default: empty)
|
||||
# Set boot parameters
|
||||
LB_BOOTAPPEND_INSTALL="locales=fr_FR.UTF-8"
|
||||
|
||||
# $LB_BOOTAPPEND_LIVE_FAILSAFE: set boot parameters
|
||||
# (Default: empty)
|
||||
LB_BOOTAPPEND_LIVE_FAILSAFE="boot=live components memtest noapic noapm nodma nomce nolapic nomodeset nosmp nosplash vga=normal"
|
||||
# Set boot parameters
|
||||
LB_BOOTAPPEND_LIVE_FAILSAFE="boot=live components memtest noapic noapm nodma nomce nolapic nosmp nosplash vga=788"
|
||||
|
||||
# $LB_BOOTLOADERS: set bootloaders
|
||||
# (Default: syslinux,grub-efi)
|
||||
LB_BOOTLOADERS="syslinux,grub-efi"
|
||||
# Set BIOS bootloader
|
||||
LB_BOOTLOADER_BIOS="syslinux"
|
||||
|
||||
# $LB_CHECKSUMS: set checksums
|
||||
# (Default: md5)
|
||||
LB_CHECKSUMS="md5"
|
||||
# Set EFI bootloader
|
||||
LB_BOOTLOADER_EFI="grub-efi"
|
||||
|
||||
# $LB_COMPRESSION: set compression
|
||||
# (Default: none)
|
||||
# Set bootloaders
|
||||
LB_BOOTLOADERS="syslinux grub-efi"
|
||||
|
||||
# Set checksums
|
||||
LB_CHECKSUMS="sha256 md5"
|
||||
|
||||
# Set compression
|
||||
LB_COMPRESSION="none"
|
||||
|
||||
# $LB_ZSYNC: set zsync
|
||||
# (Default: true)
|
||||
# Support dm-verity on rootfs
|
||||
LB_DM_VERITY=""
|
||||
|
||||
# Support FEC on dm-verity rootfs
|
||||
LB_DM_VERITY_FEC_ROOTS=""
|
||||
|
||||
# Set sign script for roothash for dm-verity rootfs
|
||||
LB_DM_VERITY_SIGN=""
|
||||
|
||||
# Set zsync
|
||||
LB_ZSYNC="true"
|
||||
|
||||
# ${LB_BUILD_WITH_CHROOT: control if we build binary images chrooted
|
||||
# (Default: true)
|
||||
# DO NEVER, *NEVER*, *N*E*V*E*R* SET THIS OPTION to false.
|
||||
# Control if we build binary images chrooted
|
||||
# NEVER, *EVER*, *E*V*E*R* SET THIS OPTION to false.
|
||||
LB_BUILD_WITH_CHROOT="true"
|
||||
|
||||
# $LB_DEBIAN_INSTALLER: set debian-installer
|
||||
# (Default: live)
|
||||
# Set debian-installer
|
||||
LB_DEBIAN_INSTALLER="live"
|
||||
|
||||
# $LB_DEBIAN_INSTALLER_DISTRIBUTION: set debian-installer suite
|
||||
# (Default: empty)
|
||||
LB_DEBIAN_INSTALLER_DISTRIBUTION="buster"
|
||||
# Set debian-installer suite
|
||||
LB_DEBIAN_INSTALLER_DISTRIBUTION="bookworm"
|
||||
|
||||
# $LB_DEBIAN_INSTALLER_PRESEEDFILE: set debian-installer preseed filename/url
|
||||
# (Default: )
|
||||
# Set debian-installer preseed filename/url
|
||||
LB_DEBIAN_INSTALLER_PRESEEDFILE=""
|
||||
|
||||
# $LB_DEBIAN_INSTALLER_GUI: toggle use of GUI debian-installer
|
||||
# (Default: true)
|
||||
# Toggle use of GUI debian-installer
|
||||
LB_DEBIAN_INSTALLER_GUI="true"
|
||||
|
||||
# $LB_GRUB_SPLASH: set custom grub splash
|
||||
# (Default: empty)
|
||||
LB_GRUB_SPLASH=""
|
||||
|
||||
# $LB_HDD_LABEL: set hdd label
|
||||
# (Default: DEBIAN_LIVE)
|
||||
# Set hdd label
|
||||
LB_HDD_LABEL="DEBIAN_LIVE"
|
||||
|
||||
# $LB_HDD_SIZE: set hdd filesystem size
|
||||
# (Default: auto)
|
||||
# Set hdd filesystem size
|
||||
LB_HDD_SIZE="auto"
|
||||
|
||||
# $LB_HDD_PARTITION_START: set start of partition for the hdd target for BIOSes that expect a specific boot partition start (e.g. "63s"). If empty, use optimal layout.
|
||||
# (Default: )
|
||||
# Set start of partition for the hdd target for BIOSes that expect a specific boot partition start (e.g. "63s"). If empty, use optimal layout.
|
||||
LB_HDD_PARTITION_START=""
|
||||
|
||||
# $LB_ISO_APPLICATION: set iso author
|
||||
# (Default: SVPRO_GNU)
|
||||
LB_ISO_APPLICATION="SVPRO_GNU"
|
||||
# Set iso author
|
||||
LB_ISO_APPLICATION="SVPROGNU-12"
|
||||
|
||||
# $LB_ISO_PREPARER: set iso preparer
|
||||
# (Default: live-build 1:20191221; https://salsa.debian.org/live-team/live-build)
|
||||
LB_ISO_PREPARER="live-build 1:20191221; https://salsa.debian.org/live-team/live-build"
|
||||
# Set iso preparer
|
||||
LB_ISO_PREPARER="live-build @LB_VERSION@; https://salsa.debian.org/live-team/live-build"
|
||||
|
||||
# $LB_ISO_PUBLISHER: set iso publisher
|
||||
# (Default: Live Systems project; https://wiki.debian.org/DebianLive; debian-live@lists.debian.org)
|
||||
LB_ISO_PUBLISHER="Live Systems project; https://wiki.debian.org/DebianLive; debian-live@lists.debian.org"
|
||||
# Set iso publisher
|
||||
LB_ISO_PUBLISHER="Debian Live project; https://wiki.debian.org/DebianLive; debian-live@lists.debian.org"
|
||||
|
||||
# $LB_ISO_VOLUME: set iso volume (max 32 chars)
|
||||
# (Default: SVPRO_GNU)
|
||||
LB_ISO_VOLUME="SVPRO_GNU"
|
||||
# Set iso volume (max 32 chars)
|
||||
LB_ISO_VOLUME="SVPROGNU-12"
|
||||
|
||||
# $LB_JFFS2_ERASEBLOCK: set jffs2 eraseblock size
|
||||
# (Default: unset)
|
||||
# Set jffs2 eraseblock size
|
||||
LB_JFFS2_ERASEBLOCK=""
|
||||
|
||||
# $LB_MEMTEST: set memtest
|
||||
# (Default: none)
|
||||
# Set memtest
|
||||
LB_MEMTEST="none"
|
||||
|
||||
# $LB_LOADLIN: set loadlin
|
||||
# (Default: false)
|
||||
LB_LOADLIN="false"
|
||||
# Set loadlin
|
||||
LB_LOADLIN="true"
|
||||
|
||||
# $LB_WIN32_LOADER: set win32-loader
|
||||
# (Default: false)
|
||||
# Set win32-loader
|
||||
LB_WIN32_LOADER="false"
|
||||
|
||||
# $LB_NET_ROOT_FILESYSTEM: set netboot filesystem
|
||||
# (Default: nfs)
|
||||
LB_NET_ROOT_FILESYSTEM="nfs"
|
||||
|
||||
# $LB_NET_ROOT_MOUNTOPTIONS: set nfsopts
|
||||
# (Default: empty)
|
||||
LB_NET_ROOT_MOUNTOPTIONS=""
|
||||
|
||||
# $LB_NET_ROOT_PATH: set netboot server directory
|
||||
# (Default: /srv/debian-live)
|
||||
LB_NET_ROOT_PATH="/srv/debian-live"
|
||||
|
||||
# $LB_NET_ROOT_SERVER: set netboot server address
|
||||
# (Default: 192.168.1.1)
|
||||
LB_NET_ROOT_SERVER="192.168.1.1"
|
||||
|
||||
# $LB_NET_COW_FILESYSTEM: set net client cow filesystem
|
||||
# (Default: nfs)
|
||||
LB_NET_COW_FILESYSTEM="nfs"
|
||||
|
||||
# $LB_NET_COW_MOUNTOPTIONS: set cow mount options
|
||||
# (Default: empty)
|
||||
LB_NET_COW_MOUNTOPTIONS=""
|
||||
|
||||
# $LB_NET_COW_PATH: set cow directory
|
||||
# (Default: )
|
||||
LB_NET_COW_PATH=""
|
||||
|
||||
# $LB_NET_COW_SERVER: set cow server
|
||||
# (Default: )
|
||||
LB_NET_COW_SERVER=""
|
||||
|
||||
# $LB_NET_TARBALL: set net tarball
|
||||
# (Default: true)
|
||||
# Set net tarball
|
||||
LB_NET_TARBALL="true"
|
||||
|
||||
# $LB_ONIE: set onie
|
||||
# (Default: false)
|
||||
# Set onie
|
||||
LB_ONIE="false"
|
||||
|
||||
# $LB_ONIE_KERNEL_CMDLINE: set onie additional kernel cmdline options
|
||||
# (Default: )
|
||||
# Set onie additional kernel cmdline options
|
||||
LB_ONIE_KERNEL_CMDLINE=""
|
||||
|
||||
# $LB_FIRMWARE_BINARY: include firmware packages in debian-installer
|
||||
# (Default: true)
|
||||
# Set inclusion of firmware packages in debian-installer
|
||||
LB_FIRMWARE_BINARY="true"
|
||||
|
||||
# $LB_FIRMWARE_CHROOT: include firmware packages in debian-installer
|
||||
# (Default: true)
|
||||
# Set inclusion of firmware packages in the live image
|
||||
LB_FIRMWARE_CHROOT="true"
|
||||
|
||||
# $LB_SWAP_FILE_PATH: set swap file path
|
||||
# (Default: )
|
||||
# Set swap file path
|
||||
LB_SWAP_FILE_PATH=""
|
||||
|
||||
# $LB_SWAP_FILE_SIZE: set swap file size
|
||||
# (Default: 512)
|
||||
# Set swap file size
|
||||
LB_SWAP_FILE_SIZE="512"
|
||||
|
||||
# $LB_UEFI_SECURE_BOOT: enable/disable UEFI secure boot
|
||||
# (Default: enable)
|
||||
# Enable/disable UEFI secure boot support
|
||||
LB_UEFI_SECURE_BOOT="enable"
|
||||
|
Before Width: | Height: | Size: 56 KiB After Width: | Height: | Size: 882 KiB |
Before Width: | Height: | Size: 56 KiB After Width: | Height: | Size: 882 KiB |
@ -24,8 +24,8 @@ fi
|
||||
|
||||
terminal_output gfxterm
|
||||
|
||||
insmod play
|
||||
play 960 440 1 0 4 440 1
|
||||
#insmod play
|
||||
#play 960 440 1 0 4 440 1
|
||||
|
||||
# Live boot
|
||||
LINUX_LIVE
|
||||
|
Before Width: | Height: | Size: 56 KiB After Width: | Height: | Size: 882 KiB |
Before Width: | Height: | Size: 56 KiB After Width: | Height: | Size: 882 KiB |
Before Width: | Height: | Size: 56 KiB After Width: | Height: | Size: 882 KiB |
Before Width: | Height: | Size: 56 KiB After Width: | Height: | Size: 882 KiB |
@ -1,73 +1,76 @@
|
||||
# config/bootstrap - options for live-build(7), bootstrap stage
|
||||
|
||||
# $LB_DISTRIBUTION: select distribution to use
|
||||
# (Default: buster)
|
||||
LB_DISTRIBUTION="buster"
|
||||
# Select architecture to use
|
||||
LB_ARCHITECTURE="amd64"
|
||||
|
||||
# $LB_PARENT_DISTRIBUTION: select parent distribution to use
|
||||
# (Default: buster)
|
||||
LB_PARENT_DISTRIBUTION="buster"
|
||||
# Select distribution to use
|
||||
LB_DISTRIBUTION="bookworm"
|
||||
|
||||
# $LB_PARENT_DEBIAN_INSTALLER_DISTRIBUTION: select parent distribution for debian-installer to use
|
||||
# (Default: buster)
|
||||
LB_PARENT_DEBIAN_INSTALLER_DISTRIBUTION="buster"
|
||||
# Select parent distribution to use
|
||||
LB_PARENT_DISTRIBUTION=""
|
||||
|
||||
# $LB_PARENT_MIRROR_BOOTSTRAP: set parent mirror to bootstrap from
|
||||
# (Default: http://deb.debian.org/debian/)
|
||||
# Select distribution to use in the chroot
|
||||
LB_DISTRIBUTION_CHROOT="bookworm"
|
||||
|
||||
# Select parent distribution to use in the chroot
|
||||
LB_PARENT_DISTRIBUTION_CHROOT="bookworm"
|
||||
|
||||
# Select distribution to use in the final image
|
||||
LB_DISTRIBUTION_BINARY="bookworm"
|
||||
|
||||
# Select parent distribution to use in the final image
|
||||
LB_PARENT_DISTRIBUTION_BINARY="bookworm"
|
||||
|
||||
# Select parent distribution for debian-installer to use
|
||||
LB_PARENT_DEBIAN_INSTALLER_DISTRIBUTION="bookworm"
|
||||
|
||||
# Select archive areas to use
|
||||
LB_ARCHIVE_AREAS="main contrib non-free non-free-firmware"
|
||||
|
||||
# Select parent archive areas to use
|
||||
LB_PARENT_ARCHIVE_AREAS="main contrib non-free non-free-firmware"
|
||||
|
||||
# Set parent mirror to bootstrap from
|
||||
LB_PARENT_MIRROR_BOOTSTRAP="http://deb.debian.org/debian/"
|
||||
|
||||
# $LB_PARENT_MIRROR_CHROOT: set parent mirror to fetch packages from
|
||||
# (Default: http://deb.debian.org/debian/)
|
||||
# Set parent mirror to fetch packages from
|
||||
LB_PARENT_MIRROR_CHROOT="http://deb.debian.org/debian/"
|
||||
|
||||
# $LB_PARENT_MIRROR_CHROOT_SECURITY: set security parent mirror to fetch packages from
|
||||
# (Default: http://security.debian.org/)
|
||||
# Set security parent mirror to fetch packages from
|
||||
LB_PARENT_MIRROR_CHROOT_SECURITY="http://security.debian.org/"
|
||||
|
||||
# $LB_PARENT_MIRROR_BINARY: set parent mirror which ends up in the image
|
||||
# (Default: http://deb.debian.org/debian/)
|
||||
# Set parent mirror which ends up in the image
|
||||
LB_PARENT_MIRROR_BINARY="http://deb.debian.org/debian/"
|
||||
|
||||
# $LB_PARENT_MIRROR_BINARY_SECURITY: set security parent mirror which ends up in the image
|
||||
# (Default: http://security.debian.org/)
|
||||
# Set security parent mirror which ends up in the image
|
||||
LB_PARENT_MIRROR_BINARY_SECURITY="http://security.debian.org/"
|
||||
|
||||
# $LB_PARENT_MIRROR_DEBIAN_INSTALLER: set debian-installer parent mirror
|
||||
# (Default: http://deb.debian.org/debian/)
|
||||
# Set debian-installer parent mirror
|
||||
LB_PARENT_MIRROR_DEBIAN_INSTALLER="http://deb.debian.org/debian/"
|
||||
|
||||
# $LB_MIRROR_BOOTSTRAP: set mirror to bootstrap from
|
||||
# (Default: http://deb.debian.org/debian/)
|
||||
# Set mirror to bootstrap from
|
||||
LB_MIRROR_BOOTSTRAP="http://deb.debian.org/debian/"
|
||||
|
||||
# $LB_MIRROR_CHROOT: set mirror to fetch packages from
|
||||
# (Default: http://deb.debian.org/debian/)
|
||||
# Set mirror to fetch packages from
|
||||
LB_MIRROR_CHROOT="http://deb.debian.org/debian/"
|
||||
|
||||
# $LB_MIRROR_CHROOT_SECURITY: set security mirror to fetch packages from
|
||||
# (Default: http://security.debian.org/)
|
||||
# Set security mirror to fetch packages from
|
||||
LB_MIRROR_CHROOT_SECURITY="http://security.debian.org/"
|
||||
|
||||
# $LB_MIRROR_BINARY: set mirror which ends up in the image
|
||||
# (Default: http://deb.debian.org/debian/)
|
||||
# Set mirror which ends up in the image
|
||||
LB_MIRROR_BINARY="http://deb.debian.org/debian/"
|
||||
|
||||
# $LB_MIRROR_BINARY_SECURITY: set security mirror which ends up in the image
|
||||
# (Default: http://security.debian.org/)
|
||||
# Set security mirror which ends up in the image
|
||||
LB_MIRROR_BINARY_SECURITY="http://security.debian.org/"
|
||||
|
||||
# $LB_MIRROR_DEBIAN_INSTALLER: set debian-installer mirror
|
||||
# (Default: http://deb.debian.org/debian/)
|
||||
# Set debian-installer mirror
|
||||
LB_MIRROR_DEBIAN_INSTALLER="http://deb.debian.org/debian/"
|
||||
|
||||
# $LB_BOOTSTRAP_QEMU_ARCHITECTURES: architectures to use foreign bootstrap
|
||||
# (Default: )
|
||||
LB_BOOTSTRAP_QEMU_ARCHITECTURES=""
|
||||
# Set architectures to use foreign bootstrap
|
||||
LB_BOOTSTRAP_QEMU_ARCHITECTURE=""
|
||||
|
||||
# $LB_BOOTSTRAP_QEMU_EXCLUDE: packages to exclude during foreign bootstrap
|
||||
# (Default: )
|
||||
# Set packages to exclude during foreign bootstrap
|
||||
LB_BOOTSTRAP_QEMU_EXCLUDE=""
|
||||
|
||||
# $LB_BOOTSTRAP_QEMU_STATIC: static qemu binary for foreign bootstrap
|
||||
# (Default: )
|
||||
# Set static qemu binary for foreign bootstrap
|
||||
LB_BOOTSTRAP_QEMU_STATIC=""
|
||||
|
10
config/build
@ -1,10 +0,0 @@
|
||||
[Image]
|
||||
Architecture: amd64
|
||||
Archive-Areas: main contrib non-free
|
||||
Distribution: buster
|
||||
Mirror-Bootstrap: http://deb.debian.org/debian/
|
||||
|
||||
[FIXME]
|
||||
Configuration-Version: 1:20191221
|
||||
Name: live_svpro_gnu
|
||||
Type: iso-hybrid
|
@ -1,37 +1,34 @@
|
||||
# config/chroot - options for live-build(7), chroot stage
|
||||
|
||||
# $LB_CHROOT_FILESYSTEM: set chroot filesystem
|
||||
# (Default: squashfs)
|
||||
# Set chroot filesystem
|
||||
LB_CHROOT_FILESYSTEM="squashfs"
|
||||
|
||||
# $LB_UNION_FILESYSTEM: set union filesystem
|
||||
# (Default: overlay)
|
||||
# Set chroot squashfs compression level
|
||||
LB_CHROOT_SQUASHFS_COMPRESSION_LEVEL=""
|
||||
|
||||
# Set chroot squashfs compression type
|
||||
LB_CHROOT_SQUASHFS_COMPRESSION_TYPE=""
|
||||
|
||||
# Set union filesystem
|
||||
LB_UNION_FILESYSTEM="overlay"
|
||||
|
||||
# $LB_INTERACTIVE: set interactive build
|
||||
# (Default: false)
|
||||
# Set interactive build
|
||||
LB_INTERACTIVE="false"
|
||||
|
||||
# $LB_KEYRING_PACKAGES: set keyring packages
|
||||
# (Default: empty)
|
||||
# Set keyring packages
|
||||
LB_KEYRING_PACKAGES="debian-archive-keyring"
|
||||
|
||||
# $LB_LINUX_FLAVOURS: set kernel flavour to use
|
||||
# (Default: autodetected)
|
||||
LB_LINUX_FLAVOURS="amd64"
|
||||
# Set kernel flavour to use (with arch)
|
||||
LB_LINUX_FLAVOURS_WITH_ARCH="amd64"
|
||||
|
||||
# $LB_LINUX_PACKAGES: set kernel packages to use
|
||||
# (Default: autodetected)
|
||||
# Set kernel packages to use
|
||||
LB_LINUX_PACKAGES="linux-image linux-headers"
|
||||
|
||||
# $LB_SECURITY: enable security updates
|
||||
# (Default: true)
|
||||
# Enable security updates
|
||||
LB_SECURITY="true"
|
||||
|
||||
# $LB_UPDATES: enable updates updates
|
||||
# (Default: true)
|
||||
# Enable updates updates
|
||||
LB_UPDATES="true"
|
||||
|
||||
# $LB_BACKPORTS: enable backports updates
|
||||
# (Default: false)
|
||||
# Enable backports updates
|
||||
LB_BACKPORTS="false"
|
||||
|
125
config/common
@ -1,119 +1,102 @@
|
||||
# config/common - common options for live-build(7)
|
||||
|
||||
# $LB_APT: set package manager
|
||||
# (Default: apt)
|
||||
# Version of live-build used to build config (config format version)
|
||||
LB_CONFIGURATION_VERSION="20230502"
|
||||
|
||||
# Set package manager
|
||||
LB_APT="apt"
|
||||
|
||||
# $LB_APT_FTP_PROXY: set apt/aptitude ftp proxy
|
||||
# (Default: autodetected or empty)
|
||||
LB_APT_FTP_PROXY=""
|
||||
|
||||
# $LB_APT_HTTP_PROXY: set apt/aptitude http proxy
|
||||
# (Default: autodetected or empty)
|
||||
# Set proxy for HTTP connections
|
||||
LB_APT_HTTP_PROXY=""
|
||||
|
||||
# $LB_APT_PIPELINE: set apt/aptitude pipeline depth
|
||||
# (Default: )
|
||||
# Set apt/aptitude pipeline depth
|
||||
LB_APT_PIPELINE=""
|
||||
|
||||
# $LB_APT_RECOMMENDS: set apt/aptitude recommends
|
||||
# (Default: true)
|
||||
# Set apt/aptitude recommends
|
||||
LB_APT_RECOMMENDS="true"
|
||||
|
||||
# $LB_APT_SECURE: set apt/aptitude security
|
||||
# (Default: true)
|
||||
# Set apt/aptitude security
|
||||
LB_APT_SECURE="true"
|
||||
|
||||
# $LB_APT_SOURCE_ARCHIVES: set apt/aptitude source entries in sources.list
|
||||
# (Default: true)
|
||||
# Set apt/aptitude source entries in sources.list
|
||||
LB_APT_SOURCE_ARCHIVES="true"
|
||||
|
||||
# $LB_CACHE: control cache
|
||||
# (Default: true)
|
||||
# Control cache
|
||||
LB_CACHE="true"
|
||||
|
||||
# $LB_CACHE_INDICES: control if downloaded package indices should be cached
|
||||
# (Default: false)
|
||||
# Control if downloaded package indices should be cached
|
||||
LB_CACHE_INDICES="false"
|
||||
|
||||
# $LB_CACHE_PACKAGES: control if downloaded packages files should be cached
|
||||
# (Default: true)
|
||||
# Control if downloaded packages files should be cached
|
||||
LB_CACHE_PACKAGES="true"
|
||||
|
||||
# $LB_CACHE_STAGES: control if completed stages should be cached
|
||||
# (Default: bootstrap)
|
||||
# Control if completed stages should be cached
|
||||
LB_CACHE_STAGES="bootstrap"
|
||||
|
||||
# $LB_DEBCONF_FRONTEND: set debconf(1) frontend to use
|
||||
# (Default: noninteractive)
|
||||
# Set debconf(1) frontend to use
|
||||
LB_DEBCONF_FRONTEND="noninteractive"
|
||||
|
||||
# $LB_DEBCONF_PRIORITY: set debconf(1) priority to use
|
||||
# (Default: critical)
|
||||
# Set debconf(1) priority to use
|
||||
LB_DEBCONF_PRIORITY="critical"
|
||||
|
||||
# $LB_INITRAMFS: set initramfs hook
|
||||
# (Default: live-boot)
|
||||
# Set initramfs hook
|
||||
LB_INITRAMFS="live-boot"
|
||||
|
||||
# $LB_INITRAMFS_COMPRESSION: set initramfs compression
|
||||
# (Default: gzip)
|
||||
# Set initramfs compression
|
||||
LB_INITRAMFS_COMPRESSION="gzip"
|
||||
|
||||
# $LB_INITSYSTEM: set init system
|
||||
# (Default: systemd)
|
||||
# Set init system
|
||||
LB_INITSYSTEM="systemd"
|
||||
|
||||
# $LB_FDISK: set fdisk program
|
||||
# (Default: autodetected)
|
||||
LB_FDISK="fdisk"
|
||||
|
||||
# $LB_LOSETUP: set losetup program
|
||||
# (Default: autodetected)
|
||||
LB_LOSETUP="losetup"
|
||||
|
||||
# $LB_MODE: set distribution mode
|
||||
# (Default: debian)
|
||||
# Set distribution mode
|
||||
LB_MODE="debian"
|
||||
|
||||
# $LB_SYSTEM: set system type
|
||||
# (Default: live)
|
||||
# Set system type
|
||||
LB_SYSTEM="live"
|
||||
|
||||
# $LB_TASKSEL: set tasksel program
|
||||
# (Default: apt)
|
||||
LB_TASKSEL="apt"
|
||||
# Set base name of the image
|
||||
LB_IMAGE_NAME="live-image"
|
||||
|
||||
# Set options to use with apt
|
||||
APT_OPTIONS="--yes -o Acquire::Retries=5"
|
||||
|
||||
# Set options to use with aptitude
|
||||
APTITUDE_OPTIONS="--assume-yes -o Acquire::Retries=5"
|
||||
|
||||
# Set options to use with debootstrap
|
||||
DEBOOTSTRAP_OPTIONS=""
|
||||
|
||||
# Set script to use with debootstrap
|
||||
DEBOOTSTRAP_SCRIPT=""
|
||||
|
||||
# Set options to use with gzip
|
||||
GZIP_OPTIONS="-6 --rsyncable"
|
||||
|
||||
# Enable UTC timestamps
|
||||
LB_UTC_TIME="false"
|
||||
|
||||
# live-build options
|
||||
|
||||
# $_BREAKPOINTS: enable breakpoints
|
||||
# (Default: false)
|
||||
# Enable breakpoints
|
||||
# If set here, overrides the command line option
|
||||
#_BREAKPOINTS="false"
|
||||
|
||||
# $_DEBUG: enable debug
|
||||
# (Default: false)
|
||||
# Enable debug
|
||||
# If set here, overrides the command line option
|
||||
#_DEBUG="false"
|
||||
|
||||
# $_COLOR: enable color
|
||||
# (Default: false)
|
||||
#_COLOR="false"
|
||||
# Enable color
|
||||
# If set here, overrides the command line option
|
||||
#_COLOR="auto"
|
||||
|
||||
# $_FORCE: enable force
|
||||
# (Default: false)
|
||||
# Enable force
|
||||
# If set here, overrides the command line option
|
||||
#_FORCE="false"
|
||||
|
||||
# $_QUIET: enable quiet
|
||||
# (Default: false)
|
||||
_QUIET="false"
|
||||
# Enable quiet
|
||||
# If set here, overrides the command line option
|
||||
#_QUIET="false"
|
||||
|
||||
# $_VERBOSE: enable verbose
|
||||
# (Default: false)
|
||||
# Enable verbose
|
||||
# If set here, overrides the command line option
|
||||
#_VERBOSE="false"
|
||||
|
||||
# Internal stuff (FIXME)
|
||||
APT_OPTIONS="--yes"
|
||||
APTITUDE_OPTIONS="--assume-yes"
|
||||
DEBOOTSTRAP_OPTIONS=""
|
||||
DEBOOTSTRAP_SCRIPT=""
|
||||
GZIP_OPTIONS="-6 --rsyncable"
|
||||
ISOHYBRID_OPTIONS=""
|
||||
|
@ -1,7 +1,9 @@
|
||||
#!/bin/bash
|
||||
|
||||
wget -O - http://linux-clients.seafile.com/seafile.key | apt-key add -
|
||||
echo 'deb [arch=amd64] http://linux-clients.seafile.com/seafile-deb/buster/ stable main' > /etc/apt/sources.list.d/seafile.list
|
||||
set -e
|
||||
|
||||
wget https://linux-clients.seafile.com/seafile.asc -O /usr/share/keyrings/seafile-keyring.asc
|
||||
echo 'deb [arch=amd64 signed-by=/usr/share/keyrings/seafile-keyring.asc] https://linux-clients.seafile.com/seafile-deb/bookworm/ stable main' > /etc/apt/sources.list.d/seafile.list
|
||||
|
||||
apt update
|
||||
apt install -y seafile-gui
|
||||
|
15
config/hooks/live/0300-vivaldi-browser.hook.chroot
Executable file
@ -0,0 +1,15 @@
|
||||
#!/bin/bash
|
||||
|
||||
set -e
|
||||
|
||||
curl -fsSL https://repo.vivaldi.com/archive/linux_signing_key.pub | gpg --dearmor | \
|
||||
sudo tee /usr/share/keyrings/vivaldi.gpg > /dev/null
|
||||
|
||||
echo deb [arch=amd64 signed-by=/usr/share/keyrings/vivaldi.gpg] \
|
||||
https://repo.vivaldi.com/archive/deb/ stable main | \
|
||||
sudo tee /etc/apt/sources.list.d/vivaldi.list
|
||||
|
||||
apt update
|
||||
apt install vivaldi-stable
|
||||
|
||||
exit 0
|
9
config/hooks/live/0400-lightdm-config.hook.chroot
Executable file
@ -0,0 +1,9 @@
|
||||
#!/bin/bash
|
||||
|
||||
set -e
|
||||
|
||||
mkdir -p /etc/lightdm/lightdm.conf.d
|
||||
echo -e "[Seat:*]\ngreeter-hide-users=false" > /etc/lightdm/lightdm.conf.d/010-users-list.conf
|
||||
echo -e "[Seat:*]\ngreeter-setup-script=/usr/bin/numlockx on" > /etc/lightdm/lightdm.conf.d/020-numlock-on.conf
|
||||
|
||||
exit 0
|
9
config/hooks/live/0500-xnviewmp.hook.chroot
Executable file
@ -0,0 +1,9 @@
|
||||
#!/bin/bash
|
||||
|
||||
#set -e
|
||||
|
||||
wget https://download.xnview.com/XnViewMP-linux-x64.deb
|
||||
dpkg -i XnViewMP-linux-x64.deb
|
||||
apt -fy install
|
||||
|
||||
exit 0
|
14
config/hooks/live/0600-balena-etcher.hook.chroot
Executable file
@ -0,0 +1,14 @@
|
||||
#!/bin/bash
|
||||
|
||||
GIT="https://github.com/balena-io/etcher"
|
||||
VERSION=$(git -c 'versionsort.suffix=-' \
|
||||
ls-remote --exit-code --refs --sort='version:refname' --tags ${GIT} '*.*.*' \
|
||||
| tail --lines=1 \
|
||||
| cut --delimiter='/' --fields=3 \
|
||||
| sed -e 's/v//g') #Get latest version number without "v"
|
||||
|
||||
wget ${GIT}/releases/download/v${VERSION}/balena-etcher_${VERSION}_amd64.deb
|
||||
dpkg -i balena-etcher_${VERSION}_amd64.deb
|
||||
apt install -fy
|
||||
|
||||
exit 0
|
7
config/hooks/live/0700-mattermost-desktop.hook.chroot
Executable file
@ -0,0 +1,7 @@
|
||||
#!/bin/bash
|
||||
|
||||
wget https://releases.mattermost.com/desktop/5.5.1/mattermost-desktop_5.5.1-1_amd64.deb
|
||||
dpkg -i mattermost-desktop_5.5.1-1_amd64.deb
|
||||
apt install -fy
|
||||
|
||||
exit 0
|
1
config/hooks/normal/0500-reproducible-glibc.hook.chroot
Symbolic link
@ -0,0 +1 @@
|
||||
/usr/share/live/build/hooks/normal/0500-reproducible-glibc.hook.chroot
|
@ -74,7 +74,7 @@ SKEL_IGNORE_REGEX="dpkg-(old|new|dist|save)"
|
||||
# new users to other groups.
|
||||
# This is the list of groups that new non-system users will be added to
|
||||
# Default:
|
||||
EXTRA_GROUPS="sudo dialout cdrom floppy audio video plugdev users"
|
||||
EXTRA_GROUPS="sudo dialout cdrom floppy audio video plugdev users davfs2"
|
||||
|
||||
# If ADD_EXTRA_GROUPS is set to something non-zero, the EXTRA_GROUPS
|
||||
# option above will be default behavior for adding new, non-system users
|
||||
|
@ -1,9 +1,9 @@
|
||||
______ ______ ____ ___ ____ _ _ _ _
|
||||
/ ___\ \ / / _ \| _ \ / _ \ / ___| \ | | | | |
|
||||
\___ \\ \ / /| |_) | |_) | | | | | | _| \| | | | |
|
||||
___) |\ V / | __/| _ <| |_| | | |_| | |\ | |_| |
|
||||
|____/ \_/ |_| |_| \_\\___/___\____|_| \_|\___/
|
||||
|_____|
|
||||
\___ \\ \ / /| |_) | |_) | | | || | _| \| | | | |
|
||||
___) |\ V / | __/| _ <| |_| || |_| | |\ | |_| |
|
||||
|____/ \_/ |_| |_| \_\\___/ \____|_| \_|\____/
|
||||
|
||||
|
||||
\r \v \n
|
||||
Bienvenu !
|
||||
Bookworm !
|
||||
|
@ -1,9 +1,9 @@
|
||||
______ ______ ____ ___ ____ _ _ _ _
|
||||
/ ___\ \ / / _ \| _ \ / _ \ / ___| \ | | | | |
|
||||
\___ \\ \ / /| |_) | |_) | | | | | | _| \| | | | |
|
||||
___) |\ V / | __/| _ <| |_| | | |_| | |\ | |_| |
|
||||
|____/ \_/ |_| |_| \_\\___/___\____|_| \_|\___/
|
||||
|_____|
|
||||
\___ \\ \ / /| |_) | |_) | | | || | _| \| | | | |
|
||||
___) |\ V / | __/| _ <| |_| || |_| | |\ | |_| |
|
||||
|____/ \_/ |_| |_| \_\\___/ \____|_| \_|\____/
|
||||
|
||||
Bienvenu !
|
||||
|
||||
\r \v \n
|
||||
Bookworm !
|
||||
|
@ -1,7 +1,7 @@
|
||||
PRETTY_NAME="Debian SVPRO_GNU"
|
||||
NAME="SVPRO_GNU"
|
||||
ID=svprognu
|
||||
VERSION="1.0"
|
||||
VERSION_ID=1.0
|
||||
HOME_URL="https://git.weblib.re/svpro/svpro_gnu/wiki"
|
||||
SUPPORT_URL="https://git.weblib.re/svpro/svpro_gnu/"
|
||||
PRETTY_NAME="Debian SVPROGNU Bookworm"
|
||||
NAME="SVPROGNU Bookworm"
|
||||
ID=svprognu_bookworm
|
||||
VERSION="12"
|
||||
VERSION_ID=12
|
||||
HOME_URL="https://svprognu.vermeulen.pro"
|
||||
SUPPORT_URL="https://git.vermeulen.pro/SVPRO/svprognu"
|
||||
|
@ -1,21 +0,0 @@
|
||||
www.google-analytics.com:HSTS 0 18443 1604407140073,1,1,2
|
||||
shavar.services.mozilla.com^firstPartyDomain=safebrowsing.86868755-6b82-4842-b301-72671a0db32e.mozilla:HSTS 0 18443 1625057113416,1,1,2
|
||||
www.https-rulesets.org:HSTS 0 18443 1656592722327,1,1,2
|
||||
raw.githubusercontent.com:HSTS 0 18443 1625056938947,1,0,2
|
||||
api.qwant.com:HSTS 0 18443 1625057117952,1,1,2
|
||||
services.addons.mozilla.org:HSTS 0 18443 1625056993200,1,0,2
|
||||
addons.mozilla.org:HPKP 0 18443 1598704876056,1,1,WoiWRyIOVNa9ihaBciRSC7XHjliYS9VwUGOIud4PB18=r/mIkG3eEpVdm+u/ko/cwxzOMo1bk4TyHIlByibiA5E=
|
||||
services.addons.mozilla.org:HPKP 0 18443 1598704993203,1,1,WoiWRyIOVNa9ihaBciRSC7XHjliYS9VwUGOIud4PB18=r/mIkG3eEpVdm+u/ko/cwxzOMo1bk4TyHIlByibiA5E=
|
||||
versioncheck-bg.addons.mozilla.org:HSTS 0 18443 1593521294045,1,0,2
|
||||
s2.qwant.com:HSTS 0 18443 1625056695916,1,1,2
|
||||
blocklists.settings.services.mozilla.com:HSTS 0 18443 1625057139949,1,0,2
|
||||
addons.cdn.mozilla.net:HSTS 0 18443 1625056876210,1,1,2
|
||||
versioncheck-bg.addons.mozilla.org:HPKP 0 18443 1598704994047,1,1,WoiWRyIOVNa9ihaBciRSC7XHjliYS9VwUGOIud4PB18=r/mIkG3eEpVdm+u/ko/cwxzOMo1bk4TyHIlByibiA5E=
|
||||
location.services.mozilla.com:HSTS 0 18443 1625057112130,1,1,2
|
||||
aus5.mozilla.org:HSTS 0 18443 1625057032136,1,0,2
|
||||
www.google.com:HSTS 0 18443 1625063809940,1,0,2
|
||||
www.qwant.com:HSTS 0 18443 1625057143715,1,1,2
|
||||
ogs.google.com:HSTS 0 18443 1625063809050,1,0,2
|
||||
addons.mozilla.org:HSTS 0 18443 1625056876054,1,0,2
|
||||
search.services.mozilla.com:HSTS 0 18443 1625057112860,1,0,2
|
||||
firefox.settings.services.mozilla.com:HSTS 0 18443 1625056876167,1,0,2
|
@ -1 +1 @@
|
||||
{"version":1,"listeners":{"remote-settings/monitor_changes":{"version":"\"0\"","sourceInfo":{"moduleURI":"resource://services-settings/remote-settings.js","symbolName":"remoteSettingsBroadcastHandler"}}}}
|
||||
{"version":1,"listeners":{"remote-settings/monitor_changes":{"version":"\"1699520486171\"","sourceInfo":{"moduleURI":"resource://services-settings/remote-settings.sys.mjs","symbolName":"remoteSettingsBroadcastHandler"}}}}
|
@ -1,5 +1,5 @@
|
||||
[Compatibility]
|
||||
LastVersion=68.9.0_20200527211442/20200527211442
|
||||
LastVersion=115.4.0_20231016232700/20231016232700
|
||||
LastOSABI=Linux_x86_64-gcc3
|
||||
LastPlatformDir=/usr/lib/firefox-esr
|
||||
LastAppDir=/usr/lib/firefox-esr/browser
|
||||
|
@ -1 +1 @@
|
||||
{"sessionId":"9e3049bc-bdc1-4e3a-95cd-fb5ac413ca10","subsessionId":"5185b2e7-c9dd-4dc4-80b7-685b80942aff","profileSubsessionCounter":3,"newProfilePingSent":true}
|
||||
{"sessionId":"1c86d211-b9b1-4bb9-81ec-57919495b98c","subsessionId":"b384b822-a653-4e7c-bc5a-aa3ceb43c824","profileSubsessionCounter":8,"newProfilePingSent":true}
|
@ -1 +1 @@
|
||||
{"formautofill@mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"fxmonitor@mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"screenshots@mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"webcompat@mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"default-theme@mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"google@search.mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"bing@search.mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"amazon@search.mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"ddg@search.mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"ebay@search.mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"qwant@search.mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"wikipedia@search.mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"qwantcomforfirefox@jetpack":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"https-everywhere@eff.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"uBlock0@raymondhill.net":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]}}
|
||||
{"formautofill@mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"fxmonitor@mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"screenshots@mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"webcompat@mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"default-theme@mozilla.org":{"permissions":["internal:privateBrowsingAllowed","internal:svgContextPropertiesAllowed"],"origins":[]},"google@search.mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"bing@search.mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"amazon@search.mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"ddg@search.mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"ebay@search.mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"qwant@search.mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"wikipedia@search.mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"qwantcomforfirefox@jetpack":{"permissions":["internal:privateBrowsingAllowed","webRequest","webRequestBlocking","webNavigation","<all_urls>"],"origins":["https://*.qwant.com/*","<all_urls>"]},"https-everywhere@eff.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"uBlock0@raymondhill.net":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"pictureinpicture@mozilla.org":{"permissions":["internal:svgContextPropertiesAllowed"],"origins":[]},"addons-search-detection@mozilla.com":{"permissions":["internal:svgContextPropertiesAllowed"],"origins":[]}}
|
@ -1 +1 @@
|
||||
{"version":2,"commands":{},"url_overrides":{},"prefs":{"homepage_override":{"initialValue":{"browser.startup.homepage":"about:home"},"precedenceList":[{"id":"qwantcomforfirefox@jetpack","installDate":1593527823000,"value":"https://www.qwant.com/?client=ext-firefox-hp","enabled":true}]},"websites.hyperlinkAuditingEnabled":{"initialValue":{"browser.send_pings":false},"precedenceList":[{"id":"uBlock0@raymondhill.net","installDate":1593520750000,"value":false,"enabled":true}]},"network.networkPredictionEnabled":{"initialValue":{"network.predictor.enabled":true,"network.prefetch-next":true,"network.http.speculative-parallel-limit":6,"network.dns.disablePrefetch":false},"precedenceList":[{"id":"uBlock0@raymondhill.net","installDate":1593520750000,"value":false,"enabled":true}]}},"default_search":{"defaultSearch":{"initialValue":"Google","precedenceList":[{"id":"qwantcomforfirefox@jetpack","installDate":1593527823000,"value":"Qwant","enabled":true}]}},"homepageNotification":{"qwantcomforfirefox@jetpack":{"initialValue":false,"precedenceList":[{"id":"qwantcomforfirefox@jetpack","installDate":1593527823000,"value":true,"enabled":true}]}},"tabHideNotification":{},"newTabNotification":{}}
|
||||
{"version":3,"commands":{},"url_overrides":{},"prefs":{"websites.hyperlinkAuditingEnabled":{"initialValue":{},"precedenceList":[{"id":"uBlock0@raymondhill.net","installDate":1593520750000,"value":false,"enabled":true}]},"network.networkPredictionEnabled":{"initialValue":{},"precedenceList":[{"id":"uBlock0@raymondhill.net","installDate":1593520750000,"value":false,"enabled":true}]}},"default_search":{"defaultSearch":{"initialValue":"Google","precedenceList":[{"id":"qwantcomforfirefox@jetpack","installDate":1593527823000,"value":"Qwant","enabled":true}]}},"homepageNotification":{"qwantcomforfirefox@jetpack":{"initialValue":false,"precedenceList":[{"id":"qwantcomforfirefox@jetpack","installDate":1593527823000,"value":true,"enabled":true}]}},"tabHideNotification":{},"newTabNotification":{}}
|
@ -1 +1 @@
|
||||
{"defaultHandlersVersion":{"fr":3},"mimeTypes":{"application/pdf":{"action":3,"extensions":["pdf"]}},"schemes":{"ircs":{"action":2,"ask":true,"handlers":[null,{"name":"Mibbit","uriTemplate":"https://www.mibbit.com/?url=%s"}]},"mailto":{"action":4,"handlers":[null,{"name":"Yahoo! Mail","uriTemplate":"https://compose.mail.yahoo.com/?To=%s"},{"name":"Gmail","uriTemplate":"https://mail.google.com/mail/?extsrc=mailto&url=%s"}]},"irc":{"action":2,"ask":true,"handlers":[null,{"name":"Mibbit","uriTemplate":"https://www.mibbit.com/?url=%s"}]}}}
|
||||
{"defaultHandlersVersion":{"fr":3},"mimeTypes":{"application/pdf":{"action":3,"extensions":["pdf"]},"image/webp":{"action":3,"extensions":["webp"]},"image/avif":{"action":3,"extensions":["avif"]}},"schemes":{"ircs":{"action":2,"ask":true,"handlers":[null,{"name":"Mibbit","uriTemplate":"https://www.mibbit.com/?url=%s"}]},"mailto":{"action":4,"handlers":[null,{"name":"Yahoo! Mail","uriTemplate":"https://compose.mail.yahoo.com/?To=%s"},{"name":"Gmail","uriTemplate":"https://mail.google.com/mail/?extsrc=mailto&url=%s"}]},"irc":{"action":2,"ask":true,"handlers":[null,{"name":"Mibbit","uriTemplate":"https://www.mibbit.com/?url=%s"}]}},"isDownloadsImprovementsAlreadyMigrated":true,"isSVGXMLAlreadyMigrated":true}
|
@ -10,81 +10,123 @@
|
||||
// - set it within a user.js file in your profile.
|
||||
|
||||
user_pref("app.normandy.first_run", false);
|
||||
user_pref("app.update.lastUpdateTime.addon-background-update-timer", 1593520992);
|
||||
user_pref("app.normandy.migrationsApplied", 12);
|
||||
user_pref("app.normandy.user_id", "e36e3d26-bbce-455b-881e-04d24700810a");
|
||||
user_pref("app.shield.optoutstudies.enabled", false);
|
||||
user_pref("app.update.lastUpdateTime.addon-background-update-timer", 1699527723);
|
||||
user_pref("app.update.lastUpdateTime.blocklist-background-update-timer", 1593521140);
|
||||
user_pref("app.update.lastUpdateTime.browser-cleanup-thumbnails", 1593520632);
|
||||
user_pref("app.update.lastUpdateTime.browser-cleanup-thumbnails", 1699533781);
|
||||
user_pref("app.update.lastUpdateTime.recipe-client-addon-run", 1699527723);
|
||||
user_pref("app.update.lastUpdateTime.region-update-timer", 1699527723);
|
||||
user_pref("app.update.lastUpdateTime.search-engine-update-timer", 1593520752);
|
||||
user_pref("app.update.lastUpdateTime.services-settings-poll-changes", 1593520872);
|
||||
user_pref("app.update.lastUpdateTime.telemetry_modules_ping", 0);
|
||||
user_pref("app.update.lastUpdateTime.xpi-signature-verification", 0);
|
||||
user_pref("app.update.lastUpdateTime.services-settings-poll-changes", 1699527723);
|
||||
user_pref("app.update.lastUpdateTime.telemetry_modules_ping", 1699527752);
|
||||
user_pref("app.update.lastUpdateTime.xpi-signature-verification", 1699527723);
|
||||
user_pref("browser.bookmarks.defaultLocation", "unfiled");
|
||||
user_pref("browser.bookmarks.restore_default_bookmarks", false);
|
||||
user_pref("browser.cache.disk.amount_written", 21234);
|
||||
user_pref("browser.cache.disk.capacity", 153600);
|
||||
user_pref("browser.cache.disk.filesystem_reported", 1);
|
||||
user_pref("browser.contentblocking.category", "standard");
|
||||
user_pref("browser.contextual-services.contextId", "{0fab92cb-58bc-4ed5-8a8c-e23dba1a8406}");
|
||||
user_pref("browser.download.useDownloadDir", false);
|
||||
user_pref("browser.download.viewableInternally.typeWasRegistered.avif", true);
|
||||
user_pref("browser.download.viewableInternally.typeWasRegistered.webp", true);
|
||||
user_pref("browser.engagement.home-button.has-used", true);
|
||||
user_pref("browser.laterrun.bookkeeping.profileCreationTime", 1593527682);
|
||||
user_pref("browser.laterrun.bookkeeping.sessionCount", 2);
|
||||
user_pref("browser.laterrun.enabled", true);
|
||||
user_pref("browser.migration.version", 81);
|
||||
user_pref("browser.laterrun.bookkeeping.sessionCount", 3);
|
||||
user_pref("browser.migration.version", 137);
|
||||
user_pref("browser.newtabpage.activity-stream.discoverystream.rec.impressions", "{\"453422269\":1699533914401,\"2895959998275989\":1699527713168,\"40159959757289\":1699527713171,\"3508097888324488\":1699534156222,\"345460376115206\":1699534156240}");
|
||||
user_pref("browser.newtabpage.activity-stream.discoverystream.spoc.impressions", "{\"438551245\":[1699527713163,1699533914399,1699534156227]}");
|
||||
user_pref("browser.newtabpage.activity-stream.impressionId", "{effdba07-6315-46a3-bbf3-2ae788fc8e44}");
|
||||
user_pref("browser.newtabpage.activity-stream.improvesearch.topSiteSearchShortcuts.havePinned", "google,amazon");
|
||||
user_pref("browser.newtabpage.blocked", "{\"mZmevP23jfB3rScn/QCWnw==\":1,\"26UbzFJ7qT9/4DhodHKA1Q==\":1,\"4gPpjkxgZzXPVtuEoAL9Ig==\":1,\"BRX66S9KVyZQ1z3AIk0A7w==\":1,\"OPjKsY2+nKYne5FGvFanPA==\":1,\"T9nJot5PurhJSy8n038xGA==\":1,\"kxrobsDoR0Rc+f0aKbCypQ==\":1}");
|
||||
user_pref("browser.newtabpage.pinned", "[]");
|
||||
user_pref("browser.newtabpage.storageVersion", 1);
|
||||
user_pref("browser.pageActions.persistedActions", "{\"version\":1,\"ids\":[\"bookmark\",\"pinTab\",\"bookmarkSeparator\",\"copyURL\",\"emailLink\",\"addSearchEngine\",\"sendToDevice\",\"pocket\",\"screenshots_mozilla_org\"],\"idsInUrlbar\":[\"pocket\",\"bookmark\"]}");
|
||||
user_pref("browser.pageActions.persistedActions", "{\"version\":1,\"ids\":[\"bookmark\"],\"idsInUrlbar\":[\"bookmark\"],\"idsInUrlbarPreProton\":[\"pocket\",\"bookmark\"]}");
|
||||
user_pref("browser.pagethumbnails.storage_version", 3);
|
||||
user_pref("browser.safebrowsing.provider.google4.lastupdatetime", "1593521155348");
|
||||
user_pref("browser.safebrowsing.provider.google4.nextupdatetime", "1593522927348");
|
||||
user_pref("browser.safebrowsing.provider.mozilla.lastupdatetime", "1593521114601");
|
||||
user_pref("browser.safebrowsing.provider.mozilla.nextupdatetime", "1593524714601");
|
||||
user_pref("browser.proton.toolbar.version", 3);
|
||||
user_pref("browser.region.update.updated", 1699533782);
|
||||
user_pref("browser.rights.3.shown", true);
|
||||
user_pref("browser.safebrowsing.provider.google4.lastupdatetime", "1699533796838");
|
||||
user_pref("browser.safebrowsing.provider.google4.nextupdatetime", "1699535573838");
|
||||
user_pref("browser.safebrowsing.provider.mozilla.lastupdatetime", "1699527819004");
|
||||
user_pref("browser.safebrowsing.provider.mozilla.nextupdatetime", "1699549419004");
|
||||
user_pref("browser.search.region", "FR");
|
||||
user_pref("browser.sessionstore.upgradeBackup.latestBuildID", "20200527211442");
|
||||
user_pref("browser.sessionstore.resume_session_once", true);
|
||||
user_pref("browser.sessionstore.upgradeBackup.latestBuildID", "20231016232700");
|
||||
user_pref("browser.slowStartup.averageTime", 5985);
|
||||
user_pref("browser.slowStartup.samples", 2);
|
||||
user_pref("browser.startup.homepage", "https://www.qwant.com/?client=ext-firefox-hp");
|
||||
user_pref("browser.startup.homepage_override.buildID", "20200527211442");
|
||||
user_pref("browser.startup.homepage_override.extensionControlled", true);
|
||||
user_pref("browser.startup.homepage_override.mstone", "68.9.0");
|
||||
user_pref("browser.startup.homepage_override.privateAllowed", true);
|
||||
user_pref("browser.startup.lastColdStartupCheck", 1593521111);
|
||||
user_pref("browser.startup.couldRestoreSession.count", 2);
|
||||
user_pref("browser.startup.homepage", "https://svprognu.vermeulen.pro/");
|
||||
user_pref("browser.startup.homepage_override.buildID", "20231016232700");
|
||||
user_pref("browser.startup.homepage_override.mstone", "115.4.0");
|
||||
user_pref("browser.startup.lastColdStartupCheck", 1699534449);
|
||||
user_pref("browser.startup.upgradeDialog.version", 106);
|
||||
user_pref("browser.tabs.inTitlebar", 0);
|
||||
user_pref("browser.tabs.loadInBackground", false);
|
||||
user_pref("browser.uiCustomization.state", "{\"placements\":{\"widget-overflow-fixed-list\":[],\"nav-bar\":[\"back-button\",\"forward-button\",\"stop-reload-button\",\"home-button\",\"customizableui-special-spring1\",\"urlbar-container\",\"customizableui-special-spring2\",\"downloads-button\",\"library-button\",\"sidebar-button\",\"fxa-toolbar-menu-button\",\"qwantcomforfirefox_jetpack-browser-action\",\"https-everywhere_eff_org-browser-action\",\"ublock0_raymondhill_net-browser-action\"],\"toolbar-menubar\":[\"menubar-items\"],\"TabsToolbar\":[\"tabbrowser-tabs\",\"new-tab-button\",\"alltabs-button\"],\"PersonalToolbar\":[\"personal-bookmarks\"]},\"seen\":[\"developer-button\",\"qwantcomforfirefox_jetpack-browser-action\",\"https-everywhere_eff_org-browser-action\",\"ublock0_raymondhill_net-browser-action\"],\"dirtyAreaCache\":[\"nav-bar\",\"toolbar-menubar\",\"TabsToolbar\",\"PersonalToolbar\"],\"currentVersion\":16,\"newElementCount\":2}");
|
||||
user_pref("browser.toolbars.bookmarks.visibility", "always");
|
||||
user_pref("browser.topsites.contile.cacheValidFor", 11018);
|
||||
user_pref("browser.topsites.contile.cachedTiles", "[{\"id\":74357,\"name\":\"Amazon\",\"url\":\"https://www.amazon.fr/?tag=admarketpla00-21&ref=pd_sl_94a299c883eba8267593adffcee5d6d610579df0436f6927782413c0&mfadid=adm\",\"click_url\":\"https://bridge.sfo1.ap01.net/ctp?version=16.0.0&ci=1699531351137.12791&key=1699531351400500000.1&ctag=pd_sl_94a299c883eba8267593adffcee5d6d610579df0436f6927782413c0\",\"image_url\":\"https://contile-images.services.mozilla.com/obgoOYObjIFea_bXuT6L4LbBJ8j425AD87S1HMD3BWg.9991.jpg\",\"image_size\":200,\"impression_url\":\"https://imp.mt48.net/static?id=7RHzfOIXjFEYsBdvIpkX4Qq%2B4CfXfZDX4pbW4CbWfpbW7ReNxR3UIG8zInwYIFIVs9eYiGINHrwkiFXwxYIZjF8XgClWfC2X7R4dHQ8zJnErj%3DcO7R4dHQfz4Z2Z4CxnHG3Z5FwqgCfX1p8d4Cxr1BINI9HuiF2z4Z2Z4CxnHmcux%3DcvImauiF2zfQlX4px%2B7ncqIr7VjGbuiF2zfCfr4CbY4Zfnj9wWIBdvIpkY7R4TJr2uJREuHnEYgClnHr7wHG3vjnDuiF2z4Z2r7ReTHF4wJFEUjtdvIpkXfpbr\"},{\"id\":74725,\"name\":\"Nike\",\"url\":\"https://www.nike.com/fr/?cp=19040524063_search_1699531351400500000&mfadid=adm\",\"click_url\":\"https://bridge.sfo1.admarketplace.net/ctp?version=16.0.0&ci=1699531351137.12791&key=1699531351400500000.2&ctag=1699531351400500000\",\"image_url\":\"https://contile-images.services.mozilla.com/QA_akT5F6yXF6g4EDJaPjPR1h47WLNpAKVc0LGVtSW4.5182.jpg\",\"image_size\":200,\"impression_url\":\"https://imp.mt48.net/static?id=7RHzfOIXjFEYsBdvIpkX4Qq%2B4CfXfZDX4pbW4CbWfpbW7ReNxR3UIG8zInwYIFIVs9eYiGINHrwkiFXwxYIZjF8XgClWfC2X7R4dHQ8zJnErj%3DcO7R4dHQfz4Z2rfQDnHG3Z5FwqgCfX1p8d4Cxr1BINI9HuiF2z4Z2rfQDnHmcux%3DcvImauiF2zfQl%2BfZLZ7ncqIr7VjGbuiF2zfCDkfClY4pfnj9wWIBdvIpkY7R4TJr2uJREuHnEYgC8nHr7wHG3vjnDuiF2zfC8r4YIWJ%3DcQIFdwJR2uiF2zfCbW4Wyy\"}]");
|
||||
user_pref("browser.topsites.contile.lastFetch", 1699534450);
|
||||
user_pref("browser.uiCustomization.state", "{\"placements\":{\"widget-overflow-fixed-list\":[],\"unified-extensions-area\":[],\"nav-bar\":[\"back-button\",\"forward-button\",\"stop-reload-button\",\"home-button\",\"customizableui-special-spring1\",\"urlbar-container\",\"customizableui-special-spring2\",\"save-to-pocket-button\",\"downloads-button\",\"fxa-toolbar-menu-button\",\"qwantcomforfirefox_jetpack-browser-action\",\"https-everywhere_eff_org-browser-action\",\"ublock0_raymondhill_net-browser-action\",\"unified-extensions-button\"],\"toolbar-menubar\":[\"menubar-items\"],\"TabsToolbar\":[\"firefox-view-button\",\"tabbrowser-tabs\",\"new-tab-button\",\"alltabs-button\"],\"PersonalToolbar\":[\"personal-bookmarks\"]},\"seen\":[\"developer-button\",\"qwantcomforfirefox_jetpack-browser-action\",\"https-everywhere_eff_org-browser-action\",\"ublock0_raymondhill_net-browser-action\",\"save-to-pocket-button\"],\"dirtyAreaCache\":[\"nav-bar\",\"toolbar-menubar\",\"TabsToolbar\",\"PersonalToolbar\"],\"currentVersion\":19,\"newElementCount\":2}");
|
||||
user_pref("browser.urlbar.placeholderName", "Qwant");
|
||||
user_pref("browser.urlbar.quicksuggest.migrationVersion", 2);
|
||||
user_pref("browser.urlbar.quicksuggest.scenario", "history");
|
||||
user_pref("browser.urlbar.suggest.searches", true);
|
||||
user_pref("browser.urlbar.tipShownCount.searchTip_onboard", 2);
|
||||
user_pref("datareporting.policy.dataSubmissionPolicyAcceptedVersion", 2);
|
||||
user_pref("datareporting.policy.dataSubmissionPolicyNotifiedTime", "1593527686361");
|
||||
user_pref("devtools.onboarding.telemetry.logged", true);
|
||||
user_pref("distribution.iniFile.exists.appversion", "68.9.0");
|
||||
user_pref("distribution.iniFile.exists.appversion", "115.4.0");
|
||||
user_pref("distribution.iniFile.exists.value", false);
|
||||
user_pref("doh-rollout.doneFirstRun", true);
|
||||
user_pref("doh-rollout.home-region", "FR");
|
||||
user_pref("dom.forms.autocomplete.formautofill", true);
|
||||
user_pref("dom.push.userAgentID", "a558bb4c69c24b93960a86e9474b3c5f");
|
||||
user_pref("extensions.activeThemeID", "default-theme@mozilla.org");
|
||||
user_pref("extensions.blocklist.lastModified", "Mon, 22 Jun 2020 17:21:14 GMT");
|
||||
user_pref("extensions.blocklist.pingCountTotal", 2);
|
||||
user_pref("extensions.blocklist.pingCountVersion", 2);
|
||||
user_pref("extensions.databaseSchema", 31);
|
||||
user_pref("extensions.getAddons.cache.lastUpdate", 1593520993);
|
||||
user_pref("extensions.getAddons.databaseSchema", 5);
|
||||
user_pref("extensions.blocklist.pingCountVersion", -1);
|
||||
user_pref("extensions.databaseSchema", 35);
|
||||
user_pref("extensions.getAddons.cache.lastUpdate", 1699534448);
|
||||
user_pref("extensions.getAddons.databaseSchema", 6);
|
||||
user_pref("extensions.incognito.migrated", true);
|
||||
user_pref("extensions.lastAppBuildId", "20200527211442");
|
||||
user_pref("extensions.lastAppVersion", "68.9.0");
|
||||
user_pref("extensions.lastPlatformVersion", "68.9.0");
|
||||
user_pref("extensions.lastAppBuildId", "20231016232700");
|
||||
user_pref("extensions.lastAppVersion", "115.4.0");
|
||||
user_pref("extensions.lastPlatformVersion", "115.4.0");
|
||||
user_pref("extensions.pendingOperations", false);
|
||||
user_pref("extensions.pictureinpicture.enable_picture_in_picture_overrides", true);
|
||||
user_pref("extensions.quarantinedDomains.list", "autoatendimento.bb.com.br,ibpf.sicredi.com.br,ibpj.sicredi.com.br,internetbanking.caixa.gov.br,www.ib12.bradesco.com.br,www2.bancobrasil.com.br");
|
||||
user_pref("extensions.systemAddonSet", "{\"schema\":1,\"addons\":{}}");
|
||||
user_pref("extensions.ui.dictionary.hidden", true);
|
||||
user_pref("extensions.ui.lastCategory", "addons://list/locale");
|
||||
user_pref("extensions.ui.locale.hidden", false);
|
||||
user_pref("extensions.webcompat.enable_shims", true);
|
||||
user_pref("extensions.webcompat.perform_injections", true);
|
||||
user_pref("extensions.webcompat.perform_ua_overrides", true);
|
||||
user_pref("extensions.webextensions.ExtensionStorageIDB.migrated.https-everywhere@eff.org", true);
|
||||
user_pref("extensions.webextensions.ExtensionStorageIDB.migrated.qwantcomforfirefox@jetpack", true);
|
||||
user_pref("extensions.webextensions.ExtensionStorageIDB.migrated.uBlock0@raymondhill.net", true);
|
||||
user_pref("extensions.webextensions.uuids", "{\"formautofill@mozilla.org\":\"e1c4f299-d19b-4d2a-8aab-2e7f5ba1f4f1\",\"fxmonitor@mozilla.org\":\"268b3182-4ea8-4199-a851-b7250a6d739d\",\"screenshots@mozilla.org\":\"388cb745-08b9-469c-981e-fd62717f0fef\",\"webcompat-reporter@mozilla.org\":\"0aa6d411-d472-4bd0-ad3b-7171b5a0532c\",\"webcompat@mozilla.org\":\"5631e563-ae3c-4884-9d16-cfb4933130a3\",\"default-theme@mozilla.org\":\"bc8e10a9-6d27-4894-a669-42acfb24638f\",\"google@search.mozilla.org\":\"f8e71ff8-b565-4ba6-b14e-3c62bc538c56\",\"bing@search.mozilla.org\":\"904b65a9-eae9-4de7-8382-45d4a38469cf\",\"amazon@search.mozilla.org\":\"9a4386f9-74f5-44f6-a77e-665d07db9970\",\"ddg@search.mozilla.org\":\"133d212e-370b-478b-910f-eaaf62304fd4\",\"ebay@search.mozilla.org\":\"6aca342b-a129-4125-83ea-ff4f9195945f\",\"qwant@search.mozilla.org\":\"3bd74af4-2d5f-4d00-8d5c-4c9f1347d64d\",\"wikipedia@search.mozilla.org\":\"c6fff4e0-6470-45ce-9145-7a2521ed485c\",\"qwantcomforfirefox@jetpack\":\"04d2203d-b462-4193-820b-b66349dcd9b5\",\"https-everywhere@eff.org\":\"fd3762ae-36a1-4c64-a0a2-305dce832e38\",\"uBlock0@raymondhill.net\":\"8ab465eb-0889-485e-b54f-02952cba652c\"}");
|
||||
user_pref("extensions.webextensions.uuids", "{\"formautofill@mozilla.org\":\"e1c4f299-d19b-4d2a-8aab-2e7f5ba1f4f1\",\"fxmonitor@mozilla.org\":\"268b3182-4ea8-4199-a851-b7250a6d739d\",\"screenshots@mozilla.org\":\"388cb745-08b9-469c-981e-fd62717f0fef\",\"webcompat-reporter@mozilla.org\":\"0aa6d411-d472-4bd0-ad3b-7171b5a0532c\",\"webcompat@mozilla.org\":\"5631e563-ae3c-4884-9d16-cfb4933130a3\",\"default-theme@mozilla.org\":\"bc8e10a9-6d27-4894-a669-42acfb24638f\",\"google@search.mozilla.org\":\"f8e71ff8-b565-4ba6-b14e-3c62bc538c56\",\"bing@search.mozilla.org\":\"904b65a9-eae9-4de7-8382-45d4a38469cf\",\"amazon@search.mozilla.org\":\"9a4386f9-74f5-44f6-a77e-665d07db9970\",\"ddg@search.mozilla.org\":\"133d212e-370b-478b-910f-eaaf62304fd4\",\"ebay@search.mozilla.org\":\"6aca342b-a129-4125-83ea-ff4f9195945f\",\"qwant@search.mozilla.org\":\"3bd74af4-2d5f-4d00-8d5c-4c9f1347d64d\",\"wikipedia@search.mozilla.org\":\"c6fff4e0-6470-45ce-9145-7a2521ed485c\",\"qwantcomforfirefox@jetpack\":\"04d2203d-b462-4193-820b-b66349dcd9b5\",\"https-everywhere@eff.org\":\"fd3762ae-36a1-4c64-a0a2-305dce832e38\",\"uBlock0@raymondhill.net\":\"8ab465eb-0889-485e-b54f-02952cba652c\",\"pictureinpicture@mozilla.org\":\"22b04ce6-5e23-4dd2-9111-59b0de43b48f\",\"addons-search-detection@mozilla.com\":\"1dd26236-6867-4e99-a0eb-2771d27dffe3\"}");
|
||||
user_pref("gecko.handlerService.defaultHandlersVersion", 1);
|
||||
user_pref("idle.lastDailyNotification", 1699527994);
|
||||
user_pref("media.eme.enabled", true);
|
||||
user_pref("media.gmp-manager.buildID", "20200527211442");
|
||||
user_pref("media.gmp-manager.lastCheck", 1593521032);
|
||||
user_pref("media.gmp-gmpopenh264.abi", "x86_64-gcc3");
|
||||
user_pref("media.gmp-gmpopenh264.hashValue", "53a58bfb4c8124ad4f7655b99bfdea290033a085e0796b19245b33b91c0948fdac9f0c3e817130b352493a65d9a7a0fc8a7c1eedc618cdaa2b4580734a11cd9c");
|
||||
user_pref("media.gmp-gmpopenh264.lastDownload", 1699527734);
|
||||
user_pref("media.gmp-gmpopenh264.lastInstallStart", 1699527733);
|
||||
user_pref("media.gmp-gmpopenh264.lastUpdate", 1699527735);
|
||||
user_pref("media.gmp-gmpopenh264.version", "2.3.2");
|
||||
user_pref("media.gmp-manager.buildID", "20231016232700");
|
||||
user_pref("media.gmp-manager.lastCheck", 1699527797);
|
||||
user_pref("media.gmp-manager.lastEmptyCheck", 1699527797);
|
||||
user_pref("media.gmp-widevinecdm.abi", "x86_64-gcc3");
|
||||
user_pref("media.gmp-widevinecdm.lastUpdate", 1593521034);
|
||||
user_pref("media.gmp-widevinecdm.version", "4.10.1582.2");
|
||||
user_pref("media.gmp-widevinecdm.hashValue", "661ad969099a89a278384f56a17ae912c3542d585ea4981f3b9a3c6e1a07f8da6ffad9db29cee194bf7834adc3ca258c775cd2b0980e3e6cb7ee8b39600dad58");
|
||||
user_pref("media.gmp-widevinecdm.lastDownload", 1699527745);
|
||||
user_pref("media.gmp-widevinecdm.lastInstallStart", 1699527733);
|
||||
user_pref("media.gmp-widevinecdm.lastUpdate", 1699527747);
|
||||
user_pref("media.gmp-widevinecdm.version", "4.10.2710.0");
|
||||
user_pref("media.gmp.storage.version.observed", 1);
|
||||
user_pref("network.dns.disablePrefetch", true);
|
||||
user_pref("network.http.speculative-parallel-limit", 0);
|
||||
@ -95,28 +137,59 @@ user_pref("pdfjs.enabledCache.state", true);
|
||||
user_pref("pdfjs.migrationVersion", 2);
|
||||
user_pref("pdfjs.previousHandler.alwaysAskBeforeHandling", true);
|
||||
user_pref("pdfjs.previousHandler.preferredAction", 4);
|
||||
user_pref("places.database.lastMaintenance", 1699527994);
|
||||
user_pref("places.history.expiration.transient_current_max_pages", 25749);
|
||||
user_pref("plugin.disable_full_page_plugin_for_types", "application/pdf");
|
||||
user_pref("pref.browser.homepage.disable_button.current_page", false);
|
||||
user_pref("privacy.clearOnShutdown.downloads", false);
|
||||
user_pref("privacy.clearOnShutdown.formdata", false);
|
||||
user_pref("privacy.clearOnShutdown.history", false);
|
||||
user_pref("privacy.history.custom", true);
|
||||
user_pref("privacy.purge_trackers.date_in_cookie_database", "0");
|
||||
user_pref("privacy.purge_trackers.last_purge", "1699527994768");
|
||||
user_pref("privacy.sanitize.pending", "[]");
|
||||
user_pref("privacy.sanitize.sanitizeOnShutdown", true);
|
||||
user_pref("privacy.sanitize.timeSpan", 0);
|
||||
user_pref("security.sandbox.content.tempDirSuffix", "9043d639-5158-4e59-afb8-2f277ad1d53d");
|
||||
user_pref("security.sandbox.plugin.tempDirSuffix", "531a08a9-f67a-4833-bca5-53e1fdee8463");
|
||||
user_pref("services.blocklist.pinning.checked", 1593521157);
|
||||
user_pref("services.settings.clock_skew_seconds", -285);
|
||||
user_pref("services.settings.last_etag", "\"1593478878894\"");
|
||||
user_pref("services.settings.last_update_seconds", 1593521157);
|
||||
user_pref("services.settings.blocklists.addons-bloomfilters.last_check", 1699534063);
|
||||
user_pref("services.settings.blocklists.gfx.last_check", 1699534063);
|
||||
user_pref("services.settings.clock_skew_seconds", 0);
|
||||
user_pref("services.settings.last_etag", "\"1699520486171\"");
|
||||
user_pref("services.settings.last_update_seconds", 1699534063);
|
||||
user_pref("services.settings.main.addons-manager-settings.last_check", 1699534063);
|
||||
user_pref("services.settings.main.anti-tracking-url-decoration.last_check", 1699534063);
|
||||
user_pref("services.settings.main.cfr-fxa.last_check", 1593521157);
|
||||
user_pref("services.settings.main.cfr.last_check", 1593521157);
|
||||
user_pref("services.settings.main.fxmonitor-breaches.last_check", 1593521157);
|
||||
user_pref("services.settings.main.hijack-blocklists.last_check", 1593521157);
|
||||
user_pref("services.settings.main.language-dictionaries.last_check", 1593521157);
|
||||
user_pref("services.settings.main.sites-classification.last_check", 1593521157);
|
||||
user_pref("services.settings.main.url-classifier-skip-urls.last_check", 1593521157);
|
||||
user_pref("services.settings.main.cfr.last_check", 1699534063);
|
||||
user_pref("services.settings.main.cookie-banner-rules-list.last_check", 1699534063);
|
||||
user_pref("services.settings.main.devtools-compatibility-browsers.last_check", 1699534063);
|
||||
user_pref("services.settings.main.devtools-devices.last_check", 1699534063);
|
||||
user_pref("services.settings.main.doh-config.last_check", 1699534063);
|
||||
user_pref("services.settings.main.doh-providers.last_check", 1699534063);
|
||||
user_pref("services.settings.main.fxmonitor-breaches.last_check", 1699534063);
|
||||
user_pref("services.settings.main.hijack-blocklists.last_check", 1699534063);
|
||||
user_pref("services.settings.main.language-dictionaries.last_check", 1699534063);
|
||||
user_pref("services.settings.main.message-groups.last_check", 1699534063);
|
||||
user_pref("services.settings.main.normandy-recipes-capabilities.last_check", 1699534063);
|
||||
user_pref("services.settings.main.partitioning-exempt-urls.last_check", 1699534063);
|
||||
user_pref("services.settings.main.password-recipes.last_check", 1699534063);
|
||||
user_pref("services.settings.main.password-rules.last_check", 1699534063);
|
||||
user_pref("services.settings.main.personality-provider-models.last_check", 1699534063);
|
||||
user_pref("services.settings.main.personality-provider-recipe.last_check", 1699534063);
|
||||
user_pref("services.settings.main.pioneer-study-addons-v1.last_check", 1699534063);
|
||||
user_pref("services.settings.main.search-config.last_check", 1699534063);
|
||||
user_pref("services.settings.main.search-default-override-allowlist.last_check", 1699534063);
|
||||
user_pref("services.settings.main.search-telemetry-v2.last_check", 1699534063);
|
||||
user_pref("services.settings.main.sites-classification.last_check", 1699534063);
|
||||
user_pref("services.settings.main.tippytop.last_check", 1699534063);
|
||||
user_pref("services.settings.main.top-sites.last_check", 1699534063);
|
||||
user_pref("services.settings.main.url-classifier-skip-urls.last_check", 1699534063);
|
||||
user_pref("services.settings.main.websites-with-shared-credential-backends.last_check", 1699534063);
|
||||
user_pref("services.settings.main.whats-new-panel.last_check", 1699534063);
|
||||
user_pref("services.settings.security-state.cert-revocations.last_check", 1699527727);
|
||||
user_pref("services.settings.security-state.intermediates.last_check", 1699527727);
|
||||
user_pref("services.settings.security-state.onecrl.last_check", 1699527727);
|
||||
user_pref("services.settings.security.onecrl.checked", 1593521157);
|
||||
user_pref("services.sync.clients.lastSync", "0");
|
||||
user_pref("services.sync.declinedEngines", "");
|
||||
@ -124,8 +197,11 @@ user_pref("services.sync.globalScore", 0);
|
||||
user_pref("services.sync.nextSync", 0);
|
||||
user_pref("services.sync.tabs.lastSync", "0");
|
||||
user_pref("signon.importedFromSqlite", true);
|
||||
user_pref("toolkit.startup.last_success", 1593521109);
|
||||
user_pref("storage.vacuum.last.index", 0);
|
||||
user_pref("storage.vacuum.last.places.sqlite", 1699527994);
|
||||
user_pref("toolkit.startup.last_success", 1699534438);
|
||||
user_pref("toolkit.telemetry.cachedClientID", "c0ffeec0-ffee-c0ff-eec0-ffeec0ffeec0");
|
||||
user_pref("toolkit.telemetry.previousBuildID", "20200527211442");
|
||||
user_pref("toolkit.telemetry.pioneer-new-studies-available", true);
|
||||
user_pref("toolkit.telemetry.previousBuildID", "20231016232700");
|
||||
user_pref("toolkit.telemetry.reportingpolicy.firstRun", false);
|
||||
user_pref("trailhead.firstrun.didSeeAboutWelcome", true);
|
||||
|
@ -1 +1 @@
|
||||
{"chrome://browser/content/browser.xul":{"main-window":{"sizemode":"maximized"},"PersonalToolbar":{"collapsed":"false"}},"chrome://browser/content/sanitize.xul":{"SanitizeDialog":{"screenX":"456","screenY":"164"}}}
|
||||
{"chrome://browser/content/browser.xul":{"main-window":{"sizemode":"maximized"},"PersonalToolbar":{"collapsed":"false"}},"chrome://browser/content/sanitize.xul":{"SanitizeDialog":{"screenX":"456","screenY":"164"}},"chrome://browser/content/browser.xhtml":{"main-window":{"sizemode":"maximized"}}}
|
104
config/includes.chroot/etc/skel/Bureau/firefox-esr.desktop
Executable file
@ -0,0 +1,104 @@
|
||||
[Desktop Entry]
|
||||
Name=Firefox ESR
|
||||
Name[bg]=Firefox ESR
|
||||
Name[ca]=Firefox ESR
|
||||
Name[cs]=Firefox ESR
|
||||
Name[el]=Firefox ESR
|
||||
Name[es]=Firefox ESR
|
||||
Name[fa]=Firefox ESR
|
||||
Name[fi]=Firefox ESR
|
||||
Name[fr]=Firefox ESR
|
||||
Name[hu]=Firefox ESR
|
||||
Name[it]=Firefox ESR
|
||||
Name[ja]=Firefox ESR
|
||||
Name[ko]=Firefox ESR
|
||||
Name[nb]=Firefox ESR
|
||||
Name[nl]=Firefox ESR
|
||||
Name[nn]=Firefox ESR
|
||||
Name[no]=Firefox ESR
|
||||
Name[pl]=Firefox ESR
|
||||
Name[pt]=Firefox ESR
|
||||
Name[pt_BR]=Firefox ESR
|
||||
Name[ru]=Firefox ESR
|
||||
Name[sk]=Firefox ESR
|
||||
Name[sv]=Firefox ESR
|
||||
Comment=Browse the World Wide Web
|
||||
Comment[bg]=Сърфиране в Мрежата
|
||||
Comment[ca]=Navegueu per el web
|
||||
Comment[cs]=Prohlížení stránek World Wide Webu
|
||||
Comment[de]=Im Internet surfen
|
||||
Comment[el]=Περιηγηθείτε στον παγκόσμιο ιστό
|
||||
Comment[es]=Navegue por la web
|
||||
Comment[fa]=صفحات شبکه جهانی اینترنت را مرور نمایید
|
||||
Comment[fi]=Selaa Internetin WWW-sivuja
|
||||
Comment[fr]=Navigue sur Internet
|
||||
Comment[hu]=A világháló böngészése
|
||||
Comment[it]=Esplora il web
|
||||
Comment[ja]=ウェブを閲覧します
|
||||
Comment[ko]=웹을 돌아 다닙니다
|
||||
Comment[nb]=Surf på nettet
|
||||
Comment[nl]=Verken het internet
|
||||
Comment[nn]=Surf på nettet
|
||||
Comment[no]=Surf på nettet
|
||||
Comment[pl]=Przeglądanie stron WWW
|
||||
Comment[pt]=Navegue na Internet
|
||||
Comment[pt_BR]=Navegue na Internet
|
||||
Comment[ru]=Обозреватель Всемирной Паутины
|
||||
Comment[sk]=Prehliadanie internetu
|
||||
Comment[sv]=Surfa på webben
|
||||
GenericName=Web Browser
|
||||
GenericName[bg]=Интернет браузър
|
||||
GenericName[ca]=Navegador web
|
||||
GenericName[cs]=Webový prohlížeč
|
||||
GenericName[de]=Webbrowser
|
||||
GenericName[el]=Περιηγητής ιστού
|
||||
GenericName[es]=Navegador web
|
||||
GenericName[fa]=مرورگر اینترنتی
|
||||
GenericName[fi]=WWW-selain
|
||||
GenericName[fr]=Navigateur Web
|
||||
GenericName[hu]=Webböngésző
|
||||
GenericName[it]=Browser Web
|
||||
GenericName[ja]=ウェブ・ブラウザ
|
||||
GenericName[ko]=웹 브라우저
|
||||
GenericName[nb]=Nettleser
|
||||
GenericName[nl]=Webbrowser
|
||||
GenericName[nn]=Nettlesar
|
||||
GenericName[no]=Nettleser
|
||||
GenericName[pl]=Przeglądarka WWW
|
||||
GenericName[pt]=Navegador Web
|
||||
GenericName[pt_BR]=Navegador Web
|
||||
GenericName[ru]=Интернет-браузер
|
||||
GenericName[sk]=Internetový prehliadač
|
||||
GenericName[sv]=Webbläsare
|
||||
X-GNOME-FullName=Firefox ESR Web Browser
|
||||
X-GNOME-FullName[bg]=Интернет браузър (Firefox ESR)
|
||||
X-GNOME-FullName[ca]=Navegador web Firefox ESR
|
||||
X-GNOME-FullName[cs]=Firefox ESR Webový prohlížeč
|
||||
X-GNOME-FullName[el]=Περιηγήτης Ιστού Firefox ESR
|
||||
X-GNOME-FullName[es]=Navegador web Firefox ESR
|
||||
X-GNOME-FullName[fa]=مرورگر اینترنتی Firefox ESR
|
||||
X-GNOME-FullName[fi]=Firefox ESR-selain
|
||||
X-GNOME-FullName[fr]=Navigateur Web Firefox ESR
|
||||
X-GNOME-FullName[hu]=Firefox ESR webböngésző
|
||||
X-GNOME-FullName[it]=Firefox ESR Browser Web
|
||||
X-GNOME-FullName[ja]=Firefox ESR ウェブ・ブラウザ
|
||||
X-GNOME-FullName[ko]=Firefox ESR 웹 브라우저
|
||||
X-GNOME-FullName[nb]=Firefox ESR Nettleser
|
||||
X-GNOME-FullName[nl]=Firefox ESR webbrowser
|
||||
X-GNOME-FullName[nn]=Firefox ESR Nettlesar
|
||||
X-GNOME-FullName[no]=Firefox ESR Nettleser
|
||||
X-GNOME-FullName[pl]=Przeglądarka WWW Firefox ESR
|
||||
X-GNOME-FullName[pt]=Firefox ESR Navegador Web
|
||||
X-GNOME-FullName[pt_BR]=Navegador Web Firefox ESR
|
||||
X-GNOME-FullName[ru]=Интернет-браузер Firefox ESR
|
||||
X-GNOME-FullName[sk]=Internetový prehliadač Firefox ESR
|
||||
X-GNOME-FullName[sv]=Webbläsaren Firefox ESR
|
||||
Exec=/usr/lib/firefox-esr/firefox-esr %u
|
||||
Terminal=false
|
||||
X-MultipleArgs=false
|
||||
Type=Application
|
||||
Icon=firefox-esr
|
||||
Categories=Network;WebBrowser;
|
||||
MimeType=text/html;text/xml;application/xhtml+xml;application/xml;application/vnd.mozilla.xul+xml;application/rss+xml;application/rdf+xml;image/gif;image/jpeg;image/png;x-scheme-handler/http;x-scheme-handler/https;
|
||||
StartupWMClass=Firefox-esr
|
||||
StartupNotify=true
|
115
config/includes.chroot/etc/skel/Bureau/thunderbird.desktop
Executable file
@ -0,0 +1,115 @@
|
||||
[Desktop Entry]
|
||||
Name=Thunderbird
|
||||
Comment=Read/Write Mail/News with Thunderbird
|
||||
GenericName=Mail Client
|
||||
Exec=/usr/bin/thunderbird %u
|
||||
Terminal=false
|
||||
X-MultipleArgs=false
|
||||
Type=Application
|
||||
Version=1.0
|
||||
Icon=/usr/share/thunderbird/chrome/icons/default/default256.png
|
||||
Categories=Network;Email;News;GTK;
|
||||
MimeType=message/rfc822;x-scheme-handler/mailto;text/calendar;text/x-vcard;
|
||||
StartupWMClass=Thunderbird
|
||||
StartupNotify=true
|
||||
Name[ast]=Veceru de corréu Thunderbird
|
||||
Name[ca]=Client de correu Thunderbird
|
||||
Name[cs]=Poštovní klient Thunderbird
|
||||
Name[da]=Mozilla Thunderbird - e-post/nyhedsgruppe
|
||||
Name[de]=Thunderbird E-Mail und Nachrichten
|
||||
Name[el]=Ηλεκτρονική αλληλογραφία Thunderbird
|
||||
Name[es]=Cliente de correo Thunderbird
|
||||
Name[fi]=Thunderbird-sähköposti
|
||||
Name[fr]=Messagerie Thunderbird
|
||||
Name[gl]=Cliente de correo Thunderbird
|
||||
Name[he]=Mozilla Thunderbird דוא״ל/חדשות
|
||||
Name[hr]=Mozilla Thunderbird e-pošta/novosti
|
||||
Name[hu]=Thunderbird levelezőkliens
|
||||
Name[it]=Email Mozilla Thunderbird
|
||||
Name[ja]=Thunderbird電子メールクライアント
|
||||
Name[ko]=Mozilla Thunderbird
|
||||
Name[nl]=Mozilla Thunderbird e-mail/nieuws
|
||||
Name[pl]=Klient poczty Thunderbird
|
||||
Name[pt_BR]=Cliente de E-mail Thunderbird
|
||||
Name[ru]=Почтовый клиент Thunderbird
|
||||
Name[sk]=Thunderbird - poštový klient
|
||||
Name[sv]=E-postklienten Thunderbird
|
||||
Name[ug]=Mozilla Thunderbird ئېلخەت/خەۋەر
|
||||
Name[uk]=Поштова програма Thunderbird
|
||||
Name[vi]=Trình điện thư Mozilla Thunderbird
|
||||
Name[zh_CN]=Thunderbird 邮件/新闻
|
||||
Name[zh_TW]=Thunderbird 郵件
|
||||
Comment[ast]=Lleer y escribir corréu electrónicu
|
||||
Comment[ca]=Llegiu i escriviu correu
|
||||
Comment[cs]=Čtení a psaní pošty
|
||||
Comment[da]=Læs/skriv post/nyheder med Thunderbird
|
||||
Comment[de]=E-Mails und Nachrichten mit Thunderbird lesen und schreiben
|
||||
Comment[el]=Διαβάστε και γράψτε γράμματα με το Mozilla Thunderbird
|
||||
Comment[es]=Lea y escriba correos y noticias con Thunderbird
|
||||
Comment[fi]=Lue ja kirjoita sähköposteja
|
||||
Comment[fr]=Lire et écrire des courriels
|
||||
Comment[gl]=Lea e escriba correo electrónico
|
||||
Comment[he]=קריאה/כתיבה של דוא״ל/חדשות באמצעות Mozilla Thunderbird
|
||||
Comment[hr]=Čitajte/šaljite e-poštu s Thunderbird
|
||||
Comment[hu]=Levelek írása és olvasása a Thunderbirddel
|
||||
Comment[it]=Per leggere e scrivere email
|
||||
Comment[ja]=メールの読み書き
|
||||
Comment[ko]=Mozilla Thunderbird 메일/뉴스 읽기 및 쓰기 클라이언트
|
||||
Comment[nl]=E-mail/nieuws lezen en schrijven met Mozilla Thunderbird
|
||||
Comment[pl]=Czytanie i wysyłanie e-maili
|
||||
Comment[pt_BR]=Leia e escreva suas mensagens
|
||||
Comment[ru]=Читайте и пишите письма
|
||||
Comment[sk]=Čítajte a píšte poštu pomocou programu Thunderbird
|
||||
Comment[sv]=Läs och skriv e-post
|
||||
Comment[ug]=ئېلخەت ۋە خەۋەرلەرنى Mozilla Thunderbird دا كۆرۈش ۋە يېزىش
|
||||
Comment[uk]=Читання та написання листів
|
||||
Comment[vi]=Đọc và soạn thư điện tử
|
||||
Comment[zh_CN]=阅读邮件或新闻
|
||||
Comment[zh_TW]=以 Mozilla Thunderbird 讀寫郵件或新聞
|
||||
GenericName[ast]=Client de correu
|
||||
GenericName[ca]=Client de correu
|
||||
GenericName[cs]=Poštovní klient
|
||||
GenericName[da]=Postklient
|
||||
GenericName[de]=E-Mail-Anwendung
|
||||
GenericName[el]=Λογισμικό αλληλογραφίας
|
||||
GenericName[es]=Cliente de correo
|
||||
GenericName[fi]=Sähköpostiohjelma
|
||||
GenericName[fr]=Client de messagerie
|
||||
GenericName[gl]=Cliente de correo electrónico
|
||||
GenericName[he]=לקוח דוא״ל
|
||||
GenericName[hr]=Klijent e-pošte
|
||||
GenericName[hu]=Levelezőkliens
|
||||
GenericName[it]=Client email
|
||||
GenericName[ja]=電子メールクライアント
|
||||
GenericName[ko]=메일 클라이언트
|
||||
GenericName[nl]=E-mailprogramma
|
||||
GenericName[pt_BR]=Cliente de E-mail
|
||||
GenericName[ru]=Почтовый клиент
|
||||
GenericName[sk]=Poštový klient
|
||||
GenericName[ug]=ئېلخەت دېتالى
|
||||
GenericName[uk]=Поштова програма
|
||||
GenericName[vi]=Phần mềm khách quản lý thư điện tử
|
||||
GenericName[zh_CN]=邮件新闻客户端
|
||||
GenericName[zh_TW]=郵件用戶端
|
||||
Keywords=EMail;E-mail;Contact;Addressbook;News;
|
||||
Keywords[ast]=Corréu;Corréu-e;Noticies;Discusiones;Mensaxes;Canales;RSS
|
||||
Keywords[ca]=Correu;Email;E-mail;Mailing;Llistes;Notícies;RSS
|
||||
Keywords[cs]=Email;E-mail;Pošta;Elektronická pošta;Diskusní skupiny;Čtečka;RSS
|
||||
Keywords[da]=Email;E-mail;Epost;E-post;Ebrev;E-brev;Kontakt;Adressebog;Nyheder;
|
||||
Keywords[de]=Mail;E-Mail;Newsgroup;Nachrichten;Feed;RSS;Post;News;Usenet;online;lesen;schreiben
|
||||
Keywords[el]=Email;E-mail;Newsgroup;Feed;RSS;ημαιλ;Αλληλογραφία;Ροή;ΡΣΣ;Συζητήσεις;Γράμματα
|
||||
Keywords[es]=Email;Correo electrónico;Noticias;Discusiones;Mensajes;Canales;RSS
|
||||
Keywords[fi]=Mail;E-Mail;Email;Newsgroup;Feed;RSS;posti;sähköposti;maili;meili;Usenet;uutisryhmät;syöte
|
||||
Keywords[fr]=Mails;Mels;E-Mails;Emails;Courriels;Courriers;Newsgroup;Feed;RSS;Poster;Thunderbird;Lire;Écrire
|
||||
Keywords[he]=דוא"ל;דוא״ל;מייל;אי-מייל;אימייל;הודעות;מוזילה;תאנדרבירד;ת׳אנדרבירד;ת'אנדרבירד;ת׳אנדרברד;ת'אנדרברד;דואל;
|
||||
Keywords[hr]=email;e-mail;e-pošta;pošta;RSS
|
||||
Keywords[hu]=Email;E-mail;Levél;Levelezés;Hírcsoport;Feed;Hírforrás;RSS
|
||||
Keywords[it]=Email;Mail;Posta;Newsgroup;Feed;RSS
|
||||
Keywords[is]=tölvupóstur;rafpóstur;fréttir;fréttahópar;samtöl;skilaboð;fréttastraumar;RSS
|
||||
Keywords[ja]=Eメール;イーメール;mail;e-mail;email;メール;電子メール;ニュースグループ;ネットニュース;RSS;フィードリーダー;書く;読む;Mozilla
|
||||
Keywords[nl]=Email;E-mail;Newsgroup;Feed;RSS;Nieuwsgroep;Post
|
||||
Keywords[ru]=Email;E-mail;Newsgroup;Feed;RSS;почта;письма;новости;фиды
|
||||
Keywords[sk]=Email;E-mail;Elektronická pošta;Diskusné skupiny;Čítačka kanálov;RSS
|
||||
Keywords[uk]=Email;E-mail;Newsgroup;Feed;RSS;пошта;новини;подачі;стрічка
|
||||
Keywords[vi]=Mail;E-Mail;Email;Newsgroup;Feed;RSS;Thư điện tử;Gửi thư
|
||||
Keywords[zh_CN]=Mail;E-Mail;Email;Newsgroup;Feed;RSS;电子;邮件;新闻;Thunderbird;tb;雷鸟;电邮;邮箱;阅读器;
|
@ -1,6 +1,6 @@
|
||||
#!/bin/bash
|
||||
|
||||
echo "GRUB_BACKGROUND=\"/usr/share/plymouth/themes/svpro_gnu/svprognu-splash.png\"" >> /etc/default/grub
|
||||
echo "GRUB_BACKGROUND=\"/usr/share/plymouth/themes/svpro_gnu/svprognu-grub.png\"" >> /etc/default/grub
|
||||
echo "GRUB_CMDLINE_LINUX_DEFAULT=\"quiet splash\"" >> /etc/default/grub
|
||||
update-grub
|
||||
|
||||
|
Before Width: | Height: | Size: 238 KiB After Width: | Height: | Size: 1.8 MiB |
After Width: | Height: | Size: 882 KiB |
Before Width: | Height: | Size: 56 KiB After Width: | Height: | Size: 1.8 MiB |
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 30 KiB |
@ -4,10 +4,11 @@ live-config
|
||||
live-config-systemd
|
||||
|
||||
# System
|
||||
firmware-linux
|
||||
firmware-linux-nonfree
|
||||
task-french-desktop
|
||||
task-xfce-desktop
|
||||
lxde-icon-theme
|
||||
sddm
|
||||
fonts-cantarell
|
||||
bluebird-gtk-theme
|
||||
terminator
|
||||
@ -18,6 +19,7 @@ curl
|
||||
git
|
||||
sshfs
|
||||
wget
|
||||
rsync
|
||||
net-tools
|
||||
davfs2
|
||||
xtightvncviewer
|
||||
@ -25,30 +27,42 @@ gparted
|
||||
dkms
|
||||
python3-pip
|
||||
cups
|
||||
numlockx
|
||||
gnupg2
|
||||
bluetooth
|
||||
blueman
|
||||
samba
|
||||
screen
|
||||
ntp
|
||||
|
||||
# Graphiques
|
||||
scribus
|
||||
inkscape
|
||||
gimp
|
||||
flameshot
|
||||
ksnip
|
||||
|
||||
# Multimedia
|
||||
vlc
|
||||
simplescreenrecorder
|
||||
openshot
|
||||
openshot-qt
|
||||
audacity
|
||||
kodi
|
||||
obs-studio
|
||||
brasero
|
||||
vokoscreen-ng
|
||||
|
||||
# Utilitaires
|
||||
qtpass
|
||||
nextcloud-desktop
|
||||
nautilus-nextcloud
|
||||
galculator
|
||||
snapd
|
||||
filezilla
|
||||
|
||||
# Internet
|
||||
pidgin
|
||||
remmina
|
||||
remmina-plugin-spice
|
||||
remmina-plugin-vnc
|
||||
firefox-esr
|
||||
firefox-esr-l10n-fr
|
||||
@ -58,8 +72,7 @@ chromium
|
||||
chromium-l10n
|
||||
|
||||
# Education
|
||||
gcompris
|
||||
childsplay
|
||||
gcompris-qt
|
||||
|
||||
# Virtualisation
|
||||
spice-vdagent
|
||||
|
@ -1,9 +1,7 @@
|
||||
# config/source - options for live-build(7), source stage
|
||||
|
||||
# $LB_SOURCE: set source option
|
||||
# (Default: false)
|
||||
# Set source option
|
||||
LB_SOURCE="false"
|
||||
|
||||
# $LB_SOURCE_IMAGES: set image type
|
||||
# (Default: tar)
|
||||
# Set image type
|
||||
LB_SOURCE_IMAGES="tar"
|
||||
|