├── .aliases ├── .config ├── bspwm │ ├── annotate_wallpaper │ ├── bspwmrc │ ├── eavesdrop │ ├── external_rules │ ├── focus │ ├── launch │ ├── list_apps │ ├── reload │ ├── restore_state │ └── save_state ├── cava │ └── config ├── compton │ ├── compton.conf │ ├── launch │ ├── reload │ └── test ├── cvimrc ├── dunst │ ├── colortest │ ├── dunstrc │ ├── launch │ └── reload ├── fasd │ └── config ├── gimp │ ├── README.md │ ├── colorrc │ ├── contextrc │ ├── controllerrc │ ├── dockrc │ ├── gimprc │ ├── gtkrc │ ├── menurc │ ├── parasiterc │ ├── photoshop_theme.7z │ ├── pluginrc │ ├── profilerc │ ├── sessionrc │ ├── templaterc │ ├── themerc │ ├── toolrc │ └── unitrc ├── gtk-2.0 │ ├── .gtkrc-2.0 │ ├── gtkfilechooser.ini │ └── gtkrc ├── gtk-3.0 │ ├── bookmarks │ ├── gtk.css │ └── settings.ini ├── htop │ └── htoprc ├── i3 │ ├── .gitignore │ ├── config │ ├── float │ ├── focus │ ├── launch │ ├── reload │ ├── resize │ ├── restart │ ├── startup.sh │ ├── workspace_wallpaper │ └── workspaces ├── infokey ├── lemonbuddy ├── lesskey ├── lesskey.src ├── mpd │ └── mpd.conf ├── ncmpcpp │ ├── .gitignore │ ├── bindings │ ├── broadcast │ └── config ├── nvim │ └── init.vim ├── pcmanfm │ └── default │ │ └── pcmanfm.conf ├── polybar │ ├── .gitignore │ ├── README.md │ ├── autohide │ ├── config │ ├── launch │ ├── reload │ └── testing │ │ ├── README.md │ │ ├── actions │ │ ├── alpha │ │ ├── backlight │ │ ├── battery │ │ ├── bspwm │ │ ├── cairo │ │ ├── config │ │ ├── cpu │ │ ├── date │ │ ├── envvar │ │ ├── faketrans │ │ ├── float │ │ ├── fs │ │ ├── github │ │ ├── i3 │ │ ├── i3.dualmon │ │ ├── inherit │ │ ├── ipc │ │ ├── memory │ │ ├── menu │ │ ├── mpd │ │ ├── net │ │ ├── network │ │ ├── pipe │ │ ├── powerline │ │ ├── ref │ │ ├── script │ │ ├── sleep │ │ ├── systray │ │ ├── temperature │ │ ├── text │ │ ├── unicode │ │ ├── vert │ │ ├── volume │ │ ├── xbacklight │ │ ├── xkeyboard │ │ ├── xwindow │ │ └── xworkspaces ├── psd │ └── psd.conf ├── qutebrowser │ ├── bookmarks │ │ └── urls │ ├── keys.conf │ ├── quickmarks │ ├── qutebrowser.conf │ └── ui.css ├── rtorrent │ └── rtorrent.rc ├── sxhkd │ ├── launch │ ├── reload │ ├── sxhkdrc │ ├── sxhkdrc.bspwm │ └── sxhkdrc.i3 ├── systemd │ └── user │ │ ├── .gitignore │ │ ├── bspwm.service │ │ ├── gpg-agent.service │ │ ├── i3.service │ │ ├── mpd.service │ │ ├── mpd.socket │ │ ├── sxhkd.service │ │ ├── wm.target │ │ ├── workaholic.service │ │ ├── workaholic.timer │ │ ├── xflux.service │ │ ├── xlauncher.target │ │ ├── xorg.service │ │ ├── xorg.target │ │ ├── xrdb.service │ │ └── znc.service ├── termite │ ├── .gitignore │ ├── config │ └── reload └── user-dirs.dirs ├── .dir_colors ├── .gitconfig ├── .gitignore ├── .gitmodules ├── .gnupg ├── dirmngr.conf ├── gpg-agent.conf └── gpg.conf ├── .irssi ├── .gitignore ├── config ├── irssi ├── logs │ └── .gitkeep ├── scripts │ ├── adv_windowlist.pl │ ├── chansort.pl │ ├── go.pl │ ├── mpd.pl │ ├── notify.pl │ ├── openurl.pl │ ├── themer.pl │ ├── timer.pl │ ├── trackbar22.pl │ ├── uberprompt.pl │ ├── vim_mode.pl │ └── znc_timestamp.pl ├── startup ├── themes │ ├── default.theme │ └── jaagr.theme └── vim_moderc ├── .local ├── bin │ ├── README.md │ ├── lockscreen │ └── wm_launcher ├── etc │ ├── .packages.cpan │ ├── .packages.npm │ ├── .packages.pip │ ├── .packages.xbps │ ├── README.md │ ├── bspwm │ ├── compton │ ├── dunst │ ├── i3 │ ├── lemonbuddy │ ├── sxhkd │ ├── termite │ ├── themer │ │ ├── .gitignore │ │ ├── README.md │ │ ├── current │ │ │ └── .gitignore │ │ └── themes │ │ │ ├── bw │ │ │ └── polybar │ │ │ ├── c64 │ │ │ └── polybar │ │ │ ├── daftpunk-black │ │ │ └── polybar │ │ │ ├── darkpx │ │ │ ├── README.md │ │ │ ├── bspwm │ │ │ ├── compton │ │ │ ├── dunst │ │ │ ├── i3 │ │ │ ├── lockscreen.png │ │ │ ├── pixel.png │ │ │ ├── polybar │ │ │ ├── sample.png │ │ │ ├── spacesurf.png │ │ │ ├── termite │ │ │ ├── tile.xbm │ │ │ ├── vim │ │ │ ├── wallpaper │ │ │ └── xresources │ │ │ ├── dracula │ │ │ ├── README.md │ │ │ ├── bspwm │ │ │ ├── compton │ │ │ ├── dracula.png │ │ │ ├── lockscreen.png │ │ │ ├── polybar │ │ │ ├── sample-busy-mute.png │ │ │ ├── sample-busy.png │ │ │ ├── sample-clean.png │ │ │ ├── termite │ │ │ ├── vim │ │ │ └── wallpaper │ │ │ ├── ethernet │ │ │ └── polybar │ │ │ ├── heroku │ │ │ └── polybar │ │ │ ├── lightpx │ │ │ ├── README.md │ │ │ ├── bspwm │ │ │ ├── compton │ │ │ ├── dunst │ │ │ ├── i3 │ │ │ ├── lockscreen.png │ │ │ ├── pixel-gray.png │ │ │ ├── polybar │ │ │ ├── sample.png │ │ │ ├── termite │ │ │ ├── vim │ │ │ ├── wallpaper │ │ │ └── xresources │ │ │ ├── space │ │ │ ├── README.md │ │ │ ├── bspwm │ │ │ ├── polybar │ │ │ ├── sample.png │ │ │ ├── space.png │ │ │ ├── termite │ │ │ ├── vim │ │ │ ├── wallpaper │ │ │ └── xresources │ │ │ ├── vibrant │ │ │ └── polybar │ │ │ └── wasp │ │ │ ├── README.md │ │ │ ├── bspwm │ │ │ ├── compton │ │ │ ├── crimsonidol.png │ │ │ ├── lockscreen.png │ │ │ ├── polybar │ │ │ ├── sample.png │ │ │ ├── termite │ │ │ ├── vim │ │ │ └── wallpaper │ ├── vimperator │ └── xorg │ │ ├── keyboard.def │ │ ├── keyboard.xkb │ │ ├── keyboard.xkm │ │ ├── launch │ │ ├── xbm │ │ ├── bark │ │ │ ├── bark001.xbm │ │ │ ├── bark005.xbm │ │ │ ├── bark007.xbm │ │ │ ├── bark009.xbm │ │ │ ├── bark010.xbm │ │ │ └── bark014-256.xbm │ │ ├── cycle.sh │ │ ├── dots │ │ │ ├── 12x12dot1.xbm │ │ │ ├── 4x4cross.xbm │ │ │ ├── 4x4cross2.xbm │ │ │ ├── 4x4dot.xbm │ │ │ ├── 4x4dot1.xbm │ │ │ ├── 4x4dot2.xbm │ │ │ ├── 4x4dot3.xbm │ │ │ ├── 4x4dot4.xbm │ │ │ ├── 8x8chess1.xbm │ │ │ ├── 8x8cross2.xbm │ │ │ ├── 8x8cross3.xbm │ │ │ ├── 8x8test1.xbm │ │ │ ├── 8x8test3.xbm │ │ │ └── 8x8test4.xbm │ │ ├── maze │ │ │ ├── maze001.xbm │ │ │ ├── maze002.xbm │ │ │ └── maze004.xbm │ │ ├── mirz │ │ │ ├── floral4.xbm │ │ │ ├── floral5.xbm │ │ │ ├── floral6.xbm │ │ │ ├── gothic-lace1.xbm │ │ │ ├── gothic-lace2.xbm │ │ │ ├── gothic-lace3.xbm │ │ │ ├── gothic-lace4.xbm │ │ │ ├── gothic-lace5.xbm │ │ │ ├── gothic-lace6.xbm │ │ │ ├── lace1.xbm │ │ │ ├── lace2.xbm │ │ │ ├── lace3.xbm │ │ │ ├── lace4.xbm │ │ │ ├── lace5.xbm │ │ │ ├── lace6.xbm │ │ │ ├── lace7.xbm │ │ │ ├── lace8.xbm │ │ │ └── readme.txt │ │ ├── output.xbm │ │ ├── squidfingers │ │ │ ├── pattern 147.xbm │ │ │ ├── pattern_036.xbm │ │ │ ├── pattern_045.xbm │ │ │ ├── pattern_046.xbm │ │ │ ├── pattern_053.xbm │ │ │ ├── pattern_054.xbm │ │ │ ├── pattern_056.xbm │ │ │ ├── pattern_057.xbm │ │ │ ├── pattern_059.xbm │ │ │ ├── pattern_065.xbm │ │ │ ├── pattern_066.xbm │ │ │ ├── pattern_070.xbm │ │ │ ├── pattern_074.xbm │ │ │ ├── pattern_076.xbm │ │ │ ├── pattern_077.xbm │ │ │ ├── pattern_078.xbm │ │ │ ├── pattern_079.xbm │ │ │ ├── pattern_080.xbm │ │ │ ├── pattern_082.xbm │ │ │ ├── pattern_084.xbm │ │ │ ├── pattern_087.xbm │ │ │ ├── pattern_089.xbm │ │ │ ├── pattern_090.xbm │ │ │ ├── pattern_091.xbm │ │ │ ├── pattern_097.xbm │ │ │ ├── pattern_101.xbm │ │ │ ├── pattern_102.xbm │ │ │ ├── pattern_112.xbm │ │ │ ├── pattern_116.xbm │ │ │ ├── pattern_117.xbm │ │ │ ├── pattern_125.xbm │ │ │ ├── pattern_130.xbm │ │ │ ├── pattern_133.xbm │ │ │ ├── pattern_134.xbm │ │ │ ├── pattern_136.xbm │ │ │ ├── pattern_138.xbm │ │ │ ├── pattern_139.xbm │ │ │ ├── pattern_145.xbm │ │ │ ├── pattern_150.xbm │ │ │ ├── pattern_152.xbm │ │ │ ├── pattern_154.xbm │ │ │ ├── pattern_155.xbm │ │ │ ├── pattern_156.xbm │ │ │ ├── pattern_157.xbm │ │ │ └── pattern_158.xbm │ │ ├── tile.xbm │ │ └── various │ │ │ ├── aeterna.xbm │ │ │ ├── scales2.xbm │ │ │ └── xsetrootbitmap.xbm │ │ ├── xenvironment │ │ ├── xkbmaprc │ │ ├── xrdb_reload │ │ ├── xresources │ │ ├── xresources.d │ │ ├── colors │ │ │ ├── LuciusBlack │ │ │ ├── LuciusBlackHighContrast │ │ │ ├── LuciusBlackLowContrast │ │ │ ├── LuciusDark │ │ │ ├── LuciusDarkHighContrast │ │ │ ├── LuciusDarkLowContrast │ │ │ ├── LuciusLight │ │ │ ├── LuciusLightLowContrast │ │ │ ├── LuciusWhite │ │ │ ├── LuciusWhiteLowContrast │ │ │ ├── NES │ │ │ ├── README.md │ │ │ ├── ambience │ │ │ ├── ancient │ │ │ ├── autumn │ │ │ ├── awesome │ │ │ ├── badwolf │ │ │ ├── bark │ │ │ ├── barrage │ │ │ ├── beard │ │ │ ├── beastie │ │ │ ├── belge │ │ │ ├── blackburn │ │ │ ├── blackgum │ │ │ ├── bloom │ │ │ ├── blue │ │ │ ├── branch │ │ │ ├── break │ │ │ ├── bulb │ │ │ ├── butter │ │ │ ├── bw_b │ │ │ ├── bw_w │ │ │ ├── bw_w2 │ │ │ ├── candy │ │ │ ├── candy2 │ │ │ ├── cathulu │ │ │ ├── charlie_brown │ │ │ ├── china │ │ │ ├── classy │ │ │ ├── clean │ │ │ ├── clear │ │ │ ├── clouds │ │ │ ├── coco │ │ │ ├── colors │ │ │ ├── coral │ │ │ ├── crypt │ │ │ ├── cryptedit │ │ │ ├── cryptetsy │ │ │ ├── cryptmatrix │ │ │ ├── cryptred │ │ │ ├── danuce │ │ │ ├── dark │ │ │ ├── darkocean │ │ │ ├── dawn │ │ │ ├── depth │ │ │ ├── designr │ │ │ ├── die │ │ │ ├── dkeg │ │ │ ├── dkg │ │ │ ├── earth │ │ │ ├── eggshell │ │ │ ├── erosion │ │ │ ├── erosion2 │ │ │ ├── erosionbright │ │ │ ├── erosionbrighter │ │ │ ├── erosionbrightest │ │ │ ├── erosioncontrast │ │ │ ├── erosiondark │ │ │ ├── erosionedit │ │ │ ├── erosionlight │ │ │ ├── euphrasia │ │ │ ├── fall │ │ │ ├── fallac │ │ │ ├── fiddler │ │ │ ├── foggy │ │ │ ├── fresh │ │ │ ├── frost │ │ │ ├── fsckoff │ │ │ ├── fury │ │ │ ├── gekko │ │ │ ├── genie │ │ │ ├── genie5 │ │ │ ├── gjm │ │ │ ├── gohucolor │ │ │ ├── google │ │ │ ├── gotham │ │ │ ├── gotham-modified │ │ │ ├── gutter │ │ │ ├── hal1 │ │ │ ├── hal2 │ │ │ ├── hal3 │ │ │ ├── harbing │ │ │ ├── heroku │ │ │ ├── hilal.vim │ │ │ ├── horse │ │ │ ├── hovering-fog-3440x1440.jpg.colors │ │ │ ├── hovering-fog-3440x1440.jpg.colorsX │ │ │ ├── hybrid │ │ │ ├── inthethaw │ │ │ ├── invisibone │ │ │ ├── ivory │ │ │ ├── jellybean │ │ │ ├── jellybeans │ │ │ ├── jmbi │ │ │ ├── jmrl1 │ │ │ ├── jmrl2 │ │ │ ├── julie │ │ │ ├── kantan │ │ │ ├── kasugano │ │ │ ├── kolor │ │ │ ├── leaf │ │ │ ├── lemon │ │ │ ├── load │ │ │ ├── lolitastic │ │ │ ├── lucius │ │ │ ├── manjaro │ │ │ ├── mattd │ │ │ ├── mekura │ │ │ ├── miami │ │ │ ├── mikazuki │ │ │ ├── mnml │ │ │ ├── mocha │ │ │ ├── molokai │ │ │ ├── monokai │ │ │ ├── monokai-edit │ │ │ ├── monokai16 │ │ │ ├── navy │ │ │ ├── nebula │ │ │ ├── neeee │ │ │ ├── neue │ │ │ ├── newleaf │ │ │ ├── nnml │ │ │ ├── noctu │ │ │ ├── notch │ │ │ ├── novmbr │ │ │ ├── nyquil │ │ │ ├── ok100 │ │ │ ├── pantsu │ │ │ ├── papey │ │ │ ├── parkd │ │ │ ├── parker │ │ │ ├── pastel │ │ │ ├── plain │ │ │ ├── plastique │ │ │ ├── poly │ │ │ ├── poppy │ │ │ ├── raiin │ │ │ ├── ratpoison │ │ │ ├── raven-dark │ │ │ ├── raven-light │ │ │ ├── raven_m3-dark │ │ │ ├── raven_m6-dark │ │ │ ├── raven_m9-dark │ │ │ ├── raven_p3-dark │ │ │ ├── raven_p6-dark │ │ │ ├── raven_p9-dark │ │ │ ├── redhead │ │ │ ├── relax │ │ │ ├── relax.png │ │ │ ├── reloaded │ │ │ ├── retroneon │ │ │ ├── rice │ │ │ ├── rootnode │ │ │ ├── s3r0 │ │ │ ├── s3r0-modified │ │ │ ├── s3r0modmod │ │ │ ├── satori │ │ │ ├── sawsuh │ │ │ ├── sawyr │ │ │ ├── scag │ │ │ ├── schredd │ │ │ ├── sexy │ │ │ ├── simplicity │ │ │ ├── sinatra │ │ │ ├── smear │ │ │ ├── smooth │ │ │ ├── snow │ │ │ ├── solarized │ │ │ ├── solarized_light │ │ │ ├── space │ │ │ ├── spring │ │ │ ├── squares │ │ │ ├── summer │ │ │ ├── summerup │ │ │ ├── sweetlove │ │ │ ├── thaw │ │ │ ├── thawedit │ │ │ ├── timebeard │ │ │ ├── tomorrow │ │ │ ├── tomorrow-night │ │ │ ├── tomorrow-night-eighties │ │ │ ├── tomorrow2 │ │ │ ├── twily │ │ │ ├── urban │ │ │ ├── venam │ │ │ ├── venam2 │ │ │ ├── victory │ │ │ ├── vintage │ │ │ ├── vintage2 │ │ │ ├── waterfront │ │ │ ├── wei001@linuxremote1.eg.bucknell.edu │ │ │ ├── winter │ │ │ ├── wintry │ │ │ ├── wombat │ │ │ ├── wooly │ │ │ ├── xmas │ │ │ ├── xresource │ │ │ └── zenburn │ │ ├── contrib │ │ │ ├── base16 │ │ │ │ ├── base16-3024.dark │ │ │ │ ├── base16-3024.light │ │ │ │ ├── base16-apathy.dark │ │ │ │ ├── base16-apathy.light │ │ │ │ ├── base16-ashes.dark │ │ │ │ ├── base16-ashes.light │ │ │ │ ├── base16-ateliercave.dark │ │ │ │ ├── base16-ateliercave.light │ │ │ │ ├── base16-atelierdune.dark │ │ │ │ ├── base16-atelierdune.light │ │ │ │ ├── base16-atelierestuary.dark │ │ │ │ ├── base16-atelierestuary.light │ │ │ │ ├── base16-atelierforest.dark │ │ │ │ ├── base16-atelierforest.light │ │ │ │ ├── base16-atelierheath.dark │ │ │ │ ├── base16-atelierheath.light │ │ │ │ ├── base16-atelierlakeside.dark │ │ │ │ ├── base16-atelierlakeside.light │ │ │ │ ├── base16-atelierplateau.dark │ │ │ │ ├── base16-atelierplateau.light │ │ │ │ ├── base16-ateliersavanna.dark │ │ │ │ ├── base16-ateliersavanna.light │ │ │ │ ├── base16-atelierseaside.dark │ │ │ │ ├── base16-atelierseaside.light │ │ │ │ ├── base16-ateliersulphurpool.dark │ │ │ │ ├── base16-ateliersulphurpool.light │ │ │ │ ├── base16-bespin.dark │ │ │ │ ├── base16-bespin.light │ │ │ │ ├── base16-brewer.dark │ │ │ │ ├── base16-brewer.light │ │ │ │ ├── base16-bright.dark │ │ │ │ ├── base16-bright.light │ │ │ │ ├── base16-chalk.dark │ │ │ │ ├── base16-chalk.light │ │ │ │ ├── base16-codeschool.dark │ │ │ │ ├── base16-codeschool.light │ │ │ │ ├── base16-colors.dark │ │ │ │ ├── base16-colors.light │ │ │ │ ├── base16-darktooth.dark │ │ │ │ ├── base16-darktooth.light │ │ │ │ ├── base16-default.dark │ │ │ │ ├── base16-default.light │ │ │ │ ├── base16-eighties.dark │ │ │ │ ├── base16-eighties.light │ │ │ │ ├── base16-embers.dark │ │ │ │ ├── base16-embers.light │ │ │ │ ├── base16-flat.dark │ │ │ │ ├── base16-flat.light │ │ │ │ ├── base16-google.dark │ │ │ │ ├── base16-google.light │ │ │ │ ├── base16-grayscale.dark │ │ │ │ ├── base16-grayscale.light │ │ │ │ ├── base16-greenscreen.dark │ │ │ │ ├── base16-greenscreen.light │ │ │ │ ├── base16-harmonic16.dark │ │ │ │ ├── base16-harmonic16.light │ │ │ │ ├── base16-hopscotch.dark │ │ │ │ ├── base16-hopscotch.light │ │ │ │ ├── base16-irblack.dark │ │ │ │ ├── base16-irblack.light │ │ │ │ ├── base16-isotope.dark │ │ │ │ ├── base16-isotope.light │ │ │ │ ├── base16-londontube.dark │ │ │ │ ├── base16-londontube.light │ │ │ │ ├── base16-macintosh.dark │ │ │ │ ├── base16-macintosh.light │ │ │ │ ├── base16-marrakesh.dark │ │ │ │ ├── base16-marrakesh.light │ │ │ │ ├── base16-mocha.dark │ │ │ │ ├── base16-mocha.light │ │ │ │ ├── base16-monokai.dark │ │ │ │ ├── base16-monokai.light │ │ │ │ ├── base16-ocean.dark │ │ │ │ ├── base16-ocean.light │ │ │ │ ├── base16-oceanicnext.dark │ │ │ │ ├── base16-oceanicnext.light │ │ │ │ ├── base16-paraiso.dark │ │ │ │ ├── base16-paraiso.light │ │ │ │ ├── base16-phd.dark │ │ │ │ ├── base16-phd.light │ │ │ │ ├── base16-pico.dark │ │ │ │ ├── base16-pico.light │ │ │ │ ├── base16-pop.dark │ │ │ │ ├── base16-pop.light │ │ │ │ ├── base16-railscasts.dark │ │ │ │ ├── base16-railscasts.light │ │ │ │ ├── base16-setiui.dark │ │ │ │ ├── base16-setiui.light │ │ │ │ ├── base16-shapeshifter.dark │ │ │ │ ├── base16-shapeshifter.light │ │ │ │ ├── base16-solarflare.dark │ │ │ │ ├── base16-solarflare.light │ │ │ │ ├── base16-solarized.dark │ │ │ │ ├── base16-solarized.light │ │ │ │ ├── base16-spacemacs.dark │ │ │ │ ├── base16-spacemacs.light │ │ │ │ ├── base16-summerfruit.dark │ │ │ │ ├── base16-summerfruit.light │ │ │ │ ├── base16-tomorrow.dark │ │ │ │ ├── base16-tomorrow.light │ │ │ │ ├── base16-twilight.dark │ │ │ │ ├── base16-twilight.light │ │ │ │ ├── base16-yesterday.dark │ │ │ │ ├── base16-yesterday.light │ │ │ │ ├── base16-yesterdaybright.dark │ │ │ │ ├── base16-yesterdaybright.light │ │ │ │ ├── base16-yesterdaynight.dark │ │ │ │ └── base16-yesterdaynight.light │ │ │ └── dkg │ │ │ │ ├── 5725 │ │ │ │ ├── bark │ │ │ │ ├── book │ │ │ │ ├── branch │ │ │ │ ├── brownstone │ │ │ │ ├── bulb │ │ │ │ ├── chaires │ │ │ │ ├── corduroy │ │ │ │ ├── depth │ │ │ │ ├── designr │ │ │ │ ├── diner │ │ │ │ ├── fendr │ │ │ │ ├── flapr │ │ │ │ ├── fury │ │ │ │ ├── harbing │ │ │ │ ├── leaf │ │ │ │ ├── mattd │ │ │ │ ├── newleaf │ │ │ │ ├── novmbr │ │ │ │ ├── owl │ │ │ │ ├── paints │ │ │ │ ├── parkd │ │ │ │ ├── petal │ │ │ │ ├── poly │ │ │ │ ├── preview │ │ │ │ ├── 5725.png │ │ │ │ ├── bark.png │ │ │ │ ├── book.png │ │ │ │ ├── branch.png │ │ │ │ ├── brownstone.png │ │ │ │ ├── bulb.png │ │ │ │ ├── chaires.png │ │ │ │ ├── corduroy.png │ │ │ │ ├── depth.png │ │ │ │ ├── designr.png │ │ │ │ ├── diner.png │ │ │ │ ├── fendr.png │ │ │ │ ├── flapr.png │ │ │ │ ├── fury.png │ │ │ │ ├── harbing.png │ │ │ │ ├── leaf.png │ │ │ │ ├── mattd.png │ │ │ │ ├── newleaf.png │ │ │ │ ├── novmbr.png │ │ │ │ ├── owl.png │ │ │ │ ├── paints.png │ │ │ │ ├── parkd.png │ │ │ │ ├── petal.png │ │ │ │ ├── poly.png │ │ │ │ ├── provrb.png │ │ │ │ ├── raiin.png │ │ │ │ ├── relax.png │ │ │ │ ├── reloaded.png │ │ │ │ ├── scag.png │ │ │ │ ├── schredd.png │ │ │ │ ├── shade.png │ │ │ │ ├── skigh.png │ │ │ │ ├── slate.png │ │ │ │ ├── spire.png │ │ │ │ ├── squares.png │ │ │ │ ├── sundr.png │ │ │ │ ├── urban.png │ │ │ │ ├── vans.png │ │ │ │ ├── victory.png │ │ │ │ ├── wintry.png │ │ │ │ └── zent.png │ │ │ │ ├── provrb │ │ │ │ ├── raiin │ │ │ │ ├── relax │ │ │ │ ├── reloaded │ │ │ │ ├── scag │ │ │ │ ├── schredd │ │ │ │ ├── shade │ │ │ │ ├── skigh │ │ │ │ ├── slate │ │ │ │ ├── spire │ │ │ │ ├── squares │ │ │ │ ├── sundr │ │ │ │ ├── urban │ │ │ │ ├── vans │ │ │ │ ├── victory │ │ │ │ ├── wintry │ │ │ │ └── zent │ │ ├── rofi │ │ ├── vt100 │ │ ├── xft │ │ └── xterm │ │ ├── xsession │ │ ├── xsession.d │ │ ├── 10-monitors │ │ ├── 20-keyboard │ │ ├── 30-appearance │ │ ├── 35-fonts │ │ └── 40-clipboard │ │ └── xvnc ├── lib │ └── README.md ├── src │ └── README.md └── var │ ├── .gitkeep │ └── mpd │ ├── .gitignore │ ├── playlists │ └── .gitkeep │ └── run ├── .mutt ├── .gitignore ├── contrib │ ├── format.vim │ ├── posting.vim │ └── view_attachment.sh ├── mailcap ├── mutt ├── muttrc.tpl ├── signature └── themes │ ├── base16-eighties │ └── default ├── .profile ├── .synergy.conf ├── .tmux.conf ├── .vim ├── .gitignore ├── after │ ├── filetype.vim │ ├── plugin │ │ ├── abolish.vim │ │ └── tcomment.vim │ └── syntax │ │ ├── dosini.vim │ │ └── perl │ │ ├── dancer.vim │ │ └── moose.vim ├── autoload │ ├── airline │ │ └── themes │ │ │ ├── heroku.vim │ │ │ └── jaagr.vim │ ├── ft │ │ └── cpphpp.vim │ └── plug.vim ├── bin │ └── ctrlp_fallback ├── ftplugin │ ├── c.vim │ ├── cpp.vim │ ├── dosini.vim │ ├── java.vim │ ├── markdown.vim │ └── zsh.vim ├── plugin │ ├── a.vim │ └── illuminator.vim ├── syntax │ └── todox.vim ├── vimrc └── vimrc.d │ ├── autocommands.vim │ ├── functions.vim │ ├── general.vim │ ├── keybindings.vim │ ├── plugins │ ├── abolish.vim │ ├── airline.vim │ ├── clang_complete.vim │ ├── colorizer.vim │ ├── cpp_enhanced_highlight.vim │ ├── ctrlp.vim │ ├── delimitmate.vim │ ├── deoplete.vim │ ├── diminactive.vim │ ├── eclim.vim │ ├── fswitch.vim │ ├── instant_markdown.vim │ ├── multiple_cursors.vim │ ├── nerdtree.vim │ ├── quickscope.vim │ ├── signify.vim │ ├── syntastic.vim │ ├── tagbar.vim │ ├── vcoolor.vim │ └── youcompleteme.vim │ ├── tmp │ └── cppnav.vim │ └── ui.vim ├── .vimperator ├── .gitignore ├── icon-lastpass-c.png ├── icon-lastpass.png ├── icon-xmarks-c.png ├── icon-xmarks.png ├── launch ├── spinner-dark.gif ├── spinner.gif ├── theme.css └── vimperatorrc ├── .zsh ├── .gitignore ├── .zlogin ├── .zlogout ├── .zprezto ├── .zpreztorc ├── .zprofile ├── .zshrc ├── functions │ └── prompt_jaagr_setup └── zshrc.d │ ├── 00-prezto.zsh │ ├── 05-zle.zsh │ ├── 08-hooks.zsh │ ├── 10-functions.zsh │ ├── 15-keymap.zsh │ ├── 20-aliases.zsh │ ├── 21-aliases-extra.zsh │ ├── 25-commands.zsh │ ├── 26-commands-runit.zsh │ ├── 27-commands-githelp.zsh │ ├── 28-commands-void.zsh │ ├── 28-pip-completion.zsh │ ├── 30-theme.zsh │ └── 35-dots.zsh ├── .zshenv └── README.md /.config/bspwm/launch: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | mkdir -p "${XDG_CACHE_HOME}"/bspwm 3 | rm "${XDG_CACHE_HOME}"/bspwm/std{out,err} >/dev/null 2>&1 4 | run_count=0 5 | while (( ++run_count )); do 6 | echo "---- STARTUP $(date +"%Y-%m-%d %H:%M:%S") ----" >> "${XDG_CACHE_HOME}"/bspwm/stdout 7 | echo "---- STARTUP $(date +"%Y-%m-%d %H:%M:%S") ----" >> "${XDG_CACHE_HOME}"/bspwm/stderr 8 | export BSPWM_COUNTER=$run_count 9 | bspwm >>"${XDG_CACHE_HOME}"/bspwm/stdout 2>>"${XDG_CACHE_HOME}"/bspwm/stderr || break 10 | done 11 | -------------------------------------------------------------------------------- /.config/bspwm/reload: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | # Runit service 4 | if sv check "$SVDIR"/bspwm | egrep -q "^ok: run"; then 5 | sv restart "$SVDIR"/bspwm >/dev/null 6 | 7 | if ! sv -w3 check "$SVDIR"/bspwm >/dev/null; then 8 | exit 1 9 | fi 10 | 11 | notify-send -u low "runit: bspwm reloaded successfully" 12 | 13 | # Standalone daemon 14 | else 15 | killall -q bspc polybar lemonbar xdrawrect 16 | "$LOCAL_ETC/bspwm/save_state" 17 | bspc quit $? 18 | fi 19 | -------------------------------------------------------------------------------- /.config/bspwm/restore_state: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | if ! [[ -s "$BSPWM_STATE" ]]; then 3 | exit 1 4 | fi 5 | echo "[bspwm/bin/restore_state] Restoring state using snapshot $BSPWM_STATE" 6 | bspc wm -l "$BSPWM_STATE" 7 | rm "$BSPWM_STATE" 8 | . "$LOCAL_ETC/bspwm/bspwmrc" 9 | -------------------------------------------------------------------------------- /.config/bspwm/save_state: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | echo "[bspwm/bin/save_state] Saving snapshot of current state to $BSPWM_STATE" 3 | bspc wm -d > "$BSPWM_STATE" 4 | -------------------------------------------------------------------------------- /.config/cava/config: -------------------------------------------------------------------------------- 1 | [general] 2 | bars = 55 3 | bar_width = 1 4 | bar_spacing = 1 5 | 6 | [eq] 7 | 1 = 2 8 | 2 = 2 9 | 3 = 1 10 | 4 = 1 11 | 5 = 0.5 12 | 13 | [input] 14 | method = fifo 15 | source = /tmp/mpd_visualizer.fifo 16 | 17 | [color] 18 | foreground = yellow 19 | -------------------------------------------------------------------------------- /.config/compton/launch: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | config="${1:-$LOCAL_ETC/compton/compton.conf}" 3 | log="${2:-$XDG_CACHE_HOME/compton/log}" 4 | 5 | if [[ $# -eq 0 ]] && [[ -s "${CURRENT_THEME}/compton" ]]; then 6 | config="${CURRENT_THEME}/compton" 7 | fi 8 | 9 | # Make sure there's no process up and running 10 | killall -q compton &> /dev/null 11 | 12 | # NOTE: --logpath is used since all output is sent to /dev/null when using --daemon 13 | exec compton --daemon --config "$config" --logpath "$log" --respect-prop-shadow 14 | -------------------------------------------------------------------------------- /.config/compton/reload: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | if sv check "$SVDIR"/compton | egrep -q "^ok: run"; then 4 | sv restart "$SVDIR"/compton >/dev/null 5 | 6 | if ! sv -w3 check "$SVDIR"/compton >/dev/null; then 7 | exit 1 8 | fi 9 | else 10 | if ! pidof compton >/dev/null; then 11 | exit 1 12 | fi 13 | 14 | # pkill -USR1 compton 15 | 16 | # Hard reload to make sure custom theme configs gets procecessed 17 | killall compton 18 | 19 | "$LOCAL_ETC/compton/launch" & 20 | fi 21 | -------------------------------------------------------------------------------- /.config/compton/test: -------------------------------------------------------------------------------- 1 | backend = "glx"; 2 | vsync = "opengl"; 3 | glx-swap-method = "buffer-age"; 4 | glx-copy-from-front = false; 5 | glx-no-rebind-pixmap = true; 6 | glx-no-stencil = true; 7 | paint-on-overlay = true; 8 | unredir-if-possible = true; 9 | xrender-sync = true; 10 | xrender-sync-fence = true; 11 | -------------------------------------------------------------------------------- /.config/cvimrc: -------------------------------------------------------------------------------- 1 | " Put the following two lines in the cVim options page in Chrome 2 | let configpath = "/home/jaagr/.config/cvimrc" 3 | set localconfig " Update settings via local file (and the `:source` command) rather 4 | " than the default options page in chrome" 5 | 6 | let blacklists = ["https://design.google.com/icons/*"] 7 | 8 | getIP() -> {{ 9 | httpRequest({ 10 | url: "http://api.ipify.org/?format=json", 11 | json: true 12 | }, function(res){ 13 | Status.setMessage("IP: " + res.ip); 14 | }); 15 | }} 16 | 17 | " Displays your public IP address in the status bar 18 | map ci :call getIP 19 | -------------------------------------------------------------------------------- /.config/dunst/colortest: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | # 3 | # Script to test notification styling 4 | # 5 | [[ "$1" =~ ^(|low|normal|critical)$ ]] || shift 6 | [[ "$1" =~ ^(|low)$ ]] && notify-send -t 1000 -u low "Low urgency title" "Lorem ipsum dolor sit amet" 7 | [[ "$1" =~ ^(|normal)$ ]] && notify-send -t 1000 -u normal "Normal urgency title" "Lorem ipsum dolor sit amet" 8 | [[ "$1" =~ ^(|critical)$ ]] && notify-send -t 1000 -u critical "Critical urgency title" "Lorem ipsum dolor sit amet" 9 | -------------------------------------------------------------------------------- /.config/dunst/launch: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | config="${1:-$LOCAL_ETC/dunst/dunstrc}" 3 | 4 | if [[ $# -eq 0 ]] && [[ -s "$CURRENT_THEME"/dunst ]]; then 5 | config="$CURRENT_THEME"/dunst 6 | fi 7 | 8 | killall -q dunst &> /dev/null 9 | 10 | exec dunst -config "$config" 11 | -------------------------------------------------------------------------------- /.config/dunst/reload: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | # Runit service 4 | if sv check "$SVDIR"/dunst | egrep -q "^ok: run"; then 5 | sv restart "$SVDIR"/dunst >/dev/null 6 | 7 | if ! sv -w3 check "$SVDIR"/dunst >/dev/null; then 8 | exit 1 9 | fi 10 | 11 | notify-send -u low "runit: dunst reloaded successfully" 12 | 13 | # Standalone daemon 14 | else 15 | if ! pidof dunst >/dev/null; then 16 | exit 1 17 | fi 18 | 19 | "$LOCAL_ETC"/dunst/launch & 20 | 21 | while (( retries++ < 10 )); do 22 | pidof dunst >/dev/null && break 23 | sleep 0.01 24 | done 25 | 26 | if ! pidof dunst >/dev/null; then 27 | exit 1 28 | fi 29 | 30 | notify-send -u low "dunst reloaded successfully" 31 | fi 32 | -------------------------------------------------------------------------------- /.config/gimp/README.md: -------------------------------------------------------------------------------- 1 | ##### gimp 2 | ---------- 3 | 4 | Run this after cloning to setup the photoshop theme: 5 | 6 | ~~~ sh 7 | $ mkdir ~/.config/gimp/themes 8 | $ cd ~/.config/gimp 9 | $ mv photoshop_theme.7z themes/ 10 | $ cd themes 11 | $ 7z x photoshop_theme.7z 12 | ~~~ 13 | -------------------------------------------------------------------------------- /.config/gimp/contextrc: -------------------------------------------------------------------------------- 1 | # GIMP user context 2 | 3 | (tool "gimp-dodge-burn-tool") 4 | (paint-info "gimp-dodge-burn") 5 | (brush "Clipboard") 6 | (dynamics "Pressure Opacity") 7 | (pattern "Pine") 8 | (gradient "FG to BG (RGB)") 9 | (palette "Default") 10 | (font "Sans") 11 | 12 | # end of user context 13 | -------------------------------------------------------------------------------- /.config/gimp/gtkrc: -------------------------------------------------------------------------------- 1 | # pixmap_path ":::..." 2 | # 3 | # include "rc-file" 4 | # 5 | # style [= ] 6 | # { 7 | #