Advertisement
Guest User

Untitled

a guest
Feb 28th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.20 KB | None | 0 0
  1. # ~/.bashrc: executed by bash(1) for non-login shells.
  2. # see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
  3. # for examples
  4.  
  5. # don't put duplicate lines or lines starting with space in the history.
  6. # See bash(1) for more options
  7. HISTCONTROL=ignoreboth
  8.  
  9. # for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
  10. HISTSIZE=10000
  11. HISTFILESIZE=200000000
  12.  
  13. # TIMESTAMP IN HISTORY OVER HERE
  14. export HISTTIMEFORMAT="%d/%m/%y %T "
  15.  
  16. # APPEND TO HISTORY IMMEDIATELY
  17. shopt -s histappend
  18. export PROMPT_COMMAND='history -a'
  19. # PROMPT_COMMAND="history -a;$PROMPT_COMMAND"
  20.  
  21. if [ "$color_prompt" = yes ]; then
  22. PS1='${debian_chroot:+($debian_chroot)}\[\033[01;33m\][\t \d] \[\033[01;34m\]\u@\[\033[01;32m\]\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\n\[\033[00m\]\$ '
  23. else
  24. PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
  25. fi
  26. # unset color_prompt force_color_prompt
  27.  
  28. alias mntfs='sudo mount -t cifs -o username=username@domain.com,password=1234,user //fs/dfs ~/fs'
  29. alias vino='/usr/bin/vino/vino-server > /dev/null 2>&1 &'
  30. alias x='xrandr --newmode "1920x1080R" 138.50 1920 1968 2000 2080 1080 1083 1088 1111 +hsync -vsync; xrandr --addmode VGA-1 "1920x1080R"; xrandr --output VGA-1 --mode 1920x1080R'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement