From 7fa915cd3c79450fe562ae19616648f1fa245925 Mon Sep 17 00:00:00 2001 From: Mikaela Suomalainen Date: Sun, 8 Jun 2014 12:05:49 +0300 Subject: [PATCH] update xsessionrc: * fix nesting. * remove OS X automatic commands that are functions in bashrc & zshrc. --- xsessionrc | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/xsessionrc b/xsessionrc index 03fe86c1..e734c9ff 100644 --- a/xsessionrc +++ b/xsessionrc @@ -1,19 +1,8 @@ PATH=$PYENV_ROOT/shims:$PYENV_ROOT/bin:$HOME/.local/bin:$HOME/.local/sbin:$HOME/.local/games:$HOME/bin:$HOME/sbin:$HOME/games:$HOME/tmcbeans/bin:/opt/local/bin:/opt/local/sbin:/opt/local/games:/usr/local/bin:/usr/local/sbin:/usr/local/games:/bin:/sbin:/games:/usr/bin:/usr/sbin:/usr/games:$PATH # Sets environment variable CPUARCH to output of "uname -p" & UNAME to "uname" -UNAME=`uname` -CPUARCH=`uname -p` - -# If we are on Mac, show hidden files in Finder and enable AirDrop over Ethernet and on unsupported (by Apple) Macs -if [ $UNAME = "Darwin" ]; then - defaults write com.apple.finder AppleShowAllFiles TRUE && defaults write com.apple.NetworkBrowser BrowseAllInterfaces 1 -fi - -# If we are on Mac, set update check interval to 1 day -if [[ $UNAME = "Darwin" && $USER = "root" ]]; then - defaults write /Library/Preferences/com.apple.SoftwareUpdate ScheduleFrequency 1 -fi -# The above requires at least Mountain Lion. +UNAME=$(uname) +CPUARCH=$(uname -p) # Use gpg-agent eval $(gpg-agent --daemon)