ADDITIONAL TOOLS/APPS FOR TO MAKE THE FUN
sudo mkdir -p /etc/apt/keyrings && \
sudo curl -L -o /etc/apt/keyrings/syncthing-archive-keyring.gpg https://syncthing.net/release-key.gpg
echo "deb [signed-by=/etc/apt/keyrings/syncthing-archive-keyring.gpg] https://apt.syncthing.net/ syncthing stable" | sudo tee /etc/apt/sources.list.d/syncthing.list
sudo apt update && sudo apt install syncthing
systemctl enable [email protected]
systemctl start [email protected]
Super complicated:
sudo apt install p7zip-full p7zip-rar
to unzip with directories:
7z x filename
Caffeine is used to PREVENT sleep! (after all the working getting sleep!)
sudo apt install caffeine
and then in the startup-apps app, add:
/usr/bin/caffeine-indicator
Convert PDF to individual image files:
(Example below will convert “source.pdf” to image-01.png, image-02.pdf, etc.)
pdftoppm -png source.pdf images
If using paint, manually convert .png to .bmp
img2pdf -s 64%x64% -o destination.pdf images[1-3].bmp
Additional tools for manipulating PDFs
pdftk bon1.pdf bon2.pdf cat output bon12.pdf
pdftk bon[12].pdf cat output bon12.pdf
pdftk A=bon1.pdf B=bon2.pdf C=bon3.pdf cat A C3 B C6-8 output bone.pdf