.bashrc added FZF
[dotfiles/.git] / .bashrc
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 export EDITOR=vim;
5 export VISUAL=nvim; #Nano is the main editor
6 # If not running interactively, don't do anything
7 case $- in
8     *i*) ;;
9       *) return;;
10 esac
11
12 # don't put duplicate lines or lines starting with space in the history.
13 # See bash(1) for more options
14 HISTCONTROL=ignoreboth
15
16 # append to the history file, don't overwrite it
17 shopt -s histappend
18
19 # for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
20 HISTSIZE=
21 HISTFILESIZE=
22 export HISTIGNORE='&:ls:ll:la:cd:exit:clear:history'
23 # check the window size after each command and, if necessary,
24 # update the values of LINES and COLUMNS.
25 shopt -s checkwinsize
26
27 # If set, the pattern "**" used in a pathname expansion context will
28 # match all files and zero or more directories and subdirectories.
29 #shopt -s globstar
30
31 # make less more friendly for non-text input files, see lesspipe(1)
32 [ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"
33
34
35 # If this is an xterm set the title to user@host:dir
36 #case "$TERM" in
37 #xterm*|rxvt*|alacritty)
38     #PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1"
39     #;;
40 #*)
41     #;;
42 #esac
43
44 # enable color support of ls and also add handy aliases
45 if [ -x /usr/bin/dircolors ]; then
46     test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
47     alias ls='ls -hN --color=auto --group-directories-first'
48     #alias dir='dir --color=auto'
49     #alias vdir='vdir --color=auto'
50
51     alias grep='grep --color=auto'
52     alias fgrep='fgrep --color=auto'
53     alias egrep='egrep --color=auto'
54 fi
55
56 # colored GCC warnings and errors
57 #export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
58
59 # some more ls aliases
60 alias ll='ls -alF'
61 alias la='ls -A'
62 alias l='ls -CF'
63
64 # Add an "alert" alias for long running commands.  Use like so:
65 #   sleep 10; alert
66 alias alert='notify-send --urgency=low -i "$([ $? = 0 ] && echo terminal || echo error)" "$(history|tail -n1|sed -e '\''s/^\s*[0-9]\+\s*//;s/[;&|]\s*alert$//'\'')"'
67
68 # Alias definitions.
69 # You may want to put all your additions into a separate file like
70 # ~/.bash_aliases, instead of adding them here directly.
71 # See /usr/share/doc/bash-doc/examples in the bash-doc package.
72
73 if [ -f ~/.bash_aliases ]; then
74     . ~/.bash_aliases
75 fi
76
77 # enable programmable completion features (you don't need to enable
78 # this, if it's already enabled in /etc/bash.bashrc and /etc/profile
79 # sources /etc/bash.bashrc).
80 if ! shopt -oq posix; then
81   if [ -f /usr/share/bash-completion/bash_completion ]; then
82     . /usr/share/bash-completion/bash_completion
83   elif [ -f /etc/bash_completion ]; then
84     . /etc/bash_completion
85   fi
86 fi
87 # vi mode in the shell
88 set -o vi
89 # autocomplete for sudo man and wich
90 complete -cf sudo man wich;
91 # transform md anotations into PDF
92 mdpdf () { pandoc "$1".md -t beamer -o "$1".pdf ;}
93 #byebye for shutdown
94 alias byebye='shutdown now'
95 # Get all metadata
96 metadata () { echo "Salida del comando stat" ; stat "$1" ; echo "Salida del comando ls -lisan" ; ls -lisan "$1" ; echo "salida del comando exiftool" ; exiftool "$1" ;}
97 # use highlight for colored cat
98 alias ccat='highlight --out-format=ansi'
99 # activates the autocd mode
100 shopt -s autocd
101 # wifi available
102 alias wifi='nmcli d wifi';
103 edit () { du -a -L "$1" | awk '{print $2}' | fzf | xargs -r "$VISUAL" ;}
104 # personalized ps1 #################################################################################
105 # .bashrc (or .bash_profile)
106
107 # declares an array with the emojis we want to support
108 EMOJIS=(👻 💀 👽 👾 🎃 😎 🧠 🦘 🦍 🎻)
109
110 # selects a random element from the EMOJIS set
111 SELECTED_EMOJI=${EMOJIS[$RANDOM % ${#EMOJIS[@]}]};
112 # declare the terminal prompt format
113 #export PS1='${SELECTED_EMOJI}  [\u@\h \W]$ '
114 #export PS1="\e[1;90m[\$?]\e[m\e[1;92m\[$(tput bold)\]\u@\h\e[m\[$(tput sgr0)\]:\e[0;36m\w\e[m\n\\$";
115 export PS1="\e[1;90m[\$?]\e[m\e[1;92m\[$(tput bold)\]\u@\h\e[m\[$(tput sgr0)\]:\e[0;36m\w\e[m\n${SELECTED_EMOJI}";
116
117
118 ####################################################################################################
119
120 cat ~/.cache/wal/sequences & #This imports the theme from the last pywal
121
122
123 #export PS1="\[\033[38;5;247m\][\$?]\[$(tput sgr0)\]\[$(tput bold)\]\[\033[38;5;40m\]\u@\h\[$(tput sgr0)\]:\[$(tput sgr0)\]\[\033[38;5;45m\]\w\[$(tput sgr0)\]\n\\$\[$(tput sgr0)\]"
124
125 alias autowal='wal --iterative -i /usr/share/backgrounds/ > /dev/null'
126 #figlet de mi nombre
127 whoami | figlet Josuer08 | lolcat -F 0.25;
128 #whoami | figlet Josuer08 | lolcat;
129
130 function cdls() {
131     DIR="$*";
132         # if no DIR given, go home
133         if [ $# -lt 1 ]; then
134                 DIR=$HOME;
135     fi;
136     builtin cd "${DIR}" && \
137     # use your preferred ls command
138         ls -F --color=auto
139 }
140
141
142 #vicat is a color and line number cat
143
144 function vicat() {
145   ccat $@ | nl;
146
147 }
148
149
150
151 #colorman
152 if $_isxrunning; then
153   export PAGER=less
154   export LESS_TERMCAP_mb=$'\E[01;31m'       # begin blinking
155   export LESS_TERMCAP_md=$'\E[01;38;5;74m'  # begin bold
156   export LESS_TERMCAP_me=$'\E[0m'           # end mode
157   export LESS_TERMCAP_se=$'\E[0m'           # end standout-mode
158   export LESS_TERMCAP_so=$'\E[38;5;246m'    # begin standout-mode - info box
159   export LESS_TERMCAP_ue=$'\E[0m'           # end underline
160   export LESS_TERMCAP_us=$'\E[04;38;5;146m' # begin underline
161 fi
162 #top10 commands
163 top10() { history | awk '{a[$2]++ } END{for(i in a){print a[i] " " i}}' | sort -rn | head; }
164 # goes up by the number of directories
165 up() {
166   local d=""
167   limit=$1
168   for ((i=1 ; i <= limit ; i++)); do
169     d=$d/..
170   done
171   d=$(echo $d | sed 's/^\///')
172   if [[ -z "$d" ]]; then
173     d=..
174   fi
175   cd $d
176 }
177 # ARCHIVE EXTRACTOR {{{
178 extract() {
179   clrstart="\033[1;34m"  #color codes
180   clrend="\033[0m"
181
182   if [[ "$#" -lt 1 ]]; then
183     echo -e "${clrstart}Pass a filename. Optionally a destination folder. You can also append a v for verbose output.${clrend}"
184     exit 1 #not enough args
185   fi
186
187   if [[ ! -e "$1" ]]; then
188     echo -e "${clrstart}File does not exist!${clrend}"
189     exit 2 #file not found
190   fi
191
192   if [[ -z "$2" ]]; then
193     DESTDIR="." #set destdir to current dir
194   elif [[ ! -d "$2" ]]; then
195     echo -e -n "${clrstart}Destination folder doesn't exist or isnt a directory. Create? (y/n): ${clrend}"
196     read response
197     #echo -e "\n"
198     if [[ $response == y || $response == Y ]]; then
199       mkdir -p "$2"
200       if [ $? -eq 0 ]; then
201         DESTDIR="$2"
202       else
203         exit 6 #Write perms error
204       fi
205     else
206       echo -e "${clrstart}Closing.${clrend}"; exit 3 # n/wrong response
207     fi
208   else
209     DESTDIR="$2"
210   fi
211
212   if [[ ! -z "$3" ]]; then
213     if [[ "$3" != "v" ]]; then
214       echo -e "${clrstart}Wrong argument $3 !${clrend}"
215       exit 4 #wrong arg 3
216     fi
217   fi
218
219   filename=`basename "$1"`
220
221   #echo "${filename##*.}" debug
222
223   case "${filename##*.}" in
224     tar)
225       echo -e "${clrstart}Extracting $1 to $DESTDIR: (uncompressed tar)${clrend}"
226       tar x${3}f "$1" -C "$DESTDIR"
227       ;;
228     gz)
229       echo -e "${clrstart}Extracting $1 to $DESTDIR: (gip compressed tar)${clrend}"
230       tar x${3}fz "$1" -C "$DESTDIR"
231       ;;
232     tgz)
233       echo -e "${clrstart}Extracting $1 to $DESTDIR: (gip compressed tar)${clrend}"
234       tar x${3}fz "$1" -C "$DESTDIR"
235       ;;
236     xz)
237       echo -e "${clrstart}Extracting  $1 to $DESTDIR: (gip compressed tar)${clrend}"
238       tar x${3}f -J "$1" -C "$DESTDIR"
239       ;;
240     bz2)
241       echo -e "${clrstart}Extracting $1 to $DESTDIR: (bzip compressed tar)${clrend}"
242       tar x${3}fj "$1" -C "$DESTDIR"
243       ;;
244     zip)
245       echo -e "${clrstart}Extracting $1 to $DESTDIR: (zipp compressed file)${clrend}"
246       unzip "$1" -d "$DESTDIR"
247       ;;
248     rar)
249       echo -e "${clrstart}Extracting $1 to $DESTDIR: (rar compressed file)${clrend}"
250       unrar x "$1" "$DESTDIR"
251       ;;
252     7z)
253       echo -e  "${clrstart}Extracting $1 to $DESTDIR: (7zip compressed file)${clrend}"
254       7za e "$1" -o"$DESTDIR"
255       ;;
256     *)
257       echo -e "${clrstart}Unknown archieve format!"
258       exit 5
259       ;;
260   esac
261 }
262 #}}}
263
264
265
266 # REMIND ME, ITS IMPORTANT! {{{
267 # usage: remindme <time> <text>
268 # e.g.: remindme 10m "omg, the pizza"
269 remindme() {
270   if [[ "$#" -lt 2 ]]; then
271     echo -e "Usage: remindme [time] '[message]'"
272     echo -e "Example: remindme 50s 'check mail'"
273     echo -e "Example: remindme 10m 'go to class'"
274     #exit 0 #not enough args
275   fi
276   if [[ "$#" -gt 2 ]]; then
277     echo -e "Usage: remindme [time] '[message]'"
278     echo -e "Example: remindme 50s 'check mail'"
279     echo -e "Example: remindme 10m 'go to class'"
280     #exit 0 #more than enough args
281   fi
282   if  [[ "$#" == 2 ]]; then
283     sleep $1 && notify-send -t 15000 "$2" & echo 'Reminder set'
284   fi
285   }
286
287 #}}}
288 export PATH="$HOME/.local/bin:$PATH";
289 export PATH="$HOME/.gem/ruby/2.7.0/bin:$PATH";
290
291
292
293
294 #For arch
295 source /usr/share/bash-completion/bash_completion; #this is just for better completion
296 bind 'set show-all-if-ambiguous on';
297 bind 'TAB:menu-complete';
298 source /usr/share/fzf/completion.bash
299 source /usr/share/fzf/key-bindings.bash
300 pacget () { pacman -Slq | fzf --multi --preview 'pacman -Si {1}' | xargs -ro sudo pacman -S ;}
301 pacdel () { pacman -Qq | fzf --multi --preview 'pacman -Qi {1}' | xargs -ro sudo pacman -Rns ;}
302 #############OK NEXT TIME YOU SEE THIS REMEMBER TO ORGANIZE IN MULTIPLE FILES AND CLEAN
303
304 ## HERE I'LL EXPORT SOME STUFF TO CLEAN MY HOME DIR
305 export GEM_HOME="$XDG_DATA_HOME"/gem;
306 export GEM_SPEC_CACHE="$XDG_CACHE_HOME"/gem;
307 export KDEHOME="$XDG_CONFIG_HOME"/kde;
308 export MPLAYER_HOME="$XDG_CONFIG_HOME"/mplayer;