Various (mostly self-documented) minor changes
Setup the following in .zshrc and bashrc: - update path putting paths with form ~/* before others to make them higher priority - setup gpg agent - disabled keychain Signed-off-by: Collin J. Doering <rekahsoft@gmail.com>
This commit is contained in:
parent
26a3cf13f3
commit
0e970add95
12
.bashrc
12
.bashrc
@ -17,6 +17,7 @@ alias ctl='systemctl'
|
|||||||
alias ctlu='systemctl --user'
|
alias ctlu='systemctl --user'
|
||||||
alias sctl='sudo systemctl'
|
alias sctl='sudo systemctl'
|
||||||
alias qemu='qemu-system-x86_64 -enable-kvm'
|
alias qemu='qemu-system-x86_64 -enable-kvm'
|
||||||
|
alias mplayer-ascii='mplayer -vo aa:driver=curses -monitorpixelaspect 0.5 -really-quiet'
|
||||||
alias s='sudo'
|
alias s='sudo'
|
||||||
|
|
||||||
# Shortcuts for port-knocking on rekahsoft-mini *DEPRECIATED*
|
# Shortcuts for port-knocking on rekahsoft-mini *DEPRECIATED*
|
||||||
@ -47,10 +48,17 @@ stty stop undef
|
|||||||
# * mathematica / tools
|
# * mathematica / tools
|
||||||
# * nxclient / associated tools
|
# * nxclient / associated tools
|
||||||
# * maven tools
|
# * maven tools
|
||||||
export PATH=${PATH}:/opt/maven/bin:/opt/NX/bin:/home/collin/.cabal/bin:/home/collin/.gem/ruby/2.0.0/bin:/home/collin/.bin
|
export PATH=export PATH=$HOME/.cabal/bin:$HOME/.gem/ruby/2.0.0/bin:$HOME/.bin:$HOME/.texlive/2013/bin/x86_64-linux:${PATH}:/opt/maven/bin:/opt/NX/bin
|
||||||
|
|
||||||
|
# Setup gpg-agent
|
||||||
|
if [ -f "${HOME}/.gpg-agent-info" ]; then
|
||||||
|
. "${HOME}/.gpg-agent-info"
|
||||||
|
export GPG_AGENT_INFO
|
||||||
|
export SSH_AUTH_SOCK
|
||||||
|
fi
|
||||||
|
|
||||||
# start keychain
|
# start keychain
|
||||||
eval `keychain --eval --timeout 10 --quiet --agents ssh id_rsa`
|
#eval `keychain --eval --timeout 10 --quiet --agents ssh id_rsa`
|
||||||
|
|
||||||
# Default editor
|
# Default editor
|
||||||
export EDITOR="emacs -nw"
|
export EDITOR="emacs -nw"
|
||||||
|
@ -103,6 +103,9 @@ editor_ask_filename_before_edit=0
|
|||||||
|
|
||||||
editor_filesize_threshold=64M
|
editor_filesize_threshold=64M
|
||||||
|
|
||||||
|
editor_drop_selection_on_copy=1
|
||||||
|
editor_stop_format_chars=-+*\\,.;:&>
|
||||||
|
|
||||||
[Layout]
|
[Layout]
|
||||||
message_visible=1
|
message_visible=1
|
||||||
keybar_visible=1
|
keybar_visible=1
|
||||||
@ -115,7 +118,7 @@ free_space=1
|
|||||||
|
|
||||||
horizontal_split=0
|
horizontal_split=0
|
||||||
vertical_equal=1
|
vertical_equal=1
|
||||||
left_panel_size=59
|
left_panel_size=71
|
||||||
horizontal_equal=1
|
horizontal_equal=1
|
||||||
top_panel_size=27
|
top_panel_size=27
|
||||||
|
|
||||||
@ -145,7 +148,7 @@ color_terminals=
|
|||||||
kilobyte_si=false
|
kilobyte_si=false
|
||||||
mix_all_files=false
|
mix_all_files=false
|
||||||
show_backups=true
|
show_backups=true
|
||||||
show_dot_files=true
|
show_dot_files=false
|
||||||
fast_reload=false
|
fast_reload=false
|
||||||
fast_reload_msg_shown=false
|
fast_reload_msg_shown=false
|
||||||
mark_moves_down=true
|
mark_moves_down=true
|
||||||
|
@ -1,8 +1,11 @@
|
|||||||
[user]
|
[user]
|
||||||
email = rekahsoft@gmail.com
|
email = rekahsoft@gmail.com
|
||||||
name = Collin J. Doering
|
name = Collin J. Doering
|
||||||
|
signingkey = E05BFEC8
|
||||||
[color]
|
[color]
|
||||||
branch = auto
|
branch = auto
|
||||||
diff = auto
|
diff = auto
|
||||||
status = auto
|
status = auto
|
||||||
ui = true
|
ui = true
|
||||||
|
[push]
|
||||||
|
default = simple
|
||||||
|
@ -15,7 +15,8 @@ mpd_music_dir = "/media/dm-sup/Music"
|
|||||||
#
|
#
|
||||||
#mpd_connection_timeout = "5"
|
#mpd_connection_timeout = "5"
|
||||||
|
|
||||||
execute_on_song_change = "notify-send -t 3000 \"$(ncmpcpp --now-playing '{%t\n%b - %a}|{%f}')\""
|
#execute_on_song_change = "notify-send -t 3000 \"$(ncmpcpp --now-playing '{%t\n%b - %a}|{%f}')\""
|
||||||
|
execute_on_song_change = "notify-send -t 3000 \"$(mpc status | sed -n 1p | sed 's/ - /\n/g')\""
|
||||||
playlist_display_mode = "columns"
|
playlist_display_mode = "columns"
|
||||||
browser_display_mode = "columns"
|
browser_display_mode = "columns"
|
||||||
search_engine_display_mode = "columns"
|
search_engine_display_mode = "columns"
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
-- Author: Collin J. Doering <rekahsoft@gmail.com>
|
-- Author: Collin J. Doering <rekahsoft@gmail.com>
|
||||||
-- Date: Jan 11, 2012
|
-- Date: Jan 11, 2012
|
||||||
|
|
||||||
Config { font = "-*-terminus-*-*-*-*-35-*-*-*-*-*-*-u"
|
Config { font = "-*-terminus-*-*-*-*-12-*-*-*-*-*-*-u"
|
||||||
, bgColor = "#000000"
|
, bgColor = "#000000"
|
||||||
, fgColor = "#00FFFF"
|
, fgColor = "#00FFFF"
|
||||||
, position = TopW L 100
|
, position = TopW L 100
|
||||||
|
12
.zshrc
12
.zshrc
@ -48,6 +48,7 @@ alias ctl='systemctl'
|
|||||||
alias ctlu='systemctl --user'
|
alias ctlu='systemctl --user'
|
||||||
alias sctl='sudo systemctl'
|
alias sctl='sudo systemctl'
|
||||||
alias qemu='disable_unit_run unclutter qemu-system-x86_64 -enable-kvm'
|
alias qemu='disable_unit_run unclutter qemu-system-x86_64 -enable-kvm'
|
||||||
|
alias mplayer-ascii='mplayer -vo aa:driver=curses -monitorpixelaspect 0.5 -really-quiet'
|
||||||
alias s='sudo'
|
alias s='sudo'
|
||||||
|
|
||||||
# Shortcuts for port-knocking on rekahsoft-mini *DEPRECIATED*
|
# Shortcuts for port-knocking on rekahsoft-mini *DEPRECIATED*
|
||||||
@ -80,10 +81,17 @@ stty stop undef
|
|||||||
# * mathematica / tools
|
# * mathematica / tools
|
||||||
# * nxclient / associated tools
|
# * nxclient / associated tools
|
||||||
# * maven tools
|
# * maven tools
|
||||||
export PATH=${PATH}:/opt/maven/bin:/opt/NX/bin:$HOME/.cabal/bin:$HOME/.gem/ruby/2.0.0/bin:$HOME/.bin
|
export PATH=$HOME/.cabal/bin:$HOME/.gem/ruby/2.0.0/bin:$HOME/.bin:$HOME/.texlive/2013/bin/x86_64-linux:${PATH}:/opt/maven/bin:/opt/NX/bin
|
||||||
|
|
||||||
|
# Setup gpg-agent
|
||||||
|
if [ -f "${HOME}/.gpg-agent-info" ]; then
|
||||||
|
. "${HOME}/.gpg-agent-info"
|
||||||
|
export GPG_AGENT_INFO
|
||||||
|
export SSH_AUTH_SOCK
|
||||||
|
fi
|
||||||
|
|
||||||
# start keychain
|
# start keychain
|
||||||
eval `keychain --eval --timeout 10 --quiet --agents ssh id_rsa`
|
#eval `keychain --eval --timeout 10 --quiet --agents ssh id_rsa`
|
||||||
|
|
||||||
# Default editor
|
# Default editor
|
||||||
export EDITOR="emacs -nw"
|
export EDITOR="emacs -nw"
|
||||||
|
Reference in New Issue
Block a user