Compare commits
8 Commits
d60b167bfb
...
af51c93b1e
Author | SHA1 | Date | |
---|---|---|---|
af51c93b1e | |||
bc5ca7abcb | |||
cfc6469a32 | |||
1ae597de9b | |||
23a6ea7bd8 | |||
2a2f58e1bf | |||
278dae1761 | |||
9a5b035536 |
10
.i3/config
10
.i3/config
@ -12,12 +12,14 @@
|
||||
## Set Dvorak, because, SMRT
|
||||
exec "setxkbmap dvorak"
|
||||
exec "xset dpms 0 0 450"
|
||||
exec /home/ahosking/.screenlayout/home_desktop.sh
|
||||
#exec /home/ahosking/.screenlayout/home_desktop.sh
|
||||
exec /home/ahosking/.fehbg
|
||||
exec --no-startup-id nm-applet
|
||||
exec --no-startup-id nextcloud
|
||||
exec --no-startup-id insync start
|
||||
exec --no-startup-id redshift-gtk
|
||||
exec killall -q notify-osd
|
||||
exec --no-startup-id dunst -config ~/.i3/config_dunst
|
||||
|
||||
set $mod Mod4
|
||||
|
||||
@ -56,9 +58,9 @@ bindsym Control+space exec rofi -show combi -modi combi -lines 7 -eh 2 -width 10
|
||||
# bindsym $mod+d exec --no-startup-id i3-dmenu-desktop
|
||||
|
||||
# Print Screen / ScreenShot
|
||||
bindsym $Mod+Shift+Print exec scrot $HOME/Pictures/ScreenShoots/`date +%Y-%m-%d_%H:%M:%S`.png #FullScreen
|
||||
bindsym $Mod+Print exec scrot -u $HOME/Pictures/ScreenShoots/`date +%Y-%m-%d_%H:%M:%S`.png #Active Window
|
||||
bindsym --release Print exec scrot -s $HOME/Pictures/ScreenShoots/`date +%Y-%m-%d_%H:%M:%S`.png #Selection
|
||||
bindsym $Mod+Shift+Print exec scrot $HOME/Pictures/ScreenShoots/`date +%Y-%m-%d_%H%M%S`.png #FullScreen
|
||||
bindsym $Mod+Print exec scrot -u $HOME/Pictures/ScreenShoots/`date +%Y-%m-%d_%H%M%S`.png #Active Window
|
||||
bindsym --release Print exec scrot -s $HOME/Pictures/ScreenShoots/`date +%Y-%m-%d_%H%M%S`.png #Selection
|
||||
|
||||
# Pulse Audio controls
|
||||
## requires alsa-utils pulseaudio
|
||||
|
@ -1,7 +1,8 @@
|
||||
#### Home SSH Config
|
||||
host home
|
||||
hostname home.ahoskingit.com
|
||||
hostname git.ahoskingit.com
|
||||
user ahosking
|
||||
port 87
|
||||
|
||||
host home-decrypt
|
||||
hostname 192.168.1.187
|
||||
@ -9,8 +10,11 @@ host home-decrypt
|
||||
port 4422
|
||||
|
||||
host git.ahoskingit.com
|
||||
hostname git.ahoskingit.com
|
||||
#hostname git.ahoskingit.com
|
||||
#hostname 99.240.201.161
|
||||
hostname 192.168.1.19
|
||||
port 9022
|
||||
identityfile ~/.ssh/ahosking
|
||||
|
||||
host home-desktop
|
||||
hostname 192.168.1.187
|
||||
|
@ -1,3 +1,13 @@
|
||||
Host indigo.bitbucket.org
|
||||
HostName bitbucket.org
|
||||
IdentityFile ~/.ssh/indigo
|
||||
|
||||
host elastic-0
|
||||
hostname 13.88.238.68
|
||||
user ahosking
|
||||
IdentityFile ~/.ssh/ahosking
|
||||
|
||||
host kibana-0
|
||||
hostname 52.237.13.25
|
||||
user ahosking
|
||||
IdentityFile ~/.ssh/ahosking
|
||||
|
13
install.sh
13
install.sh
@ -13,22 +13,21 @@ export EXTRA_DIR
|
||||
mkdir -p ~/apps
|
||||
|
||||
### install packages
|
||||
## sudo apt-get install -y -f python-pip python-dev powerline arandr
|
||||
|
||||
## install kryptonite
|
||||
##curl https://krypt.co/kr | sh
|
||||
sudo apt-get install -y -f python3-pip python3-dev powerline arandr
|
||||
sudo apt install -y -f vagrant
|
||||
|
||||
#vim backup folders
|
||||
mkdir -p ~/.vim/{backup_files,swap_files,undo_files}
|
||||
#install vundle
|
||||
##git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
|
||||
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
|
||||
|
||||
#Install pyenv
|
||||
##git clone https://github.com/pyenv/pyenv.git ~/.pyenv
|
||||
git clone https://github.com/pyenv/pyenv.git ~/.pyenv
|
||||
|
||||
# Bunch of symlinks
|
||||
ln -sfv ~/dotfiles ~/.dotfiles
|
||||
ln -sfv $PWD ~/.dotfiles
|
||||
#ln -sfv "$DOTFILES_DIR/run/.bash_profile" ~
|
||||
git clone https://github.com/nightsense/vimspectr.git ~/.vim/bundle/vimspectr
|
||||
ln -sfv ~/.vim/bundle/vimspectr/shell ~/.vimspectr-shell
|
||||
ln -sfv "$DOTFILES_DIR/run/.profile" ~
|
||||
ln -sfv "$DOTFILES_DIR/run/.xprofile" ~
|
||||
|
20
run/.bashrc
20
run/.bashrc
@ -144,13 +144,15 @@ if ! shopt -oq posix; then
|
||||
fi
|
||||
|
||||
|
||||
if [ -f `which powerline-daemon` ]; then
|
||||
# Powerline configuration
|
||||
if [ -f /usr/share/powerline/bindings/bash/powerline.sh ]; then
|
||||
powerline-daemon -q
|
||||
POWERLINE_BASH_CONTINUATION=1
|
||||
POWERLINE_BASH_SELECT=1
|
||||
. /usr/share/powerline/bindings/bash/powerline.sh
|
||||
source /usr/share/powerline/bindings/bash/powerline.sh
|
||||
fi
|
||||
|
||||
|
||||
# Persistent Bash History to alternative dotfile
|
||||
log_bash_persistent_history()
|
||||
{
|
||||
@ -173,7 +175,7 @@ run_on_prompt_command()
|
||||
log_bash_persistent_history
|
||||
}
|
||||
|
||||
PROMPT_COMMAND="run_on_prompt_command && _powerline_set_prompt"
|
||||
PROMPT_COMMAND="run_on_prompt_command && source /usr/share/powerline/bindings/bash/powerline.sh"
|
||||
|
||||
## Keyboard Mapping!!!
|
||||
setxkbmap dvorak
|
||||
@ -181,10 +183,10 @@ export PYENV_ROOT="$HOME/.pyenv"
|
||||
export PATH="$PYENV_ROOT/bin:$PATH"
|
||||
eval "$(pyenv init -)"
|
||||
source ~/bin/bruise
|
||||
export PATH="$PATH:$HOME/.local/bin"
|
||||
export PATH="$PATH:/opt/trello:/opt/pycharm/bin"
|
||||
export XDG_CURRENT_DESKTOP=GNOME
|
||||
#export PATH="$PATH:$HOME/.local/bin"
|
||||
#export PATH="$PATH:/opt/trello:/opt/pycharm/bin"
|
||||
#export XDG_CURRENT_DESKTOP=GNOME
|
||||
|
||||
alias nemo='nemo --no-desktop'
|
||||
eval `dircolors ~/.vimspectr-shell/dircolors`
|
||||
[ -n "$PS1" ] && sh ~/.vimspectr-shell/vimspectr60-dark
|
||||
#alias nemo='nemo --no-desktop'
|
||||
#eval `dircolors ~/.vimspectr-shell/dircolors`
|
||||
#[ -n "$PS1" ] && sh ~/.vimspectr-shell/vimspectr60-dark
|
||||
|
Loading…
Reference in New Issue
Block a user