18 lines
496 B
Bash
Executable File
18 lines
496 B
Bash
Executable File
#!/bin/bash
|
|
|
|
BASEDIR=$(dirname "$0")
|
|
source $BASEDIR/basic-setup
|
|
|
|
mkdir -p ~/.xmonad
|
|
mkdir -p ~/.config/xmobar
|
|
cp $FILEDIR/.xmonad/xmonad-pc.hs ~/.xmonad/xmonad.hs
|
|
cp $FILEDIR/.config/xmobar/xmobar-pc-0.config ~/.config/xmobar/xmobar0.config
|
|
cp $FILEDIR/.config/xmobar/xmobar-pc-1.config ~/.config/xmobar/xmobar0.config
|
|
|
|
# download nvidia driver
|
|
mkdir -p ~/Downloads
|
|
cd ~/Downloads
|
|
wget https://de.download.nvidia.com/XFree86/Linux-x86_64/470.57.02/NVIDIA-Linux-x86_64-470.57.02.run
|
|
|
|
sudo reboot
|