gitextract_kumaxq2x/ ├── .bashrc ├── .config/ │ ├── alacritty/ │ │ └── alacritty.yml │ ├── boomer/ │ │ └── config │ ├── bspwm/ │ │ ├── bspwmrc │ │ └── scripts/ │ │ ├── deskmenu │ │ ├── focus │ │ ├── move │ │ ├── resize │ │ ├── scratch │ │ ├── select │ │ ├── split │ │ └── windmenu │ ├── cheat/ │ │ └── cheatrc.yaml │ ├── color/ │ │ ├── bloks │ │ ├── colorz │ │ ├── pipes │ │ └── skull │ ├── compton/ │ │ └── compton │ ├── conky/ │ │ └── conky │ ├── cool-retro-term/ │ │ └── TRIM.json │ ├── direnv/ │ │ └── direnvrc │ ├── fish/ │ │ ├── completions/ │ │ │ └── fisher.fish │ │ ├── conf.d/ │ │ │ └── done.fish │ │ ├── config.fish │ │ ├── fish_variables │ │ ├── fishfile │ │ └── functions/ │ │ ├── :q.fish │ │ ├── __bass.py │ │ ├── ari.fish │ │ ├── asci.fish │ │ ├── bass.fish │ │ ├── bax.fish │ │ ├── class.fish │ │ ├── copy.fish │ │ ├── cp.fish │ │ ├── dev.fish │ │ ├── df.fish │ │ ├── doc.fish │ │ ├── docker.fish │ │ ├── dotfile.fish │ │ ├── dxe.fish │ │ ├── exe.fish │ │ ├── fisher.fish │ │ ├── g.fish │ │ ├── git.fish │ │ ├── humanize_duration.fish │ │ ├── la.fish │ │ ├── ll.fish │ │ ├── ls.fish │ │ ├── lt.fish │ │ ├── lu.fish │ │ ├── md.fish │ │ ├── mf.fish │ │ ├── mirror.fish │ │ ├── mutt.fish │ │ ├── mv.fish │ │ ├── one.fish │ │ ├── own.fish │ │ ├── pack.fish │ │ ├── pro.fish │ │ ├── q.fish │ │ ├── refresh.fish │ │ ├── rm.fish │ │ ├── s.fish │ │ ├── six.fish │ │ ├── speed.fish │ │ ├── sudo.fish │ │ ├── suspend.fish │ │ ├── sys.fish │ │ ├── up.fish │ │ ├── v.fish │ │ ├── vim.fish │ │ ├── virsh.fish │ │ ├── x.fish │ │ └── z.fish │ ├── fontconfig/ │ │ └── fonts.conf │ ├── gitstatus/ │ │ ├── bin/ │ │ │ ├── gitstatusd-linux-aarch64 │ │ │ ├── gitstatusd-linux-x86_64 │ │ │ └── gitstatusd-linux-x86_64-static │ │ ├── gitstatus.plugin.sh │ │ ├── gitstatus.plugin.zsh │ │ ├── gitstatus.prompt.sh │ │ └── gitstatus.prompt.zsh │ ├── i3/ │ │ └── config │ ├── kitty/ │ │ └── kitty.conf │ ├── mutt/ │ │ ├── aliases │ │ ├── colors │ │ └── muttrc │ ├── neofetch/ │ │ └── config.conf │ ├── nixpkgs/ │ │ └── config.nix │ ├── nvim/ │ │ ├── bookmarks │ │ └── init.vim │ ├── pet/ │ │ ├── config.toml │ │ └── snippet.toml │ ├── polybar/ │ │ ├── center │ │ ├── main │ │ ├── scripts/ │ │ │ ├── hotspot │ │ │ ├── netwidth │ │ │ └── spotify │ │ └── side │ ├── proji/ │ │ ├── config.toml │ │ ├── db/ │ │ │ └── proji.sqlite3 │ │ ├── examples/ │ │ │ ├── default.toml │ │ │ └── proji-class.toml │ │ ├── scripts/ │ │ │ ├── anaconda.sh │ │ │ ├── direnv.sh │ │ │ └── init_git.sh │ │ └── templates/ │ │ ├── AUTHORS.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── cmake/ │ │ │ ├── .clang-format │ │ │ ├── .clang-tidy │ │ │ ├── .editorconfig │ │ │ ├── .envrc │ │ │ ├── .github/ │ │ │ │ └── workflows/ │ │ │ │ └── main.yml │ │ │ ├── .gitignore │ │ │ ├── .gitmodules │ │ │ ├── .travis.yml │ │ │ ├── .vscode/ │ │ │ │ └── c_cpp_properties.json │ │ │ ├── CMakeLists.txt │ │ │ ├── cmake/ │ │ │ │ ├── ExternalProject.cmake │ │ │ │ ├── HunterGate.cmake │ │ │ │ ├── LTO.cmake │ │ │ │ ├── Packaging.cmake │ │ │ │ ├── Uninstall.cmake │ │ │ │ └── Warnings.cmake │ │ │ ├── external/ │ │ │ │ └── headers/ │ │ │ │ ├── args.hpp │ │ │ │ ├── crypt.hpp │ │ │ │ ├── doctest.hpp │ │ │ │ ├── json.hpp │ │ │ │ ├── rang.hpp │ │ │ │ └── utils.hpp │ │ │ ├── include/ │ │ │ │ ├── cplate/ │ │ │ │ │ └── classic.h │ │ │ │ └── second/ │ │ │ │ └── classic.h │ │ │ ├── shell.nix │ │ │ ├── source/ │ │ │ │ ├── cplate/ │ │ │ │ │ └── classic.cpp │ │ │ │ ├── main.cpp │ │ │ │ └── second/ │ │ │ │ └── classic.cpp │ │ │ └── tests/ │ │ │ └── test_one.cpp │ │ ├── dev/ │ │ │ ├── .envrc │ │ │ └── shell.nix │ │ ├── py/ │ │ │ ├── .envrc │ │ │ ├── .gitignore │ │ │ └── shell.nix │ │ ├── ros/ │ │ │ └── CMakeLists.txt │ │ └── tex/ │ │ ├── .envrc │ │ ├── .gitignore │ │ ├── article.tex │ │ └── bibliography.bib │ ├── promptline │ ├── qutebrowser/ │ │ ├── autoconfig.yml │ │ ├── bookmarks/ │ │ │ └── urls │ │ ├── config.py │ │ ├── iqutefy.py │ │ ├── quickmarks │ │ └── qutewal.py │ ├── rofi/ │ │ ├── menu/ │ │ │ ├── BROWSE │ │ │ ├── CONFIG │ │ │ ├── buku │ │ │ ├── contacts │ │ │ ├── locate │ │ │ ├── marks │ │ │ ├── monitors │ │ │ ├── mount │ │ │ ├── note │ │ │ ├── pass │ │ │ ├── rofis │ │ │ ├── screenshot │ │ │ ├── task │ │ │ └── uplay │ │ ├── rofi_bar │ │ ├── rofi_full │ │ ├── rofi_fuzzy │ │ └── rofi_icon │ ├── searcher │ ├── slop/ │ │ ├── blur1.frag │ │ ├── blur1.vert │ │ ├── blur2.frag │ │ ├── blur2.vert │ │ ├── boxzoom.frag │ │ ├── boxzoom.vert │ │ ├── crosshair.frag │ │ ├── crosshair.vert │ │ ├── hippie.frag │ │ ├── hippie.vert │ │ ├── invert.frag │ │ ├── invert.vert │ │ ├── refract.frag │ │ ├── refract.vert │ │ ├── wiggle.frag │ │ └── wiggle.vert │ ├── sxhkd/ │ │ └── sxhkdrc │ ├── tmux/ │ │ ├── COOL.yml │ │ ├── MAIN.yml │ │ ├── NOTE.yml │ │ ├── PRO.yml │ │ ├── PROT.yml │ │ ├── VOLT.yml │ │ └── modules/ │ │ ├── STATUS │ │ ├── battery │ │ ├── borderland │ │ ├── cpu-stat │ │ ├── directory │ │ ├── netwidth │ │ └── powerdraw │ ├── vim/ │ │ └── theme/ │ │ └── jellybeans.vim │ ├── wal/ │ │ └── templates/ │ │ └── colors-dunst │ ├── xfce4/ │ │ ├── desktop/ │ │ │ ├── icons.screen0-1175x884.rc │ │ │ ├── icons.screen0-1224x884.rc │ │ │ ├── icons.screen0-3735x2100.rc │ │ │ ├── icons.screen0-3752x2100.rc │ │ │ ├── icons.screen0-3784x2020.rc │ │ │ └── icons.screen0-3784x2100.rc │ │ ├── panel/ │ │ │ └── whiskermenu-7.rc │ │ ├── terminal/ │ │ │ └── accels.scm │ │ └── xfconf/ │ │ └── xfce-perchannel-xml/ │ │ ├── keyboards.xml │ │ ├── ristretto.xml │ │ ├── thunar.xml │ │ ├── xfce4-desktop.xml │ │ ├── xfce4-keyboard-shortcuts.xml │ │ ├── xfce4-panel.xml │ │ ├── xfce4-session.xml │ │ ├── xfce4-settings-manager.xml │ │ ├── xfwm4.xml │ │ └── xsettings.xml │ ├── zathura/ │ │ ├── genzathrc │ │ └── zathurarc │ └── zsh/ │ ├── almostontop/ │ │ ├── _almostontop │ │ └── almostontop.plugin.zsh │ ├── async │ ├── autopair/ │ │ └── autopair.zh │ ├── autosuggestions/ │ │ ├── src/ │ │ │ ├── async.zsh │ │ │ ├── bind.zsh │ │ │ ├── config.zsh │ │ │ ├── features.zsh │ │ │ ├── highlight.zsh │ │ │ ├── setup.zsh │ │ │ ├── start.zsh │ │ │ ├── strategies/ │ │ │ │ ├── default.zsh │ │ │ │ └── match_prev_cmd.zsh │ │ │ ├── util.zsh │ │ │ └── widgets.zsh │ │ └── zsh-autosuggestions.zsh │ ├── cmdtime/ │ │ └── zsh-command-time.zsh │ ├── completions/ │ │ ├── src/ │ │ │ ├── _ack │ │ │ ├── _afew │ │ │ ├── _android │ │ │ ├── _ansible │ │ │ ├── _ansible-galaxy │ │ │ ├── _ansible-playbook │ │ │ ├── _ansible-vault │ │ │ ├── _archlinux-java │ │ │ ├── _artisan │ │ │ ├── _atach │ │ │ ├── _bitcoin-cli │ │ │ ├── _bower │ │ │ ├── _bundle │ │ │ ├── _caffeinate │ │ │ ├── _cap │ │ │ ├── _cask │ │ │ ├── _cf │ │ │ ├── _chattr │ │ │ ├── _cheat │ │ │ ├── _choc │ │ │ ├── _cmake │ │ │ ├── _coffee │ │ │ ├── _column │ │ │ ├── _composer │ │ │ ├── _console │ │ │ ├── _dad │ │ │ ├── _debuild │ │ │ ├── _dget │ │ │ ├── _dhcpcd │ │ │ ├── _diana │ │ │ ├── _docpad │ │ │ ├── _drush │ │ │ ├── _emulator │ │ │ ├── _envdir │ │ │ ├── _exportfs │ │ │ ├── _fab │ │ │ ├── _ffind │ │ │ ├── _fleetctl │ │ │ ├── _force │ │ │ ├── _gas │ │ │ ├── _geany │ │ │ ├── _ghc │ │ │ ├── _gist │ │ │ ├── _git-flow │ │ │ ├── _git-journal │ │ │ ├── _git-pulls │ │ │ ├── _git-wtf │ │ │ ├── _glances │ │ │ ├── _golang │ │ │ ├── _google │ │ │ ├── _gtk-launch │ │ │ ├── _homestead │ │ │ ├── _httpie │ │ │ ├── _ibus │ │ │ ├── _jmeter │ │ │ ├── _jmeter-plugins │ │ │ ├── _jonas │ │ │ ├── _jq │ │ │ ├── _jrnl │ │ │ ├── _kak │ │ │ ├── _kitchen │ │ │ ├── _knife │ │ │ ├── _language_codes │ │ │ ├── _lsattr │ │ │ ├── _lsblk │ │ │ ├── _lunchy │ │ │ ├── _middleman │ │ │ ├── _mina │ │ │ ├── _mix │ │ │ ├── _multirust │ │ │ ├── _mussh │ │ │ ├── _mvn │ │ │ ├── _node │ │ │ ├── _nvm │ │ │ ├── _openssl │ │ │ ├── _optirun │ │ │ ├── _paste │ │ │ ├── _patool │ │ │ ├── _perf │ │ │ ├── _periscope │ │ │ ├── _pgsql_utils │ │ │ ├── _phing │ │ │ ├── _pixz │ │ │ ├── _pkcon │ │ │ ├── _play │ │ │ ├── _port │ │ │ ├── _pygmentize │ │ │ ├── _rails │ │ │ ├── _ralio │ │ │ ├── _rclone │ │ │ ├── _redis-cli │ │ │ ├── _rfkill │ │ │ ├── _rkt │ │ │ ├── _rslsync │ │ │ ├── _rspec │ │ │ ├── _rsvm │ │ │ ├── _rubocop │ │ │ ├── _rvm │ │ │ ├── _sbt │ │ │ ├── _scala │ │ │ ├── _scl │ │ │ ├── _scons │ │ │ ├── _scrub │ │ │ ├── _sdd │ │ │ ├── _setcap │ │ │ ├── _setup.py │ │ │ ├── _showoff │ │ │ ├── _shutdown │ │ │ ├── _smartmontools │ │ │ ├── _srm │ │ │ ├── _ssh-copy-id │ │ │ ├── _stack │ │ │ ├── _subl │ │ │ ├── _subliminal │ │ │ ├── _supervisorctl │ │ │ ├── _svm │ │ │ ├── _tarsnap │ │ │ ├── _teamocil │ │ │ ├── _thor │ │ │ ├── _tmuxinator │ │ │ ├── _tmuxp │ │ │ ├── _trash-empty │ │ │ ├── _trash-list │ │ │ ├── _trash-put │ │ │ ├── _trash-restore │ │ │ ├── _udisksctl │ │ │ ├── _ufw │ │ │ ├── _vagrant │ │ │ ├── _virsh │ │ │ ├── _virtualbox │ │ │ ├── _vnstat │ │ │ ├── _vpnc │ │ │ ├── _wemux │ │ │ ├── _xinput │ │ │ ├── _xsel │ │ │ ├── _yaourt │ │ │ ├── _yarn │ │ │ └── _zcash-cli │ │ └── zsh-completions.zsh │ ├── enhancd/ │ │ ├── enhancd.log │ │ ├── init.sh │ │ └── src/ │ │ ├── arguments.sh │ │ ├── cd.sh │ │ ├── custom/ │ │ │ ├── config.ltsv │ │ │ ├── options/ │ │ │ │ ├── help.sh │ │ │ │ ├── number.sh │ │ │ │ └── version.sh │ │ │ └── sources/ │ │ │ └── ghq.sh │ │ ├── filter.sh │ │ ├── history.sh │ │ ├── path.sh │ │ ├── share/ │ │ │ ├── fuzzy.awk │ │ │ ├── has_dup_lines.awk │ │ │ ├── reverse.awk │ │ │ ├── split.awk │ │ │ ├── step_by_step.awk │ │ │ └── to_abspath.awk │ │ └── utils.sh │ ├── fz/ │ │ ├── fz.zsh │ │ ├── icd.zsh │ │ └── z.zsh │ ├── fzf/ │ │ ├── completion.bash │ │ ├── completion.zsh │ │ ├── key-bindings.bash │ │ ├── key-bindings.fish │ │ └── key-bindings.zsh │ ├── goto/ │ │ ├── goto.sh │ │ └── gotodb │ ├── insult │ ├── notfound/ │ │ ├── notfound │ │ └── notfound.zsh │ ├── syntax/ │ │ ├── .revision-hash │ │ ├── .version │ │ ├── highlighters/ │ │ │ ├── brackets/ │ │ │ │ └── brackets-highlighter.zsh │ │ │ ├── cursor/ │ │ │ │ └── cursor-highlighter.zsh │ │ │ ├── line/ │ │ │ │ └── line-highlighter.zsh │ │ │ ├── main/ │ │ │ │ └── main-highlighter.zsh │ │ │ ├── pattern/ │ │ │ │ └── pattern-highlighter.zsh │ │ │ └── root/ │ │ │ └── root-highlighter.zsh │ │ └── zsh-syntax-highlighting.zsh │ ├── upsearch/ │ │ ├── zsh-history-substring-search.zsh │ │ └── zsh-miscellaneous.zsh │ └── visualvi/ │ └── zsh-vimode-visual.zsh ├── .func/ │ ├── article │ ├── code │ ├── docker │ ├── media │ ├── network │ ├── robot │ └── system ├── .gitconfig ├── .gitignore ├── .profile ├── .sbin/ │ ├── adblock │ ├── askpass │ ├── biblio │ ├── checkinstall │ ├── con │ ├── cornera │ ├── hotspot │ ├── loopwall │ ├── pipes │ ├── play │ ├── recffm │ ├── ship │ ├── tdrop │ ├── termop │ ├── tux │ ├── wispot │ └── zathura ├── .startup ├── .tmux.conf ├── .zshrc ├── README.md └── run_me.sh