Merge branch 'master' of metalzone:etc/profile
authorMark Wooding <mdw@distorted.org.uk>
Mon, 29 Mar 2010 17:22:57 +0000 (18:22 +0100)
committerMark Wooding <mdw@distorted.org.uk>
Mon, 29 Mar 2010 17:22:57 +0000 (18:22 +0100)
* 'master' of metalzone:etc/profile:
  dot/bash_profile (__mdw_addto): Quote new value properly.
  dot/xinitrc: Whoops.  Spelt the Gnome authentication agent thing wrong.
  dot/emacs: Have w3m display PDF files in Evince.
  dot/emacs: Remove Senator's unpleasant claws from isearch.
  el/dot-emacs.el: Remove further stray debugging code.
  el/dot-emacs.el: Allow `+' as a list item marker.
  dot/emacs: Remove VCS directories from `completion-ignored-extensions'
  .gitattributes: Diff Emacs Lisp files as Lisp.
  dot/bash_profile (__mdw_addto) SECURITY: Only set var if it changed.
  dot/xinitrc: Start policykit authentication agent if present.
  el/dot-emacs.el: Explicitly indent with spaces in Python-like modes.
  el/dot-emacs.el: Front-end function for turning on `whitespace-mode'.
  dot/emacs: Use `window-system-default-frame-alist'.
  dot/Xdefaults: Use server fonts by default in Emacs.
  dot/emacs: Turn on column number display.
  dot/emacs: More `dired' hacking: tweak keymap.
  dot/emacs: Tweak `dired' settings.
  dot/emacs: Force use of server-side X fonts.
  dot/emacs: Make `gnus' be the default mail reader.
  dot/emacs: Fix stupid bug in `tramp' setup.

1  2 
dot/xinitrc

diff --combined dot/xinitrc
@@@ -122,6 -122,10 +122,10 @@@ start-clients () 
    ## Mail notification.
    run bginit mail-notification
  
+   ## Policykit authentication agent.
+   agent=/usr/lib/policykit-1-gnome/polkit-gnome-authentication-agent-1
+   if [ -x $agent ]; then run bginit $agent; fi
    ## System monitor.
    case $vnc in no) run bginit gkrellm ;; esac
  
@@@ -250,7 -254,7 +254,7 @@@ start-xterms () 
  
  req () {
    declare title=$1 hist=$2; shift 2
 -  cmd=$(xgetline -t "$title" -p "Command:" -Hl "$HOME/$hist") &&
 +  cmd=$(xgetline -t "$title" -p "_Command:" -Hl "$HOME/$hist") &&
    exec "$@" "$cmd"
  }