aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjason2018-04-05 12:50:53 -0600
committerjason2018-04-05 12:50:53 -0600
commitb7a1cee9d08bf44b28b4c2e792f74cac78533d77 (patch)
tree1499bb68b1acd94c8ae0035df32efe99a6a91d0f
parent603e5167872fab12da9db819778a400d6b131d53 (diff)
downloaddotfiles-b7a1cee9d08bf44b28b4c2e792f74cac78533d77.tar.gz
dotfiles-b7a1cee9d08bf44b28b4c2e792f74cac78533d77.zip
updates
-rw-r--r--i3/.config/i3/config10
-rwxr-xr-xscripts/bin/fix_screens_at_work.sh2
-rw-r--r--ubuntu_move_in.sh26
-rw-r--r--zsh/.zshrc8
4 files changed, 36 insertions, 10 deletions
diff --git a/i3/.config/i3/config b/i3/.config/i3/config
index a1eca7c..8b3e757 100644
--- a/i3/.config/i3/config
+++ b/i3/.config/i3/config
@@ -159,15 +159,15 @@ bar {
159 status_command i3status 159 status_command i3status
160} 160}
161 161
162# exec run-once nm-applet 162exec run-once nm-applet
163exec run-once wicd-client -t 163# exec run-once wicd-client -t
164exec run-once clipit 164exec run-once clipit
165exec run-once xbindkeys 165exec run-once xbindkeys
166exec run-once synclient PalmDetect=1 166exec run-once synclient PalmDetect=1
167exec run-once synclient HorizTwoFingerScroll=1 167exec run-once synclient HorizTwoFingerScroll=1
168exec run-once fetchmail -d 60 168#exec run-once fetchmail -d 60
169exec run-once qasmixer -t 169exec run-once qasmixer -t
170exec run-once tresorit --hidden 170# exec run-once tresorit --hidden
171# exec run-once xfce4-power-manager 171# exec run-once xfce4-power-manager
172exec run-once blueman-applet 172exec run-once blueman-applet
173exec run-once feh --bg-scale "/home/jason/Tresors/SpiderOak Hive/wallpaper/wallhaven-3601.jpg" \ No newline at end of file 173exec run-once feh --bg-scale "/home/jason/Tresors/SpiderOak Hive/wallpaper/wallhaven-3601.jpg"
diff --git a/scripts/bin/fix_screens_at_work.sh b/scripts/bin/fix_screens_at_work.sh
index 5fa27a7..a4f20a6 100755
--- a/scripts/bin/fix_screens_at_work.sh
+++ b/scripts/bin/fix_screens_at_work.sh
@@ -2,7 +2,7 @@
2 2
3#xrandr --setprovideroutputsource 1 0 3#xrandr --setprovideroutputsource 1 0
4#xrandr --output DP-2 --mode 1920x1200 4#xrandr --output DP-2 --mode 1920x1200
5xrandr --output DP-4 --right-of DP-2 --auto --primary --mode 2560x1440 5xrandr --output DP-4 --right-of DP-2 --auto --primary #--mode 2560x1440
6xrandr --output DVI-I-1-1 --below DP-4 --auto 6xrandr --output DVI-I-1-1 --below DP-4 --auto
7 7
8# For some reason, occasionally this needs to be executed twice 8# For some reason, occasionally this needs to be executed twice
diff --git a/ubuntu_move_in.sh b/ubuntu_move_in.sh
index ec495f5..a21cff8 100644
--- a/ubuntu_move_in.sh
+++ b/ubuntu_move_in.sh
@@ -2,8 +2,23 @@ echo "Updaing and dist-upgrading"
2sudo apt-get update && sudo apt-get -y dist-upgrade 2sudo apt-get update && sudo apt-get -y dist-upgrade
3 3
4echo "Installing some utilities" 4echo "Installing some utilities"
5sudo apt-get install -y build-essential git stow zsh \ 5sudo apt-get install -y \
6 rxvt-unicode-256color 6 build-essential \
7 docker \
8 git \
9 mosh \
10 python-pip \
11 rxvt-unicode-256color \
12 scdaemon \
13 pcscd \
14 gpgsm \
15 yubikey-personalization-gui \
16 stow \
17 zsh \
18 w3m \
19 xsel # Terminal copy paste helper
20
21sudo pip install virtualenvwrapper
7 22
8cd $HOME 23cd $HOME
9 24
@@ -22,6 +37,8 @@ fi
22cd $HOME/dotfiles/ 37cd $HOME/dotfiles/
23echo "Linking xorg configs..." 38echo "Linking xorg configs..."
24stow xorg 39stow xorg
40# Enables clipboard with C-Shift-c/v in urxvt with xsel
41sudo ln -s $HOME/dotfiles/urxvt-clipboard /usr/lib/urxvt/perl/clipboard
25 42
26# emacs 43# emacs
27if ! [ -x /usr/local/bin/emacs ]; then 44if ! [ -x /usr/local/bin/emacs ]; then
@@ -66,3 +83,8 @@ fi
66 83
67# other utils 84# other utils
68sudo apt-get install -y clipit feh xbindkeys fetchmail qasmixer 85sudo apt-get install -y clipit feh xbindkeys fetchmail qasmixer
86
87echo "Things to manually download"
88echo ""
89echo "- Vivaldi"
90echo "- Google Chrome"
diff --git a/zsh/.zshrc b/zsh/.zshrc
index cc6921d..4dc5943 100644
--- a/zsh/.zshrc
+++ b/zsh/.zshrc
@@ -56,7 +56,8 @@ source $ZSH/oh-my-zsh.sh
56export RUST_SRC_PATH="$HOME/Code/rust-lang/src" 56export RUST_SRC_PATH="$HOME/Code/rust-lang/src"
57source $HOME/.cargo/env 57source $HOME/.cargo/env
58 58
59export PATH="$HOME/bin:$HOME/.cargo/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/usr/games" 59export PATH="$HOME/bin:$HOME/.cargo/bin:/usr/local/go/bin/:$PATH"
60export PATH="$PATH:$(go env GOPATH)/bin"
60export MANPATH="/usr/local/man:$MANPATH" 61export MANPATH="/usr/local/man:$MANPATH"
61 62
62export LANG=en_US.UTF-8 63export LANG=en_US.UTF-8
@@ -87,6 +88,7 @@ source /usr/local/bin/virtualenvwrapper.sh
87alias emacs='emacsclient' 88alias emacs='emacsclient'
88 89
89alias dc='docker-compose' 90alias dc='docker-compose'
91alias define='sdcv'
90 92
91#. ~/.cargo/env 93#. ~/.cargo/env
92eval "$(direnv hook zsh)" 94eval "$(direnv hook zsh)"
@@ -103,4 +105,6 @@ show_virtual_env() {
103 fi 105 fi
104} 106}
105 107
106PS1='$(show_virtual_env)'$PS1 108#PS1='$(show_virtual_env)'$PS1
109
110[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh