movie & colors alias
This commit is contained in:
parent
9af6aab3ca
commit
101af580e3
|
|
@ -42,3 +42,13 @@ alias \
|
|||
ec() {find ~/.config -type f | fzf | xargs -r $EDITOR ;}
|
||||
es() { cd ~/.local/bin; $EDITOR $(fzf) ;}
|
||||
ef() {fzf | xargs -r -I % $EDITOR % ;}
|
||||
colors() {
|
||||
for COLOR in {1..255}; do
|
||||
echo -en "\e[38;5;${COLOR}m"
|
||||
echo -n "${COLOR} "
|
||||
done
|
||||
echo
|
||||
}
|
||||
movie() {
|
||||
mpv "$(find ~/movies/ -type f -regex ".*\.\(mkv\|mp4\|mpeg\|avi\|mov\|webm\)" | fzf)"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -126,3 +126,5 @@ avert -> turn away (one's eyes or thoughts)
|
|||
espionage -> the practice of spying or of using spies, typically by governments to obtain political and military information.
|
||||
polyglot -> knowing or using serveral langauges
|
||||
intrude -> to go into a place in which you are not wanted or not expected to be
|
||||
speculate -> form a theory or conjecture about a subjet without firm evidence.
|
||||
mediocre -> of only average quality; not very good.
|
||||
|
|
|
|||
Loading…
Reference in New Issue