new commit
|
@ -7,5 +7,5 @@
|
|||
*log.out
|
||||
fusato/
|
||||
TestDir/
|
||||
MakePackageLists.sh
|
||||
pepxfce
|
||||
peptesting
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
|
||||
### ## # Set build working variables HERE # ## ###
|
||||
|
||||
PREFIX=PepOS-concept # Sets a unique final name of the ISO and checksum so <HouseKeeping> only removes 2 files .
|
||||
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=nightly # Sets which pepbld.sh to use and the location in /var/www/html/[release|rc|testing|nightly|unstable]
|
||||
|
||||
|
|
|
@ -0,0 +1,83 @@
|
|||
#!/bin/bash
|
||||
|
||||
# BldHelper-nightly.sh
|
||||
# This script is meant to be run on the build server and expects to find and update itself from adjacent repos.
|
||||
# From PepDistroConfigs, these repos are ../PepProPixMaps & ../PepProTools and are vital to having a working build.
|
||||
|
||||
### ## # 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=$(date -u +"%Y-%m-%d") && export TODAY # 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/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"
|
||||
_break=0 ; _wait=30 # Time (in seconds) to wait
|
||||
|
||||
cd ${WorkingDir}
|
||||
./RepoUpdater | tee ${OutFile}
|
||||
|
||||
# Run the build script - expect 50 minutes, allow 60.
|
||||
./PepBld-${BUILD}.sh 2>&1 | tee --append ${OutFile}
|
||||
|
||||
# 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 ((++_break))
|
||||
[ $_break -gt $_wait ] && break || sleep 1
|
||||
done
|
||||
|
||||
if [ ${_break} -lt ${_wait} ] ; then
|
||||
|
||||
mv fusato/*.iso fusato/${FileName}.iso
|
||||
|
||||
# Make the checksum file.
|
||||
cd fusato
|
||||
echo "# ${FileName}" > ${FileName}-sha512.checksum
|
||||
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
|
||||
#rm -f ${LOCATION}/${PREFIX}-${SUFFIX}*.torrent
|
||||
|
||||
# This is where we can create the .torrent file.
|
||||
|
||||
#mv $(FileName}* ${LOCATION}/
|
||||
mv ${FileName}.iso ${LOCATION}/${FileName}.iso
|
||||
mv ${FileName}-sha512.checksum ${LOCATION}/${FileName}-sha512.checksum
|
||||
#mv ${FileName}.torrent ${LOCATION}/${FileName}.torrent
|
||||
|
||||
# touch -t ${_stamp} ${LOCATION} ${LOCATION}/${FileName}*
|
||||
touch ${LOCATION}/${FileName}*
|
||||
|
||||
lb clean &
|
||||
|
||||
# Move the log file to the log directory.
|
||||
[ ! -e ${LogDir} ] && mkdir -p ${LogDir}
|
||||
mv ${OutFile} ${LogFile}
|
||||
|
||||
# Remove old packages from the cache directory
|
||||
for i in $(grep "Del " ${LogFile} | sort -u | cut -f2,3 -d" " | tr " " "_" | tr ":" "*" | tr "+" "*" )
|
||||
do for j in $_cache/packages.*/${i}*.deb
|
||||
do [ -e $j ] && rm $j
|
||||
done
|
||||
done
|
||||
|
||||
### </HouseKeeping>
|
||||
|
||||
else echo -e "\n\tAfter $_break seconds, ISO never appeared.\n" | tee --append ${OutFile}
|
||||
mv ${OutFile} ${LogFile}
|
||||
fi
|
||||
|
|
@ -0,0 +1,304 @@
|
|||
#!/bin/bash
|
||||
PATH="/sbin:/usr/sbin:/usr/local/sbin:$PATH"
|
||||
|
||||
# Set the working folder variable
|
||||
uchinanchu="$(pwd)"
|
||||
[ "$TODAY" ] || TODAY=$(date -u +"%Y-%m-%d")
|
||||
|
||||
|
||||
# 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
|
||||
umount $(mount | grep "${PWD}/chroot" | tac | cut -f3 -d" ") 2>/dev/null
|
||||
for i in ./* ./.build ; 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 \
|
||||
--mode debian \
|
||||
--distribution bookworm \
|
||||
--archive-areas "main contrib non-free non-free-firmware" \
|
||||
--architectures amd64 \
|
||||
--linux-flavours amd64 \
|
||||
--apt-recommends true \
|
||||
--binary-images iso-hybrid \
|
||||
--firmware-binary true \
|
||||
--firmware-chroot true \
|
||||
--security true \
|
||||
--updates true \
|
||||
--backports true \
|
||||
--image-name "PepOS" \
|
||||
--iso-application "PeppermintOS" \
|
||||
--iso-preparer "PeppermintOS-https://peppermintos.com/" \
|
||||
--iso-publisher "Peppermint OS Team" \
|
||||
--image-name "PepOS" \
|
||||
--iso-volume "${TODAY} 1" \
|
||||
--win32-loader false \
|
||||
--checksums sha512 \
|
||||
--cache true \
|
||||
--clean \
|
||||
--color \
|
||||
--quiet \
|
||||
--zsync false \
|
||||
"${@}"
|
||||
|
||||
|
||||
# Install the XFCE Desktop
|
||||
mkdir -p $uchinanchu/fusato/config/package-lists/
|
||||
echo xfce4 > $uchinanchu/fusato/config/package-lists/desktop.list.chroot
|
||||
|
||||
echo "# Install extra Desktop packages.
|
||||
mousepad
|
||||
xfce4-battery-plugin
|
||||
xfce4-clipman-plugin
|
||||
xfce4-power-manager
|
||||
xfce4-taskmanager
|
||||
xfce4-terminal
|
||||
xfce4-screenshooter
|
||||
xfce4-whiskermenu-plugin
|
||||
xfce4-docklike-plugin
|
||||
xfce4-notes-plugin
|
||||
xfce4-panel-profiles
|
||||
xfce4-time-out-plugin
|
||||
orage
|
||||
thunar-archive-plugin
|
||||
thunar-volman
|
||||
xarchiver
|
||||
lightdm
|
||||
lightdm-gtk-greeter
|
||||
lightdm-gtk-greeter-settings
|
||||
|
||||
" > $uchinanchu/fusato/config/package-lists/extra-desktop.list.chroot
|
||||
|
||||
# Install software
|
||||
echo "# Install software to the squashfs for calamares to unpack to the OS.
|
||||
dconf-editor
|
||||
arandr
|
||||
#gparted
|
||||
gnome-disk-utility
|
||||
menulibre
|
||||
synaptic
|
||||
system-config-printer
|
||||
gnome-system-tools
|
||||
screenfetch
|
||||
simple-scan
|
||||
|
||||
" > $uchinanchu/fusato/config/package-lists/packages.list.chroot
|
||||
|
||||
echo "#Install system packages.
|
||||
cups
|
||||
curl
|
||||
dkms
|
||||
dbus-x11
|
||||
nala
|
||||
efibootmgr
|
||||
fonts-cantarell
|
||||
fonts-liberation
|
||||
gdebi
|
||||
gir1.2-webkit2-4.0
|
||||
git
|
||||
grub-pc
|
||||
gvfs-backends
|
||||
inputattach
|
||||
inxi
|
||||
locales
|
||||
neofetch
|
||||
network-manager-gnome
|
||||
ntp
|
||||
nvidia-detect
|
||||
os-prober
|
||||
pulseaudio-module-bluetooth
|
||||
smartmontools
|
||||
smbclient
|
||||
sqlite3
|
||||
wireless-tools
|
||||
wget
|
||||
alsa-utils
|
||||
bluez
|
||||
|
||||
" > $uchinanchu/fusato/config/package-lists/system.list.chroot
|
||||
|
||||
echo "# install the Peppermint artwork.
|
||||
marwaita-gtk-theme
|
||||
tela-icon-theme
|
||||
marwaita-for-xfwm
|
||||
marwaita-peppermint-gtk-theme
|
||||
pepermint-wallpapers
|
||||
|
||||
" > $uchinanchu/fusato/config/package-lists/artwork.list.chroot
|
||||
|
||||
echo "# Install Python3 packages.
|
||||
python3-pip
|
||||
python3-tk
|
||||
python3-bs4
|
||||
python3-requests
|
||||
python3-ttkthemes
|
||||
python3-pyqt5
|
||||
python3-pyqt5.qtsvg
|
||||
python3-pyqt5.qtwebkit
|
||||
python3-pyqt5.qtwebengine
|
||||
python3-pil.imagetk
|
||||
python3-apt
|
||||
|
||||
" > $uchinanchu/fusato/config/package-lists/python.list.chroot
|
||||
|
||||
echo "# install the calamares installer to install the system to the hd.
|
||||
calamares
|
||||
calamares-settings-debian
|
||||
f2fs-tools
|
||||
xfsprogs
|
||||
|
||||
" > $uchinanchu/fusato/config/package-lists/installer.list.chroot
|
||||
|
||||
echo "# install firmware for squasfs to improve hardware compatibility.
|
||||
firmware-linux-free
|
||||
midisport-firmware
|
||||
firmware-misc-nonfree
|
||||
firmware-amd-graphics
|
||||
firmware-atheros
|
||||
firmware-bnx2
|
||||
firmware-bnx2x
|
||||
firmware-brcm80211
|
||||
firmware-cavium
|
||||
firmware-intel-sound
|
||||
firmware-intelwimax
|
||||
firmware-iwlwifi
|
||||
firmware-libertas
|
||||
firmware-linux
|
||||
firmware-linux-nonfree
|
||||
firmware-misc-nonfree
|
||||
firmware-myricom
|
||||
firmware-netronome
|
||||
firmware-netxen
|
||||
firmware-qcom-media
|
||||
firmware-qcom-soc
|
||||
firmware-qlogic
|
||||
firmware-realtek
|
||||
firmware-samsung
|
||||
firmware-siano
|
||||
firmware-ti-connectivity
|
||||
firmware-sof-signed
|
||||
firmware-zd1211
|
||||
|
||||
" > $uchinanchu/fusato/config/package-lists/firmware.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/icons/default
|
||||
mkdir -p $uchinanchu/fusato/config/includes.chroot/usr/share/pixmaps
|
||||
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/local/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/etc/apt
|
||||
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/xfce4
|
||||
mkdir -p $uchinanchu/fusato/config/includes.chroot/etc/xdg/autostart
|
||||
mkdir -p $uchinanchu/fusato/config/includes.chroot/etc/xdg/xfce4/whiskermenu
|
||||
mkdir -p $uchinanchu/fusato/config/includes.chroot/etc/xdg/xfce4/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
|
||||
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/includes.chroot/boot/grub
|
||||
mkdir -p $uchinanchu/fusato/config/archives
|
||||
mkdir -p $uchinanchu/fusato/config/hooks/live
|
||||
mkdir -p $uchinanchu/fusato/config/hooks/normal
|
||||
mkdir -p $uchinanchu/fusato/config/packages.chroot
|
||||
|
||||
|
||||
# Copy single files to the chroot
|
||||
cp $uchinanchu/pepaliases/bash_aliases $uchinanchu/fusato/config/includes.chroot/etc/skel/.bash_aliases
|
||||
cp $uchinanchu/pepcal/adddesktopicon/add-calamares-desktop-icon $uchinanchu/fusato/config/includes.chroot/usr/bin
|
||||
cp $uchinanchu/pepcal/calamares/settings.conf $uchinanchu/fusato/config/includes.chroot/etc/calamares
|
||||
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/pepsources/sources.list $uchinanchu/fusato/config/includes.chroot/opt/pepconf
|
||||
cp $uchinanchu/PepProTools/xDaily $uchinanchu/fusato/config/includes.chroot/usr/local/bin
|
||||
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/helpers.rc $uchinanchu/fusato/config/includes.chroot/etc/xdg/xfce4
|
||||
cp $uchinanchu/pepdeffileman/xfce4/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
|
||||
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/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
|
||||
cp $uchinanchu/pepuserconfig/* $uchinanchu/fusato/config/includes.chroot/etc/live/config.conf.d
|
||||
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 -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/pepxfce/xfce4/panel $uchinanchu/fusato/config/includes.chroot/etc/skel/.config/xfce4
|
||||
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/xfce4/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
|
||||
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
|
||||
|
||||
# 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/pepapplication/* $uchinanchu/fusato/config/includes.chroot/usr/share/applications
|
||||
cp $uchinanchu/peptesting/pepcal/install-peppermint $uchinanchu/fusato/config/includes.chroot/usr/bin
|
||||
cp $uchinanchu/peptesting/pepcal/sources-final $uchinanchu/fusato/config/includes.chroot/usr/sbin
|
||||
cp $uchinanchu/peptesting/pepmultimedia/* $uchinanchu/fusato/config/archives
|
||||
cp -r $uchinanchu/peptesting/peploadersplash/boot $uchinanchu/fusato/config/includes.binary
|
||||
cp -r $uchinanchu/testing/peploadersplash/isolinux $uchinanchu/fusato/config/includes.binary
|
||||
|
||||
# Build the ISO #
|
||||
lb build #--debug --verbose
|
||||
|
|
@ -1,108 +0,0 @@
|
|||
alias ISO-datestamps='echo -en "\n Searching for files ...\r"; for i in /dev/sd[a-z] $(du -ahx ~/ 2>&1 | grep -v "\.iso". | grep "\.iso"| cut -f2) $(du -ahx / 2>&1 | grep -v "\.iso". | grep "\.iso"| cut -f2); do string=$(sudo hexdump -Cs 33598 -n16 $i | head -1 | cut -f2 -d"|" | cut -c"1-14"); [ "$string" != "" ] && echo " $string $i" ; done | sort -u'
|
||||
alias cgrep='grep --color=always'
|
||||
alias date_of_iso='for i in ./*.iso ./*/*.iso /dev/sd[a-z]; do echo " $(sudo hexdump -C -s33598 -n16 $i 2>/dev/null |head -1 | cut -f2 -d"|" | cut -c-14) $i" ; done | sort'
|
||||
alias grep='grep --color=auto'
|
||||
alias gsettings-list-recursively='for i in $(gsettings list-schemas | sort); do echo $i | grep --color=always $i; gsettings list-recursively $i | sort -u ; done | uniq |less -R'
|
||||
alias less='less -g'
|
||||
alias locate='du -ah / 2>&1 | grep '
|
||||
alias ls='ls --color=auto'
|
||||
alias plot-boot='systemd-analyze plot > /tmp/boot_plot.svg ; x-www-browser file:///tmp/boot_plot.svg &'
|
||||
alias show-gsettings='for i in $(gsettings list-schemas | sort); do echo $i | grep --color=always $i ; gsettings list-recursively $i | sort ; done | less -R'
|
||||
alias snipe='du -ah ./ 2>&1 | grep '
|
||||
alias timed='clear; neofetch; systemd-analyze'
|
||||
alias update-aliases='echo -en "\n\tUpdating aliases:\t"; for i in $(alias | grep "alias ". | cut -f1 -d= | cut -f2 -d" "); do echo -en "$i\t"; done ;echo; alias | tee ~/.bash_aliases > /dev/null'
|
||||
alias vi='busybox vi'
|
||||
alias vicr='for i in ./* ; do [ -f $i ] && vi -R "$i" ; done'
|
||||
alias vicw='for i in ./* ; do [ -f $i ] && vi "$i" ; done'
|
||||
alias view='vi -R'
|
||||
alias pep-writer='write-out-iso'
|
||||
alias write-out-iso='
|
||||
sysc="\033[00m"
|
||||
grey="\033[30;01m"
|
||||
red="\033[31;01m"
|
||||
green="\033[32;01m"
|
||||
yellow="\033[33;01m"
|
||||
blue="\033[34;01m"
|
||||
violet="\033[35;01m"
|
||||
aqua="\033[36;01m"
|
||||
white="\033[37;01m"
|
||||
iso=" "
|
||||
dev=" "
|
||||
line1="${green}Type or copy-n-paste a file name from above.${sysc}"
|
||||
line2="${green}Type the full path to your USB device. ${yellow}(/dev/sdX)${sysc}"
|
||||
line3="The block device ${yellow}${dev}${sysc} was found and seems Ok to use."
|
||||
lsblk_cmd="lsblk -o PATH,VENDOR,MODEL,SIZE,HOTPLUG,RM"
|
||||
_abort="${green}To abort this now, press ${white}Ctrl+C${sysc} ."
|
||||
_anykey="Hit any key"
|
||||
_coward="Cowardly refusing to write to"
|
||||
_empty="${red}This field cannot be empty${sysc}"
|
||||
_cancel="to cancel"
|
||||
_continue="to continue"
|
||||
_knownISO="to enter the full path to the ${white}ISO${sysc}."
|
||||
_laststep="${aqua}This is the final step.${sysc}"
|
||||
_missing="File not found."
|
||||
_mounted="${red}The location is mounted.${sysc}"
|
||||
_noblock="is not a block device."
|
||||
_nochecks="No checks were done to determine this is an ISO image."
|
||||
_noDEV="The location ${white}${dev}${sysc} does not exist yet, Plug in a USB ?"
|
||||
_noISO="No ISO found in this directory."
|
||||
_notlisted="Check your file name or the location and retry."
|
||||
_passwd="${white}To write to a USB, your password may be required.${sysc}"
|
||||
_re_enter="to Re-Enter the location"
|
||||
_restart1="To start over, Press ${white}Ctrl+C${sysc},"
|
||||
_restart2="then move to a folder with the ISO."
|
||||
_retry="to retry"
|
||||
_search="Searching ${blue}${PWD}${sysc} for ISOs ."
|
||||
_write="${green}Hit ${white}ANY${green} key to write the file to"
|
||||
|
||||
clear
|
||||
echo -en "\n\t${_passwd}\n\t"
|
||||
sudo clear || echo -e "\tFailed password."
|
||||
|
||||
until [ ! -z "${iso}" ] && [ -e "${iso}" ] && ! (mount | grep -q "${iso}")
|
||||
do clear
|
||||
echo -e "\n ${_search}\n"
|
||||
for i in ./*.iso ./*/*.iso ; do ls $i 2>/dev/null ; done | /bin/grep "\.iso" &&
|
||||
echo -en "\n\t${line1}\n\n" || (
|
||||
echo -en "\n\t${_noISO} \n\n ${_restart1} ${_restart2}\n\n Or ${_anykey} ${_knownISO}"
|
||||
read -n1 -p " " pause && echo )
|
||||
|
||||
read -p " Path to ISO = " iso
|
||||
[ -z "${iso}" ] && (echo -en "\n${_empty}." ; read -n1 -p " ${_anykey} ${_continue}. " back) && continue
|
||||
[ ! -e "${iso}" ] && (echo -en "\n${_missing}." ; read -n1 -p " ${_anykey} ${_retry}. " back) && continue
|
||||
( mount | grep -q "${iso}" ) && (echo -en "\n${_mounted}" ; read -n1 -p " ${_anykey} ${_retry}. " back) && continue
|
||||
done
|
||||
|
||||
until [ ! -z $dev ] && [ -b $dev ] && ! (mount | grep -q $dev) && [ $dev != "/dev/sda" ] && [ $dev != "/dev/nvme01" ]
|
||||
do clear
|
||||
echo -e "\n\t ${green}Choose a block device to write the ISO to.${sysc}"
|
||||
echo -e "\n ${white}ISO${sysc} -----> ${white}$iso${sysc}\n "
|
||||
# echo -e "\n$($lsblk_cmd)\n" ; read -p "$line2 " dev
|
||||
echo -e "\n$($lsblk_cmd)\n" | grep -Ew "(PATH|/dev/sd[a-z])"; echo -en "\n $line2 "; read dev
|
||||
[ -z $dev ] && (echo -en "${_empty}."; read -n1 -p " ${_anykey} ${_continue}. " back) && continue
|
||||
[ ! -e $dev ] && (echo -en "${_noDEV}\n\n"; read -n1 -p " ${_anykey} ${_retry}. " back) && continue
|
||||
[ ! -b $dev ] && (echo -en "${dev} ${_noblock}"; read -n1 -p " ${_anykey} ${_retry}. " back) && continue
|
||||
(mount | grep -q "$dev") && (echo -en "\n${_mounted}"; read -n1 -p " ${_anykey} ${_retry}. " back) && continue
|
||||
[ $dev = "/dev/sda" ] && (echo -en "${_coward} ${dev} ."; read -n1 -p " ${_anykey} ${_retry}. " back) && continue
|
||||
[ $dev = "/dev/nvme01" ] && (echo -en "${_coward} ${dev} ."; read -n1 -p " ${_anykey} ${_retry}. " back) && continue
|
||||
done
|
||||
|
||||
clear
|
||||
echo -e "\n\t\t${_laststep}\n"
|
||||
# echo -e " \t${_anykey} ${_continue}.\n"
|
||||
echo -e " ${white}ISO${sysc} -----> ${white}${iso}${sysc} "
|
||||
# echo -e " Device --> ${dev}\n "
|
||||
# echo -e "$($lsblk_cmd ${dev})" | grep -Ew "(PATH|/dev/sd[a-z])"
|
||||
echo -en " ${white}Device${sysc} --> "
|
||||
($lsblk_cmd ${dev}) | /bin/grep -w ${dev}
|
||||
|
||||
echo -e "\n\tThe file ${white}$iso${sysc} exists."
|
||||
echo -e "\t(${_nochecks})"
|
||||
echo -e "\tThe block device ${yellow}${dev}${sysc} was found and seems Ok to use.\n\n"
|
||||
echo -e "\t${_abort}"
|
||||
echo -en "\t${_write} ${yellow}$dev${sysc} . "
|
||||
read -n1 go
|
||||
|
||||
echo -e "\n ${aqua}Writing ${white}${iso}${aqua} to ${yellow}$dev${aqua} ...${sysc}"
|
||||
|
||||
sudo dd bs=4M oflag=direct status=progress if="${iso}" of=${dev}'
|
|
@ -1,12 +0,0 @@
|
|||
[Desktop Entry]
|
||||
Version=1.0
|
||||
Type=Application
|
||||
Name=Install Peppermint
|
||||
Exec=install-peppermint
|
||||
Icon=/usr/share/pixmaps/install-debian.png
|
||||
Terminal=false
|
||||
Categories=Settings
|
||||
Comment=Calamares — Installer for Peppermint Live
|
||||
Keywords=calamares;system;install;peppermint;installer
|
||||
StartupNotify=True
|
||||
StartupWMClass=calamares
|
|
@ -1,11 +0,0 @@
|
|||
[Desktop Entry]
|
||||
Version=1.0
|
||||
Type=Application
|
||||
Name=Peppermint Hub
|
||||
Exec=python3 hub.py
|
||||
Icon=/usr/share/pixmaps/peppermint-hub.png
|
||||
Terminal=false
|
||||
Categories=Settings
|
||||
StartupNotify=True
|
||||
Comment=Use the Hub to configure your system
|
||||
Path=/opt/pypep
|
|
@ -1,11 +0,0 @@
|
|||
[Desktop Entry]
|
||||
Version=1.0
|
||||
Type=Application
|
||||
Name=Welcome to Peppermint
|
||||
Exec=python3 welcome_man.py
|
||||
Icon=/usr/share/pixmaps/peppermint.png
|
||||
Terminal=false
|
||||
Categories=Settings
|
||||
StartupNotify=True
|
||||
Name[en_US]=Welcome to Peppermint
|
||||
Path=/opt/pypep
|
|
@ -1,164 +0,0 @@
|
|||
[Desktop Entry]
|
||||
Name=GDebi Package Installer
|
||||
Name[ar]=مثبت الحزم GDebi
|
||||
Name[ast]=Instalador de Paquetes GDebi
|
||||
Name[bg]=Инсталатор на пакет
|
||||
Name[bn]=প্যাকেজ ইনস্টলার
|
||||
Name[bs]=GDebi Paketni Instaler
|
||||
Name[ca]=Instal·lador de paquets GDebi
|
||||
Name[ca@valencia]=Instal·lador de paquets GDebi
|
||||
Name[cs]=Instalátor balíků GDebi
|
||||
Name[da]=GDebi pakkeinstalleringsprogram
|
||||
Name[de]=GDebi-Paket-Installationsprogramm
|
||||
Name[el]=Εγκατάσταση πακέτων GDebi
|
||||
Name[en_AU]=GDebi Package Installer
|
||||
Name[en_CA]=GDebi Package Installer
|
||||
Name[en_GB]=GDebi Package Installer
|
||||
Name[eo]=Instalilo de GDebi-pakaĵoj
|
||||
Name[es]=Instalador de paquetes GDebi
|
||||
Name[et]=GDebi Paketipaigaldus
|
||||
Name[eu]=GDebi pakete-instalatzailea
|
||||
Name[fi]=GDebi-paketinasentaja
|
||||
Name[fo]=GDebi Pakka innleggjari
|
||||
Name[fr]=Installateur de paquets GDebi
|
||||
Name[gl]=Instalador de paquetes GDebi
|
||||
Name[he]=מתקין החבילות GDebi
|
||||
Name[hu]=GDebi csomagtelepítő
|
||||
Name[id]=Pemasang Paket GDebi
|
||||
Name[it]=Installatore pacchetto GDebi
|
||||
Name[ja]=GDebi パッケージインストーラー
|
||||
Name[ko]=GDebi 패키지 설치 프로그램
|
||||
Name[lt]=„GDebi“ paketų diegyklė
|
||||
Name[ms]=Pemasang Pakej GDebi
|
||||
Name[nb]=GDebi pakkeinstallerer
|
||||
Name[nl]=GDebi pakketinstalleerder
|
||||
Name[oc]=Installador de paquets GDebi
|
||||
Name[pl]=Instalator pakietów GDebi
|
||||
Name[pt]=Instalador de Pacotes
|
||||
Name[pt_BR]=Instalador de pacotes GDebi
|
||||
Name[ro]=GDebi instalator de pachete
|
||||
Name[ru]=Программа установки пакетов GDebi
|
||||
Name[sk]=Inštalátor balíkov GDebi
|
||||
Name[sl]=Namestilnik paketov GDebi
|
||||
Name[sr]=ГДеби — Инсталер пакета
|
||||
Name[sv]=Paketinstalleraren GDebi
|
||||
Name[te]=GDebi ప్యాకేజీ స్థాపకం
|
||||
Name[tr]=GDebi Paket Kurucu
|
||||
Name[uk]=Встановлювач пакунків GDebi
|
||||
Name[ur]=جی ڈیبی پیکج انسٹالر
|
||||
Name[zh_CN]=GDebi 软件包安装程序
|
||||
Name[zh_HK]=GDebi 套件安裝程式
|
||||
Name[zh_TW]=GDebi 套件安裝程式
|
||||
GenericName=Package Installer
|
||||
GenericName[ar]=مثبت الحزم
|
||||
GenericName[ast]=Instalador de paquetes
|
||||
GenericName[bg]=Инсталатор на пакети
|
||||
GenericName[bn]=প্যাকেজ ইনস্টলার
|
||||
GenericName[bs]=Paketni instaler
|
||||
GenericName[ca]=Instal·lador de paquets
|
||||
GenericName[ca@valencia]=Instal·lador de paquets
|
||||
GenericName[cs]=Instalátor balíků
|
||||
GenericName[da]=Pakkeinstalleringsprogram
|
||||
GenericName[de]=Paket-Installationsprogramm
|
||||
GenericName[el]=Εγκατάσταση πακέτων
|
||||
GenericName[en_AU]=Package Installer
|
||||
GenericName[en_CA]=Package Installer
|
||||
GenericName[en_GB]=Package Installer
|
||||
GenericName[eo]=Instalilo de pakaĵoj
|
||||
GenericName[es]=Instalador de paquetes
|
||||
GenericName[et]=Paketti paigaldus
|
||||
GenericName[eu]=Pakete-instalatzailea
|
||||
GenericName[fi]=Paketinasentaja
|
||||
GenericName[fo]=Pakkainnleggjari
|
||||
GenericName[fr]=Installateur de paquets
|
||||
GenericName[gl]=Instalador de paquetes
|
||||
GenericName[he]=מתקין החבילות
|
||||
GenericName[hr]=Paketni instaler
|
||||
GenericName[hu]=Csomagtelepítő
|
||||
GenericName[id]=Pemasang Paket
|
||||
GenericName[it]=Installatore pacchetto
|
||||
GenericName[ja]=パッケージインストーラー
|
||||
GenericName[ko]=패키지 설치 프로그램
|
||||
GenericName[ku]=Sazgera Paketan
|
||||
GenericName[lt]=Paketų diegyklė
|
||||
GenericName[ms]=Pemasang Pakej
|
||||
GenericName[nb]=Pakkeinstallerer
|
||||
GenericName[nl]=Pakketinstalleerder
|
||||
GenericName[oc]=Installador de paquets
|
||||
GenericName[pl]=Instalator pakietów
|
||||
GenericName[pt]=Instalador de Pacotes
|
||||
GenericName[pt_BR]=Instalador de Pacotes
|
||||
GenericName[ro]=Instalator pachete
|
||||
GenericName[ru]=Программа установки пакетов
|
||||
GenericName[sk]=Inštalátor balíkov
|
||||
GenericName[sl]=Namestilnik paketov
|
||||
GenericName[sr]=Инсталер пакета
|
||||
GenericName[sv]=Paketinstallerare
|
||||
GenericName[te]=ప్యాకేజీ స్థాపకం
|
||||
GenericName[tr]=Paket Kurucu
|
||||
GenericName[uk]=Встановлювач пакунків
|
||||
GenericName[ur]=پیکج تنصیب کار
|
||||
GenericName[zh_CN]=软件包安装程序
|
||||
GenericName[zh_HK]=套件安裝程式
|
||||
GenericName[zh_TW]=套件安裝程式
|
||||
Comment=Install and view software packages
|
||||
Comment[ar]=تثبيت و عرض حزم البرامج
|
||||
Comment[ast]=Instalar y ver paquetes de software
|
||||
Comment[bg]=Инсталиране и преглед на пакети
|
||||
Comment[bn]=সফটওয়্যার প্যাকেজ ইনস্টল করুন এবং দেখুন
|
||||
Comment[bs]=Instaliraj i vidi softverski paket
|
||||
Comment[ca]=Instal·la i visualitza paquets de programari
|
||||
Comment[ca@valencia]=Instal·la i visualitza paquets de programari
|
||||
Comment[cs]=Instalovat a prohlížet balíky
|
||||
Comment[da]=Installer og vis softwarepakker
|
||||
Comment[de]=Software-Pakete installieren und betrachten
|
||||
Comment[el]=Εγκαταστήστε και εμφανίστε πακέτα λογισμικού
|
||||
Comment[en_AU]=Install and view software packages
|
||||
Comment[en_CA]=Install and view software packages
|
||||
Comment[en_GB]=Install and view software packages
|
||||
Comment[eo]=Instali kaj vidi pakaĵojn de programaroj
|
||||
Comment[es]=Instala y muestra paquetes de software
|
||||
Comment[eu]=Instalatu eta ikusi software paketeak
|
||||
Comment[fi]=Asenna ja tarkastele ohjelmapaketteja
|
||||
Comment[fo]=Legg inn og vís ritbúnaðarpakkar
|
||||
Comment[fr]=Installer et lister les paquets logiciels
|
||||
Comment[gl]=Instalar e ver paquetes de software
|
||||
Comment[he]=התקנה וצפייה של חבילות תכנה
|
||||
Comment[hr]=Instaliraj i pregledaj pakete
|
||||
Comment[hu]=Szoftvercsomagok telepítése és megjelenítése
|
||||
Comment[id]=Pasang dan tinjau paket-paket piranti lunak
|
||||
Comment[it]=Installa e visualizza pacchetti software
|
||||
Comment[ja]=ソフトウェアパッケージのインストールと表示を行います
|
||||
Comment[ko]=소프트웨어 패키지를 설치하고 봅니다
|
||||
Comment[ku]=Paketên nivîsbariyê saz bike û lê binêre
|
||||
Comment[lt]=Įdiegti ir peržiūrėti programinės įrangos paketus
|
||||
Comment[ms]=Pasang dan papar pakej perisian
|
||||
Comment[nb]=Installer og vis programvarepakker
|
||||
Comment[nl]=Programmapakketten installeren en bekijken
|
||||
Comment[oc]=Installar e far la lista dels paquets logicials
|
||||
Comment[pl]=Instaluje i wyświetla informacje o pakietach oprogramowania
|
||||
Comment[pt]=Instalar e ver pacotes de software
|
||||
Comment[pt_BR]=Instalar e visualizar pacotes de programa
|
||||
Comment[ro]=Instalare şi vizualizare pachete software
|
||||
Comment[ru]=Программа установки и просмотра пакетов программ
|
||||
Comment[sk]=Inštalácia a zobrazenie balíkov softvéru
|
||||
Comment[sl]=Nameščanje in ogled paketov programske opreme
|
||||
Comment[sr]=Инсталирајте и погледајте софтверске пакете
|
||||
Comment[sv]=Installera och visa programpaket
|
||||
Comment[te]=సాఫ్ట్వేర్ ప్యాకేజీలను స్థాపించు మరియు చూడు
|
||||
Comment[tr]=Yazılım paketlerini kur ve izle
|
||||
Comment[uk]=Встановити та оглянути програмні пакунки
|
||||
Comment[ur]=اردو ترجمہ از محمد علی مکی
|
||||
Comment[zh_CN]=安装和查看软件包
|
||||
Comment[zh_HK]=安裝和檢視軟件套件
|
||||
Comment[zh_TW]=安裝和檢視軟體套件
|
||||
Exec=sh -c "gdebi-gtk %f"
|
||||
Icon=gnome-mime-application-x-deb
|
||||
Terminal=false
|
||||
Type=Application
|
||||
Categories=System;
|
||||
MimeType=application/vnd.debian.binary-package;
|
||||
NotShowIn=KDE;
|
||||
X-Ubuntu-Gettext-Domain=gdebi
|
||||
StartupNotify=true
|
||||
Keywords=package;apt;dpkg;install
|
|
@ -1,113 +0,0 @@
|
|||
[Desktop Entry]
|
||||
Name[be]=Пашыраная канфігурацыя сеткі
|
||||
Name[ca]=Configuració de xarxa avançada
|
||||
Name[cs]=Rozšířená nastavení sítě
|
||||
Name[da]=Avanceret netværkskonfiguration
|
||||
Name[de]=Erweiterte Netzwerkkonfiguration
|
||||
Name[es]=Configuración de red avanzada
|
||||
Name[eu]=Sareen konfigurazio aurreratua
|
||||
Name[fi]=Edistynyt verkkokokoonpano
|
||||
Name[fr]=Configuration réseau avancée
|
||||
Name[hr]=Napredno podešavanje mreže
|
||||
Name[hu]=Speciális hálózati konfiguráció
|
||||
Name[id]=Konfigurasi Jaringan Tingkat Lanjut
|
||||
Name[it]=Configurazione di rete avanzata
|
||||
Name[ja]=高度なネットワーク設定
|
||||
Name[kk]=Кеңейтілген желі баптаулары
|
||||
Name[lt]=Sudėtingesnė tinklo konfigūracija
|
||||
Name[nl]=Geavanceerde netwerkconfiguratie
|
||||
Name[pl]=Zaawansowana konfiguracja sieci
|
||||
Name[pt_BR]=Configuração avançada de rede
|
||||
Name[ru]=Расширенная конфигурация сети
|
||||
Name[sk]=Pokročilá konfigurácia siete
|
||||
Name[sr]=Напредно подешавање мреже
|
||||
Name[sv]=Avancerad nätverkskonfiguration
|
||||
Name[tr]=Gelişmiş Ağ Yapılandırma
|
||||
Name[uk]=Додаткові налаштування мережі
|
||||
Name[zh_CN]=高级网络配置
|
||||
Name[zh_TW]=進階網路設定
|
||||
Name=Advanced Network Configuration
|
||||
Comment[af]=Bestuur en verander u netwerkverbinding-instellings
|
||||
Comment[an]=Chestione y cambee os suyos achustes d'a connexión de ret
|
||||
Comment[ar]=أدِر وغيّر إعدادات الاتصالات الشبكية
|
||||
Comment[as]=আপোনাৰ নেটৱৰ্ক সংযোগক ব্যৱস্থাপনা আৰু সলনি কৰক
|
||||
Comment[ast]=Xestiona y camuda los axustes de conexón de rede
|
||||
Comment[be]=Налады сеткавага злучэння
|
||||
Comment[be@latin]=Kiruj i źmianiaj nałady sietkavych spałučeńniaŭ
|
||||
Comment[bg]=Управление и промяна на настройките на вашата мрежа
|
||||
Comment[bn_IN]=আপনার নেটওয়ার্ক সংযোগ বৈশিষ্ট্য সম্পাদন ও পরিবর্তন করুন
|
||||
Comment[bs]=Upravljajte i izmijenite podešavanja vaših mrežnih veza
|
||||
Comment[ca]=Gestioneu i modifiqueu els paràmetres de connexió de xarxa
|
||||
Comment[ca@valencia]=Gestioneu i modifiqueu els paràmetres de connexió de xarxa
|
||||
Comment[crh]=Şebeke bağlantısı tesbitleriñizni idare etiñiz ve değiştiriñiz
|
||||
Comment[cs]=Spravujte a měňte svá nastavení síťových připojení
|
||||
Comment[da]=Redigér og ændr dine indstillinger til netværksforbindelser
|
||||
Comment[de]=Verwaltung von Einstellungen für Netzwerkverbindungen
|
||||
Comment[el]=Διαχείριση και αλλαγή ρυθμίσεων των συνδέσεων δικτύου
|
||||
Comment[en_GB]=Manage and change your network connection settings
|
||||
Comment[eo]=Administri kaj ŝanĝi viajn retkonektajn agordojn
|
||||
Comment[es]=Gestione y cambie sus ajustes de la conexión de red
|
||||
Comment[et]=Võrguühenduse sätete haldus
|
||||
Comment[eu]=Kudeatu eta aldatu sareko konexioen ezarpenak
|
||||
Comment[fa]=تنظیمات اتصال شبکه خود را مدیریت و تغییر دهید
|
||||
Comment[fi]=Hallitse ja muuta verkkoyhteyksien asetuksia
|
||||
Comment[fr]=Gérer et modifier les paramètres des connexions réseau
|
||||
Comment[gd]=Stiùirich is atharraich roghainnean a' cheangail agad ris an lìonra
|
||||
Comment[gl]=Xestione e cambie as súas configuracións de conexión de rede
|
||||
Comment[gu]=તમારા નેટવર્ક જોડાણ સુયોજનોને બદલો અને સંચાલિત કરો
|
||||
Comment[he]=ניהול ושינוי הגדרות חיבורי הרשת שלך
|
||||
Comment[hi]=अपना संजाल कनेक्शन सेटिंग प्रबंधित करें और बदलें
|
||||
Comment[hr]=Upravljajte i promijenite postavke mrežnog povezivanja
|
||||
Comment[hu]=Hálózati kapcsolatok beállításainak kezelése és módosítása
|
||||
Comment[id]=Kelola dan ubah tatanan koneksi jaringan Anda
|
||||
Comment[is]=Breyta og halda utan um nettenginguna
|
||||
Comment[it]=Gestisce e cambia le impostazioni della connessione di rete
|
||||
Comment[ja]=ネットワーク接続セッティングの管理と変更
|
||||
Comment[kk]=Сіздің желілік байланысыңызды басқару мен түзету
|
||||
Comment[km]=គ្រប់គ្រង និងផ្លាស់ប្ដូរការកំណត់ការភ្ជាប់បណ្ដាញរបស់អ្នក
|
||||
Comment[kn]=ನಿಮ್ಮ ಜಾಲಬಂಧ ಸಂಪರ್ಕಗಳನ್ನು ನಿರ್ವಹಿಸಿ ಹಾಗು ಬದಲಾಯಿಸಿ
|
||||
Comment[ko]=네트워크 연결 설정을 관리하고 설정을 바꿉니다
|
||||
Comment[ku]=Girêdanên torê yên xwe birêve û sererast bike
|
||||
Comment[lt]=Tvarkykite ir keiskite savo tinklo ryšių nustatymus
|
||||
Comment[lv]=Pārvaldiet un mainiet tīkla savienojumu iestatījumus
|
||||
Comment[mk]=Управувајте и променувајте ги поставувањата на Вашата мрежна врска
|
||||
Comment[ml]=നിങ്ങളുടെ ശൃംഖല ബന്ധങ്ങള് സജ്ജീകരണങ്ങള് കൈകാര്യം ചെയ്യുകയും മാറ്റങ്ങള് വരുത്തുകയും ചെയ്യുക.
|
||||
Comment[mr]=नेटवर्क संयोजना व्यवस्थापीत करा व बदला
|
||||
Comment[ms]=Urus dan pinda tetapan sambungan rangkaian anda
|
||||
Comment[nb]=Håndter og endre innstillinger for nettverksforbindelser
|
||||
Comment[nl]=De instellingen voor uw netwerkverbindingen beheren en bewerken
|
||||
Comment[nn]=Handter og endra innstillingar for nettverkstilkopling
|
||||
Comment[oc]=Gerir e modificar los paramètres de las connexions de ret
|
||||
Comment[or]=ଆପଣଙ୍କର ନେଟୱର୍କ ସଂଯୋଗ ସଂରଚନାକୁ ପରିଚାଳନା କରନ୍ତୁ ଏବଂ ପରିବର୍ତ୍ତନ କରନ୍ତୁ
|
||||
Comment[pa]=ਆਪਣੀ ਨੈੱਟਵਰਕ ਕਨੈਕਸ਼ਨ ਸੈਟਿੰਗ ਦਾ ਪਰਬੰਧ ਕਰੋ ਅਤੇ ਬਦਲੋ
|
||||
Comment[pl]=Zarządzanie ustawieniami połączeń sieciowych
|
||||
Comment[pt]=Gerir e alterar as suas definições da ligação de rede
|
||||
Comment[pt_BR]=Gerencie e altere suas configurações de conexão de rede
|
||||
Comment[ro]=Gestionează și modifică opțiunile conexiunilor de rețea
|
||||
Comment[ru]=Управление параметрами сетевых соединений
|
||||
Comment[sk]=Spravuje a mení nastavenia vášho sieťového pripojenia
|
||||
Comment[sl]=Upravljanje in spreminjanje nastavitev omrežne povezave
|
||||
Comment[sr]=Управљајте и измените подешавања ваших мрежних веза
|
||||
Comment[sr@latin]=Upravljajte i izmenite podešavanja vaših mrežnih veza
|
||||
Comment[sv]=Hantera och ändra inställningar för dina nätverksanslutningar
|
||||
Comment[ta]=உங்களின் பிணைய இணைப்பு அமைவுகளை மேலாண்மை மற்றும் மாற்றவும்
|
||||
Comment[te]=మీ నెట్వర్కు అనుసంధానము అమర్పులను నిర్వహించండి మరియు మార్చండి
|
||||
Comment[th]=จัดการและตั้งค่าการเชื่อมต่อเครือข่ายของคุณ
|
||||
Comment[tr]=Ağ bağlantı ayarlarını yönet ve değiştir
|
||||
Comment[ug]=تور باغلىنىش تەڭشەكلىرىڭىزنى باشقۇرۇڭ ۋە ئۆزگەرتىڭ
|
||||
Comment[uk]=Керування параметрами мережних з'єднань
|
||||
Comment[ur]=اپنے نیٹ ورک اتصال کی تبدیلی اور ادارت کریں
|
||||
Comment[vi]=Quản lí và thay đổi thiết lập kết nối mạng
|
||||
Comment[zh_CN]=管理或更改您的网络连接设置
|
||||
Comment[zh_HK]=管理與更改你的連線設定值
|
||||
Comment[zh_TW]=管理與變更您的連線設定值
|
||||
Comment=Manage and change your network connection settings
|
||||
Icon=preferences-system-network
|
||||
Exec=nm-connection-editor
|
||||
Terminal=false
|
||||
StartupNotify=true
|
||||
Type=Application
|
||||
X-GNOME-Bugzilla-Bugzilla=GNOME
|
||||
X-GNOME-Bugzilla-Product=NetworkManager
|
||||
X-GNOME-Bugzilla-Component=nm-connection-editor
|
||||
Categories=GNOME;GTK;Settings;X-GNOME-NetworkSettings;X-GNOME-Utilities;XFCE;GTK;Settings;DesktopSettings;X-XFCE-SettingsDialog;X-XFCE-HardwareSettings;
|
|
@ -1,35 +0,0 @@
|
|||
[Desktop Entry]
|
||||
#This .desktop file is never shown in a menu, hence no Exec
|
||||
#it's here mostly so wayland can get an icon on popups
|
||||
### Location=/usr/share/applications/org.kde.kded5.desktop
|
||||
Name=KDED
|
||||
Name[az]=KDED
|
||||
Name[ca]=KDED
|
||||
Name[da]=KDED
|
||||
Name[de]=KDED
|
||||
Name[el]=KDED
|
||||
Name[en_GB]=KDED
|
||||
Name[es]=KDED
|
||||
Name[et]=KDED
|
||||
Name[eu]=KDED
|
||||
Name[fi]=KDED
|
||||
Name[fr]=KDED
|
||||
Name[hu]=KDED
|
||||
Name[ia]=KDED
|
||||
Name[it]=KDED
|
||||
Name[ko]=KDED
|
||||
Name[nl]=KDED
|
||||
Name[nn]=KDED
|
||||
Name[pt]=KDED
|
||||
Name[pt_BR]=KDED
|
||||
Name[ro]=KDED
|
||||
Name[sk]=KDED
|
||||
Name[sl]=KDED
|
||||
Name[sv]=KDED
|
||||
Name[uk]=KDED
|
||||
Name[vi]=KDED
|
||||
Name[x-test]=xxKDEDxx
|
||||
Name[zh_CN]=KDED
|
||||
Type=Application
|
||||
Icon=kde-frameworks
|
||||
NoDisplay=true
|
|
@ -1,133 +0,0 @@
|
|||
[Desktop Entry]
|
||||
Version=1.0
|
||||
Name=PulseAudio Volume Control
|
||||
Name[as]=PulseAudio শব্দৰ মাত্ৰা নিয়ন্ত্ৰণকাৰী
|
||||
Name[bn_IN]=PulseAudio শব্দের মাত্রা নিয়ন্ত্রণ ব্যবস্থা
|
||||
Name[ca]=Control del volum del PulseAudio
|
||||
Name[ca@valencia]=Control del volum del PulseAudio
|
||||
Name[cs]=Ovládání hlasitosti PulseAudio
|
||||
Name[da]=Lydstyrkekontrol for PulseAudio
|
||||
Name[de]=PulseAudio-Lautstärkeregler
|
||||
Name[el]=Έλεγχος έντασης ήχου PulseAudio
|
||||
Name[es]=Control de Volumen de PulseAudio
|
||||
Name[fi]=PulseAudion äänenvoimakkuuden hallinta
|
||||
Name[fr]=Contrôle du volume PulseAudio
|
||||
Name[gu]=PulseAudio વોલ્યુમ નિયંત્રણ
|
||||
Name[hi]=पल्सऑडियो ध्वनि नियंत्रण
|
||||
Name[hr]=PulseAudio upravitelj glasnoće zvuka
|
||||
Name[hu]=PulseAudio hangerőszabályzó
|
||||
Name[it]=Regolazione del volume PulseAudio
|
||||
Name[ja]=PulseAudio 音量調節
|
||||
Name[kn]=PulseAudio ಧ್ವನಿ ಪ್ರಮಾಣ ನಿಯಂತ್ರಣ
|
||||
Name[ko]=PulseAudio 볼륨 조절
|
||||
Name[lt]=PulseAudio garsio reguliavimas
|
||||
Name[ml]=പള്സ്ഓഡിയോ ശബ്ദ നിയന്ത്രണം
|
||||
Name[mr]=PulseAudio आवाज नियंत्रण
|
||||
Name[nl]=PulseAudio-volumeregeling
|
||||
Name[nn]=Lydstyrkekontroll for PulseAudio
|
||||
Name[or]=PulseAudio ଭଲ୍ୟୁମ ନିୟନ୍ତ୍ରଣ
|
||||
Name[pa]=ਪਲੱਸਆਡੀਓ ਵਾਲੀਅਮ ਕੰਟਰੋਲ
|
||||
Name[pl]=Sterowanie głośnością PulseAudio
|
||||
Name[pt]=Controlo de Volume PulseAudio
|
||||
Name[pt_BR]=Controle de volume do PulseAudio
|
||||
Name[ru]=Регулятор громкости PulseAudio
|
||||
Name[sk]=Ovládanie hlasitosti PulseAudio
|
||||
Name[sr]=PulseAudio контрола јачине звука
|
||||
Name[sr@latin]=PulseAudio kontrola jačine zvuka
|
||||
Name[sv]=Volymkontroll för PulseAudio
|
||||
Name[ta]=PulseAudio ஒலியளவு கட்டுப்பாடு
|
||||
Name[te]=PulseAudio ధ్వని నియంత్రణ
|
||||
Name[th]=ตัวควบคุมเสียง PulseAudio
|
||||
Name[tr]=PulseAudio Ses Denetimi
|
||||
Name[uk]=Керування гучністю PulseAudio
|
||||
Name[zh_CN]=PulseAudio 音量控制
|
||||
Name[zh_TW]=PulseAudio 音量控制
|
||||
GenericName=Volume Control
|
||||
GenericName[as]=শব্দৰ মাত্ৰা নিয়ন্ত্ৰণকাৰী
|
||||
GenericName[bn_IN]=শব্দের মাত্রা নিয়ন্ত্রণ
|
||||
GenericName[ca]=Control del volum
|
||||
GenericName[ca@valencia]=Control del volum
|
||||
GenericName[cs]=Ovládání hlasitosti
|
||||
GenericName[da]=Lydstyrkekontrol
|
||||
GenericName[de]=Lautstärkeregler
|
||||
GenericName[el]=Έλεγχος έντασης ήχου
|
||||
GenericName[es]=Control de Volumen
|
||||
GenericName[fi]=Äänenvoimakkuus
|
||||
GenericName[fr]=Contrôle du volume
|
||||
GenericName[gu]=વોલ્યમ નિયંત્રણ
|
||||
GenericName[hi]=आवाज निर्धारक
|
||||
GenericName[hr]=Upravitelj glasnoće zvuka
|
||||
GenericName[hu]=Hangerőszabályzó
|
||||
GenericName[it]=Regolazione del volume
|
||||
GenericName[ja]=音量調節
|
||||
GenericName[kn]=ಧ್ವನಿಪ್ರಮಾಣ ನಿಯಂತ್ರಣ
|
||||
GenericName[ko]=볼륨 조절
|
||||
GenericName[lt]=Garsio reguliavimas
|
||||
GenericName[ml]=ശബ്ദ നിയന്ത്രണം
|
||||
GenericName[mr]=आवाज नियंत्रण
|
||||
GenericName[nl]=Volumeregeling
|
||||
GenericName[nn]=Lydstyrkekontroll
|
||||
GenericName[or]=ଭଲ୍ୟୁମ ନିୟନ୍ତ୍ରଣ
|
||||
GenericName[pa]=ਵਾਲੀਅਮ ਕੰਟਰੋਲ
|
||||
GenericName[pl]=Sterowanie głośnością
|
||||
GenericName[pt]=Controlo de Volume
|
||||
GenericName[pt_BR]=Controle de volume
|
||||
GenericName[ru]=Громкость
|
||||
GenericName[sk]=Ovládanie hlasitosti
|
||||
GenericName[sr]=Контрола јачине звука
|
||||
GenericName[sr@latin]=Kontrola jačine zvuka
|
||||
GenericName[sv]=Volymkontroll
|
||||
GenericName[ta]=ஒலியளவு கட்டுப்பாடு
|
||||
GenericName[te]=ధ్వని నియంత్రణ
|
||||
GenericName[th]=ตัวควบคุมเสียง
|
||||
GenericName[tr]=Ses Denetimi
|
||||
GenericName[uk]=Керування гучністю
|
||||
GenericName[zh_CN]=音量控制
|
||||
GenericName[zh_TW]=音量控制
|
||||
Comment=Adjust the volume level
|
||||
Comment[as]=শব্দৰ মাত্ৰা ঠিক কৰক
|
||||
Comment[bn_IN]=শব্দের মাত্রা পরিবর্তন করুন
|
||||
Comment[ca]=Ajusta el volum
|
||||
Comment[ca@valencia]=Ajusta el volum
|
||||
Comment[cs]=Upravit úroveň hlasitosti
|
||||
Comment[da]=Justér lydstyrkeniveau
|
||||
Comment[de]=Lautstärke anpassen
|
||||
Comment[el]=Ρύθμιση επιπέδου έντασης
|
||||
Comment[es]=Ajustar el nivel de volumen
|
||||
Comment[fi]=Säädä äänenvoimakkuutta
|
||||
Comment[fr]=Régler le niveau du volume
|
||||
Comment[gu]=વોલ્યુમ સ્તરને વ્યવસ્થિત કરો
|
||||
Comment[hi]=आवाज़ स्तर निर्धारित करें
|
||||
Comment[hr]=Prilagodite razinu glasnoće zvuka
|
||||
Comment[hu]=Hangerő beállítása
|
||||
Comment[it]=Regola il livello del volume
|
||||
Comment[ja]=音量レベルを調整する
|
||||
Comment[kn]=ಧ್ವನಿ ಪ್ರಮಾಣದ ಮಟ್ಟವನ್ನು ಹೊಂದಿಸಿ
|
||||
Comment[ko]=볼륨 레벨 조절
|
||||
Comment[lt]=Reguliuoti garsio lygį
|
||||
Comment[ml]=ശബ്ദ ലവല് ഉചിതമാക്കുക
|
||||
Comment[mr]=ध्वनिमान स्तर सुस्थित करा
|
||||
Comment[nl]=Geluidsniveau aanpassen
|
||||
Comment[nn]=Juster lydstyrke
|
||||
Comment[or]=ଭଲ୍ୟୁମ ସ୍ତରକୁ ସଜାଡ଼ନ୍ତୁ
|
||||
Comment[pa]=ਵਾਲੀਅਮ ਲੈਵਲ ਅਡਜੱਸਟ ਕਰੋ
|
||||
Comment[pl]=Dostosowanie poziomu głośności
|
||||
Comment[pt]=Ajustar o nível do volume
|
||||
Comment[pt_BR]=Ajuste o nível do volume
|
||||
Comment[ru]=Настройка уровня громкости
|
||||
Comment[sk]=Upraviť úroveň hlasitosti
|
||||
Comment[sr]=Подесите ниво јачине звука
|
||||
Comment[sr@latin]=Podesite nivo jačine zvuka
|
||||
Comment[sv]=Justera volymnivån
|
||||
Comment[ta]=ஒலியளவு நிலையை சரிப்படுத்து
|
||||
Comment[te]=ధ్వని స్థాయిను సర్దుము
|
||||
Comment[th]=ปรับระดับเสียง
|
||||
Comment[tr]=Ses şiddetini ayarla
|
||||
Comment[uk]=Скоригуйте рівень гучності
|
||||
Comment[zh_CN]=调节音量水平
|
||||
Comment[zh_TW]=調整音量等級
|
||||
Exec=pavucontrol
|
||||
Icon=multimedia-volume-control
|
||||
StartupNotify=true
|
||||
Type=Application
|
||||
Categories=AudioVideo;Audio;Mixer;GTK;XFCE;GTK;Settings;DesktopSettings;X-XFCE-SettingsDialog;X-XFCE-HardwareSettings;
|
|
@ -1,176 +0,0 @@
|
|||
[Desktop Entry]
|
||||
Name=Synaptic Package Manager
|
||||
Name[ar]=مدير الحزم التشابكي
|
||||
Name[be]=Кіраўнік пакетаў Synaptic
|
||||
Name[be@latin]=Kiraŭnik pakunkaŭ Synaptic
|
||||
Name[bg]=Мениджър на пакети (Synaptic)
|
||||
Name[br]=Ardoer pakadoù Synaptic
|
||||
Name[bs]=Upravnik paketa „Synaptic“
|
||||
Name[ca]=Gestor de paquets Synaptic
|
||||
Name[ca@valencia]=Gestor de paquets Synaptic
|
||||
Name[cs]=Správce balíků Synaptic
|
||||
Name[da]=Synaptic - pakkehåndtering
|
||||
Name[de]=Synaptic-Paketverwaltung
|
||||
Name[el]=Διαχείριση πακέτων Synaptic
|
||||
Name[en_AU]=Synaptic Package Manager
|
||||
Name[en_GB]=Synaptic Package Manager
|
||||
Name[eo]=Pakaĵmastrumilo Sinaptiko
|
||||
Name[es]=Gestor de paquetes Synaptic
|
||||
Name[et]=Synaptic paketihaldur
|
||||
Name[eu]=Synaptic pakete-kudeatzailea
|
||||
Name[fi]=Synaptic-pakettienhallinta
|
||||
Name[fr]=Gestionnaire de paquets Synaptic
|
||||
Name[gl]=Xestor de paquetes Synaptic
|
||||
Name[he]=מנהל החבילות Synaptic
|
||||
Name[hi]=सिनेप्टिक पैकेज प्रबन्धक
|
||||
Name[hr]=Synaptic upravitelj paketa
|
||||
Name[hu]=Synaptic csomagkezelő
|
||||
Name[ia]=Administrator de pacchettos Synaptic
|
||||
Name[id]=Synaptic Manajer Paket
|
||||
Name[it]=Gestore pacchetti
|
||||
Name[ja]=Synaptic パッケージマネージャ
|
||||
Name[ko]=시냅틱 패키지 관리자
|
||||
Name[ku]=Rêveberê Pakêtan Synaptic
|
||||
Name[lt]=Paketų tvarkyklė Synaptic
|
||||
Name[mk]=Менаџер за пакети - Синаптик
|
||||
Name[ms]=Pengurus Pakej Synaptic
|
||||
Name[nb]=Synaptic pakkebehandler
|
||||
Name[nl]=Synaptic-pakketbeheer
|
||||
Name[no]=Synaptic Pakkeadministrasjon
|
||||
Name[pl]=Synaptic Menedżer Pakietów
|
||||
Name[pt]=Gestor de Pacotes Synaptic
|
||||
Name[pt_BR]=Gerenciador de pacotes Synaptic
|
||||
Name[ro]=Synaptic - administrator de pachete
|
||||
Name[ru]=Менеджер пакетов Synaptic
|
||||
Name[sk]=Synaptic - správca balíkov
|
||||
Name[sl]=Upravljalnik paketov Synaptic
|
||||
Name[sr]=Синаптик — управник пакета
|
||||
Name[sr@Latn]=Upravnik paketa „Synaptic“
|
||||
Name[sv]=Synaptic pakethanterare
|
||||
Name[te]=సినాప్టిక్ ప్యాకేజీ నిర్వాహకం
|
||||
Name[th]=เครื่องมือจัดการแพกเกจ Synaptic
|
||||
Name[tr]=Synaptic Paket Yöneticisi
|
||||
Name[uk]=Менеджер пакунків Synaptic
|
||||
Name[xh]=UMlawuli woMqulu we-Synaptic
|
||||
Name[zh_CN]=新立得软件包管理器
|
||||
Name[zh_HK]=Synaptic 套件管理員
|
||||
Name[zh_TW]=Synaptic 套件管理程式
|
||||
GenericName=Package Manager
|
||||
GenericName[ar]=مدير الحزم
|
||||
GenericName[be]=Кіраўнік пакетамі
|
||||
GenericName[be@latin]=Kiraŭnik pakunkaŭ
|
||||
GenericName[bg]=Мениджър на пакети
|
||||
GenericName[br]=Ardoer pakadoù
|
||||
GenericName[bs]=Upravnik paketa
|
||||
GenericName[ca]=Gestor de paquets
|
||||
GenericName[ca@valencia]=Gestor de paquets
|
||||
GenericName[cs]=Správce balíků
|
||||
GenericName[da]=Pakkehåndteringsprogram
|
||||
GenericName[de]=Paketverwaltung
|
||||
GenericName[el]=Διαχείριση πακέτων
|
||||
GenericName[en_AU]=Package Manager
|
||||
GenericName[en_GB]=Package Manager
|
||||
GenericName[eo]=Pakaĵmastrumilo
|
||||
GenericName[es]=Gestor de paquetes
|
||||
GenericName[et]=Paketihaldur
|
||||
GenericName[eu]=Pakete-kudeatzailea
|
||||
GenericName[fi]=Pakettienhallinta
|
||||
GenericName[fr]=Gestionnaire de paquets
|
||||
GenericName[gl]=Xestor de paquetes
|
||||
GenericName[he]=מנהל חבילות
|
||||
GenericName[hi]=पैकेज प्रबन्धक
|
||||
GenericName[hr]=Upravitelj paketa
|
||||
GenericName[hu]=Csomagkezelő
|
||||
GenericName[ia]=Administrator de pacchettos
|
||||
GenericName[id]=Manajer Paket
|
||||
GenericName[it]=Gestore pacchetti
|
||||
GenericName[ja]=パッケージマネージャ
|
||||
GenericName[ko]=패키지 관리자
|
||||
GenericName[ku]=Rêveberê Pakêtan
|
||||
GenericName[lt]=Paketų tvarkyklė
|
||||
GenericName[mk]=Менаџер за пакети
|
||||
GenericName[ms]=Pengurusan Pakej
|
||||
GenericName[nb]=Pakkebehandler
|
||||
GenericName[nl]=Pakketbeheer
|
||||
GenericName[pl]=Menedżer pakietów
|
||||
GenericName[pt]=Gestor de Pacotes
|
||||
GenericName[pt_BR]=Gerenciador de pacotes
|
||||
GenericName[ro]=Administrator de pachete
|
||||
GenericName[ru]=Менеджер пакетов
|
||||
GenericName[sk]=Správca balíkov
|
||||
GenericName[sl]=Upravljalnik paketov
|
||||
GenericName[sr]=Управник пакета
|
||||
GenericName[sr@Latn]=Upravnik paketa
|
||||
GenericName[sv]=Pakethanterare
|
||||
GenericName[te]=ప్యాకేజీ నిర్వాహకం
|
||||
GenericName[th]=เครื่องมือจัดการแพกเกจ
|
||||
GenericName[tr]=Paket Yöneticisi
|
||||
GenericName[uk]=Менеджер пакунків
|
||||
GenericName[xh]=UMlawuli woMqulu
|
||||
GenericName[zh_CN]=软件包管理器
|
||||
GenericName[zh_HK]=套件管理員
|
||||
GenericName[zh_TW]=套件管理程式
|
||||
Comment=Install, remove and upgrade software packages
|
||||
Comment[ar]=ثبّت، أزل وحدّث حزم البرامج
|
||||
Comment[ast]=Instalar, desaniciar y anovar paquetes de software
|
||||
Comment[be]=Усталёўвае, выдаляе і абнаўляе пакеты
|
||||
Comment[be@latin]=Instaluj, vydalaj i aktualizuj prahramnyja pakunki
|
||||
Comment[bg]=Инсталиране, премахване и актуализиране на софтуерни пакети
|
||||
Comment[bn]=সফটওয়্যার প্যাকেজ ইনস্টল, অপসারণ এবং আপগ্রেড
|
||||
Comment[br]=Staliañ, dilemel ha hizivaat pakadoù
|
||||
Comment[bs]=Instaliraj, ukloni i nadogradi softverske pakete
|
||||
Comment[ca]=Instal·la, elimina i actualitza paquets de programari
|
||||
Comment[ca@valencia]=Instal·la, elimina i actualitza paquets de programari
|
||||
Comment[cs]=Nainstalovat, odstranit a aktualizovat balíky
|
||||
Comment[da]=Installér, fjern og opgradér softwarepakker
|
||||
Comment[de]=Anwendungenspakete installieren, entfernen und aktualisieren
|
||||
Comment[el]=Εγκατάσταση, απομάκρυνση και αναβάθμιση πακέτων λογισμικού
|
||||
Comment[en_AU]=Install, remove and upgrade software packages
|
||||
Comment[en_GB]=Install, remove and upgrade software packages
|
||||
Comment[eo]=Instali, forigi kaj promocii programarajn pakaĵojn
|
||||
Comment[es]=Instalar, desinstalar y actualizar los paquetes de software
|
||||
Comment[et]=Paigalda, eemalda ja uuenda tarkvarapakette
|
||||
Comment[eu]=Instalatu, kendu eta bertsio-berritu software-paketeak
|
||||
Comment[fi]=Asenna, poista ja päivitä ohjelmistopaketteja
|
||||
Comment[fr]=Installer, désinstaller et mettre à jour les paquets de logiciels
|
||||
Comment[gl]=Instalar, retirar e anovar os paquetes de software
|
||||
Comment[he]=התקנה, הסרה ושדרוג חבילות תכנה.
|
||||
Comment[hi]=सॉफ्टवेयर पैकेजों की स्थापना, अद्यतन करें या उन्हें हटाएं.
|
||||
Comment[hr]=Instaliraj, ukloni i nadogradi softverske pakete
|
||||
Comment[hu]=Csomagok telepítése, törlése és frissítése
|
||||
Comment[it]=Installa, rimuove e aggiorna i pacchetti software
|
||||
Comment[ja]=ソフトウェアパッケージのインストール、削除またはアップグレード
|
||||
Comment[ko]=소프트웨어 패키지를 설치, 지우기, 업그레이드
|
||||
Comment[ku]=Pakêtên nivîsbariyê saz bike, jê bibe û bilindbike
|
||||
Comment[lt]=Įdiekite, šalinkite ir atnaujinkite programų paketus
|
||||
Comment[mk]=Инсталирајте, отстранете или надградете софтверски пакети
|
||||
Comment[ms]=Pasang, buang dan tatar pakej perisian
|
||||
Comment[nb]=Installer, fjern eller oppgrader programpakker
|
||||
Comment[nl]=Installeer, verwijder en waardeer softwarepakketten op
|
||||
Comment[no]=Installer, fjern eller oppgrader programvare pakker
|
||||
Comment[pl]=Instalacja, usuwanie i aktualizacja pakietów z oprogramowaniem
|
||||
Comment[pt]=Instalar, remover e actualizar pacotes
|
||||
Comment[pt_BR]=Instalar, remover e atualizar pacotes de software
|
||||
Comment[ro]=Instalează, dezinstalează și actualizează pachete de programe
|
||||
Comment[ru]=Установить, удалить и обновить пакеты
|
||||
Comment[sk]=Inštalovať, odstrániť alebo aktualizovať softvérové balíky
|
||||
Comment[sl]=Namestitev, odstranjevanje in nadgradnja programskih paketov
|
||||
Comment[sr]=Инсталирајте, уклоните и надоградите пакете програма
|
||||
Comment[sr@Latn]=Instaliraj, ukloni i nadogradi softverske pakete
|
||||
Comment[sv]=Installera, ta bort och uppgradera programpaket
|
||||
Comment[te]=సాఫ్ట్వేర్ ప్యాకేజీలను స్థాపించండి, తొలగించండి, ఉన్నతీకరించండి
|
||||
Comment[th]=ติดตั้ง ถอดถอน และปรับรุ่นแพกเกจซอฟต์แวร์
|
||||
Comment[tr]=Yazılım paketlerini kur, kaldır veya yükselt
|
||||
Comment[uk]=Встановлення, вилучення та оновлення пакунків програмного забезпечення
|
||||
Comment[xh]=Faka, susa uze uphucule imiqulu yesoftware
|
||||
Comment[zh_CN]=安装,删除和升级软件包
|
||||
Comment[zh_HK]=安裝、移除及升級套件
|
||||
Comment[zh_TW]=安裝、移除及升級套件
|
||||
Exec=synaptic-pkexec
|
||||
Icon=synaptic
|
||||
Terminal=false
|
||||
Type=Application
|
||||
Categories=PackageManager;GTK;System;Settings;X-XFCE-SettingsDialog;X-XFCE-SystemSettings
|
||||
X-Ubuntu-Gettext-Domain=synaptic
|
||||
StartupNotify=true
|
||||
StartupWMClass=synaptic
|
|
@ -1,215 +0,0 @@
|
|||
[Desktop Entry]
|
||||
Name=Print Settings
|
||||
Name[ar]=إعدادات الطباعة
|
||||
Name[as]=প্ৰিন্ট সংহতিসমূহ
|
||||
Name[bg]=Принтерни настройки
|
||||
Name[bn_IN]=প্রিন্ট সংক্রান্ত বৈশিষ্ট্য
|
||||
Name[ca]=Ajusts d'impressió
|
||||
Name[cs]=Nastavení tisku
|
||||
Name[da]=Udskriftsindstillinger
|
||||
Name[de]=Druckeinstellungen
|
||||
Name[el]=Ρυθμίσεις εκτύπωσης
|
||||
Name[en_GB]=Print Settings
|
||||
Name[es]=Configuración de impresión
|
||||
Name[et]=Trükkimise seaded
|
||||
Name[fi]=Tulostusasetukset
|
||||
Name[fr]=Configuration de l’impression
|
||||
Name[fur]=Impostazions di stampe
|
||||
Name[gu]=પ્રિન્ટ સુયોજનો
|
||||
Name[he]=הגדרות הדפסה
|
||||
Name[hi]=छपाई सेटिंग
|
||||
Name[hu]=Nyomtatási beállítások
|
||||
Name[id]=Pengaturan Cetak
|
||||
Name[it]=Impostazioni di stampa
|
||||
Name[ja]=印刷設定
|
||||
Name[kn]=ಮುದ್ರಣದ ಸಿದ್ಧತೆಗಳು
|
||||
Name[ko]=인쇄 설정
|
||||
Name[lt]=Spausdinimo nustatymai
|
||||
Name[lv]=Drukāšanas iestatījumi
|
||||
Name[ml]=പ്രിന്റ് സജ്ജീകരണങ്ങള്
|
||||
Name[mr]=छपाई सेटिंग्स्
|
||||
Name[nb]=Innstillinger for utskrift
|
||||
Name[nl]=Afdrukinstellingen
|
||||
Name[nn]=Utskriftoppsett
|
||||
Name[oc]=Paramètres d'impression
|
||||
Name[or]=ମୂଦ୍ରଣୀ ସଂରଚନା
|
||||
Name[pa]=ਪਰਿੰਟ ਸੈਟਿੰਗ
|
||||
Name[pl]=Ustawienia drukowania
|
||||
Name[pt]=Definições da Impressora
|
||||
Name[pt_BR]=Configurações da impressora
|
||||
Name[ru]=Настройки принтера
|
||||
Name[sk]=Nastavenia tlače
|
||||
Name[sl]=Nastavitve tiskanja
|
||||
Name[sr]=Подешавања штампе
|
||||
Name[sv]=Skrivarinställningar
|
||||
Name[ta]=அச்சு அமைவுகள்
|
||||
Name[te]=ముద్రణ అమరికలు
|
||||
Name[tr]=Yazıcı Ayarları
|
||||
Name[uk]=Параметри друку
|
||||
Name[zh_CN]=打印设置
|
||||
Name[zh_TW]=列印設定值
|
||||
GenericName=Print Settings
|
||||
GenericName[ar]=إعدادات الطباعة
|
||||
GenericName[as]=প্ৰিন্ট সংহতিসমূহ
|
||||
GenericName[bg]=Принтерни настройки
|
||||
GenericName[bn_IN]=প্রিন্ট সংক্রান্ত বৈশিষ্ট্য
|
||||
GenericName[ca]=Ajusts d'impressió
|
||||
GenericName[cs]=Nastavení tisku
|
||||
GenericName[da]=Udskriftsindstillinger
|
||||
GenericName[de]=Druckeinstellungen
|
||||
GenericName[el]=Ρυθμίσεις εκτύπωσης
|
||||
GenericName[en_GB]=Print Settings
|
||||
GenericName[es]=Configuración de impresión
|
||||
GenericName[et]=Trükkimise seaded
|
||||
GenericName[fi]=Tulostusasetukset
|
||||
GenericName[fr]=Configuration de l’impression
|
||||
GenericName[fur]=Impostazions di stampe
|
||||
GenericName[gu]=પ્રિન્ટ સુયોજનો
|
||||
GenericName[he]=הגדרות הדפסה
|
||||
GenericName[hi]=छपाई सेटिंग
|
||||
GenericName[hu]=Nyomtatási beállítások
|
||||
GenericName[id]=Pengaturan Cetak
|
||||
GenericName[it]=Impostazioni di stampa
|
||||
GenericName[ja]=印刷設定
|
||||
GenericName[kn]=ಮುದ್ರಣದ ಸಿದ್ಧತೆಗಳು
|
||||
GenericName[ko]=인쇄 설정
|
||||
GenericName[lt]=Spausdinimo nustatymai
|
||||
GenericName[lv]=Drukāšanas iestatījumi
|
||||
GenericName[ml]=പ്രിന്റ് സജ്ജീകരണങ്ങള്
|
||||
GenericName[mr]=छपाई सेटिंग्स्
|
||||
GenericName[nb]=Innstillinger for utskrift
|
||||
GenericName[nl]=Afdrukinstellingen
|
||||
GenericName[nn]=Utskriftoppsett
|
||||
GenericName[oc]=Paramètres d'impression
|
||||
GenericName[or]=ମୂଦ୍ରଣୀ ସଂରଚନା
|
||||
GenericName[pa]=ਪਰਿੰਟ ਸੈਟਿੰਗ
|
||||
GenericName[pl]=Ustawienia drukowania
|
||||
GenericName[pt]=Definições da Impressora
|
||||
GenericName[pt_BR]=Configurações da impressora
|
||||
GenericName[ru]=Настройки принтера
|
||||
GenericName[sk]=Nastavenia tlače
|
||||
GenericName[sl]=Nastavitve tiskanja
|
||||
GenericName[sr]=Подешавања штампе
|
||||
GenericName[sv]=Skrivarinställningar
|
||||
GenericName[ta]=அச்சு அமைவுகள்
|
||||
GenericName[te]=ముద్రణ అమరికలు
|
||||
GenericName[tr]=Yazıcı Ayarları
|
||||
GenericName[uk]=Параметри друку
|
||||
GenericName[zh_CN]=打印设置
|
||||
GenericName[zh_TW]=列印設定值
|
||||
X-GNOME-FullName=Print Settings
|
||||
X-GNOME-FullName[ar]=إعدادات الطباعة
|
||||
X-GNOME-FullName[as]=প্ৰিন্ট সংহতিসমূহ
|
||||
X-GNOME-FullName[bg]=Принтерни настройки
|
||||
X-GNOME-FullName[bn_IN]=প্রিন্ট সংক্রান্ত বৈশিষ্ট্য
|
||||
X-GNOME-FullName[ca]=Ajusts d'impressió
|
||||
X-GNOME-FullName[cs]=Nastavení tisku
|
||||
X-GNOME-FullName[da]=Udskriftsindstillinger
|
||||
X-GNOME-FullName[de]=Druckeinstellungen
|
||||
X-GNOME-FullName[el]=Ρυθμίσεις εκτύπωσης
|
||||
X-GNOME-FullName[en_GB]=Print Settings
|
||||
X-GNOME-FullName[es]=Configuración de impresión
|
||||
X-GNOME-FullName[et]=Trükkimise seaded
|
||||
X-GNOME-FullName[fi]=Tulostusasetukset
|
||||
X-GNOME-FullName[fr]=Configuration de l’impression
|
||||
X-GNOME-FullName[fur]=Impostazions di stampe
|
||||
X-GNOME-FullName[gu]=પ્રિન્ટ સુયોજનો
|
||||
X-GNOME-FullName[he]=הגדרות הדפסה
|
||||
X-GNOME-FullName[hi]=छपाई सेटिंग
|
||||
X-GNOME-FullName[hu]=Nyomtatási beállítások
|
||||
X-GNOME-FullName[id]=Pengaturan Cetak
|
||||
X-GNOME-FullName[it]=Impostazioni di stampa
|
||||
X-GNOME-FullName[ja]=印刷設定
|
||||
X-GNOME-FullName[kn]=ಮುದ್ರಣದ ಸಿದ್ಧತೆಗಳು
|
||||
X-GNOME-FullName[ko]=인쇄 설정
|
||||
X-GNOME-FullName[lt]=Spausdinimo nustatymai
|
||||
X-GNOME-FullName[lv]=Drukāšanas iestatījumi
|
||||
X-GNOME-FullName[ml]=പ്രിന്റ് സജ്ജീകരണങ്ങള്
|
||||
X-GNOME-FullName[mr]=छपाई सेटिंग्स्
|
||||
X-GNOME-FullName[nb]=Innstillinger for utskrift
|
||||
X-GNOME-FullName[nl]=Afdrukinstellingen
|
||||
X-GNOME-FullName[nn]=Utskriftoppsett
|
||||
X-GNOME-FullName[oc]=Paramètres d'impression
|
||||
X-GNOME-FullName[or]=ମୂଦ୍ରଣୀ ସଂରଚନା
|
||||
X-GNOME-FullName[pa]=ਪਰਿੰਟ ਸੈਟਿੰਗ
|
||||
X-GNOME-FullName[pl]=Ustawienia drukowania
|
||||
X-GNOME-FullName[pt]=Definições da Impressora
|
||||
X-GNOME-FullName[pt_BR]=Configurações da impressora
|
||||
X-GNOME-FullName[ru]=Настройки принтера
|
||||
X-GNOME-FullName[sk]=Nastavenia tlače
|
||||
X-GNOME-FullName[sl]=Nastavitve tiskanja
|
||||
X-GNOME-FullName[sr]=Подешавања штампе
|
||||
X-GNOME-FullName[sv]=Skrivarinställningar
|
||||
X-GNOME-FullName[ta]=அச்சு அமைவுகள்
|
||||
X-GNOME-FullName[te]=ముద్రణ అమరికలు
|
||||
X-GNOME-FullName[tr]=Yazıcı Ayarları
|
||||
X-GNOME-FullName[uk]=Параметри друку
|
||||
X-GNOME-FullName[zh_CN]=打印设置
|
||||
X-GNOME-FullName[zh_TW]=列印設定值
|
||||
Comment=Configure printers
|
||||
Comment[ar]=اضبط الطابعات
|
||||
Comment[as]=মুদ্ৰকৰ বিন্যাস কৰক
|
||||
Comment[bg]=Настройка на принтерите
|
||||
Comment[bn]=প্রিন্টার কনফিগার করুন
|
||||
Comment[bn_IN]=প্রিন্টার কনফিগার করুন
|
||||
Comment[br]=Kefluniañ ar voullerezed
|
||||
Comment[bs]=Konfiguriranje pisača
|
||||
Comment[ca]=Configureu les impressores
|
||||
Comment[cs]=Nastavit tiskárny
|
||||
Comment[da]=Konfigurer printere
|
||||
Comment[de]=Drucker konfigurieren
|
||||
Comment[el]=Διαμόρφωση εκτυπωτών
|
||||
Comment[en_GB]=Configure printers
|
||||
Comment[es]=Configurar impresoras
|
||||
Comment[et]=Printerite seadistamine
|
||||
Comment[fa]=پیکربندی چاپگرها
|
||||
Comment[fi]=Muokkaa tulostimien asetuksia
|
||||
Comment[fr]=Configurer les imprimantes
|
||||
Comment[gu]=પ્રિન્ટરો રૂપરેખાંકિત કરો
|
||||
Comment[he]=הגדרת מדפסות
|
||||
Comment[hi]=मुद्रक विन्यस्त करें
|
||||
Comment[hr]=Konfiguriranje pisača
|
||||
Comment[hu]=Nyomtatók beállítása
|
||||
Comment[id]=Konfigurasi pencetak
|
||||
Comment[is]=Stilla prentara
|
||||
Comment[it]=Configura le stampanti
|
||||
Comment[ja]=プリンターの設定
|
||||
Comment[kn]=ಮುದ್ರಕವನ್ನು ಸ್ವರೂಪಿಸು
|
||||
Comment[ko]=프린터 설정
|
||||
Comment[lt]=Konfigūruoti spausdintuvus
|
||||
Comment[lv]=Konfigurēt printerus
|
||||
Comment[ml]=പ്രിന്ററുകള് സജ്ജമാക്കുക
|
||||
Comment[mr]=मुद्रक व्यूहरचित करा
|
||||
Comment[ms]=Tetapkan pencetak
|
||||
Comment[nb]=Konfigurer skrivere
|
||||
Comment[nl]=Printers configureren
|
||||
Comment[nn]=Set opp skrivarar
|
||||
Comment[oc]=Configurar d'imprimentas
|
||||
Comment[or]=ମୁଦ୍ରଣୀ ମାନଙ୍କୁ ବିନ୍ଯାସ କରନ୍ତୁ
|
||||
Comment[pa]=ਪਰਿੰਟਰ ਸੰਰਚਨਾ
|
||||
Comment[pl]=Konfiguracja drukarek
|
||||
Comment[pt]=Configurar impressoras
|
||||
Comment[pt_BR]=Configure impressoras
|
||||
Comment[ro]=Configurează imprimantele
|
||||
Comment[ru]=Настроить принтеры
|
||||
Comment[si]=මුද්රකයන් මානකරන්න
|
||||
Comment[sk]=Nastavuje tlačiarne
|
||||
Comment[sl]=Konfiguracija tiskalnikov
|
||||
Comment[sr]=Подешавање штампача
|
||||
Comment[sr@latin]=Podešavanje štampača
|
||||
Comment[sv]=Konfigurera skrivare
|
||||
Comment[ta]=அச்சடிப்பிகளை கட்டமைக்கவும்
|
||||
Comment[te]=ముద్రకాలను ఆకృతీకరించు
|
||||
Comment[th]=ตั้งค่าเครื่องพิมพ์
|
||||
Comment[tr]=Yazıcıları yapılandır
|
||||
Comment[uk]=Налаштовування принтерів
|
||||
Comment[vi]=Cấu hình máy in
|
||||
Comment[zh_CN]=配置打印机
|
||||
Comment[zh_TW]=設定印表機
|
||||
Exec=system-config-printer
|
||||
Terminal=false
|
||||
Type=Application
|
||||
Icon=printer
|
||||
StartupNotify=true
|
||||
X-Desktop-File-Install-Version=0.26
|
||||
Categories=System;Settings;HardwareSettings;Printing;GTK;XFCE;GTK;Settings;DesktopSettings;X-XFCE-SettingsDialog;X-XFCE-HardwareSettings;
|
|
@ -1,27 +0,0 @@
|
|||
#!/bin/sh
|
||||
# Creates an "Install Peppermint" icon on the live session tested with:
|
||||
# Xfce, LXDE, LXqt, Gnome, KDE, Mate, Cinnamon
|
||||
|
||||
# We query xdg-user-dir because the Desktop directory has different
|
||||
# names for different languages
|
||||
DESKTOP=$(xdg-user-dir DESKTOP)
|
||||
|
||||
# Create ~/Desktop just in case this runs before the xdg folder
|
||||
# creation script.
|
||||
mkdir -p $DESKTOP
|
||||
|
||||
# Among the Peppermint desktop environments, LXDE is the only one
|
||||
# that behaves completely different.
|
||||
if [ -f /usr/bin/lxsession ]; then
|
||||
echo "[Desktop Entry]" > $DESKTOP/Install-peppermint.desktop
|
||||
echo "Type=Link" >> $DESKTOP/Install-peppermint.desktop
|
||||
echo "Name=Install Peppermint" >> $DESKTOP/Install-peppermint.desktop
|
||||
echo "Icon=install-debian" >> $DESKTOP/Install-peppermint.desktop
|
||||
echo "URL=/usr/share/applications/install-peppermint.desktop" \
|
||||
>> $DESKTOP/Install-peppermint.desktop
|
||||
else
|
||||
cp /usr/share/applications/Install-peppermint.desktop $DESKTOP
|
||||
# Xfce needs this executable otherwise it complains, everything
|
||||
# else doesn't seem to care either way.
|
||||
chmod +x $DESKTOP/Install-peppermint.desktop
|
||||
fi
|
|
@ -1,21 +0,0 @@
|
|||
#!/bin/bash
|
||||
|
||||
CHROOT=$(mount | grep proc | grep calamares | awk '{print $3}' | sed -e "s#/proc##g")
|
||||
|
||||
# Set secure permissions for the initramfs if we're configuring
|
||||
# full-disk-encryption. The initramfs is re-generated later in the
|
||||
# installation process so we only set the permissions snippet without
|
||||
# regenerating the initramfs right now:
|
||||
if [ "$(mount | grep $CHROOT" " | cut -c -16)" = "/dev/mapper/luks" ]; then
|
||||
echo "UMASK=0077" > $CHROOT/etc/initramfs-tools/conf.d/initramfs-permissions
|
||||
fi
|
||||
|
||||
echo "Running bootloader-config..."
|
||||
|
||||
if [ -d /sys/firmware/efi/efivars ]; then
|
||||
echo " * Installing grub-efi (uefi)..."
|
||||
DEBIAN_FRONTEND=noninteractive chroot $CHROOT apt-get -y install grub-efi-ia32 cryptsetup keyutils
|
||||
else
|
||||
echo " * install grub... (bios)"
|
||||
DEBIAN_FRONTEND=noninteractive chroot $CHROOT apt-get -y install grub-pc cryptsetup keyutils
|
||||
fi
|
|
@ -1,33 +0,0 @@
|
|||
---
|
||||
componentName: peppermint
|
||||
welcomeStyleCalamares: false
|
||||
welcomeExpandingLogo: true
|
||||
windowExpanding: normal
|
||||
windowSize: 700,450
|
||||
windowPlacement: center
|
||||
|
||||
strings:
|
||||
productName: Peppermint
|
||||
shortProductName: Peppermint
|
||||
version: 00
|
||||
shortVersion: 00
|
||||
versionedName: Peppermint
|
||||
shortVersionedName: Peppermint
|
||||
bootloaderEntryName: Peppermint
|
||||
productUrl: https://www.peppermintos.com
|
||||
supportUrl: https://forum.peppermintos.com
|
||||
releaseNotesUrl: https://www.peppermintos.com
|
||||
|
||||
images:
|
||||
productLogo: "pep-logo.png"
|
||||
productIcon: "pep-logo.png"
|
||||
productWelcome: "welcome.png"
|
||||
|
||||
slideshow: "show.qml"
|
||||
|
||||
style:
|
||||
sidebarBackground: "#333333"
|
||||
sidebarText: "#FFFFFF"
|
||||
sidebarTextSelect: "#F62817"
|
||||
|
||||
|
Before Width: | Height: | Size: 24 KiB |
|
@ -1,103 +0,0 @@
|
|||
/* === This file is part of Calamares - <http://github.com/calamares> ===
|
||||
*
|
||||
* Copyright 2015, Teo Mrnjavac <teo@kde.org>
|
||||
* Copyright 2018-2019, Jonathan Carter <jcc@debian.org>
|
||||
*
|
||||
* Calamares is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, or (at your option) any later version.
|
||||
*
|
||||
* Calamares is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with Calamares. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
import QtQuick 2.0;
|
||||
import calamares.slideshow 1.0;
|
||||
|
||||
Presentation
|
||||
{
|
||||
id: presentation
|
||||
|
||||
Timer {
|
||||
interval: 20000
|
||||
running: true
|
||||
repeat: true
|
||||
onTriggered: presentation.goToNextSlide()
|
||||
}
|
||||
|
||||
Slide {
|
||||
Image {
|
||||
id: background1
|
||||
source: "s1.png"
|
||||
width: 2000; height: 2000
|
||||
fillMode: Image.PreserveAspectFit
|
||||
anchors.centerIn: parent
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
Slide {
|
||||
Image {
|
||||
id: background2
|
||||
source: "s2.png"
|
||||
width: 2000; height: 2000
|
||||
fillMode: Image.PreserveAspectFit
|
||||
anchors.centerIn: parent
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
Slide {
|
||||
Image {
|
||||
id: background3
|
||||
source: "s3.png"
|
||||
width: 2000; height: 2000
|
||||
fillMode: Image.PreserveAspectFit
|
||||
anchors.centerIn: parent
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
Slide {
|
||||
Image {
|
||||
id: background4
|
||||
source: "s4.png"
|
||||
width: 2000; height: 2000
|
||||
fillMode: Image.PreserveAspectFit
|
||||
anchors.centerIn: parent
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
Slide {
|
||||
Image {
|
||||
id: background5
|
||||
source: "s5.png"
|
||||
width: 2000; height: 2000
|
||||
fillMode: Image.PreserveAspectFit
|
||||
anchors.centerIn: parent
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
Before Width: | Height: | Size: 119 KiB |
Before Width: | Height: | Size: 114 KiB |
Before Width: | Height: | Size: 142 KiB |
Before Width: | Height: | Size: 307 KiB |
Before Width: | Height: | Size: 89 KiB |
Before Width: | Height: | Size: 148 KiB |
Before Width: | Height: | Size: 141 KiB |
Before Width: | Height: | Size: 169 KiB |
Before Width: | Height: | Size: 307 KiB |
Before Width: | Height: | Size: 115 KiB |
|
@ -1,163 +0,0 @@
|
|||
/* A branding component can ship a stylesheet (like this one)
|
||||
which is applied to parts of the Calamares user-interface.
|
||||
In principle, all parts can be styled through CSS.
|
||||
Missing parts should be filed as issues.
|
||||
|
||||
The IDs are based on the object names in the C++ code.
|
||||
You can use the Debug Dialog to find out object names:
|
||||
- Open the debug dialog
|
||||
- Choose tab *Tools*
|
||||
- Click *Widget Tree* button
|
||||
The list of object names is printed in the log.
|
||||
|
||||
Documentation for styling Qt Widgets through a stylesheet
|
||||
can be found at
|
||||
https://doc.qt.io/qt-5/stylesheet-examples.html
|
||||
https://doc.qt.io/qt-5/stylesheet-reference.html
|
||||
In Calamares, styling widget classes is supported (e.g.
|
||||
using `QComboBox` as a selector).
|
||||
|
||||
This example stylesheet has all the actual styling commented out.
|
||||
The examples are not exhaustive. */
|
||||
|
||||
/*########Current Calamres Styles##########*/
|
||||
/* These "Q's" are master styles for overall colours */
|
||||
#mainApp {background-color: #333333 }
|
||||
|
||||
/* Set the entire Font and Background color */
|
||||
QWidget { color: #FFFFFF ; background-color: #333333 }
|
||||
#globalStorageTab { background-color: #545454 }
|
||||
|
||||
/* Set Drop Down Font and Background color */
|
||||
QComboBox { font: 12px ;
|
||||
color: #FFFFFF ;
|
||||
background-color: #454545 ;
|
||||
padding: 2px ;
|
||||
border-radius: 10px }
|
||||
#languageWidget { font: 14px ;
|
||||
color: #111111 ;
|
||||
background-color: #AAAAAA ;
|
||||
text-align: center ;
|
||||
border-radius: 6px }
|
||||
|
||||
/* Set the inline Text box edit Font and Background color */
|
||||
QLineEdit { font: 14px ;
|
||||
color: #000000 ;
|
||||
background-color: beige }
|
||||
|
||||
/* Set List box Font and Background color */
|
||||
QListView { font: 12px ;
|
||||
color: #FFFFFF ;
|
||||
background-color: #454545 ;
|
||||
alternate-background-color: #454545 ;
|
||||
padding: 2px ;
|
||||
border-radius: 4px }
|
||||
#layoutSelector {}
|
||||
|
||||
/* Set the TreeView Font and Background color */
|
||||
QTreeView {
|
||||
color: #FFFFFF ;
|
||||
background-color: #454545 ;
|
||||
border-radius: 12px }
|
||||
|
||||
/* Set buttons Font and Background color */
|
||||
QPushButton { font: 14px ;
|
||||
color: #FFFFFF ;
|
||||
background-color: #454545 ;
|
||||
border-color: #000000 ;
|
||||
border-width: 10px ;}
|
||||
#view-button-back { font: 16px ; background-color: #504545 }
|
||||
#view-button-back:hover { font: 18px ; color: #ced174 ; background-color: #222222 }
|
||||
#view-button-next { font: 16px ; background-color: #504545 }
|
||||
#view-button-next:hover { font: 18px ; color: #00FF00 ; background-color: #222222 }
|
||||
#view-button-cancel { font: 16px ; background-color: #504545 }
|
||||
#view-button-cancel:hover { font: 18px ; color: #F62817 ; background-color: #222222 }
|
||||
#view-button-install { font: 16px ; color: #F6D174 }
|
||||
#view-button-done { font: 16px ; color: #000000 }
|
||||
|
||||
/* Set the color in the keyboard selection */
|
||||
#layoutSelector { selection-background-color: #F62817 }
|
||||
#variantSelector { selection-background-color: #F62817 }
|
||||
|
||||
/* Set the CheckBox size and Background color */
|
||||
QCheckBox {
|
||||
color: #000000 ;
|
||||
background-color: #545454 ;
|
||||
border-width: 2px ;
|
||||
border-color: #000000 }
|
||||
#m_encryptCheckBox { font: 14px ;
|
||||
color: #F62817 ;
|
||||
background-color: #454545 ;
|
||||
border-radius: 4px ;
|
||||
padding: 6px }
|
||||
#checkBoxDoAutoLogin { font: 14px ;
|
||||
color: #AAAAAA ;
|
||||
background-color: #333333 ;
|
||||
padding: 4px }
|
||||
#restartCheckBox { font: 14px ;
|
||||
color: #FFFFFF ;
|
||||
background-color: #454545 ;
|
||||
border-color: #000000 ;
|
||||
border-radius: 8px ;
|
||||
height: 16px ;
|
||||
width: 100px ;
|
||||
padding: 4px }
|
||||
QCheckBox#restartCheckBox::indicator:checked { image: url(/usr/share/pixmaps/ckm.png) }
|
||||
|
||||
|
||||
/* Set the color when selected */
|
||||
QRadioButton {
|
||||
color: #000000 ;
|
||||
background-color: #545454 ;
|
||||
padding: 4px ;
|
||||
border-radius: 4px }
|
||||
QComboBoxPrivateContainer { background-color: #545454 }
|
||||
QComboBoxListView { background-color: #545454 }
|
||||
#qt_scrollarea_hcontainer { background-color: #545454 }
|
||||
#qt_scrollarea_vcontainer { background-color: #545454 }
|
||||
QRadioButton::indicator { width: 18px ; height: 18px }
|
||||
QRadioButton::indicator::checked { image: url(/usr/share/pixmaps/peppermint.png) }
|
||||
QRadioButton::indicator::checked:hover { image: url(/usr/share/pixmaps/peppermint-fm-20.png) }
|
||||
QRadioButton::indicator::unchecked:hover { image: url(/usr/share/pixmaps/peppermint-inst.png) }
|
||||
|
||||
/* Set the tip Font and Background color */
|
||||
QToolTip { font: 12px ;
|
||||
color: #333333 ;
|
||||
background-color: #ced174 ;
|
||||
padding: 4px ;
|
||||
border-radius: 4px }
|
||||
|
||||
/* Set the Progress Bar alignment and load color */
|
||||
QProgressBar { text-align: center }
|
||||
QProgressBar::chunk { background-color: #F62817 }
|
||||
|
||||
#debugButton {font: 11px }
|
||||
#sidebarMenuApp{ background-color: #333333 }
|
||||
#tabWidget { background-color: #545454 }
|
||||
|
||||
/* This area is commented out*/
|
||||
/* These are for specific controls in specific areas of the installer
|
||||
QFrame { color: #ced174 ; background-color: #ced174 }
|
||||
#tabWidget {background-color: #333333;}
|
||||
#mainApp {background-color: #333333;}
|
||||
#summaryStep {background-color: #333333;}
|
||||
#Page_Keyboard {background-color: #333333;}
|
||||
#debugButton {font : 11px;}
|
||||
#debugButton:hover {color : white;}
|
||||
#checkBoxDoAutoLogin {background-color: #333333; color : white;}
|
||||
#restartCheckBox {background-color: #333333; color : white;}
|
||||
#m_selectLabel { background-color: #545454 }
|
||||
#m_typeLabel { background-color: #545454 }
|
||||
|
||||
|
||||
#sidebarMenuApp{ background-color: #333333;}
|
||||
#aboutButton{ background-color: #333333; color: white; }
|
||||
#donateButton{ background-color: #333333; color: #333333; }
|
||||
#supportButton{ background-color: #333333; color: #333333; }
|
||||
#knownIssuesButton{ background-color: #333333; color: #333333; }
|
||||
#releaseNotesButton{ background-color: #333333; color: #333333; }
|
||||
QStackedWidget { background-color: #545454 }
|
||||
ChoicePage { background-color: #545454 }
|
||||
QRadioButton::indicator::unchecked { image: url(/usr/share/pixmaps/ckm.png) }
|
||||
*/
|
||||
/* # canary yellow - #ced174 } */
|
Before Width: | Height: | Size: 30 KiB |
|
@ -1,54 +0,0 @@
|
|||
# Bootloader configuration. The bootloader is installed to allow
|
||||
# the system to start (and pick one of the installed operating
|
||||
# systems to run).
|
||||
---
|
||||
# Define which bootloader you want to use for EFI installations
|
||||
# Possible options are 'grub', 'sb-shim' and 'systemd-boot'.
|
||||
efiBootLoader: "grub"
|
||||
|
||||
# systemd-boot configuration files settings, set kernel and initramfs file names
|
||||
# and amount of time before default selection boots
|
||||
kernel: "/vmlinuz-linux"
|
||||
img: "/initramfs-linux.img"
|
||||
fallback: "/initramfs-linux-fallback.img"
|
||||
timeout: "10"
|
||||
|
||||
# Optionally set the menu entry name and kernel name to use in systemd-boot.
|
||||
# If not specified here, these settings will be taken from branding.desc.
|
||||
#
|
||||
# bootloaderEntryName: "Generic GNU/Linux"
|
||||
# kernelLine: ", with Stable-Kernel"
|
||||
# fallbackKernelLine: ", with Stable-Kernel (fallback initramfs)"
|
||||
|
||||
# GRUB 2 binary names and boot directory
|
||||
# Some distributions (e.g. Fedora) use grub2-* (resp. /boot/grub2/) names.
|
||||
# These names are also used when using sb-shim, since that needs some
|
||||
# GRUB functionality (notably grub-probe) to work. As needed, you may use
|
||||
# complete paths like `/usr/bin/efibootmgr` for the executables.
|
||||
#
|
||||
grubInstall: "grub-install"
|
||||
grubMkconfig: "grub-mkconfig"
|
||||
grubCfg: "/boot/grub/grub.cfg"
|
||||
grubProbe: "grub-probe"
|
||||
efiBootMgr: "efibootmgr"
|
||||
|
||||
# Optionally set the bootloader ID to use for EFI. This is passed to
|
||||
# grub-install --bootloader-id.
|
||||
#
|
||||
# If not set here, the value from bootloaderEntryName from branding.desc
|
||||
# is used, with problematic characters (space and slash) replaced.
|
||||
#
|
||||
# The ID is also used as a directory name within the EFI environment,
|
||||
# and the bootloader is copied from /boot/efi/EFI/<dirname>/ . When
|
||||
# setting the option here, keep in mind that the name is sanitized
|
||||
# (problematic characters, see above, are replaced).
|
||||
#
|
||||
efiBootloaderId: "debian"
|
||||
|
||||
# Optionally install a copy of the GRUB EFI bootloader as the EFI
|
||||
# fallback loader (either bootia32.efi or bootx64.efi depending on
|
||||
# the system). This may be needed on certain systems (Intel DH87MC
|
||||
# seems to be the only one). If you set this to false, take care
|
||||
# to add another module to optionally install the fallback on those
|
||||
# boards that need it.
|
||||
installEFIFallback: true
|
|
@ -1,28 +0,0 @@
|
|||
# Configure one or more display managers (e.g. SDDM)
|
||||
# with a "best effort" approach.
|
||||
---
|
||||
#The DM module attempts to set up all the DMs found in this list, in that precise order.
|
||||
#It also sets up autologin, if the feature is enabled in globalstorage.
|
||||
#The displaymanagers list can also be set in globalstorage, and in that case it overrides anything set up here.
|
||||
displaymanagers:
|
||||
- slim
|
||||
- sddm
|
||||
- lightdm
|
||||
- gdm
|
||||
- mdm
|
||||
- lxdm
|
||||
- kdm
|
||||
|
||||
#Enable the following settings to force a desktop environment in your displaymanager configuration file:
|
||||
#defaultDesktopEnvironment:
|
||||
# executable: "startkde"
|
||||
# desktopFile: "plasma"
|
||||
|
||||
#If true, try to ensure that the user, group, /var directory etc. for the
|
||||
#display manager are set up correctly. This is normally done by the distribution
|
||||
#packages, and best left to them. Therefore, it is disabled by default.
|
||||
basicSetup: false
|
||||
|
||||
#If true, setup autologin for openSUSE. This only makes sense on openSUSE
|
||||
#derivatives or other systems where /etc/sysconfig/displaymanager exists.
|
||||
sysconfigSetup: false
|
|
@ -1,4 +0,0 @@
|
|||
---
|
||||
restartNowEnabled: true
|
||||
restartNowChecked: true
|
||||
restartNowCommand: "systemctl -i reboot"
|
|
@ -1,11 +0,0 @@
|
|||
---
|
||||
mountOptions:
|
||||
default: defaults,noatime
|
||||
btrfs: defaults,noatime,space_cache,autodefrag
|
||||
ssdExtraMountOptions:
|
||||
ext4: discard
|
||||
jfs: discard
|
||||
xfs: discard
|
||||
swap: discard
|
||||
btrfs: discard,compress=lzo
|
||||
crypttabOptions: luks,keyscript=/bin/cat
|
|
@ -1,131 +0,0 @@
|
|||
# SPDX-FileCopyrightText: no
|
||||
# SPDX-License-Identifier: CC0-1.0
|
||||
#
|
||||
---
|
||||
# These settings are used to set your default system time zone.
|
||||
# Time zones are usually located under /usr/share/zoneinfo and
|
||||
# provided by the 'tzdata' package of your Distribution.
|
||||
#
|
||||
# Distributions using systemd can list available
|
||||
# time zones by using the timedatectl command.
|
||||
# timedatectl list-timezones
|
||||
#
|
||||
# The starting timezone (e.g. the pin-on-the-map) when entering
|
||||
# the locale page can be set through keys *region* and *zone*.
|
||||
# If either is not set, defaults to America/New_York.
|
||||
#
|
||||
# Note that useSystemTimezone and GeoIP settings can change the
|
||||
# starting time zone.
|
||||
#
|
||||
region: "America"
|
||||
zone: "New_York"
|
||||
|
||||
# Instead of using *region* and *zone* specified above,
|
||||
# you can use the system's notion of the timezone, instead.
|
||||
# This can help if your system is automatically configured with
|
||||
# a sensible TZ rather than chasing a fixed default.
|
||||
#
|
||||
# The default is false.
|
||||
#
|
||||
# useSystemTimezone: true
|
||||
|
||||
# Should changing the system location (e.g. clicking around on the timezone
|
||||
# map) immediately reflect the changed timezone in the live system?
|
||||
# By default, installers (with a target system) do, and setup (e.g. OEM
|
||||
# configuration) does not, but you can switch it on here (or off, if
|
||||
# you think it's annoying in the installer).
|
||||
#
|
||||
# Note that not all systems support live adjustment.
|
||||
#
|
||||
# adjustLiveTimezone: true
|
||||
|
||||
# System locales are detected in the following order:
|
||||
#
|
||||
# - /usr/share/i18n/SUPPORTED
|
||||
# - localeGenPath (defaults to /etc/locale.gen if not set)
|
||||
# - `locale -a` output
|
||||
#
|
||||
# Enable only when your Distribution is using a
|
||||
# custom path for locale.gen
|
||||
#
|
||||
localeGenPath: "/etc/locale.gen"
|
||||
|
||||
# GeoIP based Language settings: Leave commented out to disable GeoIP.
|
||||
#
|
||||
# GeoIP needs a working Internet connection.
|
||||
# This can be managed from `welcome.conf` by adding
|
||||
# internet to the list of required conditions. (The welcome
|
||||
# module can also do its own GeoIP lookups, independently
|
||||
# of the lookup done here. The lookup in the welcome module
|
||||
# is used to establish language; this one is for timezone).
|
||||
#
|
||||
# The configuration is in three parts:
|
||||
# - a *style*, which can be "json" or "xml" depending on the
|
||||
# kind of data returned by the service, and
|
||||
# - a *url* where the data is retrieved, and
|
||||
# - an optional *selector*
|
||||
# to pick the right field out of the returned data (e.g. field
|
||||
# name in JSON or element name in XML).
|
||||
#
|
||||
# The default selector (when the setting is blank) is picked to
|
||||
# work with existing JSON providers (which use "time_zone") and
|
||||
# Ubiquity's XML providers (which use "TimeZone").
|
||||
#
|
||||
# If the service configured via *url* uses
|
||||
# a different attribute name (e.g. "timezone") in JSON or a
|
||||
# different element tag (e.g. "<Time_Zone>") in XML, set the
|
||||
# selector to the name or tag to be used.
|
||||
#
|
||||
# In JSON:
|
||||
# - if the string contains "." characters, this is used as a
|
||||
# multi-level selector, e.g. "a.b" will select the timezone
|
||||
# from data "{a: {b: "Europe/Amsterdam" } }".
|
||||
# - each part of the string split by "." characters is used as
|
||||
# a key into the JSON data.
|
||||
# In XML:
|
||||
# - all elements with the named tag (e.g. all TimeZone) elements
|
||||
# from the document are checked; the first one with non-empty
|
||||
# text value is used.
|
||||
# Special case:
|
||||
# - the *style* "fixed" is also supported. This ignores the data
|
||||
# returned from the URL (but the URL must still be valid!)
|
||||
# and just returns the value of the *selector*.
|
||||
#
|
||||
# An HTTP(S) request is made to *url*. The request should return
|
||||
# valid data in a suitable format, depending on *style*;
|
||||
# generally this includes a string value with the timezone
|
||||
# in <region>/<zone> format. For services that return data which
|
||||
# does not follow the conventions of "suitable data" described
|
||||
# below, *selector* may be used to pick different data.
|
||||
#
|
||||
# Suitable JSON data looks like
|
||||
# ```
|
||||
# {"time_zone":"America/New_York"}
|
||||
# ```
|
||||
# Suitable XML data looks like
|
||||
# ```
|
||||
# <Response><TimeZone>Europe/Brussels</TimeZone></Response>
|
||||
# ```
|
||||
#
|
||||
# To accommodate providers of GeoIP timezone data with peculiar timezone
|
||||
# naming conventions, the following cleanups are performed automatically:
|
||||
# - backslashes are removed
|
||||
# - spaces are replaced with _
|
||||
#
|
||||
# To disable GeoIP checking, either comment-out the entire geoip section,
|
||||
# or set the *style* key to an unsupported format (e.g. `none`).
|
||||
# Also, note the analogous feature in src/modules/welcome/welcome.conf.
|
||||
#
|
||||
geoip:
|
||||
style: "json"
|
||||
url: "https://geoip.kde.org/v1/calamares"
|
||||
selector: "" # leave blank for the default
|
||||
|
||||
# For testing purposes, you could use *fixed* style, to see how Calamares
|
||||
# behaves in a particular zone:
|
||||
#
|
||||
# geoip:
|
||||
# style: "fixed"
|
||||
# url: "https://geoip.kde.org/v1/calamares" # Still needs to be valid!
|
||||
# selector: "America/Vancouver" # this is the selected zone
|
||||
#
|
|
@ -1,5 +0,0 @@
|
|||
# Writes a keyfile configuration with LUKS settings to the given path
|
||||
---
|
||||
# Path of the configuration file to write (in the target system)
|
||||
#configFilePath: /cryptroot/crypttab
|
||||
configFilePath: /etc/crypttab
|
|
@ -1,4 +0,0 @@
|
|||
# Writes an openswap configuration with LUKS settings to the given path
|
||||
---
|
||||
# Path of the configuration file to write (in the target system)
|
||||
configFilePath: /etc/openswap.conf
|
|
@ -1,15 +0,0 @@
|
|||
---
|
||||
# Whether to create /etc/machine-id for systemd.
|
||||
systemd: true
|
||||
# Whether to create /var/lib/dbus/machine-id for D-Bus.
|
||||
dbus: true
|
||||
# Whether /var/lib/dbus/machine-id should be a symlink to /etc/machine-id
|
||||
# (ignored if dbus is false, or if there is no /etc/machine-id to point to).
|
||||
symlink: true
|
||||
# Whether to copy entropy from the host
|
||||
#entropy-copy: true
|
||||
# Which files to write (paths in the target)
|
||||
#entropy-files:
|
||||
# - /var/lib/urandom/random-seed
|
||||
# - /var/lib/systemd/random-seed
|
||||
|
|
@ -1,36 +0,0 @@
|
|||
# Mount filesystems in the target (generally, before treating the
|
||||
# target as a usable chroot / "live" system). Filesystems are
|
||||
# automatically mounted from the partitioning module. Filesystems
|
||||
# listed here are **extra**. The filesystems listed in *extraMounts*
|
||||
# are mounted in all target systems. The filesystems listed in
|
||||
# *extraMountsEfi* are mounted in the target system **only** if
|
||||
# the host machine uses UEFI.
|
||||
---
|
||||
# Extra filesystems to mount. The key's value is a list of entries; each
|
||||
# entry has four keys:
|
||||
# - device The device node to mount
|
||||
# - fs The filesystem type to use
|
||||
# - mountPoint Where to mount the filesystem
|
||||
# - options (optional) Extra options to pass to mount(8)
|
||||
#
|
||||
extraMounts:
|
||||
- device: proc
|
||||
fs: proc
|
||||
mountPoint: /proc
|
||||
- device: sys
|
||||
fs: sysfs
|
||||
mountPoint: /sys
|
||||
- device: /dev
|
||||
mountPoint: /dev
|
||||
options: bind
|
||||
- device: tmpfs
|
||||
fs: tmpfs
|
||||
mountPoint: /run
|
||||
- device: /run/udev
|
||||
mountPoint: /run/udev
|
||||
options: bind
|
||||
|
||||
extraMountsEfi:
|
||||
- device: efivarfs
|
||||
fs: efivarfs
|
||||
mountPoint: /sys/firmware/efi/efivars
|
|
@ -1,24 +0,0 @@
|
|||
backend: apt
|
||||
|
||||
operations:
|
||||
- remove:
|
||||
# We need to keep this as refracta uses these to build he live CD's
|
||||
# - 'live-boot'
|
||||
# - 'live-boot-doc'
|
||||
# - 'live-config'
|
||||
# - 'live-config-doc'
|
||||
# - 'live-config-systemd'
|
||||
# - 'live-config-systemd'
|
||||
# - 'live-tools'
|
||||
# - 'live-task-localisation'
|
||||
# - 'live-task-recommended'
|
||||
#This one we don't need the users can decide thier own installer
|
||||
# - 'calamares-settings-debian'
|
||||
# - 'calamares'
|
||||
|
||||
# This section add any other software you want to remove.
|
||||
# - 'gparted'
|
||||
# - 'bleachbit'
|
||||
- 'termit'
|
||||
- 'live-tools'
|
||||
|
|
@ -1,12 +0,0 @@
|
|||
efiSystemPartition: "/boot/efi"
|
||||
userSwapChoices:
|
||||
- none # Create no swap, use no swap
|
||||
- small # Up to 4GB
|
||||
- suspend # At least main memory size
|
||||
- file # To swap file instead of partition
|
||||
alwaysShowPartitionLabels: true
|
||||
initialPartitioningChoice: erase
|
||||
initialSwapChoice: none
|
||||
defaultFileSystemType: "ext4"
|
||||
availableFileSystemTypes: ["ext4","btrfs", "f2fs","xfs"]
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
---
|
||||
dontChroot: false
|
||||
timeout: 999
|
||||
script:
|
||||
- "-rm @@ROOT@@/usr/share/applications/Install-peppermint.desktop"
|
||||
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
unpack:
|
||||
- source: "/run/live/medium/live/filesystem.squashfs"
|
||||
sourcefs: "squashfs"
|
||||
destination: ""
|
|
@ -1,18 +0,0 @@
|
|||
---
|
||||
userGroup: users
|
||||
defaultGroups:
|
||||
- cdrom
|
||||
- floppy
|
||||
- sudo
|
||||
- audio
|
||||
- dip
|
||||
- video
|
||||
- plugdev
|
||||
- netdev
|
||||
- lpadmin
|
||||
- scanner
|
||||
- bluetooth
|
||||
- sambashare
|
||||
autologinGroup: autologin
|
||||
sudoersGroup: sudo
|
||||
setRootPassword: false
|
|
@ -1,19 +0,0 @@
|
|||
---
|
||||
showSupportUrl: false
|
||||
showKnownIssuesUrl: false
|
||||
showReleaseNotesUrl: false
|
||||
|
||||
requirements:
|
||||
requiredStorage: 10
|
||||
requiredRam: 1.0
|
||||
check:
|
||||
- storage
|
||||
- ram
|
||||
- power
|
||||
- root
|
||||
- internet
|
||||
required:
|
||||
- storage
|
||||
- ram
|
||||
- root
|
||||
|
|
@ -1,100 +0,0 @@
|
|||
# Configuration file for Calamares
|
||||
# Syntax is YAML 1.2
|
||||
---
|
||||
|
||||
# "local" is LIBDIR/calamares/modules with settings in SHARE/calamares/modules
|
||||
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
|
||||
|
||||
sequence:
|
||||
|
||||
# Phase 1 - prepare.
|
||||
# View modules are shown as UI pages, jobs from job modules
|
||||
# are executed immediately in the background.
|
||||
# Jobs should be executed sparingly (if at all) in this phase.
|
||||
- show:
|
||||
- welcome
|
||||
- locale
|
||||
- keyboard
|
||||
- partition
|
||||
- users
|
||||
- summary
|
||||
|
||||
# Phase 2 - install.
|
||||
# View modules are not shown. Only the view modules shown
|
||||
# in the previous phase are allowed, their names should be
|
||||
# added here as placeholders to specify the order in which
|
||||
# view module jobs should be enqueued. Job modules are
|
||||
# also allowed.
|
||||
- exec:
|
||||
- partition
|
||||
- mount
|
||||
- unpackfs
|
||||
- sources-media
|
||||
- machineid
|
||||
- fstab
|
||||
- locale
|
||||
- keyboard
|
||||
- localecfg
|
||||
- users
|
||||
- displaymanager
|
||||
- networkcfg
|
||||
- hwclock
|
||||
- services-systemd
|
||||
- bootloader-config
|
||||
- grubcfg
|
||||
- bootloader
|
||||
- packages
|
||||
- luksbootkeyfile
|
||||
- luksopenswaphookcfg
|
||||
- plymouthcfg
|
||||
- initramfscfg
|
||||
- initramfs
|
||||
- sources-media-unmount
|
||||
- sources-final
|
||||
- shellprocess
|
||||
- umount
|
||||
|
||||
# Phase 3 - postinstall.
|
||||
# View modules are shown as UI pages, jobs from job modules are
|
||||
# executed immediately in the background.
|
||||
# Jobs should be executed sparingly (if at all) in this phase.
|
||||
- show:
|
||||
- finished
|
||||
|
||||
# A branding component is a directory, either in
|
||||
# SHARE/calamares/branding or in /etc/calamares/branding
|
||||
# (the latter takes precedence). The directory must contain a
|
||||
# YAML file branding.desc which may reference additional resources
|
||||
# (such as images) as paths relative to the current directory.
|
||||
# Only the name of the branding component (directory) should be
|
||||
# specified here, Calamares then takes care of finding it and
|
||||
# loading the contents.
|
||||
branding: peppermint
|
||||
|
||||
# If this is set to true, Calamares will show an "Are you sure?" prompt right
|
||||
# before each execution phase, i.e. at points of no return. If this is set to
|
||||
# false, no prompt is shown. Default is false.
|
||||
#
|
||||
# YAML: boolean.
|
||||
prompt-install: false
|
||||
|
||||
# If this is set to true, Calamares will execute all target environment
|
||||
# commands in the current environment, without chroot. This setting should
|
||||
# only be used when setting up Calamares as a post-install configuration tool,
|
||||
# as opposed to a full operating system installer.
|
||||
#
|
||||
# Some official Calamares modules are not expected to function with this
|
||||
# setting. (e.g. partitioning seems like a bad idea, since that is expected to
|
||||
# have been done already)
|
||||
#
|
||||
# Default is false (for a normal installer).
|
||||
#
|
||||
# YAML: boolean.
|
||||
dont-chroot: false
|
||||
|
|
@ -1,16 +0,0 @@
|
|||
#!/bin/sh
|
||||
###
|
||||
# Wrapper for running calamares on Peppermint live media
|
||||
###
|
||||
|
||||
# Stale file left behind by live-build that messes with partitioning
|
||||
sudo mv /etc/fstab /etc/fstab.orig.calamares
|
||||
|
||||
# Access control to run calamares as root for xwayland
|
||||
xhost +si:localuser:root
|
||||
pkexec calamares
|
||||
#pkexec calamares --debug | sudo tee /var/log/Calamares-Install.log
|
||||
xhost -si:localuser:root
|
||||
|
||||
# Restore stale fstab, for what it's worth
|
||||
sudo mv /etc/fstab.orig.calamares /etc/fstab
|
|
@ -1,38 +0,0 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Writes the final sources.list file
|
||||
#
|
||||
|
||||
CHROOT=$(mount | grep proc | grep calamares | awk '{print $3}' | sed -e "s#/proc##g")
|
||||
RELEASE="bookworm"
|
||||
|
||||
cat << EOF > $CHROOT/etc/apt/sources.list
|
||||
# This system was installed using PeppermintOS removable media
|
||||
# (e.g. netinst, live or single CD). The matching "deb cdrom"
|
||||
# entries were removed at the end of the installation process.
|
||||
# For information about how to configure apt package sources,
|
||||
# see the sources.list(5) manual.
|
||||
|
||||
# Main Repo - main contrib non-free
|
||||
deb http://deb.debian.org/debian/ bookworm main contrib non-free
|
||||
#deb-src http://deb.debian.org/debian/ bookworm main contrib non-free
|
||||
|
||||
# Security Repo - main contrib non-free
|
||||
deb http://security.debian.org/ bookworm-security main contrib non-free
|
||||
#deb-src http://security.debian.org/ bookworm-security main contrib non-free
|
||||
|
||||
# Updates Repo - main contrib non-free
|
||||
deb http://deb.debian.org/debian bookworm-updates main contrib non-free
|
||||
#deb-src http://deb.debian.org/debian bookworm-updates main
|
||||
|
||||
# Proposed Updates Repo - main contrib non-free
|
||||
#deb http://deb.debian.org/debian/ bookworm-proposed-updates main contrib non-free
|
||||
#deb-src http://deb.debian.org/debian/ bookworm-proposed-updates main contrib non-free
|
||||
|
||||
# bookworm-backports, previously on backports.debian.org
|
||||
deb http://deb.debian.org/debian/ bookworm-backports main contrib non-free
|
||||
#deb-src http://deb.debian.org/debian/ bookworm-backports main contrib non-free
|
||||
|
||||
EOF
|
||||
|
||||
exit 0
|
|
@ -1,17 +0,0 @@
|
|||
set default=0
|
||||
|
||||
loadfont $prefix/dejavu-bold-16.pf2
|
||||
loadfont $prefix/dejavu-bold-14.pf2
|
||||
loadfont $prefix/unicode.pf2
|
||||
set gfxmode=auto
|
||||
insmod all_video
|
||||
insmod gfxterm
|
||||
insmod png
|
||||
|
||||
source /boot/grub/theme.cfg
|
||||
|
||||
terminal_output gfxterm
|
||||
|
||||
# Uncomment so grub beeps during boot
|
||||
#insmod play
|
||||
#play 960 440 1 0 4 440 1
|
|
@ -1,436 +0,0 @@
|
|||
if loadfont $prefix/font.pf2 ; then
|
||||
set gfxmode=1024x768
|
||||
set gfxpayload=keep
|
||||
insmod efi_gop
|
||||
insmod efi_uga
|
||||
insmod video_bochs
|
||||
insmod video_cirrus
|
||||
insmod gfxterm
|
||||
insmod png
|
||||
terminal_output gfxterm
|
||||
fi
|
||||
|
||||
if background_image /isolinux/splash.png; then
|
||||
set color_normal=light-gray/black
|
||||
set color_highlight=white/black
|
||||
elif background_image /splash.png; then
|
||||
set color_normal=light-gray/black
|
||||
set color_highlight=white/black
|
||||
else
|
||||
set menu_color_normal=cyan/blue
|
||||
set menu_color_highlight=white/blue
|
||||
fi
|
||||
|
||||
source /boot/grub/config.cfg
|
||||
|
||||
# Live boot
|
||||
menuentry "PeppermintOS - Live" --hotkey=l {
|
||||
linux /live/vmlinuz boot=live components quiet splash findiso=${iso_path}
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
submenu "PeppermintOS - Live with Localisation Support" {
|
||||
menuentry "Albanian (sq)" {
|
||||
linux /live/vmlinuz boot=live components locales=sq_AL.UTF-8 keyboard-layouts=sq quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "Amharic (am)" {
|
||||
linux /live/vmlinuz boot=live components locales=am_ET keyboard-layouts=am quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "Arabic (ar)" {
|
||||
linux /live/vmlinuz boot=live components locales=ar_EG.UTF-8 keyboard-layouts=ar quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "Asturian (ast)" {
|
||||
linux /live/vmlinuz boot=live components locales=ast_ES.UTF-8 keyboard-layouts=ast quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "Basque (eu)" {
|
||||
linux /live/vmlinuz boot=live components locales=eu_ES.UTF-8 keyboard-layouts=eu quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "Belarusian (be)" {
|
||||
linux /live/vmlinuz boot=live components locales=be_BY.UTF-8 keyboard-layouts=be quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "Bangla (bn)" {
|
||||
linux /live/vmlinuz boot=live components locales=bn_BD keyboard-layouts=bn quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "Bosnian (bs)" {
|
||||
linux /live/vmlinuz boot=live components locales=bs_BA.UTF-8 keyboard-layouts=bs quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "Bulgarian (bg)" {
|
||||
linux /live/vmlinuz boot=live components locales=bg_BG.UTF-8 keyboard-layouts=bg quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "Tibetan (bo)" {
|
||||
linux /live/vmlinuz boot=live components locales=bo_IN keyboard-layouts=bo quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "Catalan (ca)" {
|
||||
linux /live/vmlinuz boot=live components locales=ca_ES.UTF-8 keyboard-layouts=ca quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "Chinese (Simplified) (zh_CN)" {
|
||||
linux /live/vmlinuz boot=live components locales=zh_CN.UTF-8 keyboard-layouts=zh_CN quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "Chinese (Traditional) (zh_TW)" {
|
||||
linux /live/vmlinuz boot=live components locales=zh_TW.UTF-8 keyboard-layouts=zh_TW quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "Croatian (hr)" {
|
||||
linux /live/vmlinuz boot=live components locales=hr_HR.UTF-8 keyboard-layouts=hr quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "Czech (cs)" {
|
||||
linux /live/vmlinuz boot=live components locales=cs_CZ.UTF-8 keyboard-layouts=cs quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "Danish (da)" {
|
||||
linux /live/vmlinuz boot=live components locales=da_DK.UTF-8 keyboard-layouts=da quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "Dutch (nl)" {
|
||||
linux /live/vmlinuz boot=live components locales=nl_NL.UTF-8 keyboard-layouts=nl quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "Dzongkha (dz)" {
|
||||
linux /live/vmlinuz boot=live components locales=dz_BT keyboard-layouts=dz quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "English (en)" {
|
||||
linux /live/vmlinuz boot=live components locales=en_US.UTF-8 keyboard-layouts=en quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "Esperanto (eo)" {
|
||||
linux /live/vmlinuz boot=live components locales=eo.UTF-8 keyboard-layouts=eo quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "Estonian (et)" {
|
||||
linux /live/vmlinuz boot=live components locales=et_EE.UTF-8 keyboard-layouts=et quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "Finnish (fi)" {
|
||||
linux /live/vmlinuz boot=live components locales=fi_FI.UTF-8 keyboard-layouts=fi quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "French (fr)" {
|
||||
linux /live/vmlinuz boot=live components locales=fr_FR.UTF-8 keyboard-layouts=fr quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "Galician (gl)" {
|
||||
linux /live/vmlinuz boot=live components locales=gl_ES.UTF-8 keyboard-layouts=gl quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "Georgian (ka)" {
|
||||
linux /live/vmlinuz boot=live components locales=ka_GE.UTF-8 keyboard-layouts=ka quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "German (de)" {
|
||||
linux /live/vmlinuz boot=live components locales=de_DE.UTF-8 keyboard-layouts=de quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "Greek (el)" {
|
||||
linux /live/vmlinuz boot=live components locales=el_GR.UTF-8 keyboard-layouts=el quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "Gujarati (gu)" {
|
||||
linux /live/vmlinuz boot=live components locales=gu_IN keyboard-layouts=gu quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "Hebrew (he)" {
|
||||
linux /live/vmlinuz boot=live components locales=he_IL.UTF-8 keyboard-layouts=he quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "Hindi (hi)" {
|
||||
linux /live/vmlinuz boot=live components locales=hi_IN keyboard-layouts=hi quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "Hungarian (hu)" {
|
||||
linux /live/vmlinuz boot=live components locales=hu_HU.UTF-8 keyboard-layouts=hu quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "Icelandic (is)" {
|
||||
linux /live/vmlinuz boot=live components locales=is_IS.UTF-8 keyboard-layouts=is quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "Indonesian (id)" {
|
||||
linux /live/vmlinuz boot=live components locales=id_ID.UTF-8 keyboard-layouts=id quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "Irish (ga)" {
|
||||
linux /live/vmlinuz boot=live components locales=ga_IE.UTF-8 keyboard-layouts=ga quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "Italian (it)" {
|
||||
linux /live/vmlinuz boot=live components locales=it_IT.UTF-8 keyboard-layouts=it quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "Japanese (ja)" {
|
||||
linux /live/vmlinuz boot=live components locales=ja_JP.UTF-8 keyboard-layouts=ja quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "Kazakh (kk)" {
|
||||
linux /live/vmlinuz boot=live components locales=kk_KZ.UTF-8 keyboard-layouts=kk quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "Khmer (km)" {
|
||||
linux /live/vmlinuz boot=live components locales=km_KH keyboard-layouts=km quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "Kannada (kn)" {
|
||||
linux /live/vmlinuz boot=live components locales=kn_IN keyboard-layouts=kn quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "Korean (ko)" {
|
||||
linux /live/vmlinuz boot=live components locales=ko_KR.UTF-8 keyboard-layouts=ko quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "Kurdish (ku)" {
|
||||
linux /live/vmlinuz boot=live components locales=ku_TR.UTF-8 keyboard-layouts=ku quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "Lao (lo)" {
|
||||
linux /live/vmlinuz boot=live components locales=lo_LA keyboard-layouts=lo quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "Latvian (lv)" {
|
||||
linux /live/vmlinuz boot=live components locales=lv_LV.UTF-8 keyboard-layouts=lv quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "Lithuanian (lt)" {
|
||||
linux /live/vmlinuz boot=live components locales=lt_LT.UTF-8 keyboard-layouts=lt quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "Malayalam (ml)" {
|
||||
linux /live/vmlinuz boot=live components locales=ml_IN keyboard-layouts=ml quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "Marathi (mr)" {
|
||||
linux /live/vmlinuz boot=live components locales=mr_IN keyboard-layouts=mr quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "Macedonian (mk)" {
|
||||
linux /live/vmlinuz boot=live components locales=mk_MK.UTF-8 keyboard-layouts=mk quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "Burmese (my)" {
|
||||
linux /live/vmlinuz boot=live components locales=my_MM keyboard-layouts=my quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "Nepali (ne)" {
|
||||
linux /live/vmlinuz boot=live components locales=ne_NP keyboard-layouts=ne quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "Northern Sami (se_NO)" {
|
||||
linux /live/vmlinuz boot=live components locales=se_NO keyboard-layouts=se_NO quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "Norwegian Bokmaal (nb_NO)" {
|
||||
linux /live/vmlinuz boot=live components locales=nb_NO.UTF-8 keyboard-layouts=nb_NO quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "Norwegian Nynorsk (nn_NO)" {
|
||||
linux /live/vmlinuz boot=live components locales=nn_NO.UTF-8 keyboard-layouts=nn_NO quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "Persian (fa)" {
|
||||
linux /live/vmlinuz boot=live components locales=fa_IR keyboard-layouts=fa quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "Polish (pl)" {
|
||||
linux /live/vmlinuz boot=live components locales=pl_PL.UTF-8 keyboard-layouts=pl quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "Portuguese (pt)" {
|
||||
linux /live/vmlinuz boot=live components locales=pt_PT.UTF-8 keyboard-layouts=pt quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "Portuguese (Brazil) (pt_BR)" {
|
||||
linux /live/vmlinuz boot=live components locales=pt_BR.UTF-8 keyboard-layouts=pt_BR quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "Punjabi (Gurmukhi) (pa)" {
|
||||
linux /live/vmlinuz boot=live components locales=pa_IN keyboard-layouts=pa quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "Romanian (ro)" {
|
||||
linux /live/vmlinuz boot=live components locales=ro_RO.UTF-8 keyboard-layouts=ro quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "Russian (ru)" {
|
||||
linux /live/vmlinuz boot=live components locales=ru_RU.UTF-8 keyboard-layouts=ru quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "Sinhala (si)" {
|
||||
linux /live/vmlinuz boot=live components locales=si_LK keyboard-layouts=si quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "Serbian (Cyrillic) (sr)" {
|
||||
linux /live/vmlinuz boot=live components locales=sr_RS keyboard-layouts=sr quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "Slovak (sk)" {
|
||||
linux /live/vmlinuz boot=live components locales=sk_SK.UTF-8 keyboard-layouts=sk quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "Slovenian (sl)" {
|
||||
linux /live/vmlinuz boot=live components locales=sl_SI.UTF-8 keyboard-layouts=sl quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "Spanish (es)" {
|
||||
linux /live/vmlinuz boot=live components locales=es_ES.UTF-8 keyboard-layouts=es quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "Swedish (sv)" {
|
||||
linux /live/vmlinuz boot=live components locales=sv_SE.UTF-8 keyboard-layouts=sv quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "Tagalog (tl)" {
|
||||
linux /live/vmlinuz boot=live components locales=tl_PH.UTF-8 keyboard-layouts=tl quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "Tamil (ta)" {
|
||||
linux /live/vmlinuz boot=live components locales=ta_IN keyboard-layouts=ta quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "Telugu (te)" {
|
||||
linux /live/vmlinuz boot=live components locales=te_IN keyboard-layouts=te quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "Tajik (tg)" {
|
||||
linux /live/vmlinuz boot=live components locales=tg_TJ.UTF-8 keyboard-layouts=tg quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "Thai (th)" {
|
||||
linux /live/vmlinuz boot=live components locales=th_TH.UTF-8 keyboard-layouts=th quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "Turkish (tr)" {
|
||||
linux /live/vmlinuz boot=live components locales=tr_TR.UTF-8 keyboard-layouts=tr quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "Uyghur (ug)" {
|
||||
linux /live/vmlinuz boot=live components locales=ug_CN keyboard-layouts=ug quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "Ukrainian (uk)" {
|
||||
linux /live/vmlinuz boot=live components locales=uk_UA.UTF-8 keyboard-layouts=uk quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "Vietnamese (vi)" {
|
||||
linux /live/vmlinuz boot=live components locales=vi_VN keyboard-layouts=vi quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "Welsh (cy)" {
|
||||
linux /live/vmlinuz boot=live components locales=cy_GB.UTF-8 keyboard-layouts=cy quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
}
|
||||
### Commented out till Persistence is working as expected.
|
||||
#menuentry "Persistent PeppermintOS" --hotkey=p {
|
||||
# linux /live/vmlinuz boot=live components quiet splash findiso=${iso_path} persistence
|
||||
# initrd /live/initrd.img
|
||||
#}
|
||||
|
||||
### Commented out till toram is working as expected.
|
||||
#menuentry "PeppermintOS - loaded to RAM" --hotkey=t {
|
||||
# linux /live/vmlinuz boot=live components quiet splash findiso=${iso_path} toram
|
||||
# initrd /live/initrd.img
|
||||
#}
|
||||
#menuentry "Developer Desktop" --hotkey=d {
|
||||
# linux /live/vmlinuz boot=local ro root=/dev/sdb126 quiet splash findiso=${iso_path}
|
||||
# initrd /live/initrd.img
|
||||
#}
|
||||
|
||||
# You can add more entries like this
|
||||
#menuentry "Alternate live boot" {
|
||||
# linux /live/vmlinuz boot=live components quiet splash findiso=${iso_path} custom options here
|
||||
# initrd /live/initrd.img
|
||||
#}
|
||||
#menuentry "Alternate graphical installer" {
|
||||
# linux custom options here
|
||||
# initrd
|
||||
#}
|
||||
#menuentry "Alternate textual installer" {
|
||||
# linux custom options here
|
||||
# initrd
|
||||
#}
|
||||
|
||||
# Installer (if any)
|
||||
if false; then
|
||||
|
||||
source /boot/grub/install_start.cfg
|
||||
|
||||
submenu 'Advanced install options ...' --hotkey=a {
|
||||
|
||||
source /boot/grub/theme.cfg
|
||||
|
||||
source /boot/grub/install.cfg
|
||||
|
||||
}
|
||||
fi
|
||||
|
||||
submenu ' Utilities ...' --hotkey=u {
|
||||
|
||||
source /boot/grub/theme.cfg
|
||||
|
||||
menuentry "PeppermintOS (fail-safe mode)" --hotkey=s {
|
||||
linux /live/vmlinuz boot=live components memtest noapic noapm nodma nomce nolapic nomodeset nosmp nosplash vga=788
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
# Memtest (if any)
|
||||
|
||||
if [ "${grub_platform}" = "pc" ] -a false; then
|
||||
source /boot/grub/memtest.cfg
|
||||
fi
|
||||
|
||||
# Firmware setup (UEFI)
|
||||
if [ "${grub_platform}" = "efi" ]; then
|
||||
menuentry "UEFI Firmware Settings" {
|
||||
fwsetup
|
||||
}
|
||||
fi
|
||||
}
|
||||
|
||||
submenu ' Recovery ...' --hotkey=r {
|
||||
|
||||
source /boot/grub/theme.cfg
|
||||
|
||||
menuentry "PeppermintOS on sda2" {
|
||||
linux /live/vmlinuz ro boot=local root=/dev/sda2 quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "PeppermintOS on sda3" {
|
||||
linux /live/vmlinuz ro boot=local root=/dev/sda3 quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "PeppermintOS on mmcblk0p2" {
|
||||
linux /live/vmlinuz ro boot=local root=/dev/mmcblk0p2 quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "PeppermintOS on mmcblk0p3" {
|
||||
linux /live/vmlinuz ro boot=local root=/dev/mmcblk0p3 quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "PeppermintOS on nvme0n1p2" {
|
||||
linux /live/vmlinuz ro boot=local root=/dev/nvme0n1p2 quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
menuentry "PeppermintOS on nvme0n1p3" {
|
||||
linux /live/vmlinuz ro boot=local root=/dev/nvme0n1p3 quiet splash
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
#menuentry "PeppermintOS on nvme0n1p4" {
|
||||
# linux /live/vmlinuz ro boot=local root=/dev/nvme0n1p4 quiet splash
|
||||
# initrd /live/initrd.img
|
||||
#}
|
||||
#menuentry "PeppermintOS on nvme0n1p5" {
|
||||
# linux /live/vmlinuz ro boot=local root=/dev/nvme0n1p5 quiet splash
|
||||
# initrd /live/initrd.img
|
||||
#}
|
||||
}
|
||||
|
|
@ -1,124 +0,0 @@
|
|||
submenu 'Graphical installer ...' --hotkey=g {
|
||||
|
||||
source /boot/grub/theme.cfg
|
||||
|
||||
menuentry 'Install' --hotkey=i {
|
||||
linux /install/gtk/vmlinuz vga=788 --- quiet
|
||||
initrd /install/gtk/initrd.gz
|
||||
}
|
||||
|
||||
menuentry 'Expert install' --hotkey=x {
|
||||
linux /install/gtk/vmlinuz priority=low vga=788
|
||||
initrd /install/gtk/initrd.gz
|
||||
}
|
||||
|
||||
menuentry 'Automated install' --hotkey=a {
|
||||
linux /install/gtk/vmlinuz auto=true priority=critical vga=788 --- quiet
|
||||
initrd /install/gtk/initrd.gz
|
||||
}
|
||||
|
||||
menuentry 'Rescue mode' --hotkey=r {
|
||||
linux /install/gtk/vmlinuz rescue/enable=true vga=788 --- quiet
|
||||
initrd /install/gtk/initrd.gz
|
||||
}
|
||||
}
|
||||
|
||||
submenu 'Text installer ...' --hotkey=t {
|
||||
|
||||
source /boot/grub/theme.cfg
|
||||
|
||||
menuentry 'Install' --hotkey=i {
|
||||
linux /install/vmlinuz vga=788 --- quiet
|
||||
initrd /install/initrd.gz
|
||||
}
|
||||
|
||||
menuentry 'Expert install' --hotkey=x {
|
||||
linux /install/vmlinuz priority=low vga=788
|
||||
initrd /install/initrd.gz
|
||||
}
|
||||
|
||||
menuentry 'Automated install' --hotkey=a {
|
||||
linux /install/vmlinuz auto=true priority=critical vga=788 --- quiet
|
||||
initrd /install/initrd.gz
|
||||
}
|
||||
|
||||
menuentry 'Rescue mode' --hotkey=r {
|
||||
linux /install/vmlinuz rescue/enable=true vga=788 --- quiet
|
||||
initrd /install/initrd.gz
|
||||
}
|
||||
}
|
||||
|
||||
submenu 'Graphical installer with dark theme ...' --hotkey=d {
|
||||
|
||||
source /boot/grub/theme.cfg
|
||||
|
||||
menuentry 'Install' --hotkey=i {
|
||||
linux /install/gtk/vmlinuz vga=788 theme=dark --- quiet
|
||||
initrd /install/gtk/initrd.gz
|
||||
}
|
||||
|
||||
menuentry 'Expert install' --hotkey=x {
|
||||
linux /install/gtk/vmlinuz priority=low vga=788 theme=dark
|
||||
initrd /install/gtk/initrd.gz
|
||||
}
|
||||
|
||||
menuentry 'Automated install' --hotkey=a {
|
||||
linux /install/gtk/vmlinuz auto=true priority=critical vga=788 theme=dark --- quiet
|
||||
initrd /install/gtk/initrd.gz
|
||||
}
|
||||
|
||||
menuentry 'Rescue mode' --hotkey=r {
|
||||
linux /install/gtk/vmlinuz rescue/enable=true vga=788 theme=dark --- quiet
|
||||
initrd /install/gtk/initrd.gz
|
||||
}
|
||||
}
|
||||
|
||||
submenu 'Text installer with dark theme ...' --hotkey=k {
|
||||
|
||||
source /boot/grub/theme.cfg
|
||||
|
||||
menuentry 'Install' --hotkey=i {
|
||||
linux /install/vmlinuz vga=788 theme=dark --- quiet
|
||||
initrd /install/initrd.gz
|
||||
}
|
||||
|
||||
menuentry 'Expert install' --hotkey=x {
|
||||
linux /install/vmlinuz priority=low vga=788 theme=dark
|
||||
initrd /install/initrd.gz
|
||||
}
|
||||
|
||||
menuentry 'Automated install' --hotkey=a {
|
||||
linux /install/vmlinuz auto=true priority=critical vga=788 theme=dark --- quiet
|
||||
initrd /install/initrd.gz
|
||||
}
|
||||
|
||||
menuentry 'Rescue mode' --hotkey=r {
|
||||
linux /install/vmlinuz rescue/enable=true vga=788 theme=dark --- quiet
|
||||
initrd /install/initrd.gz
|
||||
}
|
||||
}
|
||||
|
||||
submenu 'Installer with speech synthesis ...' --hotkey=s {
|
||||
|
||||
source /boot/grub/theme.cfg
|
||||
|
||||
menuentry 'Install' --hotkey=i {
|
||||
linux /install/gtk/vmlinuz speakup.synth=soft vga=788 --- quiet
|
||||
initrd /install/gtk/initrd.gz
|
||||
}
|
||||
|
||||
menuentry 'Expert install' --hotkey=x {
|
||||
linux /install/gtk/vmlinuz speakup.synth=soft priority=low vga=788
|
||||
initrd /install/gtk/initrd.gz
|
||||
}
|
||||
|
||||
menuentry 'Automated install' --hotkey=a {
|
||||
linux /install/gtk/vmlinuz speakup.synth=soft auto=true priority=critical vga=788 --- quiet
|
||||
initrd /install/gtk/initrd.gz
|
||||
}
|
||||
|
||||
menuentry 'Rescue mode' --hotkey=r {
|
||||
linux /install/gtk/vmlinuz speakup.synth=soft rescue/enable=true vga=788 --- quiet
|
||||
initrd /install/gtk/initrd.gz
|
||||
}
|
||||
}
|
|
@ -1,6 +0,0 @@
|
|||
menuentry 'Start the PeppermintOS Install' --hotkey=i {
|
||||
linux /install/gtk/vmlinuz vga=788 --- quiet
|
||||
initrd /install/gtk/initrd.gz
|
||||
}
|
||||
|
||||
|
Before Width: | Height: | Size: 39 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 818 B |
Before Width: | Height: | Size: 372 B |
Before Width: | Height: | Size: 372 B |
Before Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 977 B |
Before Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 865 B |
Before Width: | Height: | Size: 865 B |
Before Width: | Height: | Size: 467 B |
Before Width: | Height: | Size: 4.1 KiB |
Before Width: | Height: | Size: 422 B |
Before Width: | Height: | Size: 525 B |
Before Width: | Height: | Size: 3.8 KiB |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 772 B |
Before Width: | Height: | Size: 777 B |
Before Width: | Height: | Size: 402 B |
Before Width: | Height: | Size: 699 B |
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 683 B |
Before Width: | Height: | Size: 792 B |
Before Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 4.0 KiB |
Before Width: | Height: | Size: 847 B |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 464 B |
Before Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 979 B |
Before Width: | Height: | Size: 454 B |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 735 B |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 864 B |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 372 B |