Add bash configuration files
This commit is contained in:
8
profile.d/apps
Normal file
8
profile.d/apps
Normal file
@ -0,0 +1,8 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Defined prefered applications
|
||||
export TERMINAL=urxvtc
|
||||
export PAGER=less
|
||||
export EDITOR=vim
|
||||
export BROWSER=firefox
|
||||
|
8
profile.d/history
Normal file
8
profile.d/history
Normal file
@ -0,0 +1,8 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Customize history format
|
||||
export HISTSIZE=5000
|
||||
export HISTFILESIZE=20000
|
||||
export HISTTIMEFORMAT="[%d/%m/%Y %H:%M:%S] "
|
||||
export HISTCONTROL="ignoreboth"
|
||||
export HISTIGNORE="[bf]g:exit:history*:*rm*-rf*:*rm*-f*:reboot:ls:ll:man:mutt"
|
4
profile.d/lang
Normal file
4
profile.d/lang
Normal file
@ -0,0 +1,4 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Define prefered LANG
|
||||
export LANG=fr_FR.utf8
|
4
profile.d/mail
Normal file
4
profile.d/mail
Normal file
@ -0,0 +1,4 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Mail
|
||||
export MAILPATH=~/Mails/
|
5
profile.d/path
Normal file
5
profile.d/path
Normal file
@ -0,0 +1,5 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Customize PATH
|
||||
if [ -d $HOME/bin ] ; then export PATH=$PATH:$HOME/bin ; fi
|
||||
if [ -d $HOME/scripts ] ; then export PATH=$PATH:$HOME/scripts ; fi
|
4
profile.d/tsocks
Normal file
4
profile.d/tsocks
Normal file
@ -0,0 +1,4 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Proxy
|
||||
export TSOCKS_CONF_FILE=~/.config/tsocks/tsocks.conf
|
Reference in New Issue
Block a user