This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| interval=60 | |
| while true; | |
| do | |
| fortune -n 50 -s| | |
| cowsay | | |
| xargs -0 notify-send -t 8 fortune; | |
| sleep $interval; | |
| done |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # For making a directory and then entering it. | |
| mkdr_function(){ | |
| mkdir $1 && cd $1 | |
| } | |
| alias mkcd=mkdr_function | |
| # For starting up rofi(2&>1 and >/dev/null are for supressing the std ops and err ops) | |
| # alias rofi_up="rofi -key-window shift+q 2&>1 >/dev/null &" | |
| # For obvious screw-ups |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #Shutting off the startup message | |
| startup_message off | |
| #Keeping a hardstatus | |
| hardstatus alwayslastline | |
| #Adding the screen bottom line | |
| hardstatus string '%{= kG}[ %{G}%H %{g}][%= %{= kw}%?%-Lw%?%{r}(%{W}%n*%f%t%?(%u)%?%{r})%{w}%?%+Lw%?%?%= %{g}][%{B} %d-%m %{W}%c %{g}]' | |
| #increasing the scroll back buffer |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "let g:pymode_python='python3' | |
| " Ignoring PEP8 - (Especially for Palermo. Enable it later) | |
| let g:pymode_lint_ignore="E501,W601" | |
| " Mandatory stuff that vundle needs | |
| set nocompatible | |
| filetype off | |
| " set rtp+=~/.vim/bundle/vundle/ | |
| " call vundle#rc() |
NewerOlder