mirror of
https://github.com/Foltik/dotfiles
synced 2025-04-06 02:53:52 -04:00
Merge branch 'master' of https://github.com/Foltik/LinuxInstall
This commit is contained in:
commit
bf2649f5c2
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
*.swp
|
14
cfg/vimrc
Normal file
14
cfg/vimrc
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
call plug#begin('~/.vim/plugged')
|
||||||
|
Plug 'vim-airline/vim-airline'
|
||||||
|
call plug#end()
|
||||||
|
|
||||||
|
" general config
|
||||||
|
set number
|
||||||
|
|
||||||
|
" Allow saving files as root when vim was launched as user
|
||||||
|
cmap w!! w !sudo tee > /dev/null %
|
||||||
|
|
||||||
|
" vim-airline configuration
|
||||||
|
set laststatus=2
|
||||||
|
let g:airline_powerline_fonts = 1
|
||||||
|
let g:airline#extensions#tabline#enabled = 1
|
68
cfg/zshrc
Normal file
68
cfg/zshrc
Normal file
@ -0,0 +1,68 @@
|
|||||||
|
# Path to your oh-my-zsh installation.
|
||||||
|
ZSH=/usr/share/oh-my-zsh/
|
||||||
|
|
||||||
|
# Autojump
|
||||||
|
source /usr/share/autojump/autojump.zsh
|
||||||
|
|
||||||
|
# ZSH Theme
|
||||||
|
ZSH_THEME="agnoster"
|
||||||
|
|
||||||
|
# Use case-sensitive completion.
|
||||||
|
CASE_SENSITIVE="true"
|
||||||
|
|
||||||
|
# Use hyphen-insensitive completion. Case-sensitive completion must be off.
|
||||||
|
# HYPHEN_INSENSITIVE="true"
|
||||||
|
|
||||||
|
# Disable bi-weekly auto-update checks.
|
||||||
|
DISABLE_AUTO_UPDATE="true"
|
||||||
|
|
||||||
|
# Uncomment the following line to change how often to auto-update (in days).
|
||||||
|
# export UPDATE_ZSH_DAYS=13
|
||||||
|
|
||||||
|
# Uncomment the following line if you want to disable marking untracked files
|
||||||
|
# under VCS as dirty. This makes repository status check for large repositories
|
||||||
|
# much, much faster.
|
||||||
|
# DISABLE_UNTRACKED_FILES_DIRTY="true"
|
||||||
|
|
||||||
|
# Uncomment the following line if you want to change the command execution time
|
||||||
|
# stamp shown in the history command output.
|
||||||
|
# The optional three formats: "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd"
|
||||||
|
HIST_STAMPS="yyyy-mm-dd"
|
||||||
|
|
||||||
|
# Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*)
|
||||||
|
# Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/
|
||||||
|
# Example format: plugins=(rails git textmate ruby lighthouse)
|
||||||
|
# Add wisely, as too many plugins slow down shell startup.
|
||||||
|
plugins=(git)
|
||||||
|
|
||||||
|
|
||||||
|
### User configuration
|
||||||
|
|
||||||
|
export MANPATH="/usr/local/man:$MANPATH"
|
||||||
|
|
||||||
|
export LANG=en_US.UTF-8
|
||||||
|
|
||||||
|
# Preferred editor for local and remote sessions
|
||||||
|
export EDITOR='vim'
|
||||||
|
|
||||||
|
# Compilation flags
|
||||||
|
export ARCHFLAGS="-arch x86_64"
|
||||||
|
|
||||||
|
# ssh
|
||||||
|
export SSH_KEY_PATH="~/.ssh/rsa_id"
|
||||||
|
|
||||||
|
# Set personal aliases, overriding those provided by oh-my-zsh libs,
|
||||||
|
# plugins, and themes. Aliases can be placed here, though oh-my-zsh
|
||||||
|
# users are encouraged to define aliases within the ZSH_CUSTOM folder.
|
||||||
|
# For a full list of active aliases, run `alias`.
|
||||||
|
#
|
||||||
|
# Example aliases
|
||||||
|
# alias zshconfig="mate ~/.zshrc"
|
||||||
|
# alias ohmyzsh="mate ~/.oh-my-zsh"
|
||||||
|
|
||||||
|
ZSH_CACHE_DIR=$HOME/.cache/oh-my-zsh
|
||||||
|
if [[ ! -d $ZSH_CACHE_DIR ]]; then
|
||||||
|
mkdir $ZSH_CACHE_DIR
|
||||||
|
fi
|
||||||
|
|
||||||
|
source $ZSH/oh-my-zsh.sh
|
54
configure.sh
54
configure.sh
@ -25,6 +25,7 @@ ln() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
install_i3() {
|
install_i3() {
|
||||||
|
# Install Packages
|
||||||
if ! (pacman -Q i3-gaps >/dev/null 2>&1);
|
if ! (pacman -Q i3-gaps >/dev/null 2>&1);
|
||||||
then
|
then
|
||||||
lnh "Installing i3-gaps from AUR..."
|
lnh "Installing i3-gaps from AUR..."
|
||||||
@ -56,25 +57,6 @@ install_i3() {
|
|||||||
pacman -S compton --noconfirm
|
pacman -S compton --noconfirm
|
||||||
fi;
|
fi;
|
||||||
|
|
||||||
### Configuration Files
|
|
||||||
lnh "Installing General Configuration Files"
|
|
||||||
# Compton
|
|
||||||
lnf
|
|
||||||
cp -v cfg/compton/config ~/.config/compton/config
|
|
||||||
# NCMPCPP config
|
|
||||||
lnf
|
|
||||||
cp -v cfg/termite/ncmpcpp_config ~/.config/termite/ncmpcpp_config
|
|
||||||
|
|
||||||
### Install Tools
|
|
||||||
lnh "Installing General Tools"
|
|
||||||
mkdir -p ~/Documents/tools
|
|
||||||
# Wallpaper Tool
|
|
||||||
lnf
|
|
||||||
cp -v cfg/i3/tools/wallpaper.sh ~/Documents/tools/
|
|
||||||
lnfb
|
|
||||||
cp -v cfg/wallpapers/wallpaper* ~/Pictures/
|
|
||||||
lnfbe
|
|
||||||
|
|
||||||
### Install Service Files
|
### Install Service Files
|
||||||
lnh "Installing Services"
|
lnh "Installing Services"
|
||||||
# Suspend locker
|
# Suspend locker
|
||||||
@ -90,6 +72,26 @@ install_i3() {
|
|||||||
lnf
|
lnf
|
||||||
systemctl --user enable locker.service
|
systemctl --user enable locker.service
|
||||||
|
|
||||||
|
|
||||||
|
### Install Configuration Files
|
||||||
|
lnh "Installing General Configuration Files"
|
||||||
|
# Compton
|
||||||
|
lnf
|
||||||
|
cp -v cfg/compton/config ~/.config/compton/config
|
||||||
|
# NCMPCPP ws10 config
|
||||||
|
lnf
|
||||||
|
cp -v cfg/termite/ncmpcpp_config ~/.config/termite/ncmpcpp_config
|
||||||
|
|
||||||
|
### Install Tools
|
||||||
|
lnh "Installing General Tools"
|
||||||
|
mkdir -p ~/Documents/tools
|
||||||
|
# Wallpaper Tool
|
||||||
|
lnf
|
||||||
|
cp -v cfg/i3/tools/wallpaper.sh ~/Documents/tools/
|
||||||
|
lnfb
|
||||||
|
cp -v cfg/wallpapers/wallpaper* ~/Pictures/
|
||||||
|
lnfbe
|
||||||
|
|
||||||
lnh "Select a Platform"
|
lnh "Select a Platform"
|
||||||
platform_opt=("Desktop" "Laptop")
|
platform_opt=("Desktop" "Laptop")
|
||||||
select opt in "${platform_opt[@]}"
|
select opt in "${platform_opt[@]}"
|
||||||
@ -118,7 +120,21 @@ install_i3_laptop() {
|
|||||||
lnfb
|
lnfb
|
||||||
cp -v cfg/i3blocks/laptop/blocks/* ~/.config/i3blocks/blocks/
|
cp -v cfg/i3blocks/laptop/blocks/* ~/.config/i3blocks/blocks/
|
||||||
lnfbe
|
lnfbe
|
||||||
|
}
|
||||||
|
|
||||||
|
configure_common() {
|
||||||
|
lnh "Installing Common Configuration Files"
|
||||||
|
# ZSH
|
||||||
|
lnf
|
||||||
|
cp -v cfg/zshrc ~/.zshrc
|
||||||
|
|
||||||
|
# VIM
|
||||||
|
lnf
|
||||||
|
cp -v cfg/vimrc ~/.vimrc
|
||||||
|
# Install Vim Plugins
|
||||||
|
vim +PlugInstall +qall
|
||||||
|
|
||||||
|
# MPD + NCMPCPP
|
||||||
}
|
}
|
||||||
|
|
||||||
echo "Select a Window Manager"
|
echo "Select a Window Manager"
|
||||||
|
14
packages.txt
Normal file
14
packages.txt
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
termite
|
||||||
|
|
||||||
|
vim
|
||||||
|
vim-plug
|
||||||
|
|
||||||
|
mpd
|
||||||
|
ncmpcpp
|
||||||
|
|
||||||
|
zsh
|
||||||
|
oh-my-zsh
|
||||||
|
|
||||||
|
networkmanager
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user