From de9781c13fac06e87f2a2e7801b055abc83dec9a Mon Sep 17 00:00:00 2001 From: Severin Kaderli Date: Tue, 17 Jan 2017 20:13:43 +0100 Subject: [PATCH] Fix some bugs Signed-off-by: Severin Kaderli --- .bash_profile | 2 +- .xinitrc | 2 ++ install.sh | 7 +++++++ 3 files changed, 10 insertions(+), 1 deletion(-) diff --git a/.bash_profile b/.bash_profile index ae2ece5..1ea816c 100644 --- a/.bash_profile +++ b/.bash_profile @@ -4,7 +4,7 @@ if [[ -f $HOME/.bashrc ]]; then fi # Activate correct crontab file -crontab -u severin $HOME/.crontab +crontab $HOME/.crontab # If we are on tty1 we start the x-server if [ "$(tty)" = "/dev/tty1" ]; then diff --git a/.xinitrc b/.xinitrc index 4bb7bfd..d597eec 100644 --- a/.xinitrc +++ b/.xinitrc @@ -3,6 +3,8 @@ xset s off xset -dpms xset s noblank +setxkbmap -model pc105 -layout ch + # Start ibus ibus-daemon -d --xim diff --git a/install.sh b/install.sh index d9df6a2..fc9a4b4 100644 --- a/install.sh +++ b/install.sh @@ -4,6 +4,13 @@ # Usage: ./install.sh DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" +# TODO: Install yaourt + +# TODO: Install needed packages +# google-chrome-beta +# vlc +# steam + # Setting up git configuration ln -s "$DIR/.gitconfig" "$HOME/.gitconfig"