You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
568 B
29 lines
568 B
#!/bin/bash
|
|
|
|
source common.sh
|
|
|
|
DOTCONFIG="/home/$USER/.config"
|
|
|
|
if [ -d "$DOTCONFIG" ];
|
|
then
|
|
echo "$DOTCONFIG existst and will not be created"
|
|
else
|
|
mkdir $DOTCONFIG
|
|
fi
|
|
|
|
sudo $installCMD $common_programs
|
|
|
|
sudo cp $main_dir/systemConf/nobeep.conf /etc/modprobe.d/
|
|
localectl set-x11-keymap ch
|
|
|
|
$main_dir/programs/yay.sh
|
|
$main_dir/programs/installFonts.sh
|
|
$main_dir/programs/xmonad.sh
|
|
$main_dir/programs/wallpaper.sh
|
|
$main_dir/programs/sddm.sh
|
|
$main_dir/programs/alacritty.sh
|
|
$main_dir/programs/vim.sh
|
|
$main_dir/programs/brave.sh
|
|
$main_dir/programs/keyboardEnable.sh
|
|
|