From c59a9eddc792ca9766c808b2dd753ea2ab95708d Mon Sep 17 00:00:00 2001 From: "Kevin Veen-Birkenbach [aka. Frantz]" Date: Mon, 7 Oct 2019 10:44:59 +0200 Subject: [PATCH] Implemented xkeybindings in .profile --- scripts/system-setup.sh | 3 ++- templates/.profile | 3 +++ 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 templates/.profile diff --git a/scripts/system-setup.sh b/scripts/system-setup.sh index e96e4df..ba72ddf 100644 --- a/scripts/system-setup.sh +++ b/scripts/system-setup.sh @@ -6,6 +6,8 @@ # shellcheck source=/dev/null # Deactivate SC1090 source "$(dirname "$(readlink -f "${0}")")/base.sh" echo "Start setup of customized core software..." +echo "Copying templates to home folder..." +cp -rfv "$TEMPLATE_PATH/." $HOME echo "Synchronising packages..." echo "Synchronizing programing language interpreters..." sudo pacman --needed -S jdk11-openjdk python php @@ -30,7 +32,6 @@ fi echo "Synchronizing gui tools..." sudo pacman --needed -S gnome-shell-extensions xbindkeys echo "->Setting up key bindings..." -cp -fv "$TEMPLATE_PATH/.xbindkeysrc" $HOME xbindkeys --poll-rc echo "->Install NASA picture of the day GNOME extension..." git clone https://github.com/Elinvention/gnome-shell-extension-nasa-apod.git "$HOME/.local/share/gnome-shell/extensions/nasa_apod@elinvention.ovh" diff --git a/templates/.profile b/templates/.profile new file mode 100644 index 0000000..0f80c52 --- /dev/null +++ b/templates/.profile @@ -0,0 +1,3 @@ +export QT_QPA_PLATFORMTHEME="qt5ct" +export EDITOR=/usr/bin/nano +xbindkeys &