You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

38 lines
926 B

  1. #!/bin/sh
  2. if [ -n "${DESKTOP_SESSION}" ]; then
  3. xmodmap -e 'keycode 135 = Alt_R Meta_R' # menu key as alt
  4. xmodmap -e 'keycode 101 = Alt_R Meta_R' # hiragana key as alt
  5. xmodmap -e 'remove Lock = Caps_Lock'
  6. xmodmap -e 'add Control = Caps_Lock'
  7. synclient VertEdgeScroll=0
  8. synclient HorizEdgeScroll=0
  9. synclient MaxTapTime=0
  10. synclient MaxSpeed=0.4
  11. synclient MinSpeed=0.2
  12. test -f "$HOME/.fehbg" &&
  13. type feh >/dev/null 2>&1 &&
  14. sh "$HOME/.fehbg"
  15. fi
  16. export LC_TIME=C
  17. export TERMCAP="${TERMCAP}:vb="
  18. export HOSTNAME
  19. export BROWSER=firefox
  20. # export TMP=/tmp
  21. # export TEMP=/tmp
  22. addtopath(){
  23. for p in "$@"
  24. do
  25. echo $PATH | grep -E "^$p:|:$p:|:$p$" >/dev/null 2>&1 || PATH="$p:${PATH}"
  26. done
  27. }
  28. # export PATH="${PATH}:${HOME}/bin:${HOME}/dbx/dev/bin"
  29. addtopath ${HOME}/bin
  30. test -f "${HOME}/.pythonrc" && export PYTHONSTARTUP="${HOME}/.pythonrc"
  31. export PYTHONPATH=~/.py