Pushed
Signed-off-by: Marcin Woźniak <y0rune@aol.com>
This commit is contained in:
parent
88caa05069
commit
a5cfb44c1c
1
.gitignore
vendored
1
.gitignore
vendored
@ -5,6 +5,7 @@
|
||||
.config/google-chrome/
|
||||
.config/teamviewer/
|
||||
.ipython/
|
||||
.bugz_token
|
||||
.irbrc
|
||||
.jupyter/
|
||||
.local/bin/autopep8
|
||||
|
@ -6,8 +6,8 @@ echo
|
||||
echo
|
||||
sudo emerge --sync
|
||||
sudo $HOME/.local/bin/eix-repos-sync
|
||||
sudo eix-update
|
||||
sudo emerge -auDN @world
|
||||
#sudo eix-update
|
||||
echo
|
||||
echo
|
||||
echo -e $(date)
|
||||
|
@ -1,9 +1,5 @@
|
||||
#!/bin/bash
|
||||
set -x
|
||||
sudo rm -rf /var/tmp/portage/*
|
||||
sudo rm -rf /var/tmp/binpkgs/*
|
||||
sudo rm -rf /var/tmp/genkernel/*
|
||||
sudo rm -rf /var/cache/genkernel/*
|
||||
"$HOME/.local/bin/cleanertmp"
|
||||
sudo emerge -a --depclean
|
||||
sudo emerge -a @preserved-rebuild
|
||||
sudo eclean -C -q packages
|
||||
|
@ -3,5 +3,6 @@ sudo rm -rf /var/tmp/portage/*
|
||||
sudo rm -rf /var/tmp/binpkgs/*
|
||||
sudo rm -rf /var/tmp/genkernel/*
|
||||
sudo rm -rf /var/cache/genkernel/*
|
||||
sudo rm -rf /var/tmpnotmpfs/portage/*
|
||||
sudo eclean-dist -d
|
||||
sudo eclean-pkg -d
|
||||
|
@ -1,5 +1,5 @@
|
||||
#!/bin/bash
|
||||
LOGS=( $(sudo find /var/tmp/portage/ -mindepth 1 -maxdepth 5 -name "build.log") )
|
||||
LOGS=( $(sudo find /var/tmp/portage/ -mindepth 1 -maxdepth 5 -name "build.log") $(sudo find /var/tmpnotmpfs/portage/ -mindepth 1 -maxdepth 5 -name "build.log") )
|
||||
LEN=${#LOGS[@]}
|
||||
|
||||
for (( i=0; i<$LEN; i++ ));
|
||||
|
3
.zshrc
3
.zshrc
@ -27,9 +27,10 @@ plugins=(rake ruby vagrant knife knife_ssh kitchen )
|
||||
ZSH_DISABLE_COMPFIX=true
|
||||
source $ZSH/oh-my-zsh.sh
|
||||
|
||||
[ ! -d $CONFIG/zsh ] && { mkdir -p $CONFIG/zsh ; cd $CONFIG/zsh ; git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ; git clone https://github.com/zsh-users/zsh-autosuggestions.git }
|
||||
[ ! -d $CONFIG/zsh/aws ] && { mkdir -p $CONFIG/zsh/aws ; cd $CONFIG/zsh ; git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ; git clone https://github.com/zsh-users/zsh-autosuggestions.git ; curl https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/plugins/aws/aws.plugin.zsh -o $CONFIG/zsh/aws/aws.plugin.zsh }
|
||||
[ -d $CONFIG/zsh ] && source $CONFIG/zsh/zsh-autosuggestions/zsh-autosuggestions.plugin.zsh &>> /dev/null
|
||||
[ -d $CONFIG/zsh ] && source $CONFIG/zsh/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh &>> /dev/null
|
||||
[ -d $CONFIG/zsh ] && source $CONFIG/zsh/aws/aws.plugin.zsh &>> /dev/null
|
||||
[ -f $HOME/.password ] && source $HOME/.password
|
||||
[ ! -d $CONFIG/fzf ] && git clone https://github.com/junegunn/fzf.git $HOME/.config/fzf
|
||||
[ -f $CONFIG/fzf/shell/key-bindings.zsh ] && source $HOME/.config/fzf/shell/key-bindings.zsh
|
||||
|
Loading…
Reference in New Issue
Block a user