├── .gitignore ├── LICENSE ├── README.md ├── Xresources ├── asoundrc ├── config ├── Code │ └── User │ │ └── settings.json ├── bspwm │ └── bspwmrc ├── fontconfig │ └── fonts.conf ├── gtk-3.0 │ └── settings.ini ├── lemonbuddy │ ├── config │ └── lang.sh ├── ranger │ └── rc.conf └── sxhkd │ └── sxhkdrc ├── gitconfig ├── gtkrc-2.0 ├── oh-my-zsh └── themes │ └── my_robbyrussell.zsh-theme ├── pac_install.sh ├── screenshots ├── clean.png ├── dev.png ├── fun.png ├── raspbian.png ├── web.png └── work.png ├── scripts ├── chrome ├── colorscheme.sh ├── pacman.sh └── space_invaders.sh ├── update.sh ├── vimrc ├── wallpaper.png ├── xinitrc ├── zprofile └── zshrc /.gitignore: -------------------------------------------------------------------------------- 1 | # vim temp files 2 | *.swp 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jieverson/dotfiles/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jieverson/dotfiles/HEAD/README.md -------------------------------------------------------------------------------- /Xresources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jieverson/dotfiles/HEAD/Xresources -------------------------------------------------------------------------------- /asoundrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jieverson/dotfiles/HEAD/asoundrc -------------------------------------------------------------------------------- /config/Code/User/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jieverson/dotfiles/HEAD/config/Code/User/settings.json -------------------------------------------------------------------------------- /config/bspwm/bspwmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jieverson/dotfiles/HEAD/config/bspwm/bspwmrc -------------------------------------------------------------------------------- /config/fontconfig/fonts.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jieverson/dotfiles/HEAD/config/fontconfig/fonts.conf -------------------------------------------------------------------------------- /config/gtk-3.0/settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jieverson/dotfiles/HEAD/config/gtk-3.0/settings.ini -------------------------------------------------------------------------------- /config/lemonbuddy/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jieverson/dotfiles/HEAD/config/lemonbuddy/config -------------------------------------------------------------------------------- /config/lemonbuddy/lang.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jieverson/dotfiles/HEAD/config/lemonbuddy/lang.sh -------------------------------------------------------------------------------- /config/ranger/rc.conf: -------------------------------------------------------------------------------- 1 | set preview_images true 2 | -------------------------------------------------------------------------------- /config/sxhkd/sxhkdrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jieverson/dotfiles/HEAD/config/sxhkd/sxhkdrc -------------------------------------------------------------------------------- /gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jieverson/dotfiles/HEAD/gitconfig -------------------------------------------------------------------------------- /gtkrc-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jieverson/dotfiles/HEAD/gtkrc-2.0 -------------------------------------------------------------------------------- /oh-my-zsh/themes/my_robbyrussell.zsh-theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jieverson/dotfiles/HEAD/oh-my-zsh/themes/my_robbyrussell.zsh-theme -------------------------------------------------------------------------------- /pac_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jieverson/dotfiles/HEAD/pac_install.sh -------------------------------------------------------------------------------- /screenshots/clean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jieverson/dotfiles/HEAD/screenshots/clean.png -------------------------------------------------------------------------------- /screenshots/dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jieverson/dotfiles/HEAD/screenshots/dev.png -------------------------------------------------------------------------------- /screenshots/fun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jieverson/dotfiles/HEAD/screenshots/fun.png -------------------------------------------------------------------------------- /screenshots/raspbian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jieverson/dotfiles/HEAD/screenshots/raspbian.png -------------------------------------------------------------------------------- /screenshots/web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jieverson/dotfiles/HEAD/screenshots/web.png -------------------------------------------------------------------------------- /screenshots/work.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jieverson/dotfiles/HEAD/screenshots/work.png -------------------------------------------------------------------------------- /scripts/chrome: -------------------------------------------------------------------------------- 1 | google-chrome-stable $1 & -------------------------------------------------------------------------------- /scripts/colorscheme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jieverson/dotfiles/HEAD/scripts/colorscheme.sh -------------------------------------------------------------------------------- /scripts/pacman.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jieverson/dotfiles/HEAD/scripts/pacman.sh -------------------------------------------------------------------------------- /scripts/space_invaders.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jieverson/dotfiles/HEAD/scripts/space_invaders.sh -------------------------------------------------------------------------------- /update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jieverson/dotfiles/HEAD/update.sh -------------------------------------------------------------------------------- /vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jieverson/dotfiles/HEAD/vimrc -------------------------------------------------------------------------------- /wallpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jieverson/dotfiles/HEAD/wallpaper.png -------------------------------------------------------------------------------- /xinitrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jieverson/dotfiles/HEAD/xinitrc -------------------------------------------------------------------------------- /zprofile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jieverson/dotfiles/HEAD/zprofile -------------------------------------------------------------------------------- /zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jieverson/dotfiles/HEAD/zshrc --------------------------------------------------------------------------------