move configs to /etc/xdg
|
@ -6,7 +6,7 @@
|
|||
|
||||
### ## # Set build working variables HERE # ## ###
|
||||
|
||||
PREFIX=PepOS # Sets a unique final name of the ISO and checksum so <HouseKeeping> only removes 2 files .
|
||||
PREFIX=PepOS-concept # Sets a unique final name of the ISO and checksum so <HouseKeeping> only removes 2 files .
|
||||
SUFFIX=amd64 # Also used by <HouseKeeping>. And to distinguish between amd64 and x86 or devuan and ubuntu .
|
||||
BUILD=nightly # Sets which pepbld.sh to use and the location in /var/www/html/[release|rc|testing|nightly|unstable]
|
||||
|
||||
|
@ -18,7 +18,7 @@ TODAY=$(date -u +"%Y-%m-%d") && export TODAY # If MasterBuilder.sh is used IT w
|
|||
FileName=${PREFIX}-${SUFFIX}-${TODAY}-${BUILD} # This will give a uniquely named and dated ISO and checksum for <HouseKeeping>.
|
||||
LOCATION="/var/www/html/${BUILD}" # Tells <HouseKeeping> and the script which 2 files to remove and where to put them.
|
||||
LogDir="/var/log/Live-Build" # This folder contains a log for the last $[PREFIX]-$[SUFFIX] build.
|
||||
WorkingDir=~/pep_builder/PepOSx86_64 # * If we change servers or locations T*H*I*S line is the O*N*L*Y line to change. *
|
||||
WorkingDir=~/pep_builder/MRTestRepo # * If we change servers or locations T*H*I*S line is the O*N*L*Y line to change. *
|
||||
OutFile="/tmp/${PREFIX}${SUFFIX}.out"
|
||||
LogFile="${LogDir}/${PREFIX}-${SUFFIX}-${BUILD}.log"
|
||||
_cache="./cache"
|
||||
|
@ -41,9 +41,6 @@ if [ ${_break} -lt ${_wait} ] ; then
|
|||
|
||||
mv fusato/*.iso fusato/${FileName}.iso
|
||||
|
||||
# Define a 2GiB partition, at offset 4194304, in the ISO's 3rd entry of the MBR .
|
||||
dd bs=1 count=16 seek=478 conv=notrunc if=peploadersplash/P4-2GB-MBR.hex of=fusato/${FileName}.iso
|
||||
|
||||
# Make the checksum file.
|
||||
cd fusato
|
||||
echo "# ${FileName}" > ${FileName}-sha512.checksum
|
||||
|
@ -65,12 +62,6 @@ mv ${FileName}-sha512.checksum ${LOCATION}/${FileName}-sha512.checksum
|
|||
# touch -t ${_stamp} ${LOCATION} ${LOCATION}/${FileName}*
|
||||
touch ${LOCATION}/${FileName}*
|
||||
|
||||
# Update netinstall-packages.yaml
|
||||
diff chroot/etc/calamares/modules/netinstall-packages.yaml ../pepcal/calamares/modules/netinstall-packages.yaml || (
|
||||
cp chroot/etc/calamares/modules/netinstall-packages.yaml ../pepcal/calamares/modules/
|
||||
git add ../pepcal/calamares/modules/netinstall-packages.yaml
|
||||
git commit -m "Automated update to file, after build completed." ; git push )
|
||||
|
||||
lb clean &
|
||||
|
||||
# Move the log file to the log directory.
|
||||
|
|
|
@ -1,74 +0,0 @@
|
|||
#!/bin/bash
|
||||
|
||||
# BldHelper-skinny.sh
|
||||
### ## # Set build working variables HERE # ## ###
|
||||
|
||||
PREFIX=PepOS # Sets a unique final name of the ISO and checksum so <HouseKeeping> only removes 2 files .
|
||||
SUFFIX=amd64 # Also used by <HouseKeeping>. And to distinguish between amd64 and x86 or devuan and ubuntu .
|
||||
BUILD=skinny # Sets which pepbld.sh to use and the location in /var/www/html/[release|rc|testing|nightly|unstable]
|
||||
|
||||
### ## # Make NO Edits Below This Line !! # ## ###
|
||||
|
||||
|
||||
[ $TODAY ! = " " ] || TODAY=$(date -u +"%Y-%m-%d") # If MasterBuilder.sh is used IT will set the date. If not used, we set it here.
|
||||
FileName=${PREFIX}-${SUFFIX}-${TODAY}-${BUILD} # This will give a uniquely named and dated ISO and checksum for <HouseKeeping>.
|
||||
LOCATION=/var/www/html/${BUILD} # Tells <HouseKeeping> and the script which 2 files to remove and where to put them.
|
||||
LogDir=/var/log/Live-Build # This folder contains a log for the last $[PREFIX]-$[SUFFIX] build.
|
||||
WorkingDir=~/pep_builder/PepOSx86_64 # * If we change servers or locations T*H*I*S line is the O*N*L*Y line to change. *
|
||||
#WorkingDir=/root/pep_builder/KSTestRepo
|
||||
|
||||
|
||||
# Move into the builder directory.
|
||||
# Make sure the local repos are up to date.
|
||||
cd /root/pep_builder
|
||||
cd ./PepProPixMaps && git pull
|
||||
cd ../PepProTools && git pull
|
||||
cd ${WorkingDir} && git pull
|
||||
|
||||
# Run the build script - expect 50 minutes, allow 60.
|
||||
./PepBld-${BUILD}.sh 2>&1 | tee /tmp/${FileName}.log
|
||||
|
||||
|
||||
# Timing matters, don't destroy the old one without a replacement.
|
||||
# Check for the ISO to appear and wait for things to settle.
|
||||
until [ -e fusato/*.iso ]
|
||||
do sleep 2 # Waiting for ISO image
|
||||
done
|
||||
|
||||
cd fusato
|
||||
mv *.iso ../${FileName}.iso
|
||||
lb clean &
|
||||
cd ../
|
||||
|
||||
# Define a 2GiB partition, at offset 4194304, in the ISO's 4th entry of the MBR .
|
||||
dd bs=1 count=16 seek=494 conv=notrunc if=peploadersplash/P4-2GB-MBR.hex of=${FileName}.iso
|
||||
|
||||
# Make the checksum file.
|
||||
sha512sum ${FileName}.iso > ${FileName}-sha512.checksum
|
||||
|
||||
|
||||
### <HouseKeeping>
|
||||
# Remove the previous files in ${LOCATION} .
|
||||
rm -f ${LOCATION}/${PREFIX}-${SUFFIX}*.iso
|
||||
rm -f ${LOCATION}/${PREFIX}-${SUFFIX}*-sha512.checksum
|
||||
|
||||
# Move the log file to the log directory.
|
||||
[ ! -e ${LogDir} ] && mkdir -p ${LogDir}
|
||||
mv /tmp/${FileName}.log ${LogDir}/${PREFIX}-${SUFFIX}-${BUILD}.log
|
||||
|
||||
# Set the timestamps to the ISO's internal before moving them to the DL directory.
|
||||
# _stamp=$(hexdump -C -s 33598 -n 12 ${FileName}.iso | head -1 | cut -f2 -d"|" )
|
||||
|
||||
[ ! -e ${LOCATION} ] && mkdir -p ${LOCATION}
|
||||
#mv $(FileName}* ${LOCATION}/
|
||||
mv ${FileName}.iso ${LOCATION}/${FileName}.iso
|
||||
mv ${FileName}-sha512.checksum ${LOCATION}/${FileName}-sha512.checksum
|
||||
|
||||
# touch -t ${_stamp} ${LOCATION} ${LOCATION}/${FileName}*
|
||||
touch ${LOCATION}/${FileName}*
|
||||
### </HouseKeeping>
|
||||
|
||||
|
||||
# This will "flush" our variables without handing any back to MasterBuilder.sh .
|
||||
# exit # But NOT `return`.
|
||||
|
|
@ -1,72 +0,0 @@
|
|||
#!/bin/bash
|
||||
|
||||
##BldHelper-testing.sh
|
||||
### ## # Set build working variables HERE # ## ###
|
||||
|
||||
PREFIX=PepOS # Sets a unique final name of the ISO and checksum so <HouseKeeping> only removes 2 files .
|
||||
SUFFIX=amd64 # Also used by <HouseKeeping>. And to distinguish between amd64 and x86 or devuan and ubuntu .
|
||||
BUILD=testing # Sets which pepbld.sh to use and the location in /var/www/html/[release|rc|testing|nightly|unstable]
|
||||
|
||||
##################################################
|
||||
### ## # Make NO Edits Below This Line !! # ## ###
|
||||
##################################################
|
||||
|
||||
[ $TODAY ! = " " ] || TODAY=$(date -u +"%Y-%m-%d") # If MasterBuilder.sh is used IT will set the date. If not used, we set it here.
|
||||
FileName=${PREFIX}-${SUFFIX}-${TODAY}-${BUILD} # This will give a uniquely named and dated ISO and checksum for <HouseKeeping>.
|
||||
LOCATION=/var/www/html/${BUILD} # Tells <HouseKeeping> and the script which 2 files to remove and where to put them.
|
||||
LogDir=/var/log/Live-Build # This folder contains a log for the last $[PREFIX]-$[SUFFIX] build.
|
||||
#WorkingDir=~/pep_builder/${PREFIX}${SUFFIX} # * If we change servers or locations T*H*I*S line is the O*N*L*Y line to change. *
|
||||
WorkingDir=~/pep_builder/PepOSx86_64 # * If we change servers or locations T*H*I*S line is the O*N*L*Y line to change. *
|
||||
|
||||
# Move into the builder directory.
|
||||
# Make sure the local repos are up to date.
|
||||
cd ~/pep_builder
|
||||
cd ./PepProPixMaps && git pull --ff-only
|
||||
cd ../PepProTools && git pull --ff-only
|
||||
cd ${WorkingDir} && git pull --ff-only
|
||||
|
||||
# Run the build script - expect 50 minutes, allow 60.
|
||||
./PepBld-${BUILD}.sh 2>&1 | tee --append /tmp/${PREFIX}${SUFFIX}.out
|
||||
|
||||
# Timing matters, don't destroy the old one without a replacement.
|
||||
# Check for the ISO to appear and wait for things to settle.
|
||||
until [ -e fusato/*.iso ]
|
||||
do sleep 2 # Waiting for ISO image
|
||||
done
|
||||
|
||||
cd fusato
|
||||
mv *.iso ../${FileName}.iso
|
||||
lb clean &
|
||||
cd ../
|
||||
|
||||
# Define a 2GiB partition, at offset 4194304, in the ISO's 4th entry of the MBR .
|
||||
dd bs=1 count=16 seek=494 conv=notrunc if=peploadersplash/P4-2GB-MBR.hex of=${FileName}.iso
|
||||
|
||||
# Make the checksum file.
|
||||
sha512sum ${FileName}.iso > ${FileName}-sha512.checksum
|
||||
|
||||
|
||||
### <HouseKeeping>
|
||||
# Remove the previous files in ${LOCATION} .
|
||||
rm -f ${LOCATION}/${PREFIX}-${SUFFIX}*.iso
|
||||
rm -f ${LOCATION}/${PREFIX}-${SUFFIX}*-sha512.checksum
|
||||
|
||||
# Move the log file to the log directory.
|
||||
[ ! -e ${LogDir} ] && mkdir -p ${LogDir}
|
||||
mv /tmp/${PREFIX}${SUFFIX}.out ${LogDir}/${PREFIX}-${SUFFIX}-${BUILD}.log
|
||||
|
||||
# Set the timestamps to the ISO's internal before moving them to the DL directory.
|
||||
# _stamp=$(hexdump -C -s 33598 -n 12 ${FileName}.iso | head -1 | cut -f2 -d"|" )
|
||||
|
||||
#mv $(FileName}* ${LOCATION}/
|
||||
mv ${FileName}.iso ${LOCATION}/${FileName}.iso
|
||||
mv ${FileName}-sha512.checksum ${LOCATION}/${FileName}-sha512.checksum
|
||||
|
||||
# touch -t ${_stamp} ${LOCATION} ${LOCATION}/${FileName}*
|
||||
touch ${LOCATION}/${FileName}*
|
||||
### </HouseKeeping>
|
||||
|
||||
|
||||
# This will "flush" our variables without handing any back to MasterBuilder.sh .
|
||||
# exit # But NOT `return`.
|
||||
|
|
@ -1,72 +0,0 @@
|
|||
#!/bin/bash
|
||||
|
||||
# BldHelper-unstable.sh
|
||||
### ## # Set build working variables HERE # ## ###
|
||||
|
||||
PREFIX=PepOS # Sets a unique final name of the ISO and checksum so <HouseKeeping> only removes 2 files .
|
||||
SUFFIX=amd64 # Also used by <HouseKeeping>. And to distinguish between amd64 and x86 or devuan and ubuntu .
|
||||
BUILD=unstable # Sets which pepbld.sh to use and the location in /var/www/html/[release|rc|testing|nightly|unstable]
|
||||
|
||||
### ## # Make NO Edits Below This Line !! # ## ###
|
||||
|
||||
|
||||
[ $TODAY ! = " " ] || TODAY=$(date -u +"%Y-%m-%d") # If MasterBuilder.sh is used IT will set the date. If not used, we set it here.
|
||||
FileName=${PREFIX}-${SUFFIX}-${TODAY}-${BUILD} # This will give a uniquely named and dated ISO and checksum for <HouseKeeping>.
|
||||
LOCATION=/var/www/html/${BUILD} # Tells <HouseKeeping> and the script which 2 files to remove and where to put them.
|
||||
LogDir=/var/log/Live-Build # This folder contains a log for the last $[PREFIX]-$[SUFFIX] build.
|
||||
WorkingDir=~/pep_builder/PepOSx86_64 # * If we change servers or locations T*H*I*S line is the O*N*L*Y line to change. *
|
||||
|
||||
|
||||
# Move into the builder directory.
|
||||
# Make sure the local repos are up to date.
|
||||
cd /root/pep_builder
|
||||
cd ./PepProPixMaps && git pull
|
||||
cd ../PepProTools && git pull
|
||||
cd ${WorkingDir} && git pull
|
||||
|
||||
# Run the build script - expect 50 minutes, allow 60.
|
||||
./PepBld-${BUILD}.sh 2>&1 | tee /tmp/${FileName}.log
|
||||
|
||||
|
||||
# Timing matters, don't destroy the old one without a replacement.
|
||||
# Check for the ISO to appear and wait for things to settle.
|
||||
until [ -e fusato/*.iso ]
|
||||
do sleep 2 # Waiting for ISO image
|
||||
done
|
||||
|
||||
cd fusato
|
||||
mv *.iso ../${FileName}.iso
|
||||
lb clean &
|
||||
cd ../
|
||||
|
||||
# Define a 2GiB partition, at offset 4194304, in the ISO's 4th entry of the MBR .
|
||||
dd bs=1 count=16 seek=494 conv=notrunc if=peploadersplash/P4-2GB-MBR.hex of=${FileName}.iso
|
||||
|
||||
# Make the checksum file.
|
||||
sha512sum ${FileName}.iso > ${FileName}-sha512.checksum
|
||||
|
||||
|
||||
### <HouseKeeping>
|
||||
# Remove the previous files in ${LOCATION} .
|
||||
rm -f ${LOCATION}/${PREFIX}-${SUFFIX}*.iso
|
||||
rm -f ${LOCATION}/${PREFIX}-${SUFFIX}*-sha512.checksum
|
||||
|
||||
# Move the log file to the log directory.
|
||||
[ ! -e ${LogDir} ] && mkdir -p ${LogDir}
|
||||
mv /tmp/${FileName}.log ${LogDir}/${PREFIX}-${SUFFIX}-${BUILD}.log
|
||||
|
||||
# Set the timestamps to the ISO's internal before moving them to the DL directory.
|
||||
# _stamp=$(hexdump -C -s 33598 -n 12 ${FileName}.iso | head -1 | cut -f2 -d"|" )
|
||||
|
||||
#mv $(FileName}* ${LOCATION}/
|
||||
mv ${FileName}.iso ${LOCATION}/${FileName}.iso
|
||||
mv ${FileName}-sha512.checksum ${LOCATION}/${FileName}-sha512.checksum
|
||||
|
||||
# touch -t ${_stamp} ${LOCATION} ${LOCATION}/${FileName}*
|
||||
touch ${LOCATION}/${FileName}*
|
||||
### </HouseKeeping>
|
||||
|
||||
|
||||
# This will "flush" our variables without handing any back to MasterBuilder.sh .
|
||||
# exit # But NOT `return`.
|
||||
|
|
@ -183,16 +183,12 @@ mkdir -p $uchinanchu/fusato/config/includes.binary
|
|||
mkdir -p $uchinanchu/fusato/config/includes.bootstrap/etc/apt
|
||||
mkdir -p $uchinanchu/fusato/config/includes.chroot/usr/local/bin
|
||||
mkdir -p $uchinanchu/fusato/config/includes.chroot/usr/share/applications
|
||||
mkdir -p $uchinanchu/fusato/config/includes.chroot/usr/share/backgrounds
|
||||
mkdir -p $uchinanchu/fusato/config/includes.chroot/usr/share/desktop-base
|
||||
mkdir -p $uchinanchu/fusato/config/includes.chroot/usr/share/icons/default
|
||||
mkdir -p $uchinanchu/fusato/config/includes.chroot/usr/share/themes
|
||||
mkdir -p $uchinanchu/fusato/config/includes.chroot/usr/share/peppermint
|
||||
mkdir -p $uchinanchu/fusato/config/includes.chroot/usr/share/pixmaps
|
||||
mkdir -p $uchinanchu/fusato/config/includes.chroot/usr/share/plymouth
|
||||
mkdir -p $uchinanchu/fusato/config/includes.chroot/usr/share/xfce4/helpers
|
||||
mkdir -p $uchinanchu/fusato/config/includes.chroot/usr/share/polkit-1/actions
|
||||
mkdir -p $uchinanchu/fusato/config/includes.chroot/usr/share/fonts/pepconf
|
||||
mkdir -p $uchinanchu/fusato/config/includes.chroot/usr/share/backgrounds
|
||||
mkdir -p $uchinanchu/fusato/config/includes.chroot/usr/bin
|
||||
mkdir -p $uchinanchu/fusato/config/includes.chroot/usr/local/bin
|
||||
mkdir -p $uchinanchu/fusato/config/includes.chroot/usr/sbin
|
||||
|
@ -204,8 +200,12 @@ mkdir -p $uchinanchu/fusato/config/includes.chroot/etc/calamares
|
|||
mkdir -p $uchinanchu/fusato/config/includes.chroot/etc/default
|
||||
mkdir -p $uchinanchu/fusato/config/includes.chroot/etc/lightdm
|
||||
mkdir -p $uchinanchu/fusato/config/includes.chroot/etc/live/config.conf.d
|
||||
mkdir -p $uchinanchu/fusato/config/includes.chroot/etc/plymouth
|
||||
mkdir -p $uchinanchu/fusato/config/includes.chroot/etc/skel/.config/autostart
|
||||
mkdir -p $uchinanchu/fusato/config/includes.chroot/etc/skel/.config
|
||||
mkdir -p $uchinanchu/fusato/config/includes.chroot/etc/xdg/autostart
|
||||
mkdir -p $uchinanchu/fusato/config/includes.chroot/etc/xdg/menus
|
||||
mkdir -p $uchinanchu/fusato/config/includes.chroot/etc/xdg/xfce4/panel
|
||||
mkdir -p $uchinanchu/fusato/config/includes.chroot/etc/xdg/xfce4/whiskermenu
|
||||
mkdir -p $uchinanchu/fusato/config/includes.chroot/etc/xdg/xfconf/xfce-perchannel-xml
|
||||
mkdir -p $uchinanchu/fusato/config/includes.chroot/etc/skel/.local/share
|
||||
mkdir -p $uchinanchu/fusato/config/includes.chroot/etc/skel/Desktop
|
||||
mkdir -p $uchinanchu/fusato/config/includes.chroot/etc/xdg/xfce4
|
||||
|
@ -216,7 +216,7 @@ mkdir -p $uchinanchu/fusato/config/includes.chroot/opt/startpep
|
|||
mkdir -p $uchinanchu/fusato/config/includes.chroot/opt/pepconf
|
||||
mkdir -p $uchinanchu/fusato/config/includes.chroot/boot/grub
|
||||
mkdir -p $uchinanchu/fusato/config/archives
|
||||
#mkdir -p $uchinanchu/fusato/config/hooks/live
|
||||
mkdir -p $uchinanchu/fusato/config/hooks/live
|
||||
mkdir -p $uchinanchu/fusato/config/hooks/normal
|
||||
mkdir -p $uchinanchu/fusato/config/packages.chroot
|
||||
|
||||
|
@ -226,22 +226,17 @@ cp $uchinanchu/pepaliases/bash_aliases $uchinanchu/fusato/config/includes.chroo
|
|||
cp $uchinanchu/pepcal/adddesktopicon/add-calamares-desktop-icon $uchinanchu/fusato/config/includes.chroot/usr/bin
|
||||
cp $uchinanchu/pepcal/calamares/netinstall-* $uchinanchu/fusato/config/includes.chroot/etc/calamares
|
||||
cp $uchinanchu/pepcal/calamares/settings.conf $uchinanchu/fusato/config/includes.chroot/etc/calamares
|
||||
#cp $uchinanchu/pepcal/install-peppermint $uchinanchu/fusato/config/includes.chroot/usr/bin
|
||||
#cp $uchinanchu/pepcal/sources-final $uchinanchu/fusato/config/includes.chroot/usr/sbin
|
||||
cp $uchinanchu/peplightdm/lightdm.conf $uchinanchu/fusato/config/includes.chroot/etc/lightdm
|
||||
cp $uchinanchu/peplightdm/lightdm-gtk-greeter.conf $uchinanchu/fusato/config/includes.chroot/etc/lightdm
|
||||
cp $uchinanchu/peplightdm/slick-greeter.conf $uchinanchu/fusato/config/includes.chroot/etc/lightdm
|
||||
#cp $uchinanchu/pepplymouth/plymouthd.conf $uchinanchu/fusato/config/includes.chroot/etc/plymouth
|
||||
cp $uchinanchu/pepsources/sources.list $uchinanchu/fusato/config/includes.chroot/opt/pepconf
|
||||
cp $uchinanchu/../MakePackageLists.sh $uchinanchu/fusato/config/includes.chroot/usr/local/bin
|
||||
cp $uchinanchu/PepProTools/xDaily $uchinanchu/fusato/config/includes.chroot/usr/local/bin
|
||||
cp $uchinanchu/PepProTools/Welcome_auto.desktop $uchinanchu/fusato/config/includes.chroot/etc/skel/.config/autostart
|
||||
cp $uchinanchu/PepProTools/Welcome_auto.desktop $uchinanchu/fusato/config/includes.chroot/etc/xdg/autostart
|
||||
|
||||
# Copy directory contents to the chroot
|
||||
cp $uchinanchu/pepapplication/* $uchinanchu/fusato/config/includes.chroot/usr/share/applications
|
||||
cp $uchinanchu/pepdeffileman/xfce4/* $uchinanchu/fusato/config/includes.chroot/etc/xdg/xfce4
|
||||
cp $uchinanchu/pepdeffileman/helpers/* $uchinanchu/fusato/config/includes.chroot/usr/share/xfce4/helpers
|
||||
cp $uchinanchu/pepfont/* $uchinanchu/fusato/config/includes.chroot/usr/share/fonts/pepconf
|
||||
cp $uchinanchu/pepdeffileman/helpers.rc/* $uchinanchu/fusato/config/includes.chroot/usr/share/xfce4/helpers
|
||||
cp $uchinanchu/pepgrub/grub $uchinanchu/fusato/config/includes.chroot/etc/default
|
||||
cp $uchinanchu/pephooks/live/* $uchinanchu/fusato/config/includes.chroot/usr/lib/live/config
|
||||
cp $uchinanchu/pephooks/normal/* $uchinanchu/fusato/config/hooks/normal
|
||||
|
@ -250,10 +245,6 @@ cp $uchinanchu/pepissue/* $uchinanchu/fusato/config/includes.chroot/etc
|
|||
cp $uchinanchu/pepissue/* $uchinanchu/fusato/config/includes.chroot/opt/pepconf
|
||||
cp $uchinanchu/peposrelease/* $uchinanchu/fusato/config/includes.chroot/opt/pepconf
|
||||
cp $uchinanchu/peposrelease/* $uchinanchu/fusato/config/includes.chroot/usr/lib
|
||||
#cp $uchinanchu/peppackages/calamares_3.2.57*amd64.deb $uchinanchu/fusato/config/packages.chroot
|
||||
#cp $uchinanchu/peppackages/calamares-settings-debian_11.0.5-2_all.deb $uchinanchu/fusato/config/packages.chroot
|
||||
#cp $uchinanchu/peppackages/deb-multimedia*.deb $uchinanchu/fusato/config/packages.chroot
|
||||
cp $uchinanchu/peppinunstable/* $uchinanchu/fusato/config/includes.chroot/etc/apt/preferences.d
|
||||
cp $uchinanchu/peppolkit/* $uchinanchu/fusato/config/includes.chroot/usr/share/polkit-1/actions
|
||||
cp $uchinanchu/pepstartpage/* $uchinanchu/fusato/config/includes.chroot/opt/startpep
|
||||
cp $uchinanchu/pepdb/* $uchinanchu/fusato/config/includes.chroot/opt/pypep/dbpep
|
||||
|
@ -263,31 +254,15 @@ cp $uchinanchu/PepProPixMaps/* $uchinanchu/fusato/config/includes.chroot/usr/sha
|
|||
cp $uchinanchu/PepProTools/* $uchinanchu/fusato/config/includes.chroot/opt/pypep
|
||||
|
||||
# Copy recursive files and sub-directories, containing symlinks.
|
||||
#cp -dr $uchinanchu/pepicons/Numix $uchinanchu/fusato/config/includes.chroot/usr/share/icons
|
||||
#cp -dr $uchinanchu/pepicons/Pepirus $uchinanchu/fusato/config/includes.chroot/usr/share/icons
|
||||
#cp -dr $uchinanchu/pepicons/Pepirus-Dark $uchinanchu/fusato/config/includes.chroot/usr/share/icons
|
||||
#cp -dr $uchinanchu/peptheme/Arc-Red $uchinanchu/fusato/config/includes.chroot/usr/share/themes
|
||||
#cp -dr $uchinanchu/peptheme/Arc-Green $uchinanchu/fusato/config/includes.chroot/usr/share/themes
|
||||
#cp -dr $uchinanchu/peptheme/Arc-Blue $uchinanchu/fusato/config/includes.chroot/usr/share/themes
|
||||
#cp -dr $uchinanchu/peptheme/Arc-Green-Dark $uchinanchu/fusato/config/includes.chroot/usr/share/themes
|
||||
#cp -dr $uchinanchu/peptheme/Arc-Teal-Dark $uchinanchu/fusato/config/includes.chroot/usr/share/themes
|
||||
#cp -dr $uchinanchu/peptheme/Arc-Red-Dark $uchinanchu/fusato/config/includes.chroot/usr/share/themes
|
||||
#cp -dr $uchinanchu/peptheme/Peppermint-10-Red-Dark $uchinanchu/fusato/config/includes.chroot/usr/share/themes
|
||||
|
||||
cp -r $uchinanchu/pepcal/calamares/branding $uchinanchu/fusato/config/includes.chroot/etc/calamares
|
||||
cp -r $uchinanchu/pepcal/calamares/modules $uchinanchu/fusato/config/includes.chroot/etc/calamares
|
||||
#cp -r $uchinanchu/pepdesktopbase/desktop-base $uchinanchu/fusato/config/includes.chroot/usr/share/
|
||||
cp -r $uchinanchu/peploadersplash/boot $uchinanchu/fusato/config/includes.binary
|
||||
cp -r $uchinanchu/peploadersplash/isolinux $uchinanchu/fusato/config/includes.binary
|
||||
cp -r $uchinanchu/pepmenu/menus $uchinanchu/fusato/config/includes.chroot/etc/skel/.config
|
||||
cp -r $uchinanchu/pepnemo/nemo $uchinanchu/fusato/config/includes.chroot/etc/skel/.config
|
||||
#cp -r $uchinanchu/pepplymouth/plymouth $uchinanchu/fusato/config/includes.chroot/usr/share/
|
||||
cp -r $uchinanchu/pepxfce/xfce4 $uchinanchu/fusato/config/includes.chroot/etc/skel/.config
|
||||
cp -r $uchinanchu/pepxfce/Thunar $uchinanchu/fusato/config/includes.chroot/etc/skel/.config
|
||||
cp -r $uchinanchu/pepxfce/package-update-indicator $uchinanchu/fusato/config/includes.chroot/etc/skel/.config
|
||||
cp -r $uchinanchu/pepmenu/menus $uchinanchu/fusato/config/includes.chroot/etc/xdg/menus
|
||||
cp -r $uchinanchu/pepxfce/panel/* $uchinanchu/fusato/config/includes.chroot/etc/xdg/xfce4/panel
|
||||
cp -r $uchinanchu/pepxfce/xfce4/xfconf/xfce-perchannel-xml/* $uchinanchu/fusato/config/includes.chroot/etc/xdg/xfce4/xfconf/xfce-perchannel-xml
|
||||
cp -r $uchinanchu/pepxfce/defaults.rc $uchinanchu/fusato/config/includes.chroot/etc/xdg/xfce4/whiskermenu
|
||||
cp -r $uchinanchu/pepxfce/Thunar $uchinanchu/fusato/config/includes.chroot/etc/xdg/
|
||||
cp -r $uchinanchu/pepgrub/themes $uchinanchu/fusato/config/includes.chroot/boot/grub
|
||||
|
||||
|
||||
# Resolves Synaptics issue. Might be better in a conf hook.
|
||||
mkdir -p $uchinanchu/fusato/config/includes.chroot/usr/share/distro-info
|
||||
mkdir -p $uchinanchu/fusato/config/includes.chroot/usr/share/python-apt/templates
|
||||
|
@ -298,11 +273,9 @@ ln -s debian.csv $uchinanchu/fusato/config/includes.chroot/usr/share/distro-info
|
|||
# Place files unique to Nightly builds here.
|
||||
cp $uchinanchu/pepnightly/pepaliases/bash_aliases $uchinanchu/fusato/config/includes.chroot/etc/skel/.bash_aliases
|
||||
cp $uchinanchu/pepnightly/pepapplication/* $uchinanchu/fusato/config/includes.chroot/usr/share/applications
|
||||
#cp $uchinanchu/pepnightly/pepcal/calamares/branding/peppermint/stylesheet.qss
|
||||
cp $uchinanchu/pepnightly/pepcal/install-peppermint $uchinanchu/fusato/config/includes.chroot/usr/bin
|
||||
cp $uchinanchu/pepnightly/pepcal/sources-final $uchinanchu/fusato/config/includes.chroot/usr/sbin
|
||||
cp $uchinanchu/pepnightly/pepmultimedia/* $uchinanchu/fusato/config/archives
|
||||
cp $uchinanchu/pepnightly/pepgksudo/* $uchinanchu/fusato/config/includes.chroot/usr/local/bin
|
||||
cp -r $uchinanchu/pepnightly/peploadersplash/boot $uchinanchu/fusato/config/includes.binary
|
||||
cp -r $uchinanchu/pepnightly/peploadersplash/isolinux $uchinanchu/fusato/config/includes.binary
|
||||
|
||||
|
|
262
PepBld-skinny.sh
|
@ -1,262 +0,0 @@
|
|||
#!/bin/bash
|
||||
PATH="/sbin:/usr/sbin:/usr/local/sbin:$PATH"
|
||||
|
||||
# Set the working folder variable
|
||||
uchinanchu="$(pwd)"
|
||||
|
||||
# Create the build folder, move into it and remove unneeded files there.
|
||||
[ -e fusato ] && [ ! -d fusato ] && rm -f fusato && mkdir fusato || mkdir fusato
|
||||
cd fusato
|
||||
umount -v $(mount | grep "${PWD}/chroot" | tac | cut -f3 -d" ") 2>/dev/null
|
||||
for i in ./* ./.build ./cache/bootstrap ./cache/contents.chroot ; do [ $i = ./cache ] && continue || rm -rf $i ; done
|
||||
|
||||
|
||||
# Set of the structure to be used for the ISO and Live system.
|
||||
# See /usr/lib/live/build/config for a full list of examples.
|
||||
# Up above is the manual description of what options I used so far.
|
||||
lb config \
|
||||
--clean \
|
||||
--color \
|
||||
--quiet \
|
||||
--archive-areas "main contrib non-free" \
|
||||
--architectures amd64 \
|
||||
--apt-recommends false \
|
||||
--backports true \
|
||||
--binary-images iso-hybrid \
|
||||
--cache true \
|
||||
--mode debian \
|
||||
--distribution bullseye \
|
||||
--firmware-binary true \
|
||||
--firmware-chroot true \
|
||||
--iso-application "PeppermintOS" \
|
||||
--iso-preparer "PeppermintOS-https://peppermintos.com/" \
|
||||
--iso-publisher "Peppermint OS Team" \
|
||||
--iso-volume "PeppermintOS" \
|
||||
--image-name "PepOS" \
|
||||
--linux-flavours amd64 \
|
||||
--security true \
|
||||
--updates true \
|
||||
--win32-loader false \
|
||||
--checksums sha512 \
|
||||
--zsync false \
|
||||
|
||||
|
||||
# Install the XFCE Desktop
|
||||
mkdir -p ./config/package-lists/
|
||||
echo xfce4 > ./config/package-lists/desktop.list.chroot
|
||||
|
||||
# Install software
|
||||
echo "# Install software to the squashfs for calamares to unpack to the OS.
|
||||
arandr
|
||||
arc-theme
|
||||
calamares-settings-debian
|
||||
calamares
|
||||
curl
|
||||
dbus-x11
|
||||
dconf-gsettings-backend
|
||||
desktop-base
|
||||
dkms
|
||||
dosfstools
|
||||
e2fsprogs
|
||||
exfat-fuse
|
||||
exfat-utils
|
||||
exo-utils
|
||||
firmware-linux
|
||||
firmware-linux-free
|
||||
firmware-linux-nonfree
|
||||
firmware-misc-nonfree
|
||||
gir1.2-webkit2-4.0
|
||||
gparted
|
||||
gnome-disk-utility
|
||||
grub-pc
|
||||
host
|
||||
initramfs-tools
|
||||
lightdm
|
||||
lightdm-gtk-greeter
|
||||
live-boot
|
||||
live-config
|
||||
locales
|
||||
locales-all
|
||||
menulibre
|
||||
mokutil
|
||||
mtools
|
||||
neofetch
|
||||
network-manager-gnome
|
||||
ntfs-3g
|
||||
ntp
|
||||
os-prober
|
||||
pavucontrol
|
||||
pulseaudio
|
||||
pulseaudio-module-zeroconf
|
||||
plymouth
|
||||
plymouth-label
|
||||
plymouth-themes
|
||||
python3-apt
|
||||
python3-bs4
|
||||
python3-pip
|
||||
python3-pyqt5.qtsvg
|
||||
python3-pyqt5.qtwebengine
|
||||
python3-pyqt5.qtwebkit
|
||||
python3-requests
|
||||
python3-tk
|
||||
python3-ttkthemes
|
||||
rsync
|
||||
screenfetch
|
||||
sqlite3
|
||||
sudo
|
||||
synaptic
|
||||
user-setup
|
||||
xdg-user-dirs
|
||||
xfce4
|
||||
xfce4-battery-plugin
|
||||
xfce4-clipman-plugin
|
||||
xfce4-notifyd
|
||||
xfce4-power-manager
|
||||
xfce4-power-manager-plugins
|
||||
xfce4-taskmanager
|
||||
xfce4-terminal
|
||||
xfce4-screenshooter
|
||||
xfce4-whiskermenu-plugin
|
||||
yad
|
||||
wireless-tools
|
||||
wget
|
||||
xauth
|
||||
xinit
|
||||
xorg
|
||||
f2fs-tools
|
||||
xfsprogs
|
||||
|
||||
" > ./config/package-lists/packages.list.chroot
|
||||
|
||||
|
||||
# Get packages used ONLY by the live-session, to be stored in /pool by `lb`.
|
||||
echo "# Packages required only by the live session.
|
||||
efibootmgr
|
||||
grub-common
|
||||
grub2-common
|
||||
grub-efi
|
||||
grub-efi-amd64
|
||||
grub-efi-amd64-bin
|
||||
grub-efi-amd64-signed
|
||||
grub-efi-ia32-bin
|
||||
libefiboot1
|
||||
libefivar1
|
||||
mokutil
|
||||
os-prober
|
||||
shim-helpers-amd64-signed
|
||||
shim-signed
|
||||
shim-signed-common
|
||||
shim-unsigned
|
||||
|
||||
" > ./config/package-lists/installer.list.binary
|
||||
|
||||
|
||||
# Setup the build directory structures
|
||||
#mkdir -p ./config/hooks/live
|
||||
mkdir -p ./config/hooks/normal
|
||||
|
||||
mkdir -p ./config/packages.chroot
|
||||
|
||||
mkdir -p ./config/includes.binary
|
||||
|
||||
mkdir -p ./config/includes.bootstrap/etc
|
||||
|
||||
mkdir -p ./config/includes.chroot/etc/apt
|
||||
mkdir -p ./config/includes.chroot/etc/apt/preferences.d
|
||||
mkdir -p ./config/includes.chroot/etc/calamares
|
||||
mkdir -p ./config/includes.chroot/etc/default
|
||||
mkdir -p ./config/includes.chroot/etc/lightdm
|
||||
mkdir -p ./config/includes.chroot/etc/live/config.conf.d
|
||||
mkdir -p ./config/includes.chroot/etc/skel/.config/autostart
|
||||
mkdir -p ./config/includes.chroot/etc/skel/.local/share
|
||||
mkdir -p ./config/includes.chroot/etc/skel/Desktop
|
||||
mkdir -p ./config/includes.chroot/etc/xdg/xfce4
|
||||
mkdir -p ./config/includes.chroot/opt/pepconf
|
||||
mkdir -p ./config/includes.chroot/opt/pypep/dbpep
|
||||
mkdir -p ./config/includes.chroot/opt/startpep
|
||||
mkdir -p ./config/includes.chroot/usr/bin
|
||||
mkdir -p ./config/includes.chroot/usr/sbin
|
||||
mkdir -p ./config/includes.chroot/usr/lib/live/config
|
||||
#mkdir -p ./config/includes.chroot/usr/lib/peppermint/ice
|
||||
mkdir -p ./config/includes.chroot/usr/share/applications
|
||||
mkdir -p ./config/includes.chroot/usr/share/backgrounds
|
||||
mkdir -p ./config/includes.chroot/usr/share/desktop-base
|
||||
mkdir -p ./config/includes.chroot/usr/share/fonts/pepconf
|
||||
mkdir -p ./config/includes.chroot/usr/share/icons/default
|
||||
#mkdir -p ./config/includes.chroot/usr/share/ice/locale
|
||||
mkdir -p ./config/includes.chroot/usr/share/peppermint
|
||||
mkdir -p ./config/includes.chroot/usr/share/pixmaps
|
||||
mkdir -p ./config/includes.chroot/usr/share/plymouth
|
||||
mkdir -p ./config/includes.chroot/usr/share/polkit-1/actions
|
||||
mkdir -p ./config/includes.chroot/usr/share/themes
|
||||
mkdir -p ./config/includes.chroot/usr/share/xfce4/helpers
|
||||
|
||||
|
||||
# Copy Multiple files to the bootstrap
|
||||
cp $uchinanchu/pepissue/* ./config/includes.bootstrap/etc/
|
||||
|
||||
|
||||
# Copy Single files to the chroot
|
||||
cp $uchinanchu/pepaliases/bash_aliases ./config/includes.chroot/etc/skel/.bash_aliases
|
||||
cp $uchinanchu/pepapplication/Install-peppermint.desktop ./config/includes.chroot/etc/skel/Desktop
|
||||
cp $uchinanchu/pepcal/adddesktopicon/add-calamares-desktop-icon ./config/includes.chroot/usr/bin
|
||||
cp $uchinanchu/pepcal/calamares_*_amd64.deb ./config/packages.chroot
|
||||
cp $uchinanchu/pepcal/calamares/netinstall-* ./config/includes.chroot/etc/calamares
|
||||
cp $uchinanchu/pepcal/calamares/settings.conf ./config/includes.chroot/etc/calamares
|
||||
cp $uchinanchu/pepcal/install-peppermint ./config/includes.chroot/usr/bin
|
||||
cp $uchinanchu/pepcal/sources-final ./config/includes.chroot/usr/sbin
|
||||
cp $uchinanchu/pepdb/welval.db ./config/includes.chroot/opt/pypep/dbpep
|
||||
cp $uchinanchu/peplightdm/lightdm.conf ./config/includes.chroot/etc/lightdm
|
||||
cp $uchinanchu/peplightdm/lightdm-gtk-greeter.conf ./config/includes.chroot/etc/lightdm
|
||||
cp $uchinanchu/../MakePackageLists.sh ./config/includes.chroot/usr/local/bin
|
||||
|
||||
|
||||
# Copy Multiple files to the chroot
|
||||
cp $uchinanchu/pepapplication/* ./config/includes.chroot/usr/share/applications
|
||||
cp $uchinanchu/pepdeffileman/xfce4/* ./config/includes.chroot/etc/xdg/xfce4
|
||||
cp $uchinanchu/pepdeffileman/helpers/* ./config/includes.chroot/usr/share/xfce4/helpers
|
||||
cp $uchinanchu/pepfont/* ./config/includes.chroot/usr/share/fonts/pepconf
|
||||
cp $uchinanchu/pepgrub/* ./config/includes.chroot/etc/default
|
||||
cp $uchinanchu/pepissue/* ./config/includes.chroot/etc
|
||||
cp $uchinanchu/pepissue/* ./config/includes.chroot/opt/pepconf
|
||||
cp $uchinanchu/peppinunstable/* ./config/includes.chroot/etc/apt/preferences.d
|
||||
cp $uchinanchu/peposrelease/* ./config/includes.chroot/usr/lib
|
||||
cp $uchinanchu/peposrelease/* ./config/includes.chroot/opt/pepconf
|
||||
cp $uchinanchu/peppackages/* ./config/packages.chroot
|
||||
cp $uchinanchu/peppolkit/* ./config/includes.chroot/usr/share/polkit-1/actions
|
||||
cp $uchinanchu/pepsources/* ./config/includes.chroot/etc/apt
|
||||
cp $uchinanchu/pepsources/* ./config/includes.chroot/opt
|
||||
cp $uchinanchu/pepuserconfig/* ./config/includes.chroot/etc/live/config.conf.d
|
||||
cp $uchinanchu/pephooks/live/0030-user-setup ./config/includes.chroot/usr/lib/live/config
|
||||
cp $uchinanchu/pephooks/normal/* ./config/hooks/normal
|
||||
cp $uchinanchu/PepProPixMaps/* ./config/includes.chroot/usr/share/pixmaps
|
||||
cp $uchinanchu/PepProTools/Welcome_auto.desktop ./config/includes.chroot/etc/skel/.config/autostart
|
||||
cp $uchinanchu/PepProTools/* ./config/includes.chroot/opt/pypep
|
||||
|
||||
|
||||
# Copy sub-directories and files recursively
|
||||
cp -dr $uchinanchu/pepicons/Numix ./config/includes.chroot/usr/share/icons
|
||||
cp -dr $uchinanchu/pepicons/Pepirus ./config/includes.chroot/usr/share/icons
|
||||
cp -dr $uchinanchu/pepicons/Pepirus-Dark ./config/includes.chroot/usr/share/icons
|
||||
cp -dr $uchinanchu/peptheme/Peppermint-10-Red-Dark ./config/includes.chroot/usr/share/themes
|
||||
|
||||
cp -r $uchinanchu/pepcal/calamares/branding ./config/includes.chroot/etc/calamares
|
||||
cp -r $uchinanchu/pepcal/calamares/modules ./config/includes.chroot/etc/calamares
|
||||
cp -r $uchinanchu/pepdesktopbase/desktop-base ./config/includes.chroot/usr/share/
|
||||
cp -r $uchinanchu/pepnemo/nemo ./config/includes.chroot/etc/skel/.config
|
||||
cp -r $uchinanchu/pepmenu/menus ./config/includes.chroot/etc/skel/.config
|
||||
cp -r $uchinanchu/pepplymouth/plymouth ./config/includes.chroot/usr/share/
|
||||
cp -r $uchinanchu/pepxfce/xfce4 ./config/includes.chroot/etc/skel/.config
|
||||
|
||||
|
||||
# Copy files for the skinny build from here
|
||||
cp $uchinanchu/pepunstable/pepcal/calamares/settings.conf ./config/includes.chroot/etc/calamares
|
||||
cp $uchinanchu/pepunstable/pepcal/calamares/modules/* ./config/includes.chroot/etc/calamares
|
||||
cp $uchinanchu/pepunstable/pepwallpaper/* ./config/includes.chroot/usr/share/backgrounds
|
||||
cp -r $uchinanchu/pepunstable/peploadersplash/boot ./config/includes.binary
|
||||
cp -r $uchinanchu/pepunstable/peploadersplash/isolinux ./config/includes.binary
|
||||
|
||||
|
||||
# Build the ISO #
|
||||
lb build #--debug --verbose
|
||||
|
|
@ -1,284 +0,0 @@
|
|||
#!/bin/bash
|
||||
PATH="/sbin:/usr/sbin:/usr/local/sbin:$PATH"
|
||||
|
||||
# Set the working folder variable
|
||||
uchinanchu="$(pwd)"
|
||||
|
||||
|
||||
# This cleanup might be better served in the BldHelper*.sh script.
|
||||
# Create the build folder, move into it removing stale mountpoints and files there.
|
||||
[ -e fusato ] && [ ! -d fusato ] && rm -f fusato || [ ! -e fusato ] && mkdir fusato
|
||||
cd fusato
|
||||
|
||||
# Within the build, can be layered mounts inside multiple chroots.
|
||||
umount $(mount | grep "${PWD}/chroot" | tac | cut -f3 -d" ") 2>/dev/null
|
||||
for i in ./* ./.build ./cache/bootstrap ./cache/contents.chroot ; do [ $i = ./cache ] && continue || rm -rf $i ; done
|
||||
|
||||
#exit
|
||||
|
||||
# Set of the structure to be used for the ISO and Live system.
|
||||
# See /usr/lib/live/build/config for a full list of examples.
|
||||
# Up above is the manual description of what options I used so far.
|
||||
lb config \
|
||||
--clean \
|
||||
--color \
|
||||
--quiet \
|
||||
--archive-areas "main contrib non-free" \
|
||||
--architectures amd64 \
|
||||
--apt-recommends true \
|
||||
--backports true \
|
||||
--binary-images iso-hybrid \
|
||||
--cache true \
|
||||
--mode debian \
|
||||
--distribution bullseye \
|
||||
--firmware-binary true \
|
||||
--firmware-chroot true \
|
||||
--iso-application "PeppermintOS" \
|
||||
--iso-preparer "PeppermintOS-https://peppermintos.com/" \
|
||||
--iso-publisher "Peppermint OS Team" \
|
||||
--iso-volume "PeppermintOS" \
|
||||
--image-name "PepOS" \
|
||||
--linux-flavours amd64 \
|
||||
--security true \
|
||||
--updates true \
|
||||
--win32-loader false \
|
||||
--checksums sha512 \
|
||||
--zsync false \
|
||||
|
||||
|
||||
# Install the XFCE Desktop
|
||||
mkdir -p $uchinanchu/fusato/config/package-lists/
|
||||
echo xfce4 > $uchinanchu/fusato/config/package-lists/desktop.list.chroot
|
||||
|
||||
# Install software
|
||||
echo "# Install software to the squashfs for calamares to unpack to the OS.
|
||||
adwaita-icon-theme
|
||||
alsa-utils
|
||||
arandr
|
||||
arc-theme
|
||||
bluez
|
||||
bluez-firmware
|
||||
calamares-settings-debian
|
||||
calamares
|
||||
cryptsetup
|
||||
cryptsetup-initramfs
|
||||
curl
|
||||
cups
|
||||
dconf-editor
|
||||
dkms
|
||||
dbus-x11
|
||||
efibootmgr
|
||||
firmware-linux
|
||||
firmware-linux-nonfree
|
||||
firmware-misc-nonfree
|
||||
firmware-realtek
|
||||
firmware-atheros
|
||||
firmware-bnx2
|
||||
firmware-bnx2x
|
||||
firmware-brcm80211
|
||||
firmware-intelwimax
|
||||
firmware-iwlwifi
|
||||
firmware-libertas
|
||||
firmware-netxen
|
||||
firmware-zd1211
|
||||
firmware-ralink
|
||||
fonts-cantarell
|
||||
fonts-liberation
|
||||
gdebi
|
||||
gir1.2-webkit2-4.0
|
||||
git
|
||||
gparted
|
||||
gnome-disk-utility
|
||||
gnome-system-tools
|
||||
grub-pc
|
||||
gvfs-backends
|
||||
inputattach
|
||||
inxi
|
||||
locales
|
||||
locales-all
|
||||
menulibre
|
||||
nemo
|
||||
neofetch
|
||||
network-manager-gnome
|
||||
ntp
|
||||
nvidia-detect
|
||||
os-prober
|
||||
python3-pip
|
||||
python3-tk
|
||||
python3-bs4
|
||||
python3-requests
|
||||
python3-ttkthemes
|
||||
python3-pyqt5
|
||||
python3-pyqt5.qtsvg
|
||||
python3-pyqt5.qtwebkit
|
||||
python3-apt
|
||||
screenfetch
|
||||
simple-scan
|
||||
smbclient
|
||||
smartmontools
|
||||
sqlite3
|
||||
synaptic
|
||||
system-config-printer
|
||||
mousepad
|
||||
xfce4-battery-plugin
|
||||
xfce4-clipman-plugin
|
||||
xfce4-power-manager
|
||||
xfce4-taskmanager
|
||||
xfce4-terminal
|
||||
xfce4-screenshooter
|
||||
xfce4-whiskermenu-plugin
|
||||
yad
|
||||
wireless-tools
|
||||
wget
|
||||
f2fs-tools
|
||||
xfsprogs
|
||||
|
||||
" > $uchinanchu/fusato/config/package-lists/packages.list.chroot
|
||||
|
||||
|
||||
# Packages to be stored in /pool but not installed in the OS .
|
||||
echo "# These packages are available to the installer, for offline use.
|
||||
efibootmgr
|
||||
grub-common
|
||||
grub2-common
|
||||
grub-efi
|
||||
grub-efi-amd64
|
||||
grub-efi-amd64-bin
|
||||
grub-efi-amd64-signed
|
||||
grub-efi-ia32-bin
|
||||
libefiboot1
|
||||
libefivar1
|
||||
mokutil
|
||||
os-prober
|
||||
shim-helpers-amd64-signed
|
||||
shim-signed
|
||||
shim-signed-common
|
||||
shim-unsigned
|
||||
|
||||
" > $uchinanchu/fusato/config/package-lists/installer.list.binary
|
||||
|
||||
|
||||
# Setup the chroot structure
|
||||
mkdir -p $uchinanchu/fusato/config/includes.binary
|
||||
mkdir -p $uchinanchu/fusato/config/includes.bootstrap/etc/apt
|
||||
mkdir -p $uchinanchu/fusato/config/includes.chroot/usr/local/bin
|
||||
mkdir -p $uchinanchu/fusato/config/includes.chroot/usr/share/applications
|
||||
mkdir -p $uchinanchu/fusato/config/includes.chroot/usr/share/backgrounds
|
||||
mkdir -p $uchinanchu/fusato/config/includes.chroot/usr/share/desktop-base
|
||||
mkdir -p $uchinanchu/fusato/config/includes.chroot/usr/share/icons/default
|
||||
mkdir -p $uchinanchu/fusato/config/includes.chroot/usr/share/themes
|
||||
mkdir -p $uchinanchu/fusato/config/includes.chroot/usr/share/peppermint
|
||||
mkdir -p $uchinanchu/fusato/config/includes.chroot/usr/share/pixmaps
|
||||
mkdir -p $uchinanchu/fusato/config/includes.chroot/usr/share/plymouth
|
||||
#mkdir -p $uchinanchu/fusato/config/includes.chroot/usr/share/ice/locale
|
||||
mkdir -p $uchinanchu/fusato/config/includes.chroot/usr/share/xfce4/helpers
|
||||
mkdir -p $uchinanchu/fusato/config/includes.chroot/usr/share/polkit-1/actions
|
||||
mkdir -p $uchinanchu/fusato/config/includes.chroot/usr/share/fonts/pepconf
|
||||
mkdir -p $uchinanchu/fusato/config/includes.chroot/usr/bin
|
||||
mkdir -p $uchinanchu/fusato/config/includes.chroot/usr/sbin
|
||||
mkdir -p $uchinanchu/fusato/config/includes.chroot/usr/lib/live/config
|
||||
#mkdir -p $uchinanchu/fusato/config/includes.chroot/usr/lib/peppermint/ice
|
||||
mkdir -p $uchinanchu/fusato/config/includes.chroot/etc/apt
|
||||
mkdir -p $uchinanchu/fusato/config/includes.chroot/etc/apt/preferences.d
|
||||
mkdir -p $uchinanchu/fusato/config/includes.chroot/etc/apt/sources.list.d
|
||||
mkdir -p $uchinanchu/fusato/config/includes.chroot/etc/calamares
|
||||
mkdir -p $uchinanchu/fusato/config/includes.chroot/etc/default
|
||||
mkdir -p $uchinanchu/fusato/config/includes.chroot/etc/lightdm
|
||||
mkdir -p $uchinanchu/fusato/config/includes.chroot/etc/live/config.conf.d
|
||||
mkdir -p $uchinanchu/fusato/config/includes.chroot/etc/skel/.config/autostart
|
||||
mkdir -p $uchinanchu/fusato/config/includes.chroot/etc/skel/.local/share
|
||||
mkdir -p $uchinanchu/fusato/config/includes.chroot/etc/xdg/xfce4
|
||||
mkdir -p $uchinanchu/fusato/config/includes.chroot/opt
|
||||
mkdir -p $uchinanchu/fusato/config/includes.chroot/opt/pypep
|
||||
mkdir -p $uchinanchu/fusato/config/includes.chroot/opt/pypep/dbpep
|
||||
mkdir -p $uchinanchu/fusato/config/includes.chroot/opt/startpep
|
||||
mkdir -p $uchinanchu/fusato/config/includes.chroot/opt/pepconf
|
||||
|
||||
#mkdir -p $uchinanchu/fusato/config/hooks/live
|
||||
mkdir -p $uchinanchu/fusato/config/hooks/normal
|
||||
mkdir -p $uchinanchu/fusato/config/packages.chroot
|
||||
|
||||
# Resolves Synaptics issue. Might be better in a conf hook.
|
||||
mkdir -p $uchinanchu/fusato/config/includes.chroot/usr/share/distro-info
|
||||
mkdir -p $uchinanchu/fusato/config/includes.chroot/usr/share/python-apt/templates
|
||||
ln -s Debian.info $uchinanchu/fusato/config/includes.chroot/usr/share/python-apt/templates/Peppermint.info
|
||||
ln -s Debian.mirrors $uchinanchu/fusato/config/includes.chroot/usr/share/python-apt/templates/Peppermint.mirrors
|
||||
ln -s debian.csv $uchinanchu/fusato/config/includes.chroot/usr/share/distro-info/peppermint.csv
|
||||
|
||||
|
||||
# Copy single files to the chroot
|
||||
cp $uchinanchu/pepcal/adddesktopicon/add-calamares-desktop-icon $uchinanchu/fusato/config/includes.chroot/usr/bin
|
||||
cp $uchinanchu/pepcal/calamares/netinstall-* $uchinanchu/fusato/config/includes.chroot/etc/calamares
|
||||
cp $uchinanchu/pepcal/calamares/settings.conf $uchinanchu/fusato/config/includes.chroot/etc/calamares
|
||||
cp $uchinanchu/pepcal/calamares_*_amd64.deb $uchinanchu/fusato/config/packages.chroot
|
||||
cp $uchinanchu/pepcal/install-peppermint $uchinanchu/fusato/config/includes.chroot/usr/bin
|
||||
cp $uchinanchu/pepcal/sources-final $uchinanchu/fusato/config/includes.chroot/usr/sbin
|
||||
cp $uchinanchu/peplightdm/lightdm.conf $uchinanchu/fusato/config/includes.chroot/etc/lightdm
|
||||
cp $uchinanchu/peplightdm/lightdm-gtk-greeter.conf $uchinanchu/fusato/config/includes.chroot/etc/lightdm
|
||||
cp $uchinanchu/../MakePackageLists.sh $uchinanchu/fusato/config/includes.chroot/usr/local/bin
|
||||
cp $uchinanchu/PepProTools/xDaily $uchinanchu/fusato/config/includes.chroot/usr/local/bin
|
||||
cp $uchinanchu/PepProTools/Welcome_auto.desktop $uchinanchu/fusato/config/includes.chroot/etc/skel/.config/autostart
|
||||
|
||||
# Copy directory contents to the chroot
|
||||
cp $uchinanchu/pepapplication/* $uchinanchu/fusato/config/includes.chroot/usr/share/applications
|
||||
cp $uchinanchu/pepdeffileman/xfce4/* $uchinanchu/fusato/config/includes.chroot/etc/xdg/xfce4
|
||||
cp $uchinanchu/pepdeffileman/helpers/* $uchinanchu/fusato/config/includes.chroot/usr/share/xfce4/helpers
|
||||
cp $uchinanchu/pepfont/* $uchinanchu/fusato/config/includes.chroot/usr/share/fonts/pepconf
|
||||
cp $uchinanchu/pepgrub/* $uchinanchu/fusato/config/includes.chroot/etc/default
|
||||
cp $uchinanchu/pephooks/live/* $uchinanchu/fusato/config/includes.chroot/usr/lib/live/config
|
||||
cp $uchinanchu/pephooks/normal/* $uchinanchu/fusato/config/hooks/normal
|
||||
cp $uchinanchu/pepissue/* $uchinanchu/fusato/config/includes.bootstrap/etc
|
||||
cp $uchinanchu/pepissue/* $uchinanchu/fusato/config/includes.chroot/etc
|
||||
cp $uchinanchu/pepissue/* $uchinanchu/fusato/config/includes.chroot/opt/pepconf
|
||||
cp $uchinanchu/peposrelease/* $uchinanchu/fusato/config/includes.chroot/opt/pepconf
|
||||
cp $uchinanchu/peposrelease/* $uchinanchu/fusato/config/includes.chroot/usr/lib
|
||||
cp $uchinanchu/peppackages/* $uchinanchu/fusato/config/packages.chroot
|
||||
cp $uchinanchu/peppinunstable/* $uchinanchu/fusato/config/includes.chroot/etc/apt/preferences.d
|
||||
cp $uchinanchu/peppolkit/* $uchinanchu/fusato/config/includes.chroot/usr/share/polkit-1/actions
|
||||
cp $uchinanchu/pepsources/* $uchinanchu/fusato/config/includes.chroot/opt
|
||||
cp $uchinanchu/pepstartpage/* $uchinanchu/fusato/config/includes.chroot/opt/startpep
|
||||
cp $uchinanchu/pepdb/* $uchinanchu/fusato/config/includes.chroot/opt/pypep/dbpep
|
||||
cp $uchinanchu/pepuserconfig/* $uchinanchu/fusato/config/includes.chroot/etc/live/config.conf.d
|
||||
cp $uchinanchu/pepwallpaper/* $uchinanchu/fusato/config/includes.chroot/usr/share/backgrounds
|
||||
cp $uchinanchu/PepProPixMaps/* $uchinanchu/fusato/config/includes.chroot/usr/share/pixmaps
|
||||
cp $uchinanchu/PepProTools/* $uchinanchu/fusato/config/includes.chroot/opt/pypep
|
||||
|
||||
# Copy recursive files and sub-directories, containing symlinks.
|
||||
cp -dr $uchinanchu/pepicons/Numix $uchinanchu/fusato/config/includes.chroot/usr/share/icons
|
||||
cp -dr $uchinanchu/pepicons/Pepirus $uchinanchu/fusato/config/includes.chroot/usr/share/icons
|
||||
cp -dr $uchinanchu/pepicons/Pepirus-Dark $uchinanchu/fusato/config/includes.chroot/usr/share/icons
|
||||
cp -dr $uchinanchu/peptheme/Arc-Red $uchinanchu/fusato/config/includes.chroot/usr/share/themes
|
||||
cp -dr $uchinanchu/peptheme/Arc-Green $uchinanchu/fusato/config/includes.chroot/usr/share/themes
|
||||
cp -dr $uchinanchu/peptheme/Arc-Blue $uchinanchu/fusato/config/includes.chroot/usr/share/themes
|
||||
cp -dr $uchinanchu/peptheme/Arc-Green-Dark $uchinanchu/fusato/config/includes.chroot/usr/share/themes
|
||||
cp -dr $uchinanchu/peptheme/Arc-Teal-Dark $uchinanchu/fusato/config/includes.chroot/usr/share/themes
|
||||
cp -dr $uchinanchu/peptheme/Arc-Red-Dark $uchinanchu/fusato/config/includes.chroot/usr/share/themes
|
||||
cp -dr $uchinanchu/peptheme/Peppermint-10-Red-Dark $uchinanchu/fusato/config/includes.chroot/usr/share/themes
|
||||
|
||||
cp -r $uchinanchu/pepcal/calamares/branding $uchinanchu/fusato/config/includes.chroot/etc/calamares
|
||||
cp -r $uchinanchu/pepcal/calamares/modules $uchinanchu/fusato/config/includes.chroot/etc/calamares
|
||||
cp -r $uchinanchu/pepdesktopbase/desktop-base $uchinanchu/fusato/config/includes.chroot/usr/share/
|
||||
cp -r $uchinanchu/peploadersplash/boot $uchinanchu/fusato/config/includes.binary
|
||||
cp -r $uchinanchu/peploadersplash/isolinux $uchinanchu/fusato/config/includes.binary
|
||||
cp -r $uchinanchu/pepmenu/menus $uchinanchu/fusato/config/includes.chroot/etc/skel/.config
|
||||
cp -r $uchinanchu/pepnemo/nemo $uchinanchu/fusato/config/includes.chroot/etc/skel/.config
|
||||
cp -r $uchinanchu/pepplymouth/plymouth $uchinanchu/fusato/config/includes.chroot/usr/share/
|
||||
cp -r $uchinanchu/pepxfce/xfce4 $uchinanchu/fusato/config/includes.chroot/etc/skel/.config
|
||||
|
||||
|
||||
# Place files unique to Testing builds here.
|
||||
cp $uchinanchu/peptesting/pepaliases/bash_aliases $uchinanchu/fusato/config/includes.chroot/etc/skel/.bash_aliases
|
||||
cp $uchinanchu/peptesting/pepcal/install-peppermint $uchinanchu/fusato/config/includes.chroot/usr/bin
|
||||
cp $uchinanchu/peptesting/pepcal/calamares/settings.conf $uchinanchu/fusato/config/includes.chroot/etc/calamares
|
||||
cp $uchinanchu/peptesting/pepcal/sources-final $uchinanchu/fusato/config/includes.chroot/usr/sbin
|
||||
cp $uchinanchu/peptesting/pepcal/calamares_*_amd64.deb $uchinanchu/fusato/config/packages.chroot
|
||||
#cp $uchinanchu/peptesting/peppackages/ice_6.0.6_all.deb $uchinanchu/fusato/config/packages.chroot
|
||||
cp $uchinanchu/peptesting/peppinunstable/* $uchinanchu/fusato/config/includes.chroot/etc/apt/preferences.d
|
||||
cp -r $uchinanchu/peptesting/pepcal/calamares/modules $uchinanchu/fusato/config/includes.chroot/etc/calamares
|
||||
cp -r $uchinanchu/peptesting/peploadersplash/boot $uchinanchu/fusato/config/includes.binary
|
||||
cp -r $uchinanchu/peptesting/peploadersplash/isolinux $uchinanchu/fusato/config/includes.binary
|
||||
cp -r $uchinanchu/peptesting/pepxfce/xfce4 $uchinanchu/fusato/config/includes.chroot/etc/skel/.config
|
||||
|
||||
# Build the ISO #
|
||||
lb build #--debug --verbose
|
||||
|
|
@ -1,269 +0,0 @@
|
|||
#!/bin/bash
|
||||
PATH="/sbin:/usr/sbin:/usr/local/sbin:$PATH"
|
||||
#exec 3>&1 4>&2
|
||||
#trap 'exec 2>&4 1>&3' 0 1 2 3
|
||||
#exec 1>log.out 2>&1
|
||||
|
||||
|
||||
# Set the working folder variable
|
||||
uchinanchu="$(pwd)"
|
||||
|
||||
|
||||
# Create the build folder, move into it and remove unneeded files there.
|
||||
[ -e fusato ] && [ ! -d fusato ] && (rm -f fusato ; mkdir fusato) || mkdir fusato
|
||||
cd fusato
|
||||
umount -v $(mount | grep "${PWD}/chroot" | tac | cut -f3 -d" ") 2>/dev/null
|
||||
for i in ./* ./.build ./cache/bootstrap ./cache/contents.chroot ; do [ $i = ./cache ] && continue || rm -rf $i ; done
|
||||
|
||||
|
||||
# Set of the structure to be used for the ISO and Live system.
|
||||
# See /usr/lib/live/build/config for a full list of examples.
|
||||
# Up above is the manual description of what options I used so far.
|
||||
lb config \
|
||||
--clean \
|
||||
--color \
|
||||
--quiet \
|
||||
--archive-areas "main contrib non-free" \
|
||||
--architectures amd64 \
|
||||
--apt-recommends false \
|
||||
--backports true \
|
||||
--binary-images iso-hybrid \
|
||||
--cache true \
|
||||
--mode debian \
|
||||
--distribution bullseye \
|
||||
--firmware-binary true \
|
||||
--firmware-chroot true \
|
||||
--iso-application "PeppermintOS" \
|
||||
--iso-preparer "PeppermintOS-https://peppermintos.com/" \
|
||||
--iso-publisher "Peppermint OS Team" \
|
||||
--iso-volume "PeppermintOS" \
|
||||
--image-name "PepOS" \
|
||||
--linux-flavours amd64 \
|
||||
--security true \
|
||||
--updates true \
|
||||
--win32-loader false \
|
||||
--checksums sha512 \
|
||||
--zsync false \
|
||||
|
||||
|
||||
# Install the XFCE Desktop
|
||||
mkdir -p ./config/package-lists/
|
||||
echo xfce4 > ./config/package-lists/desktop.list.chroot
|
||||
|
||||
# Install software
|
||||
echo "# Install software to the squashfs for calamares to unpack to the OS.
|
||||
arandr
|
||||
arc-theme
|
||||
calamares-settings-debian
|
||||
calamares
|
||||
curl
|
||||
dbus-x11
|
||||
dconf-editor
|
||||
dconf-gsettings-backend
|
||||
desktop-base
|
||||
dkms
|
||||
dmraid
|
||||
dosfstools
|
||||
e2fsprogs
|
||||
exo-utils
|
||||
firmware-linux
|
||||
firmware-linux-free
|
||||
firmware-linux-nonfree
|
||||
firmware-misc-nonfree
|
||||
gir1.2-webkit2-4.0
|
||||
gparted
|
||||
gnome-disk-utility
|
||||
grub-pc
|
||||
host
|
||||
initramfs-tools
|
||||
libnss3
|
||||
libnss-mdns
|
||||
lightdm
|
||||
lightdm-gtk-greeter
|
||||
live-boot
|
||||
live-config
|
||||
locales
|
||||
locales-all
|
||||
menulibre
|
||||
mokutil
|
||||
mtools
|
||||
neofetch
|
||||
network-manager-gnome
|
||||
ntfs-3g
|
||||
ntp
|
||||
os-prober
|
||||
pavucontrol
|
||||
pulseaudio
|
||||
pulseaudio-module-zeroconf
|
||||
plymouth
|
||||
plymouth-label
|
||||
plymouth-themes
|
||||
python3-apt
|
||||
python3-bs4
|
||||
python3-pip
|
||||
python3-pyqt5.qtsvg
|
||||
python3-pyqt5.qtwebengine
|
||||
python3-pyqt5.qtwebkit
|
||||
python3-requests
|
||||
python3-tk
|
||||
python3-ttkthemes
|
||||
rsync
|
||||
screenfetch
|
||||
sqlite3
|
||||
sudo
|
||||
synaptic
|
||||
user-setup
|
||||
xdg-user-dirs
|
||||
xfce4
|
||||
xfce4-battery-plugin
|
||||
xfce4-clipman-plugin
|
||||
xfce4-notifyd
|
||||
xfce4-power-manager
|
||||
xfce4-power-manager-plugins
|
||||
xfce4-taskmanager
|
||||
xfce4-terminal
|
||||
xfce4-screenshooter
|
||||
xfce4-whiskermenu-plugin
|
||||
yad
|
||||
wireless-tools
|
||||
wget
|
||||
xauth
|
||||
xinit
|
||||
xorg
|
||||
f2fs-tools
|
||||
xfsprogs
|
||||
|
||||
" > ./config/package-lists/packages.list.chroot
|
||||
|
||||
|
||||
# Get packages used ONLY by the live-session, to be stored in /pool by `lb`.
|
||||
echo "# Packages required only by the live session.
|
||||
efibootmgr
|
||||
grub-common
|
||||
grub2-common
|
||||
grub-efi
|
||||
grub-efi-amd64
|
||||
grub-efi-amd64-bin
|
||||
grub-efi-amd64-signed
|
||||
grub-efi-ia32-bin
|
||||
libefiboot1
|
||||
libefivar1
|
||||
mokutil
|
||||
os-prober
|
||||
shim-helpers-amd64-signed
|
||||
shim-signed
|
||||
shim-signed-common
|
||||
shim-unsigned
|
||||
|
||||
" > ./config/package-lists/installer.list.binary
|
||||
|
||||
|
||||
# Setup the build directory structures
|
||||
#mkdir -p ./config/hooks/live
|
||||
mkdir -p ./config/hooks/normal
|
||||
|
||||
mkdir -p ./config/packages.chroot
|
||||
|
||||
mkdir -p ./config/includes.binary
|
||||
|
||||
mkdir -p ./config/includes.bootstrap/etc
|
||||
|
||||
mkdir -p ./config/includes.chroot/etc/apt
|
||||
mkdir -p ./config/includes.chroot/etc/apt/preferences.d
|
||||
mkdir -p ./config/includes.chroot/etc/calamares
|
||||
mkdir -p ./config/includes.chroot/etc/default
|
||||
mkdir -p ./config/includes.chroot/etc/lightdm
|
||||
mkdir -p ./config/includes.chroot/etc/live/config.conf.d
|
||||
mkdir -p ./config/includes.chroot/etc/skel/.config/autostart
|
||||
mkdir -p ./config/includes.chroot/etc/skel/.local/share
|
||||
mkdir -p ./config/includes.chroot/etc/skel/Desktop
|
||||
mkdir -p ./config/includes.chroot/etc/xdg/xfce4
|
||||
mkdir -p ./config/includes.chroot/opt/pepconf
|
||||
mkdir -p ./config/includes.chroot/opt/pypep/dbpep
|
||||
mkdir -p ./config/includes.chroot/opt/startpep
|
||||
mkdir -p ./config/includes.chroot/usr/bin
|
||||
mkdir -p ./config/includes.chroot/usr/sbin
|
||||
mkdir -p ./config/includes.chroot/usr/lib/live/config
|
||||
#mkdir -p ./config/includes.chroot/usr/lib/peppermint/ice
|
||||
mkdir -p ./config/includes.chroot/usr/share/applications
|
||||
mkdir -p ./config/includes.chroot/usr/share/backgrounds
|
||||
mkdir -p ./config/includes.chroot/usr/share/desktop-base
|
||||
mkdir -p ./config/includes.chroot/usr/share/fonts/pepconf
|
||||
mkdir -p ./config/includes.chroot/usr/share/icons/default
|
||||
#mkdir -p ./config/includes.chroot/usr/share/ice/locale
|
||||
mkdir -p ./config/includes.chroot/usr/share/peppermint
|
||||
mkdir -p ./config/includes.chroot/usr/share/pixmaps
|
||||
mkdir -p ./config/includes.chroot/usr/share/plymouth
|
||||
mkdir -p ./config/includes.chroot/usr/share/polkit-1/actions
|
||||
mkdir -p ./config/includes.chroot/usr/share/themes
|
||||
mkdir -p ./config/includes.chroot/usr/share/xfce4/helpers
|
||||
|
||||
|
||||
# Copy Multiple files to the bootstrap
|
||||
cp $uchinanchu/pepissue/* ./config/includes.bootstrap/etc/
|
||||
|
||||
|
||||
# Copy Single files to the chroot
|
||||
cp $uchinanchu/pepaliases/bash_aliases ./config/includes.chroot/etc/skel/.bash_aliases
|
||||
cp $uchinanchu/pepapplication/Install-peppermint.desktop ./config/includes.chroot/etc/skel/Desktop
|
||||
cp $uchinanchu/pepcal/adddesktopicon/add-calamares-desktop-icon ./config/includes.chroot/usr/bin
|
||||
cp $uchinanchu/pepcal/calamares/netinstall-* ./config/includes.chroot/etc/calamares
|
||||
cp $uchinanchu/pepcal/calamares/settings.conf ./config/includes.chroot/etc/calamares
|
||||
cp $uchinanchu/pepcal/calamares_*_amd64.deb ./config/packages.chroot
|
||||
cp $uchinanchu/pepcal/install-peppermint ./config/includes.chroot/usr/bin
|
||||
cp $uchinanchu/pepcal/sources-final ./config/includes.chroot/usr/sbin
|
||||
cp $uchinanchu/pepdb/welval.db ./config/includes.chroot/opt/pypep/dbpep
|
||||
cp $uchinanchu/peplightdm/lightdm.conf ./config/includes.chroot/etc/lightdm
|
||||
cp $uchinanchu/peplightdm/lightdm-gtk-greeter.conf ./config/includes.chroot/etc/lightdm
|
||||
cp $uchinanchu/../MakePackageLists.sh $uchinanchu/fusato/config/includes.chroot/usr/local/bin
|
||||
|
||||
|
||||
# Copy Multiple files to the chroot
|
||||
cp $uchinanchu/pepapplication/* ./config/includes.chroot/usr/share/applications
|
||||
cp $uchinanchu/pepdeffileman/xfce4/* ./config/includes.chroot/etc/xdg/xfce4
|
||||
cp $uchinanchu/pepdeffileman/helpers/* ./config/includes.chroot/usr/share/xfce4/helpers
|
||||
cp $uchinanchu/pepfont/* ./config/includes.chroot/usr/share/fonts/pepconf
|
||||
cp $uchinanchu/pepgrub/* ./config/includes.chroot/etc/default
|
||||
cp $uchinanchu/pepissue/* ./config/includes.chroot/etc
|
||||
cp $uchinanchu/pepissue/* ./config/includes.chroot/opt/pepconf
|
||||
cp $uchinanchu/peppinunstable/* ./config/includes.chroot/etc/apt/preferences.d
|
||||
cp $uchinanchu/peposrelease/* ./config/includes.chroot/usr/lib
|
||||
cp $uchinanchu/peposrelease/* ./config/includes.chroot/opt/pepconf
|
||||
cp $uchinanchu/peppackages/* ./config/packages.chroot
|
||||
cp $uchinanchu/peppolkit/* ./config/includes.chroot/usr/share/polkit-1/actions
|
||||
cp $uchinanchu/pepsources/* ./config/includes.chroot/etc/apt
|
||||
cp $uchinanchu/pepsources/* ./config/includes.chroot/opt
|
||||
cp $uchinanchu/pepuserconfig/* ./config/includes.chroot/etc/live/config.conf.d
|
||||
cp $uchinanchu/pephooks/live/0030-user-setup ./config/includes.chroot/usr/lib/live/config
|
||||
cp $uchinanchu/pephooks/normal/* ./config/hooks/normal
|
||||
cp $uchinanchu/PepProPixMaps/* ./config/includes.chroot/usr/share/pixmaps
|
||||
cp $uchinanchu/PepProTools/Welcome_auto.desktop ./config/includes.chroot/etc/skel/.config/autostart
|
||||
cp $uchinanchu/PepProTools/* ./config/includes.chroot/opt/pypep
|
||||
|
||||
|
||||
# Copy sub-directories and files recursively
|
||||
cp -dr $uchinanchu/pepicons/Numix ./config/includes.chroot/usr/share/icons
|
||||
cp -dr $uchinanchu/pepicons/Pepirus ./config/includes.chroot/usr/share/icons
|
||||
cp -dr $uchinanchu/pepicons/Pepirus-Dark ./config/includes.chroot/usr/share/icons
|
||||
cp -dr $uchinanchu/peptheme/Peppermint-10-Red-Dark ./config/includes.chroot/usr/share/themes
|
||||
|
||||
cp -r $uchinanchu/pepcal/calamares/branding ./config/includes.chroot/etc/calamares
|
||||
cp -r $uchinanchu/pepcal/calamares/modules ./config/includes.chroot/etc/calamares
|
||||
cp -r $uchinanchu/pepdesktopbase/desktop-base ./config/includes.chroot/usr/share/
|
||||
cp -r $uchinanchu/pepnemo/nemo ./config/includes.chroot/etc/skel/.config
|
||||
cp -r $uchinanchu/pepmenu/menus ./config/includes.chroot/etc/skel/.config
|
||||
cp -r $uchinanchu/pepplymouth/plymouth ./config/includes.chroot/usr/share/
|
||||
cp -r $uchinanchu/pepxfce/xfce4 ./config/includes.chroot/etc/skel/.config
|
||||
|
||||
|
||||
# Copy files for the skinny build from here
|
||||
cp $uchinanchu/pepunstable/pepcal/calamares/settings.conf ./config/includes.chroot/etc/calamares
|
||||
cp $uchinanchu/pepunstable/pepcal/calamares/modules/* ./config/includes.chroot/etc/calamares
|
||||
cp $uchinanchu/pepunstable/pepwallpaper/* ./config/includes.chroot/usr/share/backgrounds
|
||||
cp -r $uchinanchu/pepunstable/peploadersplash/boot ./config/includes.binary
|
||||
cp -r $uchinanchu/pepunstable/peploadersplash/isolinux ./config/includes.binary
|
||||
|
||||
|
||||
# Build the ISO #
|
||||
lb build #--debug --verbose
|
||||
|
|
@ -1,56 +0,0 @@
|
|||
---
|
||||
# This is the URL that is retrieved to get the netinstall groups-and-packages
|
||||
# data (which should be in the format described in netinstall.yaml), e.g.:
|
||||
# groupsUrl: http://example.org/netinstall.php
|
||||
# or it can be a locally installed file:
|
||||
# groupsUrl: file:///usr/share/calamares/netinstall.yaml
|
||||
#
|
||||
# Note that the contents of the groups file is the **important**
|
||||
# part of the configuration of this module. It specifies what
|
||||
# the user may select and what commands are to be run.
|
||||
#
|
||||
# The format of the groups file is documented in `README.md`.
|
||||
#
|
||||
# As a special case, setting *groupsUrl* to the literal string
|
||||
# `local` means that the data is obtained from **this** config
|
||||
# file, under the key *groups*.
|
||||
#
|
||||
groupsUrl: file:///etc/calamares/modules/netinstall-packages.yaml
|
||||
|
||||
# If the installation can proceed without netinstall (e.g. the Live CD
|
||||
# can create a working installed system, but netinstall is preferred
|
||||
# to bring it up-to-date or extend functionality) leave this set to
|
||||
# false (the default). If set to true, the netinstall data is required.
|
||||
#
|
||||
# This only has an effect if the netinstall data cannot be retrieved,
|
||||
# or is corrupt: having "required" set, means the install cannot proceed.
|
||||
required: false
|
||||
|
||||
# To support multiple instances of this module,
|
||||
# some strings are configurable and translatable here.
|
||||
# - *sidebar* This is the name of the module in the progress-tree / sidebar
|
||||
# in Calamares.
|
||||
# - *title* This is displayed above the list of packages.
|
||||
# If no *sidebar* values are provided, defaults to "Package selection"
|
||||
# and existing translations. If no *title* values are provided, no string
|
||||
# is displayed.
|
||||
#
|
||||
# The following strings are already known to Calamares and can be
|
||||
# listed here in *untranslated* form (e.g. as value of *sidebar*)
|
||||
# without bothering with the translations: they are picked up from
|
||||
# the regular translation framework:
|
||||
# - "Package selection"
|
||||
# - "Office software"
|
||||
# - "Office package"
|
||||
# - "Browser software"
|
||||
# - "Browser package"
|
||||
# - "Web browser"
|
||||
label:
|
||||
sidebar: "Packages"
|
||||
sidebar[nl]: "Package selection"
|
||||
sidebar[pt]: "Seleção de pacotes"
|
||||
sidebar[ja]: "パッケージの選択"
|
||||
title: "Packages"
|
||||
title[nl]: "Package selection"
|
||||
title[pt]: "Seleção de pacotes"
|
||||
title[ja]: "パッケージの選択"
|
|
@ -1,743 +0,0 @@
|
|||
- name: " Developers Choice "
|
||||
description: " A much smaller subset of packages than listed below"
|
||||
- epiphany-browser
|
||||
- falkon
|
||||
- firefox-esr
|
||||
- chromium
|
||||
- konqueror
|
||||
- luakit
|
||||
- midori
|
||||
- qutebrowser
|
||||
- torbrowser-launcher
|
||||
- transmission
|
||||
- youtube-dl
|
||||
- arandr
|
||||
- atril
|
||||
- dconf-editor
|
||||
- gpicview
|
||||
- mate-calc
|
||||
- parole
|
||||
- pmount
|
||||
- flatpak
|
||||
- gnome-software
|
||||
- snapd
|
||||
- immutable: true
|
||||
- name: "Xfce4 Goodies selections"
|
||||
description: "The full package or choice of Xfce4 Goodies Packages"
|
||||
- name: "Xfce4 Goodies - Pack"
|
||||
description: "A META package to install everything XFCE4 from Debian Stable repositories"
|
||||
- xfce4-goodies
|
||||
- name: "Xfce4 Goodies - Components"
|
||||
description: "Individual applications to add to the packages already installed"
|
||||
- xfce4-battery-plugin
|
||||
- xfce4-clipman-plugin
|
||||
- xfce4-cpufreq-plugin
|
||||
- xfce4-cpugraph-plugin
|
||||
- xfce4-datetime-plugin
|
||||
- xfce4-dict
|
||||
- xfce4-diskperf-plugin
|
||||
- xfce4-fsguard-plugin
|
||||
- xfce4-genmon-plugin
|
||||
- xfce4-indicator-plugin
|
||||
- xfce4-mailwatch-plugin
|
||||
- xfce4-mpc-plugin
|
||||
- xfce4-netload-plugin
|
||||
- xfce4-notifyd
|
||||
- xfce4-places-plugin
|
||||
- xfce4-power-manager
|
||||
- xfce4-screenshooter
|
||||
- xfce4-sensors-plugin
|
||||
- xfce4-smartbookmark-plugin
|
||||
- xfce4-systemload-plugin
|
||||
- xfce4-taskmanager
|
||||
- xfce4-terminal
|
||||
- xfce4-timer-plugin
|
||||
- xfce4-verve-plugin
|
||||
- xfce4-wavelan-plugin
|
||||
- xfce4-weather-plugin
|
||||
- xfce4-whiskermenu-plugin
|
||||
- xfce4-xkb-plugin
|
||||
- gigolo
|
||||
- mousepad
|
||||
- parole
|
||||
- ristretto
|
||||
- thunar-archive-plugin
|
||||
- thunar-media-tags-plugin
|
||||
- xfburn
|
||||
- name: "Internet Applications"
|
||||
description: "Web Browsers, E-Mail, Social Clients, DownLoaders and tools"
|
||||
- name: "Web Browsers"
|
||||
description: "A Collection Of Browsers for the internet or local LAN"
|
||||
- name: "Chromium Web Browser"
|
||||
description: "Googles Open Source web browser and content viewer"
|
||||
- chromium
|
||||
- name: "chromium-Language Pack"
|
||||
description: "Language Pack For chromium"
|
||||
- chromium-l10n
|
||||
- elinks
|
||||
- epiphany-browser
|
||||
- falkon
|
||||
- name: "Firefox-ESR"
|
||||
description: "Extended Service Release of FireFox from Debian Stable"
|
||||
- firefox-esr
|
||||
- name: "Firefox-esr Language Packs"
|
||||
description: "Language Packs For Firefox-esr"
|
||||
- firefox-esr-l10n-ach
|
||||
- firefox-esr-l10n-af
|
||||
- firefox-esr-l10n-all
|
||||
- firefox-esr-l10n-an
|
||||
- firefox-esr-l10n-ar
|
||||
- firefox-esr-l10n-ast
|
||||
- firefox-esr-l10n-az
|
||||
- firefox-esr-l10n-be
|
||||
- firefox-esr-l10n-bg
|
||||
- firefox-esr-l10n-bn
|
||||
- firefox-esr-l10n-br
|
||||
- firefox-esr-l10n-bs
|
||||
- firefox-esr-l10n-ca
|
||||
- firefox-esr-l10n-cak
|
||||
- firefox-esr-l10n-cs
|
||||
- firefox-esr-l10n-cy
|
||||
- firefox-esr-l10n-da
|
||||
- firefox-esr-l10n-de
|
||||
- firefox-esr-l10n-dsb
|
||||
- firefox-esr-l10n-el
|
||||
- firefox-esr-l10n-en-ca
|
||||
- firefox-esr-l10n-en-gb
|
||||
- firefox-esr-l10n-eo
|
||||
- firefox-esr-l10n-es-ar
|
||||
- firefox-esr-l10n-es-cl
|
||||
- firefox-esr-l10n-es-es
|
||||
- firefox-esr-l10n-es-mx
|
||||
- firefox-esr-l10n-et
|
||||
- firefox-esr-l10n-eu
|
||||
- firefox-esr-l10n-fa
|
||||
- firefox-esr-l10n-ff
|
||||
- firefox-esr-l10n-fi
|
||||
- firefox-esr-l10n-fr
|
||||
- firefox-esr-l10n-fy-nl
|
||||
- firefox-esr-l10n-ga-ie
|
||||
- firefox-esr-l10n-gd
|
||||
- firefox-esr-l10n-gl
|
||||
- firefox-esr-l10n-gn
|
||||
- firefox-esr-l10n-gu-in
|
||||
- firefox-esr-l10n-hr
|
||||
- firefox-esr-l10n-hsb
|
||||
- firefox-esr-l10n-hu
|
||||
- firefox-esr-l10n-hy-am
|
||||
- firefox-esr-l10n-ia
|
||||
- firefox-esr-l10n-id
|
||||
- firefox-esr-l10n-is
|
||||
- firefox-esr-l10n-it
|
||||
- firefox-esr-l10n-ja
|
||||
- firefox-esr-l10n-ka
|
||||
- firefox-esr-l10n-kab
|
||||
- firefox-esr-l10n-kk
|
||||
- firefox-esr-l10n-km
|
||||
- firefox-esr-l10n-kn
|
||||
- firefox-esr-l10n-ko
|
||||
- firefox-esr-l10n-ia
|
||||
- firefox-esr-l10n-id
|
||||
- firefox-esr-l10n-is
|
||||
- firefox-esr-l10n-it
|
||||
- firefox-esr-l10n-ja
|
||||
- firefox-esr-l10n-ka
|
||||
- firefox-esr-l10n-kab
|
||||
- firefox-esr-l10n-kk
|
||||
- firefox-esr-l10n-km
|
||||
- firefox-esr-l10n-kn
|
||||
- firefox-esr-l10n-ko
|
||||
- firefox-esr-l10n-lt
|
||||
- firefox-esr-l10n-lv
|
||||
- firefox-esr-l10n-mk
|
||||
- firefox-esr-l10n-mr
|
||||
- firefox-esr-l10n-ms
|
||||
- firefox-esr-l10n-my
|
||||
- firefox-esr-l10n-nb-no
|
||||
- firefox-esr-l10n-ne-np
|
||||
- firefox-esr-l10n-nl
|
||||
- firefox-esr-l10n-nn-no
|
||||
- firefox-esr-l10n-oc
|
||||
- firefox-esr-l10n-pa-in
|
||||
- firefox-esr-l10n-pl
|
||||
- firefox-esr-l10n-pt-br
|
||||
- firefox-esr-l10n-pt-pt
|
||||
- firefox-esr-l10n-rm
|
||||
- firefox-esr-l10n-ro
|
||||
- firefox-esr-l10n-ru
|
||||
- firefox-esr-l10n-si
|
||||
- firefox-esr-l10n-sk
|
||||
- firefox-esr-l10n-sl
|
||||
- firefox-esr-l10n-son
|
||||
- firefox-esr-l10n-sq
|
||||
- firefox-esr-l10n-sr
|
||||
- firefox-esr-l10n-sv-se
|
||||
- firefox-esr-l10n-ta
|
||||
- firefox-esr-l10n-te
|
||||
- firefox-esr-l10n-th
|
||||
- firefox-esr-l10n-tr
|
||||
- firefox-esr-l10n-uk
|
||||
- firefox-esr-l10n-ur
|
||||
- firefox-esr-l10n-uz
|
||||
- firefox-esr-l10n-vi
|
||||
- firefox-esr-l10n-xh
|
||||
- firefox-esr-l10n-zh-cn
|
||||
- firefox-esr-l10n-zh-tw
|
||||
- links
|
||||
- links2
|
||||
- midori
|
||||
- torbrowser-launcher
|
||||
- name: "E-mail Clients"
|
||||
description: "Various Email Clients"
|
||||
- alpine
|
||||
- claws-mail
|
||||
- evolution
|
||||
- geary
|
||||
- kmail
|
||||
- name: "Thunderbird E-Mail client"
|
||||
description: "A cross platform standalone mail/news reader supporting POP/POP3 and IMAP protocols"
|
||||
- thunderbird
|
||||
- name: "Thunderbird Language Packs"
|
||||
description: "Language Packs and text direction converter"
|
||||
- thunderbird-bidiui
|
||||
- thunderbird-l10n-all
|
||||
- thunderbird-l10n-ar
|
||||
- thunderbird-l10n-ast
|
||||
- thunderbird-l10n-be
|
||||
- thunderbird-l10n-bg
|
||||
- thunderbird-l10n-br
|
||||
- thunderbird-l10n-ca
|
||||
- thunderbird-l10n-cs
|
||||
- thunderbird-l10n-cy
|
||||
- thunderbird-l10n-da
|
||||
- thunderbird-l10n-de
|
||||
- thunderbird-l10n-dsb
|
||||
- thunderbird-l10n-el
|
||||
- thunderbird-l10n-en-gb
|
||||
- thunderbird-l10n-es-ar
|
||||
- thunderbird-l10n-es-es
|
||||
- thunderbird-l10n-et
|
||||
- thunderbird-l10n-eu
|
||||
- thunderbird-l10n-fi
|
||||
- thunderbird-l10n-fr
|
||||
- thunderbird-l10n-fy-nl
|
||||
- thunderbird-l10n-ga-ie
|
||||
- thunderbird-l10n-gd
|
||||
- thunderbird-l10n-gl
|
||||
- thunderbird-l10n-he
|
||||
- thunderbird-bidiui
|
||||
- thunderbird-l10n-hr
|
||||
- thunderbird-l10n-hsb
|
||||
- thunderbird-l10n-hu
|
||||
- thunderbird-l10n-hy-am
|
||||
- thunderbird-l10n-id
|
||||
- thunderbird-l10n-is
|
||||
- thunderbird-l10n-it
|
||||
- thunderbird-l10n-ja
|
||||
- thunderbird-l10n-kab
|
||||
- thunderbird-l10n-kk
|
||||
- thunderbird-l10n-ko
|
||||
- thunderbird-l10n-lt
|
||||
- thunderbird-l10n-ms
|
||||
- thunderbird-l10n-nl
|
||||
- thunderbird-l10n-pl
|
||||
- thunderbird-l10n-pt-br
|
||||
- thunderbird-l10n-pt-pt
|
||||
- thunderbird-l10n-rm
|
||||
- thunderbird-l10n-ro
|
||||
- thunderbird-l10n-ru
|
||||
- thunderbird-l10n-si
|
||||
- thunderbird-l10n-sq
|
||||
- thunderbird-l10n-sr
|
||||
- thunderbird-l10n-sv-se
|
||||
- thunderbird-l10n-tr
|
||||
- thunderbird-l10n-uk
|
||||
- thunderbird-l10n-vi
|
||||
- thunderbird-l10n-zh-tw
|
||||
- name: "Thunderbird Add-Ons"
|
||||
description: "Additional desktop enhancements for Thundebird Mail"
|
||||
- birdtray
|
||||
- lightning
|
||||
- thunderbird-bidiui
|
||||
- name: "Social Clients / Chat Software"
|
||||
description: "Social Video & Chat Clients"
|
||||
- finch
|
||||
- hexchat
|
||||
- hexchat-plugins
|
||||
- jami
|
||||
- mumble
|
||||
- pidgin
|
||||
- psi
|
||||
- tkabber
|
||||
- name: "Download Managers"
|
||||
description: "Various Download & Torrent Managers"
|
||||
- deluge
|
||||
- filezilla
|
||||
- ktorrent
|
||||
- qbittorrent
|
||||
- transmission-gtk
|
||||
- name: "Networking Tools"
|
||||
description: "Various Network and Networking tools and utilities"
|
||||
- ufw
|
||||
- gufw
|
||||
- iptraf-ng
|
||||
- samba
|
||||
- wireshark
|
||||
- name: "Office Suites"
|
||||
description: "Select from the suite or components, plus add-ons"
|
||||
- name: "LibreOffice - Suites"
|
||||
description: "Selection of Suites, components, Language Packs and add-ons"
|
||||
- libreoffice
|
||||
- libreoffice-gnome
|
||||
- libreoffice-gtk3
|
||||
- name: "LibreOffice - Comopnents"
|
||||
description: "Individual packages of utilities from the LibreOffice Suite"
|
||||
- name: "LibreOffice-Base"
|
||||
description: "Component used to connect to and utilize DataBase connections"
|
||||
- libreoffice-base
|
||||
- libreoffice-report-builder
|
||||
- libreoffice-calc
|
||||
- libreoffice-draw
|
||||
- libreoffice-impress
|
||||
- libreoffice-math
|
||||
- libreoffice-writer
|
||||
- name: "LibreOffice - Language Packs"
|
||||
description: "Language Packs For LibreOffice"
|
||||
- libreoffice-l10n-af
|
||||
- libreoffice-l10n-am
|
||||
- libreoffice-l10n-ar
|
||||
- libreoffice-l10n-as
|
||||
- libreoffice-l10n-ast
|
||||
- libreoffice-l10n-be
|
||||
- libreoffice-l10n-bg
|
||||
- libreoffice-l10n-bn
|
||||
- libreoffice-l10n-br
|
||||
- libreoffice-l10n-bs
|
||||
- libreoffice-l10n-ca
|
||||
- libreoffice-l10n-cs
|
||||
- libreoffice-l10n-cy
|
||||
- libreoffice-l10n-da
|
||||
- libreoffice-l10n-de
|
||||
- libreoffice-l10n-dz
|
||||
- libreoffice-l10n-el
|
||||
- libreoffice-l10n-en-gb
|
||||
- libreoffice-l10n-en-za
|
||||
- libreoffice-l10n-eo
|
||||
- libreoffice-l10n-es
|
||||
- libreoffice-l10n-et
|
||||
- libreoffice-l10n-eu
|
||||
- libreoffice-l10n-fa
|
||||
- libreoffice-l10n-fi
|
||||
- libreoffice-l10n-fr
|
||||
- libreoffice-l10n-ga
|
||||
- libreoffice-l10n-gd
|
||||
- libreoffice-l10n-gl
|
||||
- libreoffice-l10n-gu
|
||||
- libreoffice-l10n-gug
|
||||
- libreoffice-l10n-he
|
||||
- libreoffice-l10n-hi
|
||||
- libreoffice-l10n-hr
|
||||
- libreoffice-l10n-hu
|
||||
- libreoffice-l10n-id
|
||||
- libreoffice-l10n-in
|
||||
- libreoffice-l10n-is
|
||||
- libreoffice-l10n-it
|
||||
- libreoffice-l10n-ja
|
||||
- libreoffice-l10n-ka
|
||||
- libreoffice-l10n-kk
|
||||
- libreoffice-l10n-km
|
||||
- libreoffice-l10n-kmr
|
||||
- libreoffice-l10n-kn
|
||||
- libreoffice-l10n-ko
|
||||
- libreoffice-l10n-lt
|
||||
- libreoffice-l10n-lv
|
||||
- libreoffice-l10n-mk
|
||||
- libreoffice-l10n-mn
|
||||
- libreoffice-l10n-mr
|
||||
- libreoffice-l10n-nb
|
||||
- libreoffice-l10n-ne
|
||||
- libreoffice-l10n-nl
|
||||
- libreoffice-l10n-nn
|
||||
- libreoffice-l10n-nr
|
||||
- libreoffice-l10n-nso
|
||||
- libreoffice-l10n-oc
|
||||
- libreoffice-l10n-om
|
||||
- libreoffice-l10n-or
|
||||
- libreoffice-l10n-pa-in
|
||||
- libreoffice-l10n-pl
|
||||
- libreoffice-l10n-pt
|
||||
- libreoffice-l10n-pt-br
|
||||
- libreoffice-l10n-ro
|
||||
- libreoffice-l10n-ru
|
||||
- libreoffice-l10n-rw
|
||||
- libreoffice-l10n-si
|
||||
- libreoffice-l10n-sk
|
||||
- libreoffice-l10n-sl
|
||||
- libreoffice-l10n-sr
|
||||
- libreoffice-l10n-ss
|
||||
- libreoffice-l10n-st
|
||||
- libreoffice-l10n-sv
|
||||
- libreoffice-l10n-szl
|
||||
- libreoffice-l10n-ta
|
||||
- libreoffice-l10n-te
|
||||
- libreoffice-l10n-tg
|
||||
- libreoffice-l10n-th
|
||||
- libreoffice-l10n-tn
|
||||
- libreoffice-l10n-tr
|
||||
- libreoffice-l10n-ts
|
||||
- libreoffice-l10n-ug
|
||||
- libreoffice-l10n-uk
|
||||
- libreoffice-l10n-uz
|
||||
- libreoffice-l10n-ve
|
||||
- libreoffice-l10n-vi
|
||||
- libreoffice-l10n-xh
|
||||
- libreoffice-l10n-za
|
||||
- libreoffice-l10n-zh-cn
|
||||
- libreoffice-l10n-zh-tw
|
||||
- libreoffice-l10n-zu
|
||||
- name: "LibreOffice - Add-Ons"
|
||||
description: "Individual packages of apps and utilities for the LibreOffice Suite"
|
||||
- hunspell
|
||||
- name: Hunspell Dictionaries
|
||||
description: "Spell checking and Dictionaries for various languages"
|
||||
- hunspell-af
|
||||
- hunspell-an
|
||||
- hunspell-ar
|
||||
- hunspell-be
|
||||
- hunspell-bg
|
||||
- hunspell-bn
|
||||
- hunspell-bo
|
||||
- hunspell-br
|
||||
- hunspell-bs
|
||||
- hunspell-ca
|
||||
- hunspell-cs
|
||||
- hunspell-da
|
||||
- hunspell-de-at
|
||||
- hunspell-de-at-frami
|
||||
- hunspell-de-ch
|
||||
- hunspell-de-ch-frami
|
||||
- hunspell-de-de
|
||||
- hunspell-de-de-frami
|
||||
- hunspell-de-med
|
||||
- hunspell-dz
|
||||
- hunspell-el
|
||||
- hunspell-en-au
|
||||
- hunspell-en-ca
|
||||
- hunspell-en-gb
|
||||
- hunspell-en-med
|
||||
- hunspell-en-us
|
||||
- hunspell-en-za
|
||||
- hunspell-es
|
||||
- hunspell-eu
|
||||
- hunspell-fr
|
||||
- hunspell-fr-classical
|
||||
- hunspell-fr-comprehensive
|
||||
- hunspell-fr-revised
|
||||
- hunspell-gd
|
||||
- hunspell-gl
|
||||
- hunspell-gl-es
|
||||
- hunspell-gu
|
||||
- hunspell-gug
|
||||
- hunspell-he
|
||||
- hunspell-hi
|
||||
- hunspell-hr
|
||||
- hunspell-hu
|
||||
- hunspell-id
|
||||
- hunspell-is
|
||||
- hunspell-it
|
||||
- hunspell-kk
|
||||
- hunspell-kmr
|
||||
- hunspell-ko
|
||||
- hunspell-lo
|
||||
- hunspell-lt
|
||||
- hunspell-lv
|
||||
- hunspell-ml
|
||||
- hunspell-mn
|
||||
- hunspell-ne
|
||||
- hunspell-nl
|
||||
- hunspell-no
|
||||
- hunspell-oc
|
||||
- hunspell-pl
|
||||
- hunspell-pt-br
|
||||
- hunspell-pt-pt
|
||||
- hunspell-ro
|
||||
- hunspell-ru
|
||||
- hunspell-si
|
||||
- hunspell-sk
|
||||
- hunspell-sl
|
||||
- hunspell-sr
|
||||
- hunspell-sv
|
||||
- hunspell-sv-se
|
||||
- hunspell-sw
|
||||
- hunspell-te
|
||||
- hunspell-th
|
||||
- hunspell-tools
|
||||
- hunspell-tr
|
||||
- hunspell-uk
|
||||
- hunspell-uz
|
||||
- hunspell-vi
|
||||
- bluez
|
||||
- cups
|
||||
- cups-bsd
|
||||
- ghostscript
|
||||
- libpaper-utils
|
||||
- libsane
|
||||
- libxrender1
|
||||
- libgl1
|
||||
- openclipart-libreoffice
|
||||
- pstoedit
|
||||
- simple-scan
|
||||
- unixodbc
|
||||
- name: "Printing Support"
|
||||
description: "Add Printer Support"
|
||||
- cups
|
||||
- cups-bsd
|
||||
- name: "Foomatic Print Drivers"
|
||||
description: "Foomatic based Printer Drivers"
|
||||
- foomatic-db
|
||||
- foomatic-db-engine
|
||||
- foomatic-filters
|
||||
- foomatic-filters-beh
|
||||
- foomatic-db-compressed-ppds
|
||||
- openprinting-ppds
|
||||
- name: "Brother Printer"
|
||||
description: "Brother based Printer Drivers"
|
||||
- printer-driver-brlaser
|
||||
- printer-driver-ptouch
|
||||
- name: "Canon LBP laser printers"
|
||||
description: "Canon LBP laser printers Drivers"
|
||||
- printer-driver-cjet
|
||||
- name: "Epson Utilities"
|
||||
description: "Epson based Printer Drivers"
|
||||
- escputil
|
||||
- ink
|
||||
- mtink
|
||||
- printer-driver-escpr
|
||||
- sane-airscan
|
||||
- name: "Fuji Xerox printers"
|
||||
description: "Fuji Xerox printers Drivers"
|
||||
- printer-driver-fujixerox
|
||||
- name: "HP Printer Support"
|
||||
description: "Packages and drivers for HP Printers and Printer/Scanner Combos"
|
||||
- name: "HP Color LaserJet 35xx/36xx"
|
||||
description: "HP Color LaserJet 35xx/36xx Drivers"
|
||||
- printer-driver-pxljr
|
||||
- name: "HP-GDI printers"
|
||||
description: "HP-GDI printers Drivers"
|
||||
- printer-driver-pnm2ppa
|
||||
- name: "HP Printer/Scanner"
|
||||
description: "Install HP Printer/Scanner"
|
||||
- hplip
|
||||
- hplip-gui
|
||||
- xsane
|
||||
- name: "Kodak ESP AiO Color"
|
||||
description: " Kodak ESP AiO color inkjet Series Drivers "
|
||||
- printer-driver-c2esp
|
||||
- name: "Konica/Minolta PagePro"
|
||||
description: "Konica/Minolta PagePro 1[234]xxW Drivers"
|
||||
- printer-driver-min12xxw
|
||||
- name: "Lexmark 2050 Color Jetprinter "
|
||||
description: "Lexmark 2050 Color Jetprinter Drivers"
|
||||
- printer-driver-c2050
|
||||
- name: "Minolta magicolor 2300W/2400W color laser"
|
||||
description: "Minolta magicolor 2300W/2400W color laser Drivers"
|
||||
- printer-driver-m2300w
|
||||
- name: "OKI Data printers"
|
||||
description: "OKI Data printers Drivers"
|
||||
- printer-driver-oki
|
||||
- name: "Ricoh Aficio SP 1000s/SP 1100s"
|
||||
description: "Ricoh Aficio SP 1000s/SP 1100s Drivers"
|
||||
- printer-driver-sag-gdi
|
||||
- name: "Samsung and Xerox SPL2 and SPLc laser printers"
|
||||
description: "Samsung and Xerox SPL2 and SPLc laser printers Drivers"
|
||||
- printer-driver-splix
|
||||
- name: "ZjStream-based printers"
|
||||
description: "ZjStream-based printers"
|
||||
- printer-driver-foo2zjs
|
||||
- simple-scan
|
||||
- name: "A/V Players & Tools"
|
||||
description: "Wide Selection of A/V Players. Editors and Codecs"
|
||||
- name: "A/V Codecs"
|
||||
description: "Selection of Audio and Video Codecs"
|
||||
- faac
|
||||
- faad
|
||||
- ffmpeg
|
||||
- gstreamer1.0-plugins-good
|
||||
- gstreamer1.0-plugins-ugly
|
||||
- gstreamer1.0-plugins-bad
|
||||
- gstreamer1.0-pulseaudio
|
||||
- sox
|
||||
- lame
|
||||
- twolame
|
||||
- w32codecs
|
||||
- w64codecs
|
||||
- name: "Audio Players"
|
||||
description: "Selection of Audio Players"
|
||||
- audacious
|
||||
- audacious-plugins
|
||||
- clementine
|
||||
- elisa
|
||||
- lollypop
|
||||
- sayonara
|
||||
- vlc
|
||||
- name: "Audio Editors"
|
||||
description: "Selection of Audio Editors"
|
||||
- ardour
|
||||
- audacity
|
||||
- kwave
|
||||
- lmms
|
||||
- name: "Audio Converters"
|
||||
description: "Few good Audio Converters"
|
||||
- lame
|
||||
- soundconverter
|
||||
- name: "Other Audio Tools"
|
||||
description: "Various Other Audio Tools"
|
||||
- easytag
|
||||
- picard
|
||||
- rhythmbox
|
||||
- tangerine
|
||||
- name: "Video Players"
|
||||
description: "Selection of Video Players"
|
||||
- celluloid
|
||||
- dragonplayer
|
||||
- haruna
|
||||
- mplayer-gui
|
||||
- mpv
|
||||
- parole
|
||||
- smplayer
|
||||
- vlc
|
||||
- xine-ui
|
||||
- name: "Video Editors"
|
||||
description: "Selection of Video Capture & Editors"
|
||||
- kazam
|
||||
- kdenlive
|
||||
- obs-studio
|
||||
- openshot-qt
|
||||
- pitivi
|
||||
- shotcut
|
||||
- simplescreenrecorder
|
||||
- vokoscreen-ng
|
||||
- name: "Video Converters"
|
||||
description: "Selection of Video Converters"
|
||||
- ffmpeg
|
||||
- mkvtoolnix
|
||||
- mkvtoolnix-gui
|
||||
- mystiq
|
||||
- name: "Other Video Tools"
|
||||
description: "Various other Video Tools"
|
||||
- cheese
|
||||
- guvcview
|
||||
- mediainfo-gui
|
||||
- name: "Graphics Studio"
|
||||
description: "Image creation and manipulation suites and applications"
|
||||
- blender
|
||||
- darktable
|
||||
- digikam
|
||||
- flameshot
|
||||
- gimp
|
||||
- krita
|
||||
- imagemagick
|
||||
- inkscape
|
||||
- showfoto
|
||||
- name: "Utilities"
|
||||
description: "Various Useful GUI and CLI/TUI Utilities"
|
||||
- name: "Archive Applications"
|
||||
description: "Selection of Arching Utilities and Extractors"
|
||||
- p7zip-full
|
||||
- p7zip-rar
|
||||
- rar
|
||||
- unrar
|
||||
- zip
|
||||
- unzip
|
||||
- xarchiver
|
||||
- name: "Disk & USB Tools"
|
||||
description: "Drive Manipulation Tools"
|
||||
- brasero
|
||||
- k3b
|
||||
- gnome-disk-utility
|
||||
- gnome-multi-writer
|
||||
- gparted
|
||||
- timeshift
|
||||
- name: "FingerPrint Driver"
|
||||
description: "FingerPrint Drivers"
|
||||
- fprintd
|
||||
- name: "Package Managers"
|
||||
description: "Additional Package Managers"
|
||||
- gnome-software
|
||||
- gnome-software-plugin-flatpak
|
||||
- gnome-software-plugin-snap
|
||||
- name: "Password Managers"
|
||||
description: "Securely Store & Manage Passwords"
|
||||
- keepassxc
|
||||
- lastpass-cli
|
||||
- name: "Resource Monitors"
|
||||
description: "HTOP, BTOP & Others"
|
||||
- btop
|
||||
- htop
|
||||
- nvtop
|
||||
- name: "System Applications"
|
||||
description: "Selection of Useful and sometimes required applications"
|
||||
- apt-config-auto-update
|
||||
- aptitude
|
||||
- gnome-firmware
|
||||
- gnome-packagekit
|
||||
- gvfs-backends
|
||||
- lightdm-settings
|
||||
- slick-greeter
|
||||
- name: "System Utilities"
|
||||
description: "Misc other System Tools"
|
||||
- barrier
|
||||
- caffeine
|
||||
- solaar
|
||||
- timeshift
|
||||
- name: "Terminal Emulators"
|
||||
description: "Extra Terminal Emulators"
|
||||
- cool-retro-term
|
||||
- gnome-terminal
|
||||
- guake
|
||||
- mate-terminal
|
||||
- mlterm
|
||||
- terminus
|
||||
- terminator
|
||||
- xfce4-terminal
|
||||
- name: "Linux Driver Modules"
|
||||
description: "A shortlist of avalaible useful drivers"
|
||||
- name: "Processor Microcode"
|
||||
description: "Select based on your CPU"
|
||||
- amd64-microcode
|
||||
- intel-microcode
|
||||
- name: "Broadcom WiFi"
|
||||
description: "Broadcom WiFi Drivers"
|
||||
- b43-fwcutter
|
||||
- broadcom-sta-common
|
||||
- broadcom-sta-dkms
|
||||
- broadcom-sta-source
|
||||
- firmware-b43-installer
|
||||
- firmware-b43legacy-installer
|
||||
- firmware-bnx2
|
||||
- firmware-bnx2x
|
||||
- firmware-brcm80211
|
||||
- name: "Nvidia Drivers and Support"
|
||||
description: "Support apps and drivers for Nvidia hardware"
|
||||
- name: "NVidia GPUs"
|
||||
description: "Select Your NVidia GPU Drivers"
|
||||
- nvidia-driver
|
||||
- nvidia-legacy-390xx-driver
|
||||
- name: "NVidia NVENC Suport"
|
||||
description: "Install NVidia NVENC Suport"
|
||||
- libnvidia-encode1
|
||||
- libnvidia-legacy-390xx-encode1
|
||||
- name: "Optimus Manager"
|
||||
description: "Enable Intel/nVidia GPU Switching"
|
||||
- primus
|
||||
- primus-nvidia
|
||||
- bbswitch-dkms
|
||||
- bumblebee
|
||||
- bumblebee-nvidia
|
||||
- name: "Nvidia Installer Cleanup"
|
||||
description: " * Use of Nvidia-Installers is prevented, with this package installed *"
|
||||
- nvidia-installer-cleanup
|
||||
- name: "Wine All in One"
|
||||
description: "Windows Compatibility Layer"
|
||||
- wine
|
||||
- winetricks
|
|
@ -7,16 +7,9 @@ modules-search: [ local, /usr/lib/calamares/modules ]
|
|||
|
||||
# YAML: list of maps of string:string key-value pairs.
|
||||
instances:
|
||||
- id: packages
|
||||
module: netinstall
|
||||
config: netinstall-packages.conf
|
||||
#- id: system
|
||||
#- id: packages
|
||||
# module: netinstall
|
||||
# config: netinstall-system.conf
|
||||
#- id: pkgs
|
||||
# module: netinstall
|
||||
# config: netinstall-pkgs.conf
|
||||
|
||||
# config: netinstall-packages.conf
|
||||
|
||||
sequence:
|
||||
|
||||
|
@ -29,9 +22,6 @@ sequence:
|
|||
- locale
|
||||
- keyboard
|
||||
- partition
|
||||
- netinstall@packages
|
||||
# - netinstall@system
|
||||
# - netinstall@pkgs
|
||||
- users
|
||||
- summary
|
||||
|
||||
|
|
|
@ -1,65 +0,0 @@
|
|||
|
||||
[Desktop Entry]
|
||||
Version=1.0
|
||||
Icon=/usr/share/pixmaps/peppermint.png
|
||||
Type=X-XFCE-Helper
|
||||
Name=nemo
|
||||
Name[ar]=ثونار
|
||||
Name[be]=nemo
|
||||
Name[be@tarask]=Тунар
|
||||
Name[bg]=nemo
|
||||
Name[bn]=nemo
|
||||
Name[ca]=nemo
|
||||
Name[cs]=nemo
|
||||
Name[da]=nemo
|
||||
Name[de]=nemo
|
||||
Name[el]=nemo
|
||||
Name[en_AU]=nemo
|
||||
Name[en_CA]=nemo
|
||||
Name[en_GB]=nemo
|
||||
Name[es]=nemo
|
||||
Name[et]=nemo
|
||||
Name[eu]=nemo
|
||||
Name[fi]=nemo
|
||||
Name[fr]=nemo
|
||||
Name[gl]=nemo
|
||||
Name[he]=nemo
|
||||
Name[hr]=nemo
|
||||
Name[hu]=nemo
|
||||
Name[hy_AM]=nemo նիշք
|
||||
Name[hye]=nemo նիշք
|
||||
Name[id]=nemo
|
||||
Name[ie]=nemo
|
||||
Name[is]=nemo
|
||||
Name[it]=nemo
|
||||
Name[ja]=nemo
|
||||
Name[kk]=nemo
|
||||
Name[ko]=투나
|
||||
Name[lt]=nemo
|
||||
Name[ms]=nemo
|
||||
Name[nb]=nemo
|
||||
Name[nl]=nemo
|
||||
Name[nn]=nemo
|
||||
Name[oc]=nemo
|
||||
Name[pl]=nemo
|
||||
Name[pt]=nemo
|
||||
Name[pt_BR]=nemo
|
||||
Name[ro]=nemo
|
||||
Name[ru]=nemo
|
||||
Name[sk]=nemo
|
||||
Name[sl]=nemo
|
||||
Name[sq]=nemo
|
||||
Name[sr]=Тунар
|
||||
Name[sv]=nemo
|
||||
Name[th]=nemo
|
||||
Name[tr]=nemo
|
||||
Name[ug]=سۇنار(nemo)
|
||||
Name[uk]=nemo
|
||||
Name[zh_CN]=nemo
|
||||
Name[zh_HK]=nemo 檔案管理員
|
||||
Name[zh_TW]=nemo 檔案管理員
|
||||
StartupNotify=true
|
||||
X-XFCE-Binaries=nemo;
|
||||
X-XFCE-Category=FileManager
|
||||
X-XFCE-Commands=%B;
|
||||
X-XFCE-CommandsWithParameter=%B "%s";
|
|
@ -4,7 +4,7 @@
|
|||
# Copyright (c) 2005-2006 Benedikt Meurer <benny@xfce.org>
|
||||
#
|
||||
|
||||
WebBrowser=firefox
|
||||
WebBrowser=firefox-esr
|
||||
MailReader=thunderbird
|
||||
TerminalEmulator=debian-x-terminal-emulator
|
||||
FileManager=nemo
|
||||
FileManager=thunar
|
||||
|
|
Before Width: | Height: | Size: 279 KiB |
Before Width: | Height: | Size: 41 KiB |
Before Width: | Height: | Size: 279 KiB |
Before Width: | Height: | Size: 9.7 KiB |
|
@ -1,3 +0,0 @@
|
|||
WALLPAPER=/usr/share/images/desktop-base/desktop-grub.png
|
||||
COLOR_NORMAL=white/black
|
||||
COLOR_HIGHLIGHT=black/white
|
Before Width: | Height: | Size: 84 KiB |
Before Width: | Height: | Size: 109 KiB |
Before Width: | Height: | Size: 120 KiB |
Before Width: | Height: | Size: 129 KiB |
Before Width: | Height: | Size: 138 KiB |
Before Width: | Height: | Size: 174 KiB |
Before Width: | Height: | Size: 280 KiB |
|
@ -1,15 +0,0 @@
|
|||
<background>
|
||||
<static>
|
||||
<duration>8640000.0</duration>
|
||||
<file>
|
||||
<size width="1280" height="1024">/usr/share/desktop-base/futureprototype-theme/wallpaper/contents/images/1280x1024.svg</size>
|
||||
<size width="1600" height="1200">/usr/share/desktop-base/futureprototype-theme/wallpaper/contents/images/1600x1200.svg</size>
|
||||
<size width="1920" height="1080">/usr/share/desktop-base/futureprototype-theme/wallpaper/contents/images/1920x1080.svg</size>
|
||||
<size width="1920" height="1200">/usr/share/desktop-base/futureprototype-theme/wallpaper/contents/images/1920x1200.svg</size>
|
||||
<size width="2560" height="1080">/usr/share/desktop-base/futureprototype-theme/wallpaper/contents/images/2560x1080.svg</size>
|
||||
<size width="2560" height="1440">/usr/share/desktop-base/futureprototype-theme/wallpaper/contents/images/2560x1440.svg</size>
|
||||
<size width="3840" height="2160">/usr/share/desktop-base/futureprototype-theme/wallpaper/contents/images/3840x2160.svg</size>
|
||||
</file>
|
||||
</static>
|
||||
</background>
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
[Desktop Entry]
|
||||
Name=futurePrototype
|
||||
X-KDE-PluginInfo-Name=futurePrototype
|
||||
X-KDE-PluginInfo-Author=Alex Makas
|
||||
X-KDE-PluginInfo-Email=radicalmonday@gmail.com
|
||||
X-KDE-PluginInfo-License=GPLv2+
|
Before Width: | Height: | Size: 302 KiB |
Before Width: | Height: | Size: 199 KiB |
Before Width: | Height: | Size: 84 KiB |
Before Width: | Height: | Size: 109 KiB |
Before Width: | Height: | Size: 120 KiB |
Before Width: | Height: | Size: 129 KiB |
Before Width: | Height: | Size: 138 KiB |
Before Width: | Height: | Size: 174 KiB |
Before Width: | Height: | Size: 280 KiB |
|
@ -1,15 +0,0 @@
|
|||
<background>
|
||||
<static>
|
||||
<duration>8640000.0</duration>
|
||||
<file>
|
||||
<size width="1280" height="1024">/usr/share/desktop-base/futureprototype-theme/wallpaper-withlogo/contents/images/1280x1024.svg</size>
|
||||
<size width="1600" height="1200">/usr/share/desktop-base/futureprototype-theme/wallpaper-withlogo/contents/images/1600x1200.svg</size>
|
||||
<size width="1920" height="1080">/usr/share/desktop-base/futureprototype-theme/wallpaper-withlogo/contents/images/1920x1080.svg</size>
|
||||
<size width="1920" height="1200">/usr/share/desktop-base/futureprototype-theme/wallpaper-withlogo/contents/images/1920x1200.svg</size>
|
||||
<size width="2560" height="1080">/usr/share/desktop-base/futureprototype-theme/wallpaper-withlogo/contents/images/2560x1080.svg</size>
|
||||
<size width="2560" height="1440">/usr/share/desktop-base/futureprototype-theme/wallpaper-withlogo/contents/images/2560x1440.svg</size>
|
||||
<size width="3840" height="2160">/usr/share/desktop-base/futureprototype-theme/wallpaper-withlogo/contents/images/3840x2160.svg</size>
|
||||
</file>
|
||||
</static>
|
||||
</background>
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
[Desktop Entry]
|
||||
Name=futurePrototype with Debian swirl
|
||||
X-KDE-PluginInfo-Name=futurePrototype
|
||||
X-KDE-PluginInfo-Author=Alex Makas
|
||||
X-KDE-PluginInfo-Email=radicalmonday@gmail.com
|
||||
X-KDE-PluginInfo-License=GPLv2+
|
Before Width: | Height: | Size: 84 KiB |
Before Width: | Height: | Size: 109 KiB |
Before Width: | Height: | Size: 120 KiB |
Before Width: | Height: | Size: 129 KiB |
Before Width: | Height: | Size: 138 KiB |
Before Width: | Height: | Size: 174 KiB |
Before Width: | Height: | Size: 280 KiB |
|
@ -1,15 +0,0 @@
|
|||
<background>
|
||||
<static>
|
||||
<duration>8640000.0</duration>
|
||||
<file>
|
||||
<size width="1280" height="1024">/usr/share/desktop-base/futureprototype-theme/wallpaper/contents/images/1280x1024.svg</size>
|
||||
<size width="1600" height="1200">/usr/share/desktop-base/futureprototype-theme/wallpaper/contents/images/1600x1200.svg</size>
|
||||
<size width="1920" height="1080">/usr/share/desktop-base/futureprototype-theme/wallpaper/contents/images/1920x1080.svg</size>
|
||||
<size width="1920" height="1200">/usr/share/desktop-base/futureprototype-theme/wallpaper/contents/images/1920x1200.svg</size>
|
||||
<size width="2560" height="1080">/usr/share/desktop-base/futureprototype-theme/wallpaper/contents/images/2560x1080.svg</size>
|
||||
<size width="2560" height="1440">/usr/share/desktop-base/futureprototype-theme/wallpaper/contents/images/2560x1440.svg</size>
|
||||
<size width="3840" height="2160">/usr/share/desktop-base/futureprototype-theme/wallpaper/contents/images/3840x2160.svg</size>
|
||||
</file>
|
||||
</static>
|
||||
</background>
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
[Desktop Entry]
|
||||
Name=futurePrototype
|
||||
X-KDE-PluginInfo-Name=futurePrototype
|
||||
X-KDE-PluginInfo-Author=Alex Makas
|
||||
X-KDE-PluginInfo-Email=radicalmonday@gmail.com
|
||||
X-KDE-PluginInfo-License=GPLv2+
|
|
@ -1,8 +0,0 @@
|
|||
[Desktop Entry]
|
||||
Version=1.1
|
||||
Name=Peppermint OS Home Page
|
||||
Comment=The official web site of the Peppermint OS Project
|
||||
Icon=/usr/share/pixmaps/peppermint-old.png
|
||||
Type=Link
|
||||
URL=https://peppermintos.com/
|
||||
|
Before Width: | Height: | Size: 2.8 KiB |
Before Width: | Height: | Size: 4.9 KiB |
Before Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 10 KiB |
Before Width: | Height: | Size: 23 KiB |
Before Width: | Height: | Size: 4.8 KiB |
Before Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 26 KiB |
Before Width: | Height: | Size: 5.1 KiB |
|
@ -1,221 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:ns2="http://ns.adobe.com/AdobeIllustrator/10.0/"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="180.46503mm"
|
||||
height="53.551666mm"
|
||||
viewBox="0 0 180.46502 53.551666"
|
||||
version="1.1"
|
||||
id="svg901"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
|
||||
sodipodi:docname="logo-text-version.svg">
|
||||
<defs
|
||||
id="defs895" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.98994949"
|
||||
inkscape:cx="279.50001"
|
||||
inkscape:cy="287.33664"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1008"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="36"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata898">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Calque 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-5.3777482,-236.75438)">
|
||||
<g
|
||||
style="overflow:visible;fill:#9ab0c9;fill-opacity:1;stroke-width:0.42865211"
|
||||
id="g1108"
|
||||
transform="matrix(0.49379584,0,0,0.49379584,51.719596,215.85938)">
|
||||
<g
|
||||
ns2:rgbTrio="#4F008000FFFF"
|
||||
ns2:dimmedPercent="50"
|
||||
ns2:layer="yes"
|
||||
id="Layer_1-8"
|
||||
style="fill:#9ab0c9;fill-opacity:1;stroke-width:0.42865211"
|
||||
transform="translate(-93.766085,42.315052)">
|
||||
<g
|
||||
id="g1085"
|
||||
style="fill:#9ab0c9;fill-opacity:1;stroke-width:0.42865211">
|
||||
<path
|
||||
id="path1061"
|
||||
d="m 51.986,57.297 c -1.797,0.025 0.34,0.926 2.686,1.287 0.648,-0.506 1.236,-1.018 1.76,-1.516 -1.461,0.358 -2.948,0.366 -4.446,0.229"
|
||||
ns2:knockout="Off"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#9ab0c9;fill-opacity:1;stroke-width:0.42865211" />
|
||||
<path
|
||||
id="path1063"
|
||||
d="m 61.631,54.893 c 1.07,-1.477 1.85,-3.094 2.125,-4.766 -0.24,1.192 -0.887,2.221 -1.496,3.307 -3.359,2.115 -0.316,-1.256 -0.002,-2.537 -3.612,4.546 -0.496,2.726 -0.627,3.996"
|
||||
ns2:knockout="Off"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#9ab0c9;fill-opacity:1;stroke-width:0.42865211" />
|
||||
<path
|
||||
id="path1065"
|
||||
d="m 65.191,45.629 c 0.217,-3.236 -0.637,-2.213 -0.924,-0.978 0.335,0.174 0.6,2.281 0.924,0.978"
|
||||
ns2:knockout="Off"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#9ab0c9;fill-opacity:1;stroke-width:0.42865211" />
|
||||
<path
|
||||
id="path1067"
|
||||
d="m 45.172,1.399 c 0.959,0.172 2.072,0.304 1.916,0.533 1.049,-0.23 1.287,-0.442 -1.916,-0.533"
|
||||
ns2:knockout="Off"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#9ab0c9;fill-opacity:1;stroke-width:0.42865211" />
|
||||
<path
|
||||
id="path1069"
|
||||
d="M 47.088,1.932 46.41,2.072 47.041,2.016 47.088,1.932"
|
||||
ns2:knockout="Off"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#9ab0c9;fill-opacity:1;stroke-width:0.42865211" />
|
||||
<path
|
||||
id="path1071"
|
||||
d="m 76.992,46.856 c 0.107,2.906 -0.85,4.316 -1.713,6.812 l -1.553,0.776 c -1.271,2.468 0.123,1.567 -0.787,3.53 -1.984,1.764 -6.021,5.52 -7.313,5.863 -0.943,-0.021 0.639,-1.113 0.846,-1.541 -2.656,1.824 -2.131,2.738 -6.193,3.846 L 60.16,65.878 C 50.142,70.591 36.226,61.251 36.409,48.507 c -0.107,0.809 -0.304,0.607 -0.526,0.934 -0.517,-6.557 3.028,-13.143 9.007,-15.832 5.848,-2.895 12.704,-1.707 16.893,2.197 -2.301,-3.014 -6.881,-6.209 -12.309,-5.91 -5.317,0.084 -10.291,3.463 -11.951,7.131 -2.724,1.715 -3.04,6.611 -4.227,7.507 -1.597,11.737 3.004,16.808 10.787,22.773 1.225,0.826 0.345,0.951 0.511,1.58 -2.586,-1.211 -4.954,-3.039 -6.901,-5.277 1.033,1.512 2.148,2.982 3.589,4.137 -2.438,-0.826 -5.695,-5.908 -6.646,-6.115 4.203,7.525 17.052,13.197 23.78,10.383 -3.113,0.115 -7.068,0.064 -10.566,-1.229 -1.469,-0.756 -3.467,-2.322 -3.11,-2.615 9.182,3.43 18.667,2.598 26.612,-3.771 2.021,-1.574 4.229,-4.252 4.867,-4.289 -0.961,1.445 0.164,0.695 -0.574,1.971 2.014,-3.248 -0.875,-1.322 2.082,-5.609 l 1.092,1.504 c -0.406,-2.696 3.348,-5.97 2.967,-10.234 0.861,-1.304 0.961,1.403 0.047,4.403 1.268,-3.328 0.334,-3.863 0.66,-6.609 0.352,0.923 0.814,1.904 1.051,2.878 -0.826,-3.216 0.848,-5.416 1.262,-7.285 -0.408,-0.181 -1.275,1.422 -1.473,-2.377 0.029,-1.65 0.459,-0.865 0.625,-1.271 -0.324,-0.186 -1.174,-1.451 -1.691,-3.877 0.375,-0.57 1.002,1.478 1.512,1.562 -0.328,-1.929 -0.893,-3.4 -0.916,-4.88 -1.49,-3.114 -0.527,0.415 -1.736,-1.337 -1.586,-4.947 1.316,-1.148 1.512,-3.396 2.404,3.483 3.775,8.881 4.404,11.117 -0.48,-2.726 -1.256,-5.367 -2.203,-7.922 0.73,0.307 -1.176,-5.609 0.949,-1.691 C 83.519,18.706 76.074,10.902 69.225,7.24 70.063,8.007 71.121,8.97 70.741,9.121 67.335,7.093 67.934,6.935 67.446,6.078 64.671,4.949 64.489,6.169 62.651,6.08 57.421,3.306 56.413,3.601 51.6,1.863 l 0.219,1.023 c -3.465,-1.154 -4.037,0.438 -7.782,0.004 -0.228,-0.178 1.2,-0.644 2.375,-0.815 -3.35,0.442 -3.193,-0.66 -6.471,0.122 0.808,-0.567 1.662,-0.942 2.524,-1.424 -2.732,0.166 -6.522,1.59 -5.352,0.295 -4.456,1.988 -12.37,4.779 -16.811,8.943 l -0.14,-0.933 c -2.035,2.443 -8.874,7.296 -9.419,10.46 l -0.544,0.127 c -1.059,1.793 -1.744,3.825 -2.584,5.67 -1.385,2.36 -2.03,0.908 -1.833,1.278 -2.724,5.523 -4.077,10.164 -5.246,13.97 0.833,1.245 0.02,7.495 0.335,12.497 -1.368,24.704 17.338,48.69 37.785,54.228 2.997,1.072 7.454,1.031 11.245,1.141 -4.473,-1.279 -5.051,-0.678 -9.408,-2.197 -3.143,-1.48 -3.832,-3.17 -6.058,-5.102 l 0.881,1.557 c -4.366,-1.545 -2.539,-1.912 -6.091,-3.037 l 0.941,-1.229 C 28.751,98.334 26.418,96.056 25.78,94.795 l -1.548,0.061 c -1.86,-2.295 -2.851,-3.949 -2.779,-5.23 l -0.5,0.891 c -0.567,-0.973 -6.843,-8.607 -3.587,-6.83 -0.605,-0.553 -1.409,-0.9 -2.281,-2.484 l 0.663,-0.758 c -1.567,-2.016 -2.884,-4.6 -2.784,-5.461 0.836,1.129 1.416,1.34 1.99,1.533 -3.957,-9.818 -4.179,-0.541 -7.176,-9.994 L 8.412,66.472 C 7.926,65.74 7.631,64.945 7.24,64.165 l 0.276,-2.75 C 4.667,58.121 6.719,47.409 7.13,41.534 7.415,39.145 9.508,36.602 11.1,32.614 l -0.97,-0.167 c 1.854,-3.234 10.586,-12.988 14.63,-12.486 1.959,-2.461 -0.389,-0.009 -0.772,-0.629 4.303,-4.453 5.656,-3.146 8.56,-3.947 3.132,-1.859 -2.688,0.725 -1.203,-0.709 5.414,-1.383 3.837,-3.144 10.9,-3.846 0.745,0.424 -1.729,0.655 -2.35,1.205 4.511,-2.207 14.275,-1.705 20.617,1.225 7.359,3.439 15.627,13.605 15.953,23.17 l 0.371,0.1 c -0.188,3.802 0.582,8.199 -0.752,12.238 l 0.908,-1.912"
|
||||
ns2:knockout="Off"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#9ab0c9;fill-opacity:1;stroke-width:0.42865211" />
|
||||
<path
|
||||
id="path1073"
|
||||
d="m 32.372,59.764 -0.252,1.26 c 1.181,1.604 2.118,3.342 3.626,4.596 -1.085,-2.118 -1.891,-2.993 -3.374,-5.856"
|
||||
ns2:knockout="Off"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#9ab0c9;fill-opacity:1;stroke-width:0.42865211" />
|
||||
<path
|
||||
id="path1075"
|
||||
d="m 35.164,59.654 c -0.625,-0.691 -0.995,-1.523 -1.409,-2.352 0.396,1.457 1.207,2.709 1.962,3.982 l -0.553,-1.63"
|
||||
ns2:knockout="Off"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#9ab0c9;fill-opacity:1;stroke-width:0.42865211" />
|
||||
<path
|
||||
id="path1077"
|
||||
d="m 84.568,48.916 -0.264,0.662 c -0.484,3.438 -1.529,6.84 -3.131,9.994 1.77,-3.328 2.915,-6.968 3.395,-10.656"
|
||||
ns2:knockout="Off"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#9ab0c9;fill-opacity:1;stroke-width:0.42865211" />
|
||||
<path
|
||||
id="path1079"
|
||||
d="M 45.527,0.537 C 46.742,0.092 48.514,0.293 49.803,0 48.123,0.141 46.451,0.225 44.8,0.438 l 0.727,0.099"
|
||||
ns2:knockout="Off"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#9ab0c9;fill-opacity:1;stroke-width:0.42865211" />
|
||||
<path
|
||||
id="path1081"
|
||||
d="m 2.872,23.219 c 0.28,2.592 -1.95,3.598 0.494,1.889 1.31,-2.951 -0.512,-0.815 -0.494,-1.889"
|
||||
ns2:knockout="Off"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#9ab0c9;fill-opacity:1;stroke-width:0.42865211" />
|
||||
<path
|
||||
id="path1083"
|
||||
d="M 0,35.215 C 0.563,33.487 0.665,32.449 0.88,31.449 -0.676,33.438 0.164,33.862 0,35.215"
|
||||
ns2:knockout="Off"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#9ab0c9;fill-opacity:1;stroke-width:0.42865211" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
style="overflow:visible;stroke-width:0.26745555"
|
||||
id="g1021"
|
||||
transform="matrix(0.98926092,0,0,0.98926092,54.110223,140.5767)">
|
||||
<g
|
||||
ns2:rgbTrio="#4F008000FFFF"
|
||||
ns2:dimmedPercent="50"
|
||||
ns2:layer="yes"
|
||||
id="Layer_1"
|
||||
style="stroke-width:0.26745555">
|
||||
<g
|
||||
id="g991"
|
||||
style="stroke-width:0.26745555">
|
||||
<path
|
||||
id="path977"
|
||||
d="m 13.437,125.506 c -0.045,0.047 -0.045,7.506 -0.138,9.453 -0.092,1.574 -0.232,4.957 -3.568,4.957 -3.429,0 -4.263,-3.939 -4.541,-5.652 -0.324,-1.9 -0.324,-3.477 -0.324,-4.17 0,-2.225 0.139,-8.436 5.375,-8.436 1.576,0 2.456,0.465 3.151,0.834 z M 0,130.975 c 0,13.066 6.951,13.066 7.97,13.066 2.873,0 4.727,-1.576 5.514,-4.309 l 0.093,4.123 c 0.881,-0.047 1.761,-0.139 3.197,-0.139 0.51,0 0.926,0 1.298,0.047 0.371,0 0.741,0.045 1.158,0.092 -0.741,-1.482 -1.297,-4.818 -1.297,-12.049 0,-7.043 0,-18.951 0.602,-22.566 -1.667,0.789 -3.105,1.299 -6.256,1.576 1.251,1.344 1.251,2.039 1.251,8.154 -0.879,-0.277 -1.992,-0.602 -3.892,-0.602 C 1.344,118.369 0,125.598 0,130.975"
|
||||
ns2:knockout="Off"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#f9f9f9;stroke-width:0.26745555" />
|
||||
<path
|
||||
id="path979"
|
||||
d="m 25.13,128.609 c 0.047,-3.846 0.835,-7.275 4.124,-7.275 3.615,0 3.891,3.984 3.799,7.275 z m 12.51,0.465 c 0,-5.422 -1.065,-10.752 -7.923,-10.752 -9.452,0 -9.452,10.475 -9.452,12.697 0,9.406 4.216,13.113 11.306,13.113 3.149,0 4.68,-0.461 5.514,-0.695 -0.046,-1.668 0.185,-2.734 0.465,-4.17 -0.975,0.604 -2.226,1.391 -5.006,1.391 -7.229,0 -7.322,-6.582 -7.322,-8.852 H 37.55 l 0.09,-2.732"
|
||||
ns2:knockout="Off"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#f9f9f9;stroke-width:0.26745555" />
|
||||
<path
|
||||
id="path981"
|
||||
d="m 52.715,131.066 c 0,4.309 -0.787,10.102 -6.162,10.102 -0.742,0 -1.668,-0.141 -2.27,-0.279 -0.093,-1.668 -0.093,-4.541 -0.093,-7.877 0,-3.986 0.416,-6.068 0.742,-7.09 0.972,-3.289 3.15,-3.334 3.566,-3.334 3.522,0 4.217,4.865 4.217,8.478 z m -13.298,5.051 c 0,3.43 0,5.375 -0.556,6.857 1.9,0.742 4.262,1.158 7.09,1.158 1.807,0 7.043,0 9.869,-5.791 1.344,-2.688 1.807,-6.303 1.807,-9.037 0,-1.668 -0.186,-5.328 -1.529,-7.646 -1.296,-2.176 -3.382,-3.289 -5.605,-3.289 -4.449,0 -5.746,3.707 -6.44,5.607 0,-2.363 0.045,-10.611 0.415,-14.828 -3.011,1.391 -4.866,1.621 -6.857,1.807 1.807,0.74 1.807,3.801 1.807,13.764 v 11.398"
|
||||
ns2:knockout="Off"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#f9f9f9;stroke-width:0.26745555" />
|
||||
<path
|
||||
id="path983"
|
||||
d="m 66.535,143.855 c -0.928,-0.139 -1.578,-0.232 -2.922,-0.232 -1.48,0 -2.502,0.094 -3.566,0.232 0.463,-0.881 0.648,-1.299 0.787,-4.309 0.186,-4.125 0.232,-15.154 -0.092,-17.471 -0.232,-1.762 -0.648,-2.039 -1.297,-2.502 3.799,-0.371 4.865,-0.648 6.625,-1.482 -0.369,2.037 -0.418,3.059 -0.418,6.162 -0.091,15.989 -0.138,17.702 0.883,19.602"
|
||||
ns2:knockout="Off"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#f9f9f9;stroke-width:0.26745555" />
|
||||
<path
|
||||
id="path985"
|
||||
d="m 81.373,130.74 c -0.092,2.92 -0.139,4.959 -0.928,6.58 -0.973,2.086 -2.594,2.688 -3.799,2.688 -2.783,0 -3.383,-2.316 -3.383,-4.586 0,-4.355 3.893,-4.682 5.652,-4.682 z m -12.744,5.701 c 0,2.92 0.881,5.838 3.477,7.09 1.158,0.51 2.316,0.51 2.688,0.51 4.264,0 5.699,-3.152 6.58,-5.098 -0.047,2.039 0,3.289 0.139,4.912 0.834,-0.047 1.668,-0.139 3.059,-0.139 0.787,0 1.529,0.092 2.316,0.139 -0.51,-0.787 -0.787,-1.252 -0.928,-3.059 -0.092,-1.76 -0.092,-3.521 -0.092,-5.977 l 0.047,-9.453 c 0,-3.523 -0.928,-6.998 -7.879,-6.998 -4.586,0 -7.273,1.391 -8.617,2.086 0.557,1.02 1.02,1.898 1.436,3.893 1.809,-1.576 4.172,-2.41 6.58,-2.41 3.848,0 3.848,2.549 3.848,6.162 -0.881,-0.045 -1.623,-0.137 -2.875,-0.137 -5.887,10e-4 -9.779,2.268 -9.779,8.479"
|
||||
ns2:knockout="Off"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#f9f9f9;stroke-width:0.26745555" />
|
||||
<path
|
||||
id="path987"
|
||||
d="m 108.063,139.268 c 0.047,1.576 0.047,3.244 0.695,4.588 -1.021,-0.092 -1.623,-0.232 -3.521,-0.232 -1.113,0 -1.715,0.094 -2.596,0.232 0.184,-0.602 0.279,-0.834 0.371,-1.623 0.139,-1.064 0.232,-4.633 0.232,-5.885 v -5.004 c 0,-2.178 0,-5.33 -0.141,-6.441 -0.092,-0.787 -0.322,-2.918 -3.012,-2.918 -2.641,0 -3.521,1.945 -3.846,3.521 -0.369,1.621 -0.369,3.383 -0.369,10.24 0.045,5.932 0.045,6.486 0.508,8.109 -0.787,-0.092 -1.76,-0.184 -3.15,-0.184 -1.113,0 -1.854,0.045 -2.779,0.184 0.324,-0.742 0.51,-1.113 0.602,-3.707 0.094,-2.549 0.279,-15.061 -0.141,-18.025 -0.23,-1.809 -0.695,-2.225 -1.203,-2.688 3.754,-0.186 4.957,-0.789 6.117,-1.389 v 4.91 c 0.555,-1.438 1.713,-4.635 6.348,-4.635 5.793,0 5.838,4.217 5.885,6.996 v 13.951"
|
||||
ns2:knockout="Off"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#f9f9f9;stroke-width:0.26745555" />
|
||||
<path
|
||||
id="path989"
|
||||
d="m 66.926,111.533 -3.838,3.836 -3.836,-3.836 3.836,-3.836 3.838,3.836"
|
||||
ns2:knockout="Off"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#9ab0c9;fill-opacity:1;stroke-width:0.26745555" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:6.61458302px;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
x="164.66452"
|
||||
y="260.76608"
|
||||
id="text1797"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan1795"
|
||||
x="164.66452"
|
||||
y="260.76608"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:22.57777786px;font-family:Quicksand;-inkscape-font-specification:'Quicksand Bold';fill:#9ab0c9;fill-opacity:1;stroke-width:0.26458332px">10</tspan></text>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 15 KiB |
|
@ -1,213 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:ns2="http://ns.adobe.com/AdobeIllustrator/10.0/"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="156.32251mm"
|
||||
height="53.551666mm"
|
||||
viewBox="0 0 156.3225 53.551666"
|
||||
version="1.1"
|
||||
id="svg901"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
|
||||
sodipodi:docname="logo-text.svg">
|
||||
<defs
|
||||
id="defs895" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.98994949"
|
||||
inkscape:cx="262.83249"
|
||||
inkscape:cy="287.33662"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1008"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="36"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata898">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Calque 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-5.3777482,-236.75438)">
|
||||
<g
|
||||
id="g1014">
|
||||
<g
|
||||
transform="matrix(0.49379584,0,0,0.49379584,51.719596,215.85938)"
|
||||
id="g1108"
|
||||
style="overflow:visible;fill:#9ab0c9;fill-opacity:1;stroke-width:0.42865211">
|
||||
<g
|
||||
transform="translate(-93.766085,42.315052)"
|
||||
style="fill:#9ab0c9;fill-opacity:1;stroke-width:0.42865211"
|
||||
id="Layer_1-8"
|
||||
ns2:layer="yes"
|
||||
ns2:dimmedPercent="50"
|
||||
ns2:rgbTrio="#4F008000FFFF">
|
||||
<g
|
||||
style="fill:#9ab0c9;fill-opacity:1;stroke-width:0.42865211"
|
||||
id="g1085">
|
||||
<path
|
||||
style="fill:#9ab0c9;fill-opacity:1;stroke-width:0.42865211"
|
||||
inkscape:connector-curvature="0"
|
||||
ns2:knockout="Off"
|
||||
d="m 51.986,57.297 c -1.797,0.025 0.34,0.926 2.686,1.287 0.648,-0.506 1.236,-1.018 1.76,-1.516 -1.461,0.358 -2.948,0.366 -4.446,0.229"
|
||||
id="path1061" />
|
||||
<path
|
||||
style="fill:#9ab0c9;fill-opacity:1;stroke-width:0.42865211"
|
||||
inkscape:connector-curvature="0"
|
||||
ns2:knockout="Off"
|
||||
d="m 61.631,54.893 c 1.07,-1.477 1.85,-3.094 2.125,-4.766 -0.24,1.192 -0.887,2.221 -1.496,3.307 -3.359,2.115 -0.316,-1.256 -0.002,-2.537 -3.612,4.546 -0.496,2.726 -0.627,3.996"
|
||||
id="path1063" />
|
||||
<path
|
||||
style="fill:#9ab0c9;fill-opacity:1;stroke-width:0.42865211"
|
||||
inkscape:connector-curvature="0"
|
||||
ns2:knockout="Off"
|
||||
d="m 65.191,45.629 c 0.217,-3.236 -0.637,-2.213 -0.924,-0.978 0.335,0.174 0.6,2.281 0.924,0.978"
|
||||
id="path1065" />
|
||||
<path
|
||||
style="fill:#9ab0c9;fill-opacity:1;stroke-width:0.42865211"
|
||||
inkscape:connector-curvature="0"
|
||||
ns2:knockout="Off"
|
||||
d="m 45.172,1.399 c 0.959,0.172 2.072,0.304 1.916,0.533 1.049,-0.23 1.287,-0.442 -1.916,-0.533"
|
||||
id="path1067" />
|
||||
<path
|
||||
style="fill:#9ab0c9;fill-opacity:1;stroke-width:0.42865211"
|
||||
inkscape:connector-curvature="0"
|
||||
ns2:knockout="Off"
|
||||
d="M 47.088,1.932 46.41,2.072 47.041,2.016 47.088,1.932"
|
||||
id="path1069" />
|
||||
<path
|
||||
style="fill:#9ab0c9;fill-opacity:1;stroke-width:0.42865211"
|
||||
inkscape:connector-curvature="0"
|
||||
ns2:knockout="Off"
|
||||
d="m 76.992,46.856 c 0.107,2.906 -0.85,4.316 -1.713,6.812 l -1.553,0.776 c -1.271,2.468 0.123,1.567 -0.787,3.53 -1.984,1.764 -6.021,5.52 -7.313,5.863 -0.943,-0.021 0.639,-1.113 0.846,-1.541 -2.656,1.824 -2.131,2.738 -6.193,3.846 L 60.16,65.878 C 50.142,70.591 36.226,61.251 36.409,48.507 c -0.107,0.809 -0.304,0.607 -0.526,0.934 -0.517,-6.557 3.028,-13.143 9.007,-15.832 5.848,-2.895 12.704,-1.707 16.893,2.197 -2.301,-3.014 -6.881,-6.209 -12.309,-5.91 -5.317,0.084 -10.291,3.463 -11.951,7.131 -2.724,1.715 -3.04,6.611 -4.227,7.507 -1.597,11.737 3.004,16.808 10.787,22.773 1.225,0.826 0.345,0.951 0.511,1.58 -2.586,-1.211 -4.954,-3.039 -6.901,-5.277 1.033,1.512 2.148,2.982 3.589,4.137 -2.438,-0.826 -5.695,-5.908 -6.646,-6.115 4.203,7.525 17.052,13.197 23.78,10.383 -3.113,0.115 -7.068,0.064 -10.566,-1.229 -1.469,-0.756 -3.467,-2.322 -3.11,-2.615 9.182,3.43 18.667,2.598 26.612,-3.771 2.021,-1.574 4.229,-4.252 4.867,-4.289 -0.961,1.445 0.164,0.695 -0.574,1.971 2.014,-3.248 -0.875,-1.322 2.082,-5.609 l 1.092,1.504 c -0.406,-2.696 3.348,-5.97 2.967,-10.234 0.861,-1.304 0.961,1.403 0.047,4.403 1.268,-3.328 0.334,-3.863 0.66,-6.609 0.352,0.923 0.814,1.904 1.051,2.878 -0.826,-3.216 0.848,-5.416 1.262,-7.285 -0.408,-0.181 -1.275,1.422 -1.473,-2.377 0.029,-1.65 0.459,-0.865 0.625,-1.271 -0.324,-0.186 -1.174,-1.451 -1.691,-3.877 0.375,-0.57 1.002,1.478 1.512,1.562 -0.328,-1.929 -0.893,-3.4 -0.916,-4.88 -1.49,-3.114 -0.527,0.415 -1.736,-1.337 -1.586,-4.947 1.316,-1.148 1.512,-3.396 2.404,3.483 3.775,8.881 4.404,11.117 -0.48,-2.726 -1.256,-5.367 -2.203,-7.922 0.73,0.307 -1.176,-5.609 0.949,-1.691 C 83.519,18.706 76.074,10.902 69.225,7.24 70.063,8.007 71.121,8.97 70.741,9.121 67.335,7.093 67.934,6.935 67.446,6.078 64.671,4.949 64.489,6.169 62.651,6.08 57.421,3.306 56.413,3.601 51.6,1.863 l 0.219,1.023 c -3.465,-1.154 -4.037,0.438 -7.782,0.004 -0.228,-0.178 1.2,-0.644 2.375,-0.815 -3.35,0.442 -3.193,-0.66 -6.471,0.122 0.808,-0.567 1.662,-0.942 2.524,-1.424 -2.732,0.166 -6.522,1.59 -5.352,0.295 -4.456,1.988 -12.37,4.779 -16.811,8.943 l -0.14,-0.933 c -2.035,2.443 -8.874,7.296 -9.419,10.46 l -0.544,0.127 c -1.059,1.793 -1.744,3.825 -2.584,5.67 -1.385,2.36 -2.03,0.908 -1.833,1.278 -2.724,5.523 -4.077,10.164 -5.246,13.97 0.833,1.245 0.02,7.495 0.335,12.497 -1.368,24.704 17.338,48.69 37.785,54.228 2.997,1.072 7.454,1.031 11.245,1.141 -4.473,-1.279 -5.051,-0.678 -9.408,-2.197 -3.143,-1.48 -3.832,-3.17 -6.058,-5.102 l 0.881,1.557 c -4.366,-1.545 -2.539,-1.912 -6.091,-3.037 l 0.941,-1.229 C 28.751,98.334 26.418,96.056 25.78,94.795 l -1.548,0.061 c -1.86,-2.295 -2.851,-3.949 -2.779,-5.23 l -0.5,0.891 c -0.567,-0.973 -6.843,-8.607 -3.587,-6.83 -0.605,-0.553 -1.409,-0.9 -2.281,-2.484 l 0.663,-0.758 c -1.567,-2.016 -2.884,-4.6 -2.784,-5.461 0.836,1.129 1.416,1.34 1.99,1.533 -3.957,-9.818 -4.179,-0.541 -7.176,-9.994 L 8.412,66.472 C 7.926,65.74 7.631,64.945 7.24,64.165 l 0.276,-2.75 C 4.667,58.121 6.719,47.409 7.13,41.534 7.415,39.145 9.508,36.602 11.1,32.614 l -0.97,-0.167 c 1.854,-3.234 10.586,-12.988 14.63,-12.486 1.959,-2.461 -0.389,-0.009 -0.772,-0.629 4.303,-4.453 5.656,-3.146 8.56,-3.947 3.132,-1.859 -2.688,0.725 -1.203,-0.709 5.414,-1.383 3.837,-3.144 10.9,-3.846 0.745,0.424 -1.729,0.655 -2.35,1.205 4.511,-2.207 14.275,-1.705 20.617,1.225 7.359,3.439 15.627,13.605 15.953,23.17 l 0.371,0.1 c -0.188,3.802 0.582,8.199 -0.752,12.238 l 0.908,-1.912"
|
||||
id="path1071" />
|
||||
<path
|
||||
style="fill:#9ab0c9;fill-opacity:1;stroke-width:0.42865211"
|
||||
inkscape:connector-curvature="0"
|
||||
ns2:knockout="Off"
|
||||
d="m 32.372,59.764 -0.252,1.26 c 1.181,1.604 2.118,3.342 3.626,4.596 -1.085,-2.118 -1.891,-2.993 -3.374,-5.856"
|
||||
id="path1073" />
|
||||
<path
|
||||
style="fill:#9ab0c9;fill-opacity:1;stroke-width:0.42865211"
|
||||
inkscape:connector-curvature="0"
|
||||
ns2:knockout="Off"
|
||||
d="m 35.164,59.654 c -0.625,-0.691 -0.995,-1.523 -1.409,-2.352 0.396,1.457 1.207,2.709 1.962,3.982 l -0.553,-1.63"
|
||||
id="path1075" />
|
||||
<path
|
||||
style="fill:#9ab0c9;fill-opacity:1;stroke-width:0.42865211"
|
||||
inkscape:connector-curvature="0"
|
||||
ns2:knockout="Off"
|
||||
d="m 84.568,48.916 -0.264,0.662 c -0.484,3.438 -1.529,6.84 -3.131,9.994 1.77,-3.328 2.915,-6.968 3.395,-10.656"
|
||||
id="path1077" />
|
||||
<path
|
||||
style="fill:#9ab0c9;fill-opacity:1;stroke-width:0.42865211"
|
||||
inkscape:connector-curvature="0"
|
||||
ns2:knockout="Off"
|
||||
d="M 45.527,0.537 C 46.742,0.092 48.514,0.293 49.803,0 48.123,0.141 46.451,0.225 44.8,0.438 l 0.727,0.099"
|
||||
id="path1079" />
|
||||
<path
|
||||
style="fill:#9ab0c9;fill-opacity:1;stroke-width:0.42865211"
|
||||
inkscape:connector-curvature="0"
|
||||
ns2:knockout="Off"
|
||||
d="m 2.872,23.219 c 0.28,2.592 -1.95,3.598 0.494,1.889 1.31,-2.951 -0.512,-0.815 -0.494,-1.889"
|
||||
id="path1081" />
|
||||
<path
|
||||
style="fill:#9ab0c9;fill-opacity:1;stroke-width:0.42865211"
|
||||
inkscape:connector-curvature="0"
|
||||
ns2:knockout="Off"
|
||||
d="M 0,35.215 C 0.563,33.487 0.665,32.449 0.88,31.449 -0.676,33.438 0.164,33.862 0,35.215"
|
||||
id="path1083" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0.98926092,0,0,0.98926092,54.110223,140.5767)"
|
||||
id="g1021"
|
||||
style="overflow:visible;stroke-width:0.26745555">
|
||||
<g
|
||||
style="stroke-width:0.26745555"
|
||||
id="Layer_1"
|
||||
ns2:layer="yes"
|
||||
ns2:dimmedPercent="50"
|
||||
ns2:rgbTrio="#4F008000FFFF">
|
||||
<g
|
||||
style="stroke-width:0.26745555"
|
||||
id="g991">
|
||||
<path
|
||||
style="fill:#f9f9f9;stroke-width:0.26745555"
|
||||
inkscape:connector-curvature="0"
|
||||
ns2:knockout="Off"
|
||||
d="m 13.437,125.506 c -0.045,0.047 -0.045,7.506 -0.138,9.453 -0.092,1.574 -0.232,4.957 -3.568,4.957 -3.429,0 -4.263,-3.939 -4.541,-5.652 -0.324,-1.9 -0.324,-3.477 -0.324,-4.17 0,-2.225 0.139,-8.436 5.375,-8.436 1.576,0 2.456,0.465 3.151,0.834 z M 0,130.975 c 0,13.066 6.951,13.066 7.97,13.066 2.873,0 4.727,-1.576 5.514,-4.309 l 0.093,4.123 c 0.881,-0.047 1.761,-0.139 3.197,-0.139 0.51,0 0.926,0 1.298,0.047 0.371,0 0.741,0.045 1.158,0.092 -0.741,-1.482 -1.297,-4.818 -1.297,-12.049 0,-7.043 0,-18.951 0.602,-22.566 -1.667,0.789 -3.105,1.299 -6.256,1.576 1.251,1.344 1.251,2.039 1.251,8.154 -0.879,-0.277 -1.992,-0.602 -3.892,-0.602 C 1.344,118.369 0,125.598 0,130.975"
|
||||
id="path977" />
|
||||
<path
|
||||
style="fill:#f9f9f9;stroke-width:0.26745555"
|
||||
inkscape:connector-curvature="0"
|
||||
ns2:knockout="Off"
|
||||
d="m 25.13,128.609 c 0.047,-3.846 0.835,-7.275 4.124,-7.275 3.615,0 3.891,3.984 3.799,7.275 z m 12.51,0.465 c 0,-5.422 -1.065,-10.752 -7.923,-10.752 -9.452,0 -9.452,10.475 -9.452,12.697 0,9.406 4.216,13.113 11.306,13.113 3.149,0 4.68,-0.461 5.514,-0.695 -0.046,-1.668 0.185,-2.734 0.465,-4.17 -0.975,0.604 -2.226,1.391 -5.006,1.391 -7.229,0 -7.322,-6.582 -7.322,-8.852 H 37.55 l 0.09,-2.732"
|
||||
id="path979" />
|
||||
<path
|
||||
style="fill:#f9f9f9;stroke-width:0.26745555"
|
||||
inkscape:connector-curvature="0"
|
||||
ns2:knockout="Off"
|
||||
d="m 52.715,131.066 c 0,4.309 -0.787,10.102 -6.162,10.102 -0.742,0 -1.668,-0.141 -2.27,-0.279 -0.093,-1.668 -0.093,-4.541 -0.093,-7.877 0,-3.986 0.416,-6.068 0.742,-7.09 0.972,-3.289 3.15,-3.334 3.566,-3.334 3.522,0 4.217,4.865 4.217,8.478 z m -13.298,5.051 c 0,3.43 0,5.375 -0.556,6.857 1.9,0.742 4.262,1.158 7.09,1.158 1.807,0 7.043,0 9.869,-5.791 1.344,-2.688 1.807,-6.303 1.807,-9.037 0,-1.668 -0.186,-5.328 -1.529,-7.646 -1.296,-2.176 -3.382,-3.289 -5.605,-3.289 -4.449,0 -5.746,3.707 -6.44,5.607 0,-2.363 0.045,-10.611 0.415,-14.828 -3.011,1.391 -4.866,1.621 -6.857,1.807 1.807,0.74 1.807,3.801 1.807,13.764 v 11.398"
|
||||
id="path981" />
|
||||
<path
|
||||
style="fill:#f9f9f9;stroke-width:0.26745555"
|
||||
inkscape:connector-curvature="0"
|
||||
ns2:knockout="Off"
|
||||
d="m 66.535,143.855 c -0.928,-0.139 -1.578,-0.232 -2.922,-0.232 -1.48,0 -2.502,0.094 -3.566,0.232 0.463,-0.881 0.648,-1.299 0.787,-4.309 0.186,-4.125 0.232,-15.154 -0.092,-17.471 -0.232,-1.762 -0.648,-2.039 -1.297,-2.502 3.799,-0.371 4.865,-0.648 6.625,-1.482 -0.369,2.037 -0.418,3.059 -0.418,6.162 -0.091,15.989 -0.138,17.702 0.883,19.602"
|
||||
id="path983" />
|
||||
<path
|
||||
style="fill:#f9f9f9;stroke-width:0.26745555"
|
||||
inkscape:connector-curvature="0"
|
||||
ns2:knockout="Off"
|
||||
d="m 81.373,130.74 c -0.092,2.92 -0.139,4.959 -0.928,6.58 -0.973,2.086 -2.594,2.688 -3.799,2.688 -2.783,0 -3.383,-2.316 -3.383,-4.586 0,-4.355 3.893,-4.682 5.652,-4.682 z m -12.744,5.701 c 0,2.92 0.881,5.838 3.477,7.09 1.158,0.51 2.316,0.51 2.688,0.51 4.264,0 5.699,-3.152 6.58,-5.098 -0.047,2.039 0,3.289 0.139,4.912 0.834,-0.047 1.668,-0.139 3.059,-0.139 0.787,0 1.529,0.092 2.316,0.139 -0.51,-0.787 -0.787,-1.252 -0.928,-3.059 -0.092,-1.76 -0.092,-3.521 -0.092,-5.977 l 0.047,-9.453 c 0,-3.523 -0.928,-6.998 -7.879,-6.998 -4.586,0 -7.273,1.391 -8.617,2.086 0.557,1.02 1.02,1.898 1.436,3.893 1.809,-1.576 4.172,-2.41 6.58,-2.41 3.848,0 3.848,2.549 3.848,6.162 -0.881,-0.045 -1.623,-0.137 -2.875,-0.137 -5.887,10e-4 -9.779,2.268 -9.779,8.479"
|
||||
id="path985" />
|
||||
<path
|
||||
style="fill:#f9f9f9;stroke-width:0.26745555"
|
||||
inkscape:connector-curvature="0"
|
||||
ns2:knockout="Off"
|
||||
d="m 108.063,139.268 c 0.047,1.576 0.047,3.244 0.695,4.588 -1.021,-0.092 -1.623,-0.232 -3.521,-0.232 -1.113,0 -1.715,0.094 -2.596,0.232 0.184,-0.602 0.279,-0.834 0.371,-1.623 0.139,-1.064 0.232,-4.633 0.232,-5.885 v -5.004 c 0,-2.178 0,-5.33 -0.141,-6.441 -0.092,-0.787 -0.322,-2.918 -3.012,-2.918 -2.641,0 -3.521,1.945 -3.846,3.521 -0.369,1.621 -0.369,3.383 -0.369,10.24 0.045,5.932 0.045,6.486 0.508,8.109 -0.787,-0.092 -1.76,-0.184 -3.15,-0.184 -1.113,0 -1.854,0.045 -2.779,0.184 0.324,-0.742 0.51,-1.113 0.602,-3.707 0.094,-2.549 0.279,-15.061 -0.141,-18.025 -0.23,-1.809 -0.695,-2.225 -1.203,-2.688 3.754,-0.186 4.957,-0.789 6.117,-1.389 v 4.91 c 0.555,-1.438 1.713,-4.635 6.348,-4.635 5.793,0 5.838,4.217 5.885,6.996 v 13.951"
|
||||
id="path987" />
|
||||
<path
|
||||
style="fill:#9ab0c9;fill-opacity:1;stroke-width:0.26745555"
|
||||
inkscape:connector-curvature="0"
|
||||
ns2:knockout="Off"
|
||||
d="m 66.926,111.533 -3.838,3.836 -3.836,-3.836 3.836,-3.836 3.838,3.836"
|
||||
id="path989" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 15 KiB |
|
@ -1,122 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Generator: Adobe Illustrator 10.0, SVG Export Plug-In . SVG Version: 3.0.0 Build 77) -->
|
||||
|
||||
<svg
|
||||
xmlns:ns4="http://ns.adobe.com/SaveForWeb/1.0/"
|
||||
xmlns:ns3="http://ns.adobe.com/Variables/1.0/"
|
||||
xmlns:ns2="http://ns.adobe.com/AdobeIllustrator/10.0/"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
ns2:viewOrigin="262 450"
|
||||
ns2:rulerOrigin="0 0"
|
||||
ns2:pageBounds="0 792 612 0"
|
||||
width="128"
|
||||
height="128"
|
||||
viewBox="0 0 128 128"
|
||||
overflow="visible"
|
||||
enable-background="new 0 0 87.041 108.445"
|
||||
xml:space="preserve"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
|
||||
sodipodi:docname="logo.svg"
|
||||
style="overflow:visible"
|
||||
inkscape:export-filename="/tmp/emblem-debian.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90"><defs
|
||||
id="defs35" /><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1008"
|
||||
id="namedview33"
|
||||
showgrid="false"
|
||||
inkscape:zoom="2.1762184"
|
||||
inkscape:cx="5.8451968"
|
||||
inkscape:cy="26.779991"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="36"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg2" /><metadata
|
||||
id="metadata4"><ns3:variableSets><ns3:variableSet
|
||||
varSetName="binding1"
|
||||
locked="none"><ns3:variables /><ns3:sampleDataSets /></ns3:variableSet></ns3:variableSets><ns4:sfw><ns4:slices /><ns4:sliceSourceBounds
|
||||
y="341.555"
|
||||
x="262"
|
||||
width="87.041"
|
||||
height="108.445"
|
||||
bottomLeftOrigin="true" /></ns4:sfw><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><g
|
||||
id="g1575"><path
|
||||
style="fill:#9ab0c9;fill-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path9"
|
||||
d="m 72.505555,67.0725 c -1.797,0.025 0.34,0.926 2.686,1.287 0.648,-0.506 1.236,-1.018 1.76,-1.516 -1.461,0.358 -2.948,0.366 -4.446,0.229"
|
||||
ns2:knockout="Off" /><path
|
||||
style="fill:#9ab0c9;fill-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path11"
|
||||
d="m 82.150555,64.6685 c 1.07,-1.477 1.85,-3.094 2.125,-4.766 -0.24,1.192 -0.887,2.221 -1.496,3.307 -3.359,2.115 -0.316,-1.256 -0.002,-2.537 -3.612,4.546 -0.496,2.726 -0.627,3.996"
|
||||
ns2:knockout="Off" /><path
|
||||
style="fill:#9ab0c9;fill-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path13"
|
||||
d="m 85.710555,55.4045 c 0.217,-3.236 -0.637,-2.213 -0.924,-0.978 0.335,0.174 0.6,2.281 0.924,0.978"
|
||||
ns2:knockout="Off" /><path
|
||||
style="fill:#9ab0c9;fill-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path15"
|
||||
d="m 65.691555,11.1745 c 0.959,0.172 2.072,0.304 1.916,0.533 1.049,-0.23 1.287,-0.442 -1.916,-0.533"
|
||||
ns2:knockout="Off" /><path
|
||||
style="fill:#9ab0c9;fill-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path17"
|
||||
d="m 67.607555,11.7075 -0.678,0.14 0.631,-0.056 0.047,-0.084"
|
||||
ns2:knockout="Off" /><path
|
||||
style="fill:#9ab0c9;fill-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path19"
|
||||
d="m 97.511555,56.6315 c 0.107,2.906 -0.85,4.316 -1.713,6.812 l -1.553,0.776 c -1.271,2.468 0.123,1.567 -0.787,3.53 -1.984,1.764 -6.021,5.52 -7.313,5.863 -0.943,-0.021 0.639,-1.113 0.846,-1.541 -2.656,1.824 -2.131,2.738 -6.193,3.846 l -0.119,-0.264 c -10.018,4.713 -23.934,-4.627 -23.751,-17.371 -0.107,0.809 -0.304,0.607 -0.526,0.934 -0.517,-6.557 3.028,-13.143 9.007,-15.832 5.848,-2.895 12.704,-1.707 16.893,2.197 -2.301,-3.014 -6.881,-6.209 -12.309,-5.91 -5.317,0.084 -10.291,3.463 -11.951,7.131 -2.724,1.715 -3.04,6.611 -4.227,7.507 -1.597,11.737 3.004,16.808 10.787,22.773 1.225,0.826 0.345,0.951 0.511,1.58 -2.586,-1.211 -4.954,-3.039 -6.901,-5.277 1.033,1.512 2.148,2.982 3.589,4.137 -2.438,-0.826 -5.695,-5.908 -6.646,-6.115 4.203,7.525 17.052,13.197 23.78,10.383 -3.113,0.115 -7.068,0.064 -10.566,-1.229 -1.469,-0.756 -3.467,-2.322 -3.11,-2.615 9.182,3.43 18.667,2.598 26.612,-3.771 2.021,-1.574 4.229,-4.252 4.867,-4.289 -0.961,1.445 0.164,0.695 -0.574,1.971 2.014,-3.248 -0.875,-1.322 2.082,-5.609 l 1.092,1.504 c -0.406,-2.696 3.347995,-5.97 2.966995,-10.234 0.861,-1.304 0.961,1.403 0.047,4.403 1.268,-3.328 0.334,-3.863 0.66,-6.609 0.352,0.923 0.814,1.904 1.051,2.878 -0.826,-3.216 0.848,-5.416 1.262,-7.285 -0.408,-0.181 -1.275,1.422 -1.473,-2.377 0.029,-1.65 0.459,-0.865 0.625,-1.271 -0.324,-0.186 -1.174,-1.451 -1.691,-3.877 0.375,-0.57 1.002,1.478 1.512,1.562 -0.328,-1.929 -0.893,-3.4 -0.916,-4.88 -1.49,-3.114 -0.527,0.415 -1.736,-1.337 -1.586,-4.947 1.316,-1.148 1.512,-3.396 2.404,3.483 3.775,8.881 4.404,11.117 -0.48,-2.726 -1.256,-5.367 -2.203,-7.922 0.73,0.307 -1.176,-5.609 0.949,-1.691 -2.26999,-8.352 -9.714995,-16.156 -16.563995,-19.818 0.838,0.767 1.896,1.73 1.516,1.881 -3.406,-2.028 -2.807,-2.186 -3.295,-3.043 -2.775,-1.129 -2.957,0.091 -4.795,0.002 -5.23,-2.774 -6.238,-2.479 -11.051,-4.217 l 0.219,1.023 c -3.465,-1.154 -4.037,0.438 -7.782,0.004 -0.228,-0.178 1.2,-0.644 2.375,-0.815 -3.35,0.442 -3.193,-0.66 -6.471,0.122 0.808,-0.567 1.662,-0.942 2.524,-1.424 -2.732,0.166 -6.522,1.59 -5.352,0.295 -4.456,1.988 -12.37,4.779 -16.811,8.943 l -0.14,-0.933 c -2.035,2.443 -8.874,7.296 -9.419,10.46 l -0.544,0.127 c -1.059,1.793 -1.744,3.825 -2.584,5.67 -1.385,2.36 -2.03,0.908 -1.833,1.278 -2.724,5.523 -4.077,10.164 -5.246,13.97 0.833,1.245 0.02,7.495 0.335,12.497 -1.368,24.704 17.338,48.69 37.785,54.228 2.997,1.072 7.454,1.031 11.245,1.141 -4.473,-1.279 -5.051,-0.678 -9.408,-2.197 -3.143,-1.48 -3.832,-3.17 -6.058,-5.102 l 0.881,1.557 c -4.366,-1.545 -2.539,-1.912 -6.091,-3.037 l 0.941,-1.229 c -1.415,-0.107 -3.748,-2.385 -4.386,-3.646 l -1.548,0.061 c -1.86,-2.295 -2.851,-3.949 -2.779,-5.23 l -0.5,0.891 c -0.567,-0.973 -6.843,-8.607 -3.587,-6.83 -0.605,-0.553 -1.409,-0.9 -2.281,-2.484 l 0.663,-0.758 c -1.567,-2.016 -2.884,-4.6 -2.784,-5.461 0.836,1.129 1.416,1.34 1.99,1.533 -3.957,-9.818 -4.179,-0.541 -7.176,-9.994 l 0.634,-0.051 c -0.486,-0.732 -0.781,-1.527 -1.172,-2.307 l 0.276,-2.75 c -2.849,-3.294 -0.797,-14.006 -0.386,-19.881 0.285,-2.389 2.378,-4.932 3.97,-8.92 l -0.97,-0.167 c 1.854,-3.234 10.586,-12.988 14.63,-12.486 1.959,-2.461 -0.389,-0.009 -0.772,-0.629 4.303,-4.453 5.656,-3.146 8.56,-3.947 3.132,-1.859 -2.688,0.725 -1.203,-0.709 5.414,-1.383 3.837,-3.144 10.9,-3.846 0.745,0.424 -1.729,0.655 -2.35,1.205 4.511,-2.207 14.275,-1.705 20.617,1.225 7.359,3.439 15.627,13.605 15.953,23.17 l 0.371,0.1 c -0.188,3.802 0.582,8.199 -0.752,12.238 l 0.908,-1.912"
|
||||
ns2:knockout="Off" /><path
|
||||
style="fill:#9ab0c9;fill-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path21"
|
||||
d="m 52.891555,69.5395 -0.252,1.26 c 1.181,1.604 2.118,3.342 3.626,4.596 -1.085,-2.118 -1.891,-2.993 -3.374,-5.856"
|
||||
ns2:knockout="Off" /><path
|
||||
style="fill:#9ab0c9;fill-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path23"
|
||||
d="m 55.683555,69.4295 c -0.625,-0.691 -0.995,-1.523 -1.409,-2.352 0.396,1.457 1.207,2.709 1.962,3.982 l -0.553,-1.63"
|
||||
ns2:knockout="Off" /><path
|
||||
style="fill:#9ab0c9;fill-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path25"
|
||||
d="m 105.08755,58.6915 -0.26399,0.662 c -0.484,3.438 -1.529,6.84 -3.131,9.994 1.76999,-3.328 2.915,-6.968 3.39499,-10.656"
|
||||
ns2:knockout="Off" /><path
|
||||
style="fill:#9ab0c9;fill-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path27"
|
||||
d="m 66.046555,10.3125 c 1.215,-0.445 2.987,-0.244 4.276,-0.537 -1.68,0.141 -3.352,0.225 -5.003,0.438 l 0.727,0.099"
|
||||
ns2:knockout="Off" /><path
|
||||
style="fill:#9ab0c9;fill-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path29"
|
||||
d="m 23.391555,32.9945 c 0.28,2.592 -1.95,3.598 0.494,1.889 1.31,-2.951 -0.512,-0.815 -0.494,-1.889"
|
||||
ns2:knockout="Off" /><path
|
||||
style="fill:#9ab0c9;fill-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path31"
|
||||
d="m 20.519555,44.9905 c 0.563,-1.728 0.665,-2.766 0.88,-3.766 -1.556,1.989 -0.716,2.413 -0.88,3.766"
|
||||
ns2:knockout="Off" /></g></svg>
|
Before Width: | Height: | Size: 8.5 KiB |
|
@ -1,7 +0,0 @@
|
|||
[Desktop Entry]
|
||||
Version=1.1
|
||||
Name=Peppermint Reference Manual
|
||||
Comment=An introduction and reference manual for Peppermint OS
|
||||
Icon=/usr/share/pixmaps/peppermint-old.png
|
||||
Type=Link
|
||||
URL=https://peppermintos.com/guide/
|
|
@ -1,7 +0,0 @@
|
|||
[Desktop Entry]
|
||||
Version=1.1
|
||||
Name=Peppermint based Debian Security Updates
|
||||
Comment=Learn about new fixed packages
|
||||
Icon=/usr/share/pixmaps/debian-security.png
|
||||
Type=Link
|
||||
URL=https://www.debian.org/security/
|
Before Width: | Height: | Size: 85 KiB |
Before Width: | Height: | Size: 1.6 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: 147 KiB |
Before Width: | Height: | Size: 2.7 KiB |
Before Width: | Height: | Size: 2.9 KiB |
Before Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 230 B |
Before Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 279 KiB |
Before Width: | Height: | Size: 41 KiB |
Before Width: | Height: | Size: 279 KiB |
Before Width: | Height: | Size: 9.7 KiB |
|
@ -1,3 +0,0 @@
|
|||
WALLPAPER=/usr/share/images/desktop-base/desktop-grub.png
|
||||
COLOR_NORMAL=white/black
|
||||
COLOR_HIGHLIGHT=black/white
|
Before Width: | Height: | Size: 84 KiB |
Before Width: | Height: | Size: 109 KiB |
Before Width: | Height: | Size: 120 KiB |
Before Width: | Height: | Size: 129 KiB |
Before Width: | Height: | Size: 138 KiB |
Before Width: | Height: | Size: 174 KiB |
Before Width: | Height: | Size: 280 KiB |
|
@ -1,15 +0,0 @@
|
|||
<background>
|
||||
<static>
|
||||
<duration>8640000.0</duration>
|
||||
<file>
|
||||
<size width="1280" height="1024">/usr/share/desktop-base/futureprototype-theme/wallpaper/contents/images/1280x1024.svg</size>
|
||||
<size width="1600" height="1200">/usr/share/desktop-base/futureprototype-theme/wallpaper/contents/images/1600x1200.svg</size>
|
||||
<size width="1920" height="1080">/usr/share/desktop-base/futureprototype-theme/wallpaper/contents/images/1920x1080.svg</size>
|
||||
<size width="1920" height="1200">/usr/share/desktop-base/futureprototype-theme/wallpaper/contents/images/1920x1200.svg</size>
|
||||
<size width="2560" height="1080">/usr/share/desktop-base/futureprototype-theme/wallpaper/contents/images/2560x1080.svg</size>
|
||||
<size width="2560" height="1440">/usr/share/desktop-base/futureprototype-theme/wallpaper/contents/images/2560x1440.svg</size>
|
||||
<size width="3840" height="2160">/usr/share/desktop-base/futureprototype-theme/wallpaper/contents/images/3840x2160.svg</size>
|
||||
</file>
|
||||
</static>
|
||||
</background>
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
[Desktop Entry]
|
||||
Name=futurePrototype
|
||||
X-KDE-PluginInfo-Name=futurePrototype
|
||||
X-KDE-PluginInfo-Author=Alex Makas
|
||||
X-KDE-PluginInfo-Email=radicalmonday@gmail.com
|
||||
X-KDE-PluginInfo-License=GPLv2+
|
Before Width: | Height: | Size: 302 KiB |
Before Width: | Height: | Size: 109 KiB |
Before Width: | Height: | Size: 84 KiB |
Before Width: | Height: | Size: 109 KiB |
Before Width: | Height: | Size: 120 KiB |
Before Width: | Height: | Size: 129 KiB |
Before Width: | Height: | Size: 138 KiB |
Before Width: | Height: | Size: 174 KiB |
Before Width: | Height: | Size: 280 KiB |
|
@ -1,15 +0,0 @@
|
|||
<background>
|
||||
<static>
|
||||
<duration>8640000.0</duration>
|
||||
<file>
|
||||
<size width="1280" height="1024">/usr/share/desktop-base/futureprototype-theme/wallpaper-withlogo/contents/images/1280x1024.svg</size>
|
||||
<size width="1600" height="1200">/usr/share/desktop-base/futureprototype-theme/wallpaper-withlogo/contents/images/1600x1200.svg</size>
|
||||
<size width="1920" height="1080">/usr/share/desktop-base/futureprototype-theme/wallpaper-withlogo/contents/images/1920x1080.svg</size>
|
||||
<size width="1920" height="1200">/usr/share/desktop-base/futureprototype-theme/wallpaper-withlogo/contents/images/1920x1200.svg</size>
|
||||
<size width="2560" height="1080">/usr/share/desktop-base/futureprototype-theme/wallpaper-withlogo/contents/images/2560x1080.svg</size>
|
||||
<size width="2560" height="1440">/usr/share/desktop-base/futureprototype-theme/wallpaper-withlogo/contents/images/2560x1440.svg</size>
|
||||
<size width="3840" height="2160">/usr/share/desktop-base/futureprototype-theme/wallpaper-withlogo/contents/images/3840x2160.svg</size>
|
||||
</file>
|
||||
</static>
|
||||
</background>
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
[Desktop Entry]
|
||||
Name=futurePrototype with Debian swirl
|
||||
X-KDE-PluginInfo-Name=futurePrototype
|
||||
X-KDE-PluginInfo-Author=Alex Makas
|
||||
X-KDE-PluginInfo-Email=radicalmonday@gmail.com
|
||||
X-KDE-PluginInfo-License=GPLv2+
|
Before Width: | Height: | Size: 84 KiB |