Collin J. Doering
224f475a46
Notable changes include: * .Xdefaults: - added comments - switched from url-select to url-picker (for urxvt) * .bashrc: added some alias' and changed PATH * .bin/vol.sh: *depreciated* * .bin/xmonadClose.sh: added experimental timed-action support * .config/dunst/dunstrc: - changed transparency to 15% - issue with getting "follow = v" to work; where v = mouse or keyboard * .config/systemd/user/emacs.service: - added a Environment property because it is required with a recent(ish?) update of systemd * .config/systemd/user/xbindkeys.service: - added Environment property - made ExecStart more specific * .conkerorrc: - added support for magnet urls - added firebug-lite support * .emacs: - disabled tabs - enabled column-number-mode * .ghci: added ghci config file * .gnus: Many changes to make gnus more usable as a email client (multiple email support) * .mpdconf: added password for admin and control access * .ncmpcpp/config: use new mpd password * .screenrc: use weechat in place of irssi * .xbindkeysrc: - use new mpd password - pulseaudio_ctl merged with pulseaudio-ctl in AUR. Now using the new version *BROKEN* * .xinitrc: running "systemd --user" is depreciated (automatically run by logind) * .xmobarrc: use DynNetwork in place of Network * .xmonad/xmonad.hs: code clean-up * .zshrc: - added new function 'disable_unit_run' which can be used to run a program temporarily disabling a systemd user unit file - added alias' - changed PATH
57 lines
1.5 KiB
Bash
57 lines
1.5 KiB
Bash
|
|
# Check for an interactive session
|
|
[ -z "$PS1" ] && return
|
|
|
|
# Alias' to make command output prettier (use color with some commands by default)
|
|
alias ls='ls --color=auto'
|
|
alias grep='grep --color=auto'
|
|
alias fgrep='fgrep --color-auto'
|
|
alias egrep='egrep --color-auto'
|
|
alias ncmpc='ncmpc -c'
|
|
alias spacman='sudo pacman'
|
|
|
|
# Alias' to make some commands a little less terse
|
|
alias skreen='screen -c /dev/null'
|
|
alias tranr='transmission-remote'
|
|
alias ctl='systemctl'
|
|
alias ctlu='systemctl --user'
|
|
alias sctl='sudo systemctl'
|
|
alias qemu='qemu-system-x86_64 -enable-kvm'
|
|
alias s='sudo'
|
|
|
|
# Shortcuts for port-knocking on rekahsoft-mini *DEPRECIATED*
|
|
alias knk='knock rekahsoft-mini 7713:tcp 1377:udp && sleep 3s && '
|
|
alias knkc='knk ssh rekahsoft-mini '
|
|
alias kgit='knk git'
|
|
|
|
# Set colors to use with grep
|
|
export GREP_COLOR="1;33"
|
|
|
|
# Use source-highlight to make code in less syntax highlighted
|
|
export LESSOPEN="| /usr/bin/src-hilite-lesspipe.sh %s"
|
|
export LESS=' -R '
|
|
|
|
# Set text/background colors for ls
|
|
export LS_COLORS="di=01;37"
|
|
|
|
# Set language
|
|
# export LANG="en_US.UTF-8"
|
|
# export LC_MESSAGES="C"
|
|
|
|
PS1='[\u@\h: \w]\$ '
|
|
|
|
# Turn off noscroll
|
|
stty stop undef
|
|
|
|
# Modify path variable to allow execution of the following:
|
|
# * mathematica / tools
|
|
# * nxclient / associated 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
|
|
|
|
# start keychain
|
|
eval `keychain --eval --timeout 10 --quiet --agents ssh id_rsa`
|
|
|
|
# Default editor
|
|
export EDITOR="emacs -nw"
|