diff options
-rw-r--r-- | files/neofetch/neofetchLogin.conf | 61 | ||||
-rw-r--r-- | files/rcs/.Xresources | 4 | ||||
-rw-r--r-- | files/rcs/.bash_aliases | 6 | ||||
-rw-r--r-- | files/rcs/.bashrc | 19 | ||||
-rw-r--r-- | files/rcs/.inputrc | 1 | ||||
-rw-r--r-- | files/rcs/.vimrc | 2 |
6 files changed, 69 insertions, 24 deletions
diff --git a/files/neofetch/neofetchLogin.conf b/files/neofetch/neofetchLogin.conf new file mode 100644 index 0000000..047a2eb --- /dev/null +++ b/files/neofetch/neofetchLogin.conf @@ -0,0 +1,61 @@ +# See this wiki page for more info: +# https://github.com/dylanaraps/neofetch/wiki/Customizing-Info +print_info() { + info underline + info title + info underline + + info "OS" distro + info "Kernel" kernel + info "Shell" shell + info "Resolution" resolution + info "Memory" memory + info "Disk" disk + info "Battery" battery + info "Uptime" uptime +} + + + + +ascii_bold="on" +ascii_colors=(4 4) +ascii_distro="auto" +background_color= +bar_border="on" +bar_char_elapsed="-" +bar_char_total="=" +bar_color_elapsed="distro" +bar_color_total="distro" +bar_length=15 +battery_display="off" +bold="on" +colors=(6 5 4 4 5 6) +cpu_display="off" +crop_mode="normal" +crop_offset="center" +disk_display="on" +disk_show=('/' '/home') +disk_subtitle="mount" +distro_shorthand="off" +gap=3 +image_backend="ascii" +image_loop="off" +image_size="auto" +image_source="auto" +kernel_shorthand="off" +memory_display="off" +memory_percent="on" +os_arch="on" +refresh_rate="off" +separator=":" +shell_path="off" +shell_version="on" +speed_type="bios_limit" +stdout="off" +thumbnail_dir="${XDG_CACHE_HOME:-${HOME}/.cache}/thumbnails/neofetch" +underline_char="-" +underline_enabled="on" +uptime_shorthand="on" +xoffset=0 +yoffset=0 diff --git a/files/rcs/.Xresources b/files/rcs/.Xresources index 1926ca5..9ad2579 100644 --- a/files/rcs/.Xresources +++ b/files/rcs/.Xresources @@ -22,8 +22,8 @@ *color12: #a5acff *color5: #e45eff *color13: #eb87ff -*color6: #00ffff -*color14: #b3ffff +*color6: #008080 +*color14: #00ffff *color7: #b2ffe5 *color15: #cdfffc diff --git a/files/rcs/.bash_aliases b/files/rcs/.bash_aliases index df86e1a..bf3254a 100644 --- a/files/rcs/.bash_aliases +++ b/files/rcs/.bash_aliases @@ -24,6 +24,9 @@ alias cg="vim ~/.gitconfig" alias cnb="vim ~/.newsboat/config" alias cnbu="vim ~/.newsboat/urls" +# Programs +alias CryptTool="wine \"~/.wine/drive_c/Program Files (x86)/CrypTool/CrypTool.exe\"" + alias upgrade="sudo pacman -Syu" alias starwars="telnet towel.blinkenlights.nl" @@ -31,6 +34,3 @@ alias nintendos="mpv -vo caca https://www.youtube.com/watch?v=hYNcJj2QDhk 2>/dev alias adormir="mpv -vo caca ~/videos/Adormir.mp4 && clear 2>/dev/null" alias adormirloop="mpv --loop-file -vo caca ~/videos/Adormir.mp4 2>/dev/null && clear" -# Programs -alias CryptTool="~/.wine/drive_c/Program Files (x86)/CrypTool/CrypTool.exe" -alias spyder="~/anaconda3/bin/spyder" diff --git a/files/rcs/.bashrc b/files/rcs/.bashrc index 0970a69..fb68823 100644 --- a/files/rcs/.bashrc +++ b/files/rcs/.bashrc @@ -99,21 +99,4 @@ ARDUINO_DIR=/usr/share/arduino ARDMK_DIR=/usr/share/arduino AVR_TOOLS_DIR=/usr -XDG_CONFIG_HOME=/home/inigo/.config - -## # added by Anaconda3 2018.12 installer -## # >>> conda init >>> -## # !! Contents within this block are managed by 'conda init' !! -## __conda_setup="$(CONDA_REPORT_ERRORS=false '/home/taamas/anaconda3/bin/conda' shell.bash hook 2> /dev/null)" -## if [ $? -eq 0 ]; then -## \eval "$__conda_setup" -## else -## if [ -f "/home/taamas/anaconda3/etc/profile.d/conda.sh" ]; then -## . "/home/taamas/anaconda3/etc/profile.d/conda.sh" -## CONDA_CHANGEPS1=false conda activate base -## else -## \export PATH="/home/taamas/anaconda3/bin:$PATH" -## fi -## fi -## unset __conda_setup -## # <<< conda init <<< +XDG_CONFIG_HOME=~/.config diff --git a/files/rcs/.inputrc b/files/rcs/.inputrc new file mode 100644 index 0000000..ac81a39 --- /dev/null +++ b/files/rcs/.inputrc @@ -0,0 +1 @@ +set bell-style none diff --git a/files/rcs/.vimrc b/files/rcs/.vimrc index a6c3760..1db0ac8 100644 --- a/files/rcs/.vimrc +++ b/files/rcs/.vimrc @@ -138,7 +138,7 @@ nnoremap <leader>hC 05x/--><Enter>3x0 "" LaTeX -nnoremap <leader>lc :w<Enter>:! pdflatex %<Enter> +nnoremap <leader>lc :w<Enter>:! pdflatex --shell-escape %<Enter> inoremap <leader>ldocumentclass \documentclass{}<Esc>o<++><Esc>k$i inoremap <leader>lpckg \usepackage{}<Esc>o<++><Esc>k$i inoremap <leader>ldocument \begin{document}<Esc>o<Enter><Enter><Enter>\end{document}<Esc>kkI |