mirror of
https://github.com/kevinveenbirkenbach/linux-image-manager.git
synced 2024-11-10 01:51:03 +01:00
Added libre office
This commit is contained in:
parent
bad1ecccb0
commit
54a11fa8d4
@ -1,4 +1,5 @@
|
||||
#!/bin/bash
|
||||
#
|
||||
# This script contains the global program variables and functions
|
||||
# @author Kevin Veen-Birkenbach [aka. Frantz]
|
||||
REPOSITORY_PATH="$(dirname "$(readlink -f "${0}")")"
|
||||
|
@ -1,7 +1,11 @@
|
||||
#!/bin/bash
|
||||
#
|
||||
# Imports data from the system
|
||||
# @author Kevin Veen-Birkenbach [aka. Frantz]
|
||||
# @param $1 If the first parameter is "reverse" the data will be exported to the system
|
||||
#
|
||||
# Deactivate SC1090
|
||||
# shellcheck source=/dev/null
|
||||
source "$(dirname "$(readlink -f "${0}")")/base.sh"
|
||||
DATA_FOLDER=$ENCRYPTED
|
||||
if [ -z "$(mount | grep $DATA_FOLDER)" ]
|
||||
|
@ -1,6 +1,10 @@
|
||||
#!/bin/bash
|
||||
#
|
||||
# Locks the data
|
||||
# @author Kevin Veen-Birkenbach [aka. Frantz]
|
||||
#
|
||||
# Deactivate SC1090
|
||||
# shellcheck source=/dev/null
|
||||
source "$(dirname "$(readlink -f "${0}")")/base.sh"
|
||||
echo "Locking directory $DECRYPTED..."
|
||||
fusermount -u "$DECRYPTED" && echo "Data is now encrypted." && echo "Removing directory $DECRYPTED..." && rmdir "$DECRYPTED"
|
||||
|
@ -1,4 +1,5 @@
|
||||
#!/bin/bash
|
||||
#
|
||||
# Installs the core system
|
||||
# @author Kevin Veen-Birkenbach [aka. Frantz]
|
||||
echo "Start setup of customized core software..."
|
||||
@ -29,6 +30,11 @@ gnome-shell-extension-tool -e nasa_apod@elinvention.ovh
|
||||
echo "Synchronizing web tools..."
|
||||
sudo pacman --needed -S chromium firefox firefox-ublock-origin firefox-extension-https-everywhere firefox-dark-reader firefox-noscript
|
||||
echo "Synchronizing office tools..."
|
||||
sudo pacman --needed -S ttf-liberation libreoffice-fresh \
|
||||
libreoffice-fresh-de libreoffice-fresh-eo libreoffice-fresh-es libreoffice-fresh-nl \
|
||||
hunspell \
|
||||
hunspell-de hunspell-es_es hunspell-en_US hunspell-nl
|
||||
echo "Synchronizing grafic tools..."
|
||||
sudo pacman --needed -S gimp
|
||||
echo "Synchronizing communication tools..."
|
||||
yay pacman --needed -S slack-desktop skypeforlinux-stable-bin
|
||||
|
@ -1,6 +1,10 @@
|
||||
#!/bin/bash
|
||||
#
|
||||
# Unlocks the data
|
||||
# @author Kevin Veen-Birkenbach [aka. Frantz]
|
||||
#
|
||||
# Deactivate SC1090
|
||||
# shellcheck source=/dev/null
|
||||
source "$(dirname "$(readlink -f "${0}")")/base.sh"
|
||||
echo "Unlocking directory $DECRYPTED..."
|
||||
echo "Creating directory $DECRYPTED..."
|
||||
|
Loading…
Reference in New Issue
Block a user