├── .gitignore ├── LICENSE.txt ├── PKGBUILD ├── README.md ├── X11 ├── .xinitrc └── .xprofile ├── Xresources ├── .Xresources └── Xresources.d │ └── urxvt ├── bash ├── .bash_profile ├── .bash_prompt └── .bashrc ├── bspwm └── .config │ └── bspwm │ └── bspwmrc ├── compton └── .config │ └── .compton.conf ├── dunst └── .config │ └── dunst │ └── dunstrc ├── fontconfig └── .config │ └── fontconfig │ ├── fonts.conf │ └── fonts.conf.bak ├── git ├── .gitconfig └── .gitignore_global ├── mpd └── .mpd │ └── mpd.conf ├── ncmpcpp └── .ncmpcpp │ ├── bindings │ └── config ├── polybar └── .config │ └── polybar │ ├── config │ ├── pavolume.sh │ └── popus │ └── calendar │ ├── bg.png │ └── pop_cal ├── rofi └── .config │ └── rofi │ └── config ├── screenlayout └── .screenlayout │ ├── laptop-screen.sh │ └── vga.sh ├── screenshots ├── 2018-01-05-1515171432_screenshot_1360x768.png ├── 2018-01-05-1515171601_screenshot_1360x768.png ├── 2018-01-05-1515171832_screenshot_1360x768.png ├── 2018-01-05-1515172280_screenshot_1360x768.png ├── img_1.png ├── img_10.png ├── img_2.png ├── img_3.png ├── img_4.png ├── img_5.png ├── img_6.png ├── img_7.png ├── img_8.png └── img_9.png ├── scripts └── .scripts │ ├── blurme.sh │ ├── color.sh │ ├── colorblocks │ ├── colorpanes │ ├── colorscheme │ ├── colorscheme2 │ ├── colortest.sh │ ├── dna │ ├── gitpush │ ├── hex │ ├── hex-block │ ├── hide_polybar.sh │ ├── i3exit │ ├── i3lock.sh │ ├── install.sh │ ├── launcher.sh │ ├── lock.png │ ├── mpc_toggle │ ├── neofetch.sh │ ├── pacman.sh │ ├── polybar_launch │ ├── pukeskull │ ├── rupees.sh │ ├── scr │ ├── screen.sh │ ├── select_display.sh │ ├── theheck.sh │ ├── toggle-screen.sh │ ├── xinput-scroll.sh │ ├── ytmp3 │ └── zsh_history_fix.sh ├── shell ├── .aliases └── .profile ├── sxhkd └── .config │ └── sxhkd │ └── sxhkdrc ├── vim ├── .config │ └── nvim │ │ └── init.vim └── .vim │ └── sh_header.temp ├── zathura └── .config │ └── zathura │ └── zathurarc └── zsh ├── .zshrc └── history.zsh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/PKGBUILD -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/README.md -------------------------------------------------------------------------------- /X11/.xinitrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/X11/.xinitrc -------------------------------------------------------------------------------- /X11/.xprofile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/X11/.xprofile -------------------------------------------------------------------------------- /Xresources/.Xresources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/Xresources/.Xresources -------------------------------------------------------------------------------- /Xresources/Xresources.d/urxvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/Xresources/Xresources.d/urxvt -------------------------------------------------------------------------------- /bash/.bash_profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/bash/.bash_profile -------------------------------------------------------------------------------- /bash/.bash_prompt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/bash/.bash_prompt -------------------------------------------------------------------------------- /bash/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/bash/.bashrc -------------------------------------------------------------------------------- /bspwm/.config/bspwm/bspwmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/bspwm/.config/bspwm/bspwmrc -------------------------------------------------------------------------------- /compton/.config/.compton.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/compton/.config/.compton.conf -------------------------------------------------------------------------------- /dunst/.config/dunst/dunstrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/dunst/.config/dunst/dunstrc -------------------------------------------------------------------------------- /fontconfig/.config/fontconfig/fonts.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/fontconfig/.config/fontconfig/fonts.conf -------------------------------------------------------------------------------- /fontconfig/.config/fontconfig/fonts.conf.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/fontconfig/.config/fontconfig/fonts.conf.bak -------------------------------------------------------------------------------- /git/.gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/git/.gitconfig -------------------------------------------------------------------------------- /git/.gitignore_global: -------------------------------------------------------------------------------- 1 | *.swp 2 | *.swo 3 | __pycache__/ 4 | -------------------------------------------------------------------------------- /mpd/.mpd/mpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/mpd/.mpd/mpd.conf -------------------------------------------------------------------------------- /ncmpcpp/.ncmpcpp/bindings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/ncmpcpp/.ncmpcpp/bindings -------------------------------------------------------------------------------- /ncmpcpp/.ncmpcpp/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/ncmpcpp/.ncmpcpp/config -------------------------------------------------------------------------------- /polybar/.config/polybar/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/polybar/.config/polybar/config -------------------------------------------------------------------------------- /polybar/.config/polybar/pavolume.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/polybar/.config/polybar/pavolume.sh -------------------------------------------------------------------------------- /polybar/.config/polybar/popus/calendar/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/polybar/.config/polybar/popus/calendar/bg.png -------------------------------------------------------------------------------- /polybar/.config/polybar/popus/calendar/pop_cal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/polybar/.config/polybar/popus/calendar/pop_cal -------------------------------------------------------------------------------- /rofi/.config/rofi/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/rofi/.config/rofi/config -------------------------------------------------------------------------------- /screenlayout/.screenlayout/laptop-screen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/screenlayout/.screenlayout/laptop-screen.sh -------------------------------------------------------------------------------- /screenlayout/.screenlayout/vga.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/screenlayout/.screenlayout/vga.sh -------------------------------------------------------------------------------- /screenshots/2018-01-05-1515171432_screenshot_1360x768.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/screenshots/2018-01-05-1515171432_screenshot_1360x768.png -------------------------------------------------------------------------------- /screenshots/2018-01-05-1515171601_screenshot_1360x768.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/screenshots/2018-01-05-1515171601_screenshot_1360x768.png -------------------------------------------------------------------------------- /screenshots/2018-01-05-1515171832_screenshot_1360x768.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/screenshots/2018-01-05-1515171832_screenshot_1360x768.png -------------------------------------------------------------------------------- /screenshots/2018-01-05-1515172280_screenshot_1360x768.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/screenshots/2018-01-05-1515172280_screenshot_1360x768.png -------------------------------------------------------------------------------- /screenshots/img_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/screenshots/img_1.png -------------------------------------------------------------------------------- /screenshots/img_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/screenshots/img_10.png -------------------------------------------------------------------------------- /screenshots/img_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/screenshots/img_2.png -------------------------------------------------------------------------------- /screenshots/img_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/screenshots/img_3.png -------------------------------------------------------------------------------- /screenshots/img_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/screenshots/img_4.png -------------------------------------------------------------------------------- /screenshots/img_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/screenshots/img_5.png -------------------------------------------------------------------------------- /screenshots/img_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/screenshots/img_6.png -------------------------------------------------------------------------------- /screenshots/img_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/screenshots/img_7.png -------------------------------------------------------------------------------- /screenshots/img_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/screenshots/img_8.png -------------------------------------------------------------------------------- /screenshots/img_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/screenshots/img_9.png -------------------------------------------------------------------------------- /scripts/.scripts/blurme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/scripts/.scripts/blurme.sh -------------------------------------------------------------------------------- /scripts/.scripts/color.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/scripts/.scripts/color.sh -------------------------------------------------------------------------------- /scripts/.scripts/colorblocks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/scripts/.scripts/colorblocks -------------------------------------------------------------------------------- /scripts/.scripts/colorpanes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/scripts/.scripts/colorpanes -------------------------------------------------------------------------------- /scripts/.scripts/colorscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/scripts/.scripts/colorscheme -------------------------------------------------------------------------------- /scripts/.scripts/colorscheme2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/scripts/.scripts/colorscheme2 -------------------------------------------------------------------------------- /scripts/.scripts/colortest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/scripts/.scripts/colortest.sh -------------------------------------------------------------------------------- /scripts/.scripts/dna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/scripts/.scripts/dna -------------------------------------------------------------------------------- /scripts/.scripts/gitpush: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/scripts/.scripts/gitpush -------------------------------------------------------------------------------- /scripts/.scripts/hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/scripts/.scripts/hex -------------------------------------------------------------------------------- /scripts/.scripts/hex-block: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/scripts/.scripts/hex-block -------------------------------------------------------------------------------- /scripts/.scripts/hide_polybar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/scripts/.scripts/hide_polybar.sh -------------------------------------------------------------------------------- /scripts/.scripts/i3exit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/scripts/.scripts/i3exit -------------------------------------------------------------------------------- /scripts/.scripts/i3lock.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/scripts/.scripts/i3lock.sh -------------------------------------------------------------------------------- /scripts/.scripts/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/scripts/.scripts/install.sh -------------------------------------------------------------------------------- /scripts/.scripts/launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/scripts/.scripts/launcher.sh -------------------------------------------------------------------------------- /scripts/.scripts/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/scripts/.scripts/lock.png -------------------------------------------------------------------------------- /scripts/.scripts/mpc_toggle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/scripts/.scripts/mpc_toggle -------------------------------------------------------------------------------- /scripts/.scripts/neofetch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/scripts/.scripts/neofetch.sh -------------------------------------------------------------------------------- /scripts/.scripts/pacman.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/scripts/.scripts/pacman.sh -------------------------------------------------------------------------------- /scripts/.scripts/polybar_launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/scripts/.scripts/polybar_launch -------------------------------------------------------------------------------- /scripts/.scripts/pukeskull: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/scripts/.scripts/pukeskull -------------------------------------------------------------------------------- /scripts/.scripts/rupees.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/scripts/.scripts/rupees.sh -------------------------------------------------------------------------------- /scripts/.scripts/scr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/scripts/.scripts/scr -------------------------------------------------------------------------------- /scripts/.scripts/screen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/scripts/.scripts/screen.sh -------------------------------------------------------------------------------- /scripts/.scripts/select_display.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/scripts/.scripts/select_display.sh -------------------------------------------------------------------------------- /scripts/.scripts/theheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/scripts/.scripts/theheck.sh -------------------------------------------------------------------------------- /scripts/.scripts/toggle-screen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/scripts/.scripts/toggle-screen.sh -------------------------------------------------------------------------------- /scripts/.scripts/xinput-scroll.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/scripts/.scripts/xinput-scroll.sh -------------------------------------------------------------------------------- /scripts/.scripts/ytmp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/scripts/.scripts/ytmp3 -------------------------------------------------------------------------------- /scripts/.scripts/zsh_history_fix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/scripts/.scripts/zsh_history_fix.sh -------------------------------------------------------------------------------- /shell/.aliases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/shell/.aliases -------------------------------------------------------------------------------- /shell/.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/shell/.profile -------------------------------------------------------------------------------- /sxhkd/.config/sxhkd/sxhkdrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/sxhkd/.config/sxhkd/sxhkdrc -------------------------------------------------------------------------------- /vim/.config/nvim/init.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/vim/.config/nvim/init.vim -------------------------------------------------------------------------------- /vim/.vim/sh_header.temp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/vim/.vim/sh_header.temp -------------------------------------------------------------------------------- /zathura/.config/zathura/zathurarc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/zathura/.config/zathura/zathurarc -------------------------------------------------------------------------------- /zsh/.zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/zsh/.zshrc -------------------------------------------------------------------------------- /zsh/history.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidarrieta/dotfiles/HEAD/zsh/history.zsh --------------------------------------------------------------------------------