From 7b335d9442411d226993af47e05084c6742ca0ad Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Sat, 28 May 2011 16:21:33 -0400 Subject: Make things more robust, I'm no longer on just Ubuntu. --- .profile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to '.profile') diff --git a/.profile b/.profile index 19f7225..a086b00 100644 --- a/.profile +++ b/.profile @@ -6,11 +6,11 @@ # the default umask is set in /etc/profile; for setting the umask # for ssh logins, install and configure the libpam-umask package. -#umask 022 +umask 022 # set PATH so it includes user's private bin if it exists -if [ -d "$HOME/bin" ]; then - export PATH="$HOME/bin:$PATH" +if [ -d "$HOME/.prefix/bin" ]; then + export PATH="$HOME/.prefix/bin:$PATH" fi # if running bash -- cgit v1.2.3-2-g168b From 41be5454a224acda28025ac2a67d9ca27c80b5e9 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Sat, 2 Jul 2011 14:57:54 -0400 Subject: Save/Load the alsa state from .alsa.save * .profile: load .alsa.save on login * .bash_logout: save the stat on logout * Makefile: save the state * .git.info.exclude: ignore .alsa.save --- .profile | 2 ++ 1 file changed, 2 insertions(+) (limited to '.profile') diff --git a/.profile b/.profile index a086b00..ec14112 100644 --- a/.profile +++ b/.profile @@ -29,3 +29,5 @@ if [ -f "$HOME/.selected_editor" ]; then export EDITOR="${EDITOR:-$SELECTED_EDITOR}" export VISUAL="${VISUAL:-$SELECTED_EDITOR}" fi + +alsactl --file $HOME/.alsa.save restore -- cgit v1.2.3-2-g168b From d383205ac60fdcf39bf2b0f813d63f91cf6e9dd5 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Sat, 2 Jul 2011 15:04:50 -0400 Subject: A bunch of different, small things * .bash_aliases: fix hardcoded location of dircolors * .bashrc: move daemon-starting to... * .profile: * .wl: set up SMTP, increase folder-window-width * .crontab: run make every 5 min. * .emacs: o load php-mode-improved, mmm-mode, dtrt-indent, folding o set default theme to color-theme-ttyp-dark (override for X11) o (setq default indent-tabs-mode t) o set up flymake for PHP * .git.info.exclude: ignore .bogofilter/* * .maildirproc/default.rc: tweak filters --- .profile | 3 +++ 1 file changed, 3 insertions(+) (limited to '.profile') diff --git a/.profile b/.profile index ec14112..98289d6 100644 --- a/.profile +++ b/.profile @@ -31,3 +31,6 @@ if [ -f "$HOME/.selected_editor" ]; then fi alsactl --file $HOME/.alsa.save restore +daemon emacs --daemon +daemon sysfiles +daemon maildirproc -- cgit v1.2.3-2-g168b