general update

This commit is contained in:
Luddifee 2020-12-08 15:11:27 +01:00
parent 6a3d9025a0
commit 4ed5c83fc8
9 changed files with 22 additions and 51 deletions

0
git/setup.sh → git-setup.sh Normal file → Executable file
View File

6
setup-terminal.sh Executable file
View File

@ -0,0 +1,6 @@
# install python3 and pip3
sudo pacman -S python3 python3-pip --noconfirm
# install alacritty
sudo pacman -S alacritty --noconfirm

View File

@ -1,30 +0,0 @@
font_family JetBrains Mono Extra
bold_font auto
italic_font auto
bold_italic_font auto
font_size 14
cursor_shape beam
background #002b36
foreground #839496
cursor #93a1a1
selection_background #81908f
selection_foreground #002831
color0 #073642
color1 #dc322f
color2 #859900
color3 #b58900
color4 #268bd2
color5 #d33682
color6 #2aa198
color7 #eee8d5
color9 #cb4b16
color8 #002b36
color10 #586e75
color11 #657b83
color12 #839496
color13 #6c71c4
color14 #93a1a1
color15 #fdf6e3

View File

@ -1,16 +0,0 @@
# install python3 and pip3
sudo apt install python3 python3-pip --assume-yes
# install pip3 powerline
sudo pip3 install git+git://github.com/powerline/powerline
wget https://github.com/Lokaltog/powerline/raw/develop/font/PowerlineSymbols.otf https://github.com/Lokaltog/powerline/raw/develop/font/10-powerline-symbols.conf
sudo mv PowerlineSymbols.otf /usr/share/fonts/
sudo fc-cache -vf
sudo mv 10-powerline-symbols.conf /etc/fonts/conf.d/
# install kitty
sudo apt install kitty --assume-yes
# copy kitty config
cp kitty.conf ~/.config/kitty/kitty.conf

15
update-pacman-mirrors.sh Executable file
View File

@ -0,0 +1,15 @@
#!/bin/bash
if [ "$EUID" -ne 0 ]
then echo "Please run as root!"
exit
fi
if [ ! -f /etc/pacman.d/mirrorlist.backup ] ; then
echo "creating /etc/pacman.d/mirrorlist.backup ..."
cp /etc/pacman.d/mirrorlist /etc/pacman.d/mirrorlist.backup
fi
echo "Ranking servers ..."
curl -s "https://www.archlinux.org/mirrorlist/?country=DE&country=FR&country=GB&country=NL&protocol=https&use_mirror_status=on" | sed -e 's/^#Server/Server/' -e '/^#/d' | rankmirrors -n 500 - > /etc/pacman.d/mirrorlist

0
vim/vimrc → vimrc Executable file → Normal file
View File

1
wifi-stick-setup/setup.sh → wifi-usb-setup.sh Normal file → Executable file
View File

@ -1,4 +1,5 @@
#!/usr/bin/bash #!/usr/bin/bash
cd ~/Downloads
git clone https://github.com/cilynx/rtl88x2bu.git git clone https://github.com/cilynx/rtl88x2bu.git
sudo dkms add ./rtl88x2bu sudo dkms add ./rtl88x2bu
sudo dkms install rtl88x2bu/5.6.1 sudo dkms install rtl88x2bu/5.6.1

View File

@ -1,5 +0,0 @@
# install dependencies
sudo apt install build-essential cmake vim-nox python3-dev mono-complete golang nodejs default-jdk npm --assume-yes
# compile ycm
python3 ~/.vim/plugged/youcompleteme/install.py --all