├── .github └── FUNDING.yml ├── LICENSE ├── README.md ├── mkarchiso └── src ├── airootfs ├── etc │ ├── default │ │ └── grub │ ├── group │ ├── gshadow │ ├── hostname │ ├── locale.conf │ ├── localtime │ ├── mkinitcpio.conf │ ├── mkinitcpio.d │ │ └── linux.preset │ ├── modprobe.d │ │ └── broadcom-wl.conf │ ├── motd │ ├── os-release │ ├── pacman.conf │ ├── pacman.d │ │ ├── blackarch-mirrorlist │ │ ├── chaotic-mirrorlist │ │ ├── hooks │ │ │ ├── uncomment-mirrors.hook │ │ │ └── zzzz99-remove-custom-hooks-from-airootfs.hook │ │ └── mirrorlist │ ├── passwd │ ├── polkit-1 │ │ ├── localauthority │ │ │ └── 50-local.d │ │ │ │ └── 10-udisks.pkla │ │ └── rules.d │ │ │ ├── 50-org.freedesktop.NetworkManager.rules │ │ │ ├── 50-udiskie.rules │ │ │ ├── allow-mount-internal.rules │ │ │ ├── always-allow-wheel.rules │ │ │ └── udisks-no-consolekit.rules │ ├── resolv.conf │ ├── sddm.conf │ ├── sddm.conf.d │ │ └── kde_settings.conf │ ├── shadow │ ├── skel │ │ ├── .oh-my-zsh │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── cache │ │ │ │ ├── .gitkeep │ │ │ │ ├── docker_hide_legacy_commands │ │ │ │ ├── docker_subcommands │ │ │ │ └── grep-alias │ │ │ ├── custom │ │ │ │ ├── example.zsh │ │ │ │ ├── plugins │ │ │ │ │ ├── example │ │ │ │ │ │ └── example.plugin.zsh │ │ │ │ │ ├── zsh-autosuggestions │ │ │ │ │ │ ├── .circleci │ │ │ │ │ │ │ └── config.yml │ │ │ │ │ │ ├── .editorconfig │ │ │ │ │ │ ├── .rspec │ │ │ │ │ │ ├── .rubocop.yml │ │ │ │ │ │ ├── .ruby-version │ │ │ │ │ │ ├── DESCRIPTION │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ ├── Gemfile │ │ │ │ │ │ ├── Gemfile.lock │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── URL │ │ │ │ │ │ ├── VERSION │ │ │ │ │ │ ├── ZSH_VERSIONS │ │ │ │ │ │ ├── install_test_zsh.sh │ │ │ │ │ │ ├── spec │ │ │ │ │ │ │ ├── async_spec.rb │ │ │ │ │ │ │ ├── integrations │ │ │ │ │ │ │ │ ├── auto_cd_spec.rb │ │ │ │ │ │ │ │ ├── bracketed_paste_magic_spec.rb │ │ │ │ │ │ │ │ ├── client_zpty_spec.rb │ │ │ │ │ │ │ │ ├── glob_subst_spec.rb │ │ │ │ │ │ │ │ ├── rebound_bracket_spec.rb │ │ │ │ │ │ │ │ ├── vi_mode_spec.rb │ │ │ │ │ │ │ │ ├── wrapped_widget_spec.rb │ │ │ │ │ │ │ │ └── zle_input_stack_spec.rb │ │ │ │ │ │ │ ├── kill_ring_spec.rb │ │ │ │ │ │ │ ├── line_init_spec.rb │ │ │ │ │ │ │ ├── multi_line_spec.rb │ │ │ │ │ │ │ ├── options │ │ │ │ │ │ │ │ ├── buffer_max_size_spec.rb │ │ │ │ │ │ │ │ ├── highlight_style_spec.rb │ │ │ │ │ │ │ │ ├── original_widget_prefix_spec.rb │ │ │ │ │ │ │ │ ├── strategy_spec.rb │ │ │ │ │ │ │ │ └── widget_lists_spec.rb │ │ │ │ │ │ │ ├── spec_helper.rb │ │ │ │ │ │ │ ├── strategies │ │ │ │ │ │ │ │ ├── completion_spec.rb │ │ │ │ │ │ │ │ ├── history_spec.rb │ │ │ │ │ │ │ │ ├── match_prev_cmd_spec.rb │ │ │ │ │ │ │ │ └── special_characters_helper.rb │ │ │ │ │ │ │ ├── terminal_session.rb │ │ │ │ │ │ │ └── widgets │ │ │ │ │ │ │ │ ├── disable_spec.rb │ │ │ │ │ │ │ │ ├── enable_spec.rb │ │ │ │ │ │ │ │ ├── fetch_spec.rb │ │ │ │ │ │ │ │ └── toggle_spec.rb │ │ │ │ │ │ ├── src │ │ │ │ │ │ │ ├── async.zsh │ │ │ │ │ │ │ ├── bind.zsh │ │ │ │ │ │ │ ├── config.zsh │ │ │ │ │ │ │ ├── fetch.zsh │ │ │ │ │ │ │ ├── highlight.zsh │ │ │ │ │ │ │ ├── start.zsh │ │ │ │ │ │ │ ├── strategies │ │ │ │ │ │ │ │ ├── completion.zsh │ │ │ │ │ │ │ │ ├── history.zsh │ │ │ │ │ │ │ │ └── match_prev_cmd.zsh │ │ │ │ │ │ │ ├── util.zsh │ │ │ │ │ │ │ └── widgets.zsh │ │ │ │ │ │ ├── zsh-autosuggestions.plugin.zsh │ │ │ │ │ │ └── zsh-autosuggestions.zsh │ │ │ │ │ └── zsh-syntax-highlighting │ │ │ │ │ │ ├── .editorconfig │ │ │ │ │ │ ├── .gitattributes │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── .revision-hash │ │ │ │ │ │ ├── .version │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── highlighters │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── brackets │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── brackets-highlighter.zsh │ │ │ │ │ │ │ └── test-data │ │ │ │ │ │ │ │ ├── cursor-matchingbracket-line-finish.zsh │ │ │ │ │ │ │ │ ├── cursor-matchingbracket.zsh │ │ │ │ │ │ │ │ ├── empty-styles.zsh │ │ │ │ │ │ │ │ ├── loop-styles.zsh │ │ │ │ │ │ │ │ ├── mismatch-patentheses.zsh │ │ │ │ │ │ │ │ ├── near-quotes.zsh │ │ │ │ │ │ │ │ ├── nested-parentheses.zsh │ │ │ │ │ │ │ │ ├── only-error.zsh │ │ │ │ │ │ │ │ ├── quoted-patentheses.zsh │ │ │ │ │ │ │ │ ├── simple-parentheses.zsh │ │ │ │ │ │ │ │ ├── unclosed-patentheses.zsh │ │ │ │ │ │ │ │ └── unclosed-patentheses2.zsh │ │ │ │ │ │ ├── cursor │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ └── cursor-highlighter.zsh │ │ │ │ │ │ ├── line │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ └── line-highlighter.zsh │ │ │ │ │ │ ├── main │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── main-highlighter.zsh │ │ │ │ │ │ │ └── test-data │ │ │ │ │ │ │ │ ├── abspath-in-command-position1.zsh │ │ │ │ │ │ │ │ ├── abspath-in-command-position1b.zsh │ │ │ │ │ │ │ │ ├── abspath-in-command-position2.zsh │ │ │ │ │ │ │ │ ├── abspath-in-command-position3.zsh │ │ │ │ │ │ │ │ ├── abspath-in-command-position3b.zsh │ │ │ │ │ │ │ │ ├── abspath-in-command-position4.zsh │ │ │ │ │ │ │ │ ├── abspath-in-command-position5.zsh │ │ │ │ │ │ │ │ ├── alias-assignment1.zsh │ │ │ │ │ │ │ │ ├── alias-basic.zsh │ │ │ │ │ │ │ │ ├── alias-brackets.zsh │ │ │ │ │ │ │ │ ├── alias-command-substitution.zsh │ │ │ │ │ │ │ │ ├── alias-comment1.zsh │ │ │ │ │ │ │ │ ├── alias-comment2.zsh │ │ │ │ │ │ │ │ ├── alias-complex.zsh │ │ │ │ │ │ │ │ ├── alias-empty.zsh │ │ │ │ │ │ │ │ ├── alias-eponymous1.zsh │ │ │ │ │ │ │ │ ├── alias-eponymous2.zsh │ │ │ │ │ │ │ │ ├── alias-in-cmdsubst.zsh │ │ │ │ │ │ │ │ ├── alias-loop.zsh │ │ │ │ │ │ │ │ ├── alias-loop2.zsh │ │ │ │ │ │ │ │ ├── alias-nested-precommand.zsh │ │ │ │ │ │ │ │ ├── alias-nested.zsh │ │ │ │ │ │ │ │ ├── alias-parameter.zsh │ │ │ │ │ │ │ │ ├── alias-precommand-option-argument1.zsh │ │ │ │ │ │ │ │ ├── alias-precommand-option-argument2.zsh │ │ │ │ │ │ │ │ ├── alias-precommand-option-argument3.zsh │ │ │ │ │ │ │ │ ├── alias-precommand-option-argument4.zsh │ │ │ │ │ │ │ │ ├── alias-quoted.zsh │ │ │ │ │ │ │ │ ├── alias-redirect.zsh │ │ │ │ │ │ │ │ ├── alias-reuse1.zsh │ │ │ │ │ │ │ │ ├── alias-reuse2.zsh │ │ │ │ │ │ │ │ ├── alias-reuse3.zsh │ │ │ │ │ │ │ │ ├── alias-reuse4.zsh │ │ │ │ │ │ │ │ ├── alias-reuse5.zsh │ │ │ │ │ │ │ │ ├── alias-self.zsh │ │ │ │ │ │ │ │ ├── alias-self2.zsh │ │ │ │ │ │ │ │ ├── alias-to-dir.zsh │ │ │ │ │ │ │ │ ├── alias-to-dir1b.zsh │ │ │ │ │ │ │ │ ├── alias-unknown-token1.zsh │ │ │ │ │ │ │ │ ├── alias-unknown-token2.zsh │ │ │ │ │ │ │ │ ├── alias.zsh │ │ │ │ │ │ │ │ ├── always1.zsh │ │ │ │ │ │ │ │ ├── always2.zsh │ │ │ │ │ │ │ │ ├── always3.zsh │ │ │ │ │ │ │ │ ├── anonymous-function.zsh │ │ │ │ │ │ │ │ ├── arg0-colon.zsh │ │ │ │ │ │ │ │ ├── arith-cmdsubst-mess.zsh │ │ │ │ │ │ │ │ ├── arith1.zsh │ │ │ │ │ │ │ │ ├── arith2.zsh │ │ │ │ │ │ │ │ ├── arithmetic-command-substitution.zsh │ │ │ │ │ │ │ │ ├── arithmetic-doubled-parens.zsh │ │ │ │ │ │ │ │ ├── arithmetic-empty.zsh │ │ │ │ │ │ │ │ ├── arithmetic-evaluation.zsh │ │ │ │ │ │ │ │ ├── arithmetic-hist-expn.zsh │ │ │ │ │ │ │ │ ├── arithmetic-invalid-chars.zsh │ │ │ │ │ │ │ │ ├── arithmetic-multiplication.zsh │ │ │ │ │ │ │ │ ├── arithmetic-nested.zsh │ │ │ │ │ │ │ │ ├── arithmetic-quoted.zsh │ │ │ │ │ │ │ │ ├── arithmetic-unclosed.zsh │ │ │ │ │ │ │ │ ├── arithmetic-unfinished.zsh │ │ │ │ │ │ │ │ ├── array-cmdsep1.zsh │ │ │ │ │ │ │ │ ├── array-cmdsep2.zsh │ │ │ │ │ │ │ │ ├── array-cmdsep3.zsh │ │ │ │ │ │ │ │ ├── assign-append.zsh │ │ │ │ │ │ │ │ ├── assign-argv.zsh │ │ │ │ │ │ │ │ ├── assign-array.zsh │ │ │ │ │ │ │ │ ├── assign-array2.zsh │ │ │ │ │ │ │ │ ├── assign-array3.zsh │ │ │ │ │ │ │ │ ├── assign-invalid-command.zsh │ │ │ │ │ │ │ │ ├── assign-not-array.zsh │ │ │ │ │ │ │ │ ├── assign-not-array2.zsh │ │ │ │ │ │ │ │ ├── assign-quoted-cmdsubst.zsh │ │ │ │ │ │ │ │ ├── assign-semicolon.zsh │ │ │ │ │ │ │ │ ├── assign-subshell.zsh │ │ │ │ │ │ │ │ ├── assign-value-quote1.zsh │ │ │ │ │ │ │ │ ├── assign-value-quote2.zsh │ │ │ │ │ │ │ │ ├── assign.zsh │ │ │ │ │ │ │ │ ├── assignment-before-resword1.zsh │ │ │ │ │ │ │ │ ├── assignment-before-resword2.zsh │ │ │ │ │ │ │ │ ├── assignment-before-resword3.zsh │ │ │ │ │ │ │ │ ├── assignment-before-resword4.zsh │ │ │ │ │ │ │ │ ├── assignment-before-resword5.zsh │ │ │ │ │ │ │ │ ├── assignment-quoted.zsh │ │ │ │ │ │ │ │ ├── back-quoted-argument.zsh │ │ │ │ │ │ │ │ ├── back-quoted-open.zsh │ │ │ │ │ │ │ │ ├── backslash-continuation.zsh │ │ │ │ │ │ │ │ ├── backslash-continuation2.zsh │ │ │ │ │ │ │ │ ├── backslash-space.zsh │ │ │ │ │ │ │ │ ├── backslash.zsh │ │ │ │ │ │ │ │ ├── bang-assign-array.zsh │ │ │ │ │ │ │ │ ├── bang-assign-scalar.zsh │ │ │ │ │ │ │ │ ├── bang-pipeline.zsh │ │ │ │ │ │ │ │ ├── block-assignment-no-command.zsh │ │ │ │ │ │ │ │ ├── braces1.zsh │ │ │ │ │ │ │ │ ├── braces2.zsh │ │ │ │ │ │ │ │ ├── brackets-matching1.zsh │ │ │ │ │ │ │ │ ├── brackets-matching2.zsh │ │ │ │ │ │ │ │ ├── brackets-mismatch1.zsh │ │ │ │ │ │ │ │ ├── brackets-mismatch10-if-negative.zsh │ │ │ │ │ │ │ │ ├── brackets-mismatch2.zsh │ │ │ │ │ │ │ │ ├── brackets-mismatch3.zsh │ │ │ │ │ │ │ │ ├── brackets-mismatch4.zsh │ │ │ │ │ │ │ │ ├── brackets-mismatch5.zsh │ │ │ │ │ │ │ │ ├── brackets-mismatch6.zsh │ │ │ │ │ │ │ │ ├── brackets-mismatch7.zsh │ │ │ │ │ │ │ │ ├── brackets-mismatch8-if-positive.zsh │ │ │ │ │ │ │ │ ├── brackets-mismatch8.zsh │ │ │ │ │ │ │ │ ├── brackets-mismatch9-if-positive.zsh │ │ │ │ │ │ │ │ ├── brackets-premature-termination.zsh │ │ │ │ │ │ │ │ ├── cdpath-abspath.zsh │ │ │ │ │ │ │ │ ├── cmdpos-elision-partial.zsh │ │ │ │ │ │ │ │ ├── command-substitution-adjacent.zsh │ │ │ │ │ │ │ │ ├── command-substitution-in-assignment.zsh │ │ │ │ │ │ │ │ ├── command-substitution-unclosed.zsh │ │ │ │ │ │ │ │ ├── commandseparator.zsh │ │ │ │ │ │ │ │ ├── comment-followed.zsh │ │ │ │ │ │ │ │ ├── comment-leading.zsh │ │ │ │ │ │ │ │ ├── comment-off.zsh │ │ │ │ │ │ │ │ ├── comments.zsh │ │ │ │ │ │ │ │ ├── commmand-parameter.zsh │ │ │ │ │ │ │ │ ├── control-flow.zsh │ │ │ │ │ │ │ │ ├── control-flow2.zsh │ │ │ │ │ │ │ │ ├── control-flow3.zsh │ │ │ │ │ │ │ │ ├── cthulhu.zsh │ │ │ │ │ │ │ │ ├── dinbrack1.zsh │ │ │ │ │ │ │ │ ├── dirs_blacklist.zsh │ │ │ │ │ │ │ │ ├── dollar-dollar.zsh │ │ │ │ │ │ │ │ ├── dollar-noise.zsh │ │ │ │ │ │ │ │ ├── dollar-paren.zsh │ │ │ │ │ │ │ │ ├── dollar-quoted.zsh │ │ │ │ │ │ │ │ ├── dollar-quoted2.zsh │ │ │ │ │ │ │ │ ├── dollar-quoted3.zsh │ │ │ │ │ │ │ │ ├── double-hyphen-option.zsh │ │ │ │ │ │ │ │ ├── double-quoted.zsh │ │ │ │ │ │ │ │ ├── double-quoted2.zsh │ │ │ │ │ │ │ │ ├── double-quoted3.zsh │ │ │ │ │ │ │ │ ├── double-quoted4.zsh │ │ │ │ │ │ │ │ ├── empty-command-newline.zsh │ │ │ │ │ │ │ │ ├── empty-command.zsh │ │ │ │ │ │ │ │ ├── empty-command2.zsh │ │ │ │ │ │ │ │ ├── empty-line.zsh │ │ │ │ │ │ │ │ ├── equals1.zsh │ │ │ │ │ │ │ │ ├── equals2.zsh │ │ │ │ │ │ │ │ ├── equals3.zsh │ │ │ │ │ │ │ │ ├── equals4.zsh │ │ │ │ │ │ │ │ ├── escaped-single-quote.zsh │ │ │ │ │ │ │ │ ├── exec-redirection1.zsh │ │ │ │ │ │ │ │ ├── fd-target-not-filename.zsh │ │ │ │ │ │ │ │ ├── function-altsyntax.zsh │ │ │ │ │ │ │ │ ├── function-named1.zsh │ │ │ │ │ │ │ │ ├── function-named2.zsh │ │ │ │ │ │ │ │ ├── function.zsh │ │ │ │ │ │ │ │ ├── glob.zsh │ │ │ │ │ │ │ │ ├── global-alias1.zsh │ │ │ │ │ │ │ │ ├── globs-with-quoting.zsh │ │ │ │ │ │ │ │ ├── hashed-command.zsh │ │ │ │ │ │ │ │ ├── history-double-quoted-escaped.zsh │ │ │ │ │ │ │ │ ├── history-double-quoted-followed.zsh │ │ │ │ │ │ │ │ ├── history-double-quoted-no.zsh │ │ │ │ │ │ │ │ ├── history-double-quoted-unescaped.zsh │ │ │ │ │ │ │ │ ├── history-double-quoted-yes.zsh │ │ │ │ │ │ │ │ ├── history-expansion.zsh │ │ │ │ │ │ │ │ ├── history-expansion2.zsh │ │ │ │ │ │ │ │ ├── inheritance.zsh │ │ │ │ │ │ │ │ ├── jobsubst-isnt-glob.zsh │ │ │ │ │ │ │ │ ├── jobsubst-isnt-glob2.zsh │ │ │ │ │ │ │ │ ├── loop-newline.zsh │ │ │ │ │ │ │ │ ├── meta-no-eval1.zsh │ │ │ │ │ │ │ │ ├── meta-no-eval2.zsh │ │ │ │ │ │ │ │ ├── multiline-array-assignment1.zsh │ │ │ │ │ │ │ │ ├── multiline-string.zsh │ │ │ │ │ │ │ │ ├── multiline-string2.zsh │ │ │ │ │ │ │ │ ├── multios-negates-globbing.zsh │ │ │ │ │ │ │ │ ├── multios-negates-globbing2.zsh │ │ │ │ │ │ │ │ ├── multiple-quotes.zsh │ │ │ │ │ │ │ │ ├── multiple-redirections.zsh │ │ │ │ │ │ │ │ ├── noglob-alias.zsh │ │ │ │ │ │ │ │ ├── noglob-always.zsh │ │ │ │ │ │ │ │ ├── noglob1.zsh │ │ │ │ │ │ │ │ ├── noglob2.zsh │ │ │ │ │ │ │ │ ├── noglob3.zsh │ │ │ │ │ │ │ │ ├── noglob4.zsh │ │ │ │ │ │ │ │ ├── null-exec.zsh │ │ │ │ │ │ │ │ ├── null-exec2-printenv.zsh │ │ │ │ │ │ │ │ ├── number_range-glob.zsh │ │ │ │ │ │ │ │ ├── off-by-one.zsh │ │ │ │ │ │ │ │ ├── opt-shwordsplit1.zsh │ │ │ │ │ │ │ │ ├── optimized-cmdsubst-input.zsh │ │ │ │ │ │ │ │ ├── option-dollar-quote-isnt-filename.zsh │ │ │ │ │ │ │ │ ├── option-path_dirs.zsh │ │ │ │ │ │ │ │ ├── option-with-quotes.zsh │ │ │ │ │ │ │ │ ├── order-path-after-dollar.zsh │ │ │ │ │ │ │ │ ├── order-path-before-globbing.zsh │ │ │ │ │ │ │ │ ├── param-positional-in-array-append.zsh │ │ │ │ │ │ │ │ ├── param-precommand-option-argument1.zsh │ │ │ │ │ │ │ │ ├── param-precommand-option-argument3.zsh │ │ │ │ │ │ │ │ ├── parameter-elision-command-word.zsh │ │ │ │ │ │ │ │ ├── parameter-expansion-shwordsplit.zsh │ │ │ │ │ │ │ │ ├── parameter-expansion-untokenized1.zsh │ │ │ │ │ │ │ │ ├── parameter-expansion-untokenized2.zsh │ │ │ │ │ │ │ │ ├── parameter-star.zsh │ │ │ │ │ │ │ │ ├── parameter-to-global-alias.zsh │ │ │ │ │ │ │ │ ├── parameter-value-contains-command-position1.zsh │ │ │ │ │ │ │ │ ├── parameter-value-contains-command-position2.zsh │ │ │ │ │ │ │ │ ├── pasted-quotes.zsh │ │ │ │ │ │ │ │ ├── path-broken-symlink.zsh │ │ │ │ │ │ │ │ ├── path-dollared-word.zsh │ │ │ │ │ │ │ │ ├── path-dollared-word2.zsh │ │ │ │ │ │ │ │ ├── path-dollared-word3.zsh │ │ │ │ │ │ │ │ ├── path-dollared-word3b.zsh │ │ │ │ │ │ │ │ ├── path-dollared-word4.zsh │ │ │ │ │ │ │ │ ├── path-mixed-quoting.zsh │ │ │ │ │ │ │ │ ├── path-separators.zsh │ │ │ │ │ │ │ │ ├── path-separators2.zsh │ │ │ │ │ │ │ │ ├── path-space.zsh │ │ │ │ │ │ │ │ ├── path-tilde-home.zsh │ │ │ │ │ │ │ │ ├── path-tilde-home2.zsh │ │ │ │ │ │ │ │ ├── path-tilde-home3.zsh │ │ │ │ │ │ │ │ ├── path-tilde-named.zsh │ │ │ │ │ │ │ │ ├── path.zsh │ │ │ │ │ │ │ │ ├── path_prefix.zsh │ │ │ │ │ │ │ │ ├── path_prefix2.zsh │ │ │ │ │ │ │ │ ├── path_prefix3.zsh │ │ │ │ │ │ │ │ ├── plain-file-in-command-position.zsh │ │ │ │ │ │ │ │ ├── precommand-killing1.zsh │ │ │ │ │ │ │ │ ├── precommand-killing2.zsh │ │ │ │ │ │ │ │ ├── precommand-then-assignment.zsh │ │ │ │ │ │ │ │ ├── precommand-type1.zsh │ │ │ │ │ │ │ │ ├── precommand-type2.zsh │ │ │ │ │ │ │ │ ├── precommand-type3.zsh │ │ │ │ │ │ │ │ ├── precommand-uninstalled.zsh │ │ │ │ │ │ │ │ ├── precommand-unknown-option.zsh │ │ │ │ │ │ │ │ ├── precommand.zsh │ │ │ │ │ │ │ │ ├── precommand2.zsh │ │ │ │ │ │ │ │ ├── precommand3.zsh │ │ │ │ │ │ │ │ ├── precommand4.zsh │ │ │ │ │ │ │ │ ├── prefix-redirection.zsh │ │ │ │ │ │ │ │ ├── process-substitution-after-redirection.zsh │ │ │ │ │ │ │ │ ├── process-substitution-redirection-isnt-globbing.zsh │ │ │ │ │ │ │ │ ├── process-substitution.zsh │ │ │ │ │ │ │ │ ├── process-substitution2.zsh │ │ │ │ │ │ │ │ ├── quoted-command-substitution-empty.zsh │ │ │ │ │ │ │ │ ├── quoted-redirection-in-command-word.zsh │ │ │ │ │ │ │ │ ├── rc-quotes.zsh │ │ │ │ │ │ │ │ ├── redirection-comment.zsh │ │ │ │ │ │ │ │ ├── redirection-from-param.zsh │ │ │ │ │ │ │ │ ├── redirection-in-cmdsubst.zsh │ │ │ │ │ │ │ │ ├── redirection-inhibits-elision.zsh │ │ │ │ │ │ │ │ ├── redirection-is-not-option.zsh │ │ │ │ │ │ │ │ ├── redirection-special-cases.zsh │ │ │ │ │ │ │ │ ├── redirection.zsh │ │ │ │ │ │ │ │ ├── redirection2.zsh │ │ │ │ │ │ │ │ ├── redirection3.zsh │ │ │ │ │ │ │ │ ├── reserved-word.zsh │ │ │ │ │ │ │ │ ├── simple-command.zsh │ │ │ │ │ │ │ │ ├── simple-redirection.zsh │ │ │ │ │ │ │ │ ├── subshell.zsh │ │ │ │ │ │ │ │ ├── sudo-command.zsh │ │ │ │ │ │ │ │ ├── sudo-comment.zsh │ │ │ │ │ │ │ │ ├── sudo-longopt.zsh │ │ │ │ │ │ │ │ ├── sudo-redirection.zsh │ │ │ │ │ │ │ │ ├── sudo-redirection2.zsh │ │ │ │ │ │ │ │ ├── sudo-redirection3.zsh │ │ │ │ │ │ │ │ ├── tilde-command-word.zsh │ │ │ │ │ │ │ │ ├── time-and-nocorrect1.zsh │ │ │ │ │ │ │ │ ├── time-and-nocorrect2.zsh │ │ │ │ │ │ │ │ ├── unbackslash.zsh │ │ │ │ │ │ │ │ ├── unknown-command.zsh │ │ │ │ │ │ │ │ ├── vanilla-newline.zsh │ │ │ │ │ │ │ │ └── vi-linewise-mode.zsh │ │ │ │ │ │ ├── pattern │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── pattern-highlighter.zsh │ │ │ │ │ │ │ └── test-data │ │ │ │ │ │ │ │ └── rm-rf.zsh │ │ │ │ │ │ ├── regexp │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── regexp-highlighter.zsh │ │ │ │ │ │ │ └── test-data │ │ │ │ │ │ │ │ ├── complex.zsh │ │ │ │ │ │ │ │ ├── subexpression.zsh │ │ │ │ │ │ │ │ └── word-boundary.zsh │ │ │ │ │ │ └── root │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ └── root-highlighter.zsh │ │ │ │ │ │ ├── images │ │ │ │ │ │ ├── after1-smaller.png │ │ │ │ │ │ ├── after1.png │ │ │ │ │ │ ├── after2-smaller.png │ │ │ │ │ │ ├── after2.png │ │ │ │ │ │ ├── after3-smaller.png │ │ │ │ │ │ ├── after3.png │ │ │ │ │ │ ├── after4-smaller.png │ │ │ │ │ │ ├── before1-smaller.png │ │ │ │ │ │ ├── before1.png │ │ │ │ │ │ ├── before2-smaller.png │ │ │ │ │ │ ├── before2.png │ │ │ │ │ │ ├── before3-smaller.png │ │ │ │ │ │ ├── before3.png │ │ │ │ │ │ ├── before4-smaller.png │ │ │ │ │ │ ├── preview-smaller.png │ │ │ │ │ │ └── preview.png │ │ │ │ │ │ ├── tests │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── edit-failed-tests │ │ │ │ │ │ ├── generate.zsh │ │ │ │ │ │ ├── tap-colorizer.zsh │ │ │ │ │ │ ├── tap-filter │ │ │ │ │ │ ├── test-highlighting.zsh │ │ │ │ │ │ ├── test-perfs.zsh │ │ │ │ │ │ └── test-zprof.zsh │ │ │ │ │ │ ├── zsh-syntax-highlighting.plugin.zsh │ │ │ │ │ │ └── zsh-syntax-highlighting.zsh │ │ │ │ └── themes │ │ │ │ │ ├── archcraft.zsh-theme │ │ │ │ │ ├── example.zsh-theme │ │ │ │ │ ├── powerlevel10k │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config │ │ │ │ │ │ ├── p10k-classic.zsh │ │ │ │ │ │ ├── p10k-lean-8colors.zsh │ │ │ │ │ │ ├── p10k-lean.zsh │ │ │ │ │ │ ├── p10k-pure.zsh │ │ │ │ │ │ ├── p10k-rainbow.zsh │ │ │ │ │ │ └── p10k-robbyrussell.zsh │ │ │ │ │ ├── gitstatus │ │ │ │ │ │ ├── .clang-format │ │ │ │ │ │ ├── .gitattributes │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── .vscode │ │ │ │ │ │ │ ├── c_cpp_properties.json │ │ │ │ │ │ │ └── settings.json │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── build │ │ │ │ │ │ ├── build.info │ │ │ │ │ │ ├── deps │ │ │ │ │ │ │ └── .gitkeep │ │ │ │ │ │ ├── docs │ │ │ │ │ │ │ └── listdir.md │ │ │ │ │ │ ├── gitstatus.plugin.sh │ │ │ │ │ │ ├── gitstatus.plugin.zsh │ │ │ │ │ │ ├── gitstatus.prompt.sh │ │ │ │ │ │ ├── gitstatus.prompt.zsh │ │ │ │ │ │ ├── install │ │ │ │ │ │ ├── install.info │ │ │ │ │ │ ├── mbuild │ │ │ │ │ │ ├── src │ │ │ │ │ │ │ ├── algorithm.h │ │ │ │ │ │ │ ├── arena.cc │ │ │ │ │ │ │ ├── arena.h │ │ │ │ │ │ │ ├── bits.h │ │ │ │ │ │ │ ├── check.h │ │ │ │ │ │ │ ├── check_dir_mtime.cc │ │ │ │ │ │ │ ├── check_dir_mtime.h │ │ │ │ │ │ │ ├── dir.cc │ │ │ │ │ │ │ ├── dir.h │ │ │ │ │ │ │ ├── git.cc │ │ │ │ │ │ │ ├── git.h │ │ │ │ │ │ │ ├── gitstatus.cc │ │ │ │ │ │ │ ├── index.cc │ │ │ │ │ │ │ ├── index.h │ │ │ │ │ │ │ ├── logging.cc │ │ │ │ │ │ │ ├── logging.h │ │ │ │ │ │ │ ├── options.cc │ │ │ │ │ │ │ ├── options.h │ │ │ │ │ │ │ ├── print.h │ │ │ │ │ │ │ ├── repo.cc │ │ │ │ │ │ │ ├── repo.h │ │ │ │ │ │ │ ├── repo_cache.cc │ │ │ │ │ │ │ ├── repo_cache.h │ │ │ │ │ │ │ ├── request.cc │ │ │ │ │ │ │ ├── request.h │ │ │ │ │ │ │ ├── response.cc │ │ │ │ │ │ │ ├── response.h │ │ │ │ │ │ │ ├── scope_guard.h │ │ │ │ │ │ │ ├── serialization.h │ │ │ │ │ │ │ ├── stat.h │ │ │ │ │ │ │ ├── string_cmp.h │ │ │ │ │ │ │ ├── string_view.h │ │ │ │ │ │ │ ├── strings.cc │ │ │ │ │ │ │ ├── strings.h │ │ │ │ │ │ │ ├── tag_db.cc │ │ │ │ │ │ │ ├── tag_db.h │ │ │ │ │ │ │ ├── thread_pool.cc │ │ │ │ │ │ │ ├── thread_pool.h │ │ │ │ │ │ │ ├── time.h │ │ │ │ │ │ │ ├── timer.cc │ │ │ │ │ │ │ ├── timer.h │ │ │ │ │ │ │ └── tribool.h │ │ │ │ │ │ └── usrbin │ │ │ │ │ │ │ └── .gitkeep │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── configure.zsh │ │ │ │ │ │ ├── configure.zsh.zwc │ │ │ │ │ │ ├── icons.zsh │ │ │ │ │ │ ├── icons.zsh.zwc │ │ │ │ │ │ ├── p10k.zsh │ │ │ │ │ │ ├── p10k.zsh.zwc │ │ │ │ │ │ ├── parser.zsh │ │ │ │ │ │ ├── parser.zsh.zwc │ │ │ │ │ │ ├── wizard.zsh │ │ │ │ │ │ ├── worker.zsh │ │ │ │ │ │ └── worker.zsh.zwc │ │ │ │ │ ├── powerlevel10k.zsh-theme │ │ │ │ │ ├── powerlevel10k.zsh-theme.zwc │ │ │ │ │ ├── powerlevel9k.zsh-theme │ │ │ │ │ ├── powerlevel9k.zsh-theme.zwc │ │ │ │ │ ├── prompt_powerlevel10k_setup │ │ │ │ │ └── prompt_powerlevel9k_setup │ │ │ │ │ ├── spaceship-prompt │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── hooks.zsh │ │ │ │ │ │ ├── section.zsh │ │ │ │ │ │ └── utils.zsh │ │ │ │ │ ├── sections │ │ │ │ │ │ ├── aws.zsh │ │ │ │ │ │ ├── battery.zsh │ │ │ │ │ │ ├── char.zsh │ │ │ │ │ │ ├── conda.zsh │ │ │ │ │ │ ├── dir.zsh │ │ │ │ │ │ ├── docker.zsh │ │ │ │ │ │ ├── docker_context.zsh │ │ │ │ │ │ ├── dotnet.zsh │ │ │ │ │ │ ├── elixir.zsh │ │ │ │ │ │ ├── elm.zsh │ │ │ │ │ │ ├── ember.zsh │ │ │ │ │ │ ├── exec_time.zsh │ │ │ │ │ │ ├── exit_code.zsh │ │ │ │ │ │ ├── gcloud.zsh │ │ │ │ │ │ ├── git.zsh │ │ │ │ │ │ ├── git_branch.zsh │ │ │ │ │ │ ├── git_status.zsh │ │ │ │ │ │ ├── golang.zsh │ │ │ │ │ │ ├── gradle.zsh │ │ │ │ │ │ ├── haskell.zsh │ │ │ │ │ │ ├── hg.zsh │ │ │ │ │ │ ├── hg_branch.zsh │ │ │ │ │ │ ├── hg_status.zsh │ │ │ │ │ │ ├── host.zsh │ │ │ │ │ │ ├── jobs.zsh │ │ │ │ │ │ ├── julia.zsh │ │ │ │ │ │ ├── kubectl.zsh │ │ │ │ │ │ ├── kubectl_context.zsh │ │ │ │ │ │ ├── kubectl_version.zsh │ │ │ │ │ │ ├── line_sep.zsh │ │ │ │ │ │ ├── maven.zsh │ │ │ │ │ │ ├── node.zsh │ │ │ │ │ │ ├── package.zsh │ │ │ │ │ │ ├── php.zsh │ │ │ │ │ │ ├── pyenv.zsh │ │ │ │ │ │ ├── ruby.zsh │ │ │ │ │ │ ├── rust.zsh │ │ │ │ │ │ ├── swift.zsh │ │ │ │ │ │ ├── terraform.zsh │ │ │ │ │ │ ├── time.zsh │ │ │ │ │ │ ├── user.zsh │ │ │ │ │ │ ├── venv.zsh │ │ │ │ │ │ ├── vi_mode.zsh │ │ │ │ │ │ └── xcode.zsh │ │ │ │ │ ├── spaceship.zsh │ │ │ │ │ └── spaceship.zsh-theme │ │ │ │ │ └── spaceship.zsh-theme │ │ │ ├── lib │ │ │ │ ├── bzr.zsh │ │ │ │ ├── cli.zsh │ │ │ │ ├── clipboard.zsh │ │ │ │ ├── compfix.zsh │ │ │ │ ├── completion.zsh │ │ │ │ ├── correction.zsh │ │ │ │ ├── diagnostics.zsh │ │ │ │ ├── directories.zsh │ │ │ │ ├── functions.zsh │ │ │ │ ├── git.zsh │ │ │ │ ├── grep.zsh │ │ │ │ ├── history.zsh │ │ │ │ ├── key-bindings.zsh │ │ │ │ ├── misc.zsh │ │ │ │ ├── nvm.zsh │ │ │ │ ├── prompt_info_functions.zsh │ │ │ │ ├── spectrum.zsh │ │ │ │ ├── termsupport.zsh │ │ │ │ ├── theme-and-appearance.zsh │ │ │ │ └── vcs_info.zsh │ │ │ ├── log │ │ │ │ └── .gitkeep │ │ │ ├── oh-my-zsh.sh │ │ │ ├── plugins │ │ │ │ ├── 1password │ │ │ │ │ ├── 1password.plugin.zsh │ │ │ │ │ ├── README.md │ │ │ │ │ ├── _opswd │ │ │ │ │ └── opswd │ │ │ │ ├── adb │ │ │ │ │ ├── README.md │ │ │ │ │ └── _adb │ │ │ │ ├── ag │ │ │ │ │ ├── README.md │ │ │ │ │ └── _ag │ │ │ │ ├── alias-finder │ │ │ │ │ ├── README.md │ │ │ │ │ └── alias-finder.plugin.zsh │ │ │ │ ├── aliases │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── README.md │ │ │ │ │ ├── aliases.plugin.zsh │ │ │ │ │ ├── cheatsheet.py │ │ │ │ │ └── termcolor.py │ │ │ │ ├── ansible │ │ │ │ │ ├── README.md │ │ │ │ │ └── ansible.plugin.zsh │ │ │ │ ├── ant │ │ │ │ │ ├── README.md │ │ │ │ │ ├── _ant │ │ │ │ │ └── ant.plugin.zsh │ │ │ │ ├── apache2-macports │ │ │ │ │ ├── README.md │ │ │ │ │ └── apache2-macports.plugin.zsh │ │ │ │ ├── arcanist │ │ │ │ │ ├── README.md │ │ │ │ │ └── arcanist.plugin.zsh │ │ │ │ ├── archlinux │ │ │ │ │ ├── README.md │ │ │ │ │ └── archlinux.plugin.zsh │ │ │ │ ├── asdf │ │ │ │ │ ├── README.md │ │ │ │ │ └── asdf.plugin.zsh │ │ │ │ ├── autoenv │ │ │ │ │ ├── README.md │ │ │ │ │ └── autoenv.plugin.zsh │ │ │ │ ├── autojump │ │ │ │ │ ├── README.md │ │ │ │ │ └── autojump.plugin.zsh │ │ │ │ ├── autopep8 │ │ │ │ │ ├── README.md │ │ │ │ │ └── _autopep8 │ │ │ │ ├── aws │ │ │ │ │ ├── README.md │ │ │ │ │ └── aws.plugin.zsh │ │ │ │ ├── battery │ │ │ │ │ ├── README.md │ │ │ │ │ └── battery.plugin.zsh │ │ │ │ ├── bazel │ │ │ │ │ ├── README.md │ │ │ │ │ └── _bazel │ │ │ │ ├── bbedit │ │ │ │ │ ├── README.md │ │ │ │ │ └── bbedit.plugin.zsh │ │ │ │ ├── bedtools │ │ │ │ │ ├── README.md │ │ │ │ │ └── _bedtools │ │ │ │ ├── bgnotify │ │ │ │ │ ├── README.md │ │ │ │ │ └── bgnotify.plugin.zsh │ │ │ │ ├── bower │ │ │ │ │ ├── README.md │ │ │ │ │ ├── _bower │ │ │ │ │ └── bower.plugin.zsh │ │ │ │ ├── branch │ │ │ │ │ ├── README.md │ │ │ │ │ └── branch.plugin.zsh │ │ │ │ ├── brew │ │ │ │ │ ├── README.md │ │ │ │ │ └── brew.plugin.zsh │ │ │ │ ├── bundler │ │ │ │ │ ├── README.md │ │ │ │ │ ├── _bundler │ │ │ │ │ └── bundler.plugin.zsh │ │ │ │ ├── cabal │ │ │ │ │ ├── README.md │ │ │ │ │ └── cabal.plugin.zsh │ │ │ │ ├── cake │ │ │ │ │ ├── README.md │ │ │ │ │ └── cake.plugin.zsh │ │ │ │ ├── cakephp3 │ │ │ │ │ ├── README.md │ │ │ │ │ └── cakephp3.plugin.zsh │ │ │ │ ├── capistrano │ │ │ │ │ ├── README.md │ │ │ │ │ ├── _capistrano │ │ │ │ │ └── capistrano.plugin.zsh │ │ │ │ ├── cask │ │ │ │ │ ├── README.md │ │ │ │ │ └── cask.plugin.zsh │ │ │ │ ├── catimg │ │ │ │ │ ├── README.md │ │ │ │ │ ├── catimg.plugin.zsh │ │ │ │ │ ├── catimg.sh │ │ │ │ │ └── colors.png │ │ │ │ ├── celery │ │ │ │ │ ├── README.md │ │ │ │ │ └── _celery │ │ │ │ ├── charm │ │ │ │ │ ├── README.md │ │ │ │ │ └── charm.plugin.zsh │ │ │ │ ├── chruby │ │ │ │ │ ├── README.md │ │ │ │ │ └── chruby.plugin.zsh │ │ │ │ ├── chucknorris │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── README.md │ │ │ │ │ ├── chucknorris.plugin.zsh │ │ │ │ │ └── fortunes │ │ │ │ │ │ └── chucknorris │ │ │ │ ├── cloudfoundry │ │ │ │ │ ├── README.md │ │ │ │ │ └── cloudfoundry.plugin.zsh │ │ │ │ ├── codeclimate │ │ │ │ │ ├── README.md │ │ │ │ │ └── _codeclimate │ │ │ │ ├── coffee │ │ │ │ │ ├── README.md │ │ │ │ │ ├── _coffee │ │ │ │ │ └── coffee.plugin.zsh │ │ │ │ ├── colemak │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── README.md │ │ │ │ │ ├── colemak-less │ │ │ │ │ └── colemak.plugin.zsh │ │ │ │ ├── colored-man-pages │ │ │ │ │ ├── README.md │ │ │ │ │ ├── colored-man-pages.plugin.zsh │ │ │ │ │ └── nroff │ │ │ │ ├── colorize │ │ │ │ │ ├── README.md │ │ │ │ │ └── colorize.plugin.zsh │ │ │ │ ├── command-not-found │ │ │ │ │ ├── README.md │ │ │ │ │ └── command-not-found.plugin.zsh │ │ │ │ ├── common-aliases │ │ │ │ │ ├── README.md │ │ │ │ │ └── common-aliases.plugin.zsh │ │ │ │ ├── compleat │ │ │ │ │ ├── README.md │ │ │ │ │ └── compleat.plugin.zsh │ │ │ │ ├── composer │ │ │ │ │ ├── README.md │ │ │ │ │ └── composer.plugin.zsh │ │ │ │ ├── copybuffer │ │ │ │ │ ├── README.md │ │ │ │ │ └── copybuffer.plugin.zsh │ │ │ │ ├── copyfile │ │ │ │ │ ├── README.md │ │ │ │ │ └── copyfile.plugin.zsh │ │ │ │ ├── copypath │ │ │ │ │ ├── README.md │ │ │ │ │ └── copypath.plugin.zsh │ │ │ │ ├── cp │ │ │ │ │ ├── README.md │ │ │ │ │ └── cp.plugin.zsh │ │ │ │ ├── cpanm │ │ │ │ │ ├── README.md │ │ │ │ │ └── _cpanm │ │ │ │ ├── dash │ │ │ │ │ ├── README.md │ │ │ │ │ └── dash.plugin.zsh │ │ │ │ ├── debian │ │ │ │ │ ├── README.md │ │ │ │ │ └── debian.plugin.zsh │ │ │ │ ├── deno │ │ │ │ │ ├── README.md │ │ │ │ │ └── deno.plugin.zsh │ │ │ │ ├── dircycle │ │ │ │ │ ├── README.md │ │ │ │ │ └── dircycle.plugin.zsh │ │ │ │ ├── direnv │ │ │ │ │ ├── README.md │ │ │ │ │ └── direnv.plugin.zsh │ │ │ │ ├── dirhistory │ │ │ │ │ ├── README.md │ │ │ │ │ └── dirhistory.plugin.zsh │ │ │ │ ├── dirpersist │ │ │ │ │ ├── README.md │ │ │ │ │ └── dirpersist.plugin.zsh │ │ │ │ ├── dnf │ │ │ │ │ ├── README.md │ │ │ │ │ └── dnf.plugin.zsh │ │ │ │ ├── dnote │ │ │ │ │ ├── README.md │ │ │ │ │ └── _dnote │ │ │ │ ├── docker-compose │ │ │ │ │ ├── README.md │ │ │ │ │ ├── _docker-compose │ │ │ │ │ └── docker-compose.plugin.zsh │ │ │ │ ├── docker-machine │ │ │ │ │ ├── README.md │ │ │ │ │ ├── _docker-machine │ │ │ │ │ └── docker-machine.plugin.zsh │ │ │ │ ├── docker │ │ │ │ │ ├── README.md │ │ │ │ │ ├── _docker │ │ │ │ │ └── docker.plugin.zsh │ │ │ │ ├── doctl │ │ │ │ │ ├── README.md │ │ │ │ │ └── doctl.plugin.zsh │ │ │ │ ├── dotenv │ │ │ │ │ ├── README.md │ │ │ │ │ └── dotenv.plugin.zsh │ │ │ │ ├── dotnet │ │ │ │ │ ├── README.md │ │ │ │ │ └── dotnet.plugin.zsh │ │ │ │ ├── droplr │ │ │ │ │ ├── README.md │ │ │ │ │ └── droplr.plugin.zsh │ │ │ │ ├── drush │ │ │ │ │ ├── README.md │ │ │ │ │ ├── drush.complete.sh │ │ │ │ │ └── drush.plugin.zsh │ │ │ │ ├── eecms │ │ │ │ │ ├── README.md │ │ │ │ │ └── eecms.plugin.zsh │ │ │ │ ├── emacs │ │ │ │ │ ├── README.md │ │ │ │ │ ├── emacs.plugin.zsh │ │ │ │ │ └── emacsclient.sh │ │ │ │ ├── ember-cli │ │ │ │ │ ├── README.md │ │ │ │ │ ├── _ember-cli │ │ │ │ │ └── ember-cli.plugin.zsh │ │ │ │ ├── emoji-clock │ │ │ │ │ ├── README.md │ │ │ │ │ └── emoji-clock.plugin.zsh │ │ │ │ ├── emoji │ │ │ │ │ ├── README.md │ │ │ │ │ ├── emoji-char-definitions.zsh │ │ │ │ │ ├── emoji-data.txt │ │ │ │ │ ├── emoji.plugin.zsh │ │ │ │ │ ├── gemoji_db.json │ │ │ │ │ └── update_emoji.py │ │ │ │ ├── emotty │ │ │ │ │ ├── README.md │ │ │ │ │ ├── emotty.plugin.zsh │ │ │ │ │ ├── emotty_emoji_set.zsh │ │ │ │ │ ├── emotty_floral_set.zsh │ │ │ │ │ ├── emotty_love_set.zsh │ │ │ │ │ ├── emotty_nature_set.zsh │ │ │ │ │ ├── emotty_stellar_set.zsh │ │ │ │ │ └── emotty_zodiac_set.zsh │ │ │ │ ├── encode64 │ │ │ │ │ ├── README.md │ │ │ │ │ └── encode64.plugin.zsh │ │ │ │ ├── extract │ │ │ │ │ ├── README.md │ │ │ │ │ ├── _extract │ │ │ │ │ └── extract.plugin.zsh │ │ │ │ ├── fabric │ │ │ │ │ ├── README.md │ │ │ │ │ ├── _fab │ │ │ │ │ └── fabric.plugin.zsh │ │ │ │ ├── fancy-ctrl-z │ │ │ │ │ ├── README.md │ │ │ │ │ └── fancy-ctrl-z.plugin.zsh │ │ │ │ ├── fasd │ │ │ │ │ ├── README.md │ │ │ │ │ └── fasd.plugin.zsh │ │ │ │ ├── fastfile │ │ │ │ │ ├── README.md │ │ │ │ │ └── fastfile.plugin.zsh │ │ │ │ ├── fbterm │ │ │ │ │ ├── README.md │ │ │ │ │ └── fbterm.plugin.zsh │ │ │ │ ├── fd │ │ │ │ │ ├── README.md │ │ │ │ │ └── _fd │ │ │ │ ├── fig │ │ │ │ │ ├── README.md │ │ │ │ │ └── fig.plugin.zsh │ │ │ │ ├── firewalld │ │ │ │ │ ├── README.md │ │ │ │ │ └── firewalld.plugin.zsh │ │ │ │ ├── flutter │ │ │ │ │ ├── README.md │ │ │ │ │ └── flutter.plugin.zsh │ │ │ │ ├── fnm │ │ │ │ │ ├── README.md │ │ │ │ │ └── fnm.plugin.zsh │ │ │ │ ├── forklift │ │ │ │ │ ├── README.md │ │ │ │ │ └── forklift.plugin.zsh │ │ │ │ ├── fossil │ │ │ │ │ ├── README.md │ │ │ │ │ ├── _fossil │ │ │ │ │ └── fossil.plugin.zsh │ │ │ │ ├── frontend-search │ │ │ │ │ ├── README.md │ │ │ │ │ ├── _frontend │ │ │ │ │ └── frontend-search.plugin.zsh │ │ │ │ ├── fzf │ │ │ │ │ ├── README.md │ │ │ │ │ └── fzf.plugin.zsh │ │ │ │ ├── gas │ │ │ │ │ ├── README.md │ │ │ │ │ └── _gas │ │ │ │ ├── gatsby │ │ │ │ │ ├── README.md │ │ │ │ │ └── _gatsby │ │ │ │ ├── gcloud │ │ │ │ │ ├── README.md │ │ │ │ │ └── gcloud.plugin.zsh │ │ │ │ ├── geeknote │ │ │ │ │ ├── README.md │ │ │ │ │ ├── _geeknote │ │ │ │ │ └── geeknote.plugin.zsh │ │ │ │ ├── gem │ │ │ │ │ ├── README.md │ │ │ │ │ ├── _gem │ │ │ │ │ └── gem.plugin.zsh │ │ │ │ ├── genpass │ │ │ │ │ ├── README.md │ │ │ │ │ ├── genpass-apple │ │ │ │ │ ├── genpass-monkey │ │ │ │ │ ├── genpass-xkcd │ │ │ │ │ └── genpass.plugin.zsh │ │ │ │ ├── gh │ │ │ │ │ ├── README.md │ │ │ │ │ └── gh.plugin.zsh │ │ │ │ ├── git-auto-fetch │ │ │ │ │ ├── README.md │ │ │ │ │ └── git-auto-fetch.plugin.zsh │ │ │ │ ├── git-escape-magic │ │ │ │ │ ├── README.md │ │ │ │ │ ├── git-escape-magic │ │ │ │ │ └── git-escape-magic.plugin.zsh │ │ │ │ ├── git-extras │ │ │ │ │ ├── README.md │ │ │ │ │ └── git-extras.plugin.zsh │ │ │ │ ├── git-flow-avh │ │ │ │ │ ├── README.md │ │ │ │ │ └── git-flow-avh.plugin.zsh │ │ │ │ ├── git-flow │ │ │ │ │ ├── README.md │ │ │ │ │ ├── _git-flow │ │ │ │ │ └── git-flow.plugin.zsh │ │ │ │ ├── git-hubflow │ │ │ │ │ ├── README.md │ │ │ │ │ └── git-hubflow.plugin.zsh │ │ │ │ ├── git-lfs │ │ │ │ │ ├── README.md │ │ │ │ │ └── git-lfs.plugin.zsh │ │ │ │ ├── git-prompt │ │ │ │ │ ├── README.md │ │ │ │ │ ├── git-prompt.plugin.zsh │ │ │ │ │ └── gitstatus.py │ │ │ │ ├── git │ │ │ │ │ ├── README.md │ │ │ │ │ └── git.plugin.zsh │ │ │ │ ├── gitfast │ │ │ │ │ ├── README.md │ │ │ │ │ ├── _git │ │ │ │ │ ├── git-completion.bash │ │ │ │ │ ├── git-prompt.sh │ │ │ │ │ ├── gitfast.plugin.zsh │ │ │ │ │ └── update │ │ │ │ ├── github │ │ │ │ │ ├── README.md │ │ │ │ │ ├── _hub │ │ │ │ │ └── github.plugin.zsh │ │ │ │ ├── gitignore │ │ │ │ │ ├── README.md │ │ │ │ │ └── gitignore.plugin.zsh │ │ │ │ ├── glassfish │ │ │ │ │ ├── README.md │ │ │ │ │ ├── _asadmin │ │ │ │ │ └── glassfish.plugin.zsh │ │ │ │ ├── globalias │ │ │ │ │ ├── README.md │ │ │ │ │ └── globalias.plugin.zsh │ │ │ │ ├── gnu-utils │ │ │ │ │ ├── README.md │ │ │ │ │ └── gnu-utils.plugin.zsh │ │ │ │ ├── golang │ │ │ │ │ ├── README.md │ │ │ │ │ ├── _golang │ │ │ │ │ ├── golang.plugin.zsh │ │ │ │ │ └── templates │ │ │ │ │ │ ├── package.txt │ │ │ │ │ │ └── search.txt │ │ │ │ ├── gpg-agent │ │ │ │ │ ├── README.md │ │ │ │ │ └── gpg-agent.plugin.zsh │ │ │ │ ├── gradle │ │ │ │ │ ├── README.md │ │ │ │ │ ├── _gradle │ │ │ │ │ └── gradle.plugin.zsh │ │ │ │ ├── grails │ │ │ │ │ ├── README.md │ │ │ │ │ └── grails.plugin.zsh │ │ │ │ ├── grc │ │ │ │ │ ├── README.md │ │ │ │ │ └── grc.plugin.zsh │ │ │ │ ├── grunt │ │ │ │ │ ├── README.md │ │ │ │ │ └── grunt.plugin.zsh │ │ │ │ ├── gulp │ │ │ │ │ ├── README.md │ │ │ │ │ └── gulp.plugin.zsh │ │ │ │ ├── hanami │ │ │ │ │ ├── README.md │ │ │ │ │ └── hanami.plugin.zsh │ │ │ │ ├── helm │ │ │ │ │ ├── README.md │ │ │ │ │ └── helm.plugin.zsh │ │ │ │ ├── heroku │ │ │ │ │ ├── README.md │ │ │ │ │ └── heroku.plugin.zsh │ │ │ │ ├── history-substring-search │ │ │ │ │ ├── README.md │ │ │ │ │ ├── history-substring-search.plugin.zsh │ │ │ │ │ ├── history-substring-search.zsh │ │ │ │ │ └── update-from-upstream.zsh │ │ │ │ ├── history │ │ │ │ │ ├── README.md │ │ │ │ │ └── history.plugin.zsh │ │ │ │ ├── hitchhiker │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── README.md │ │ │ │ │ ├── fortunes │ │ │ │ │ │ └── hitchhiker │ │ │ │ │ └── hitchhiker.plugin.zsh │ │ │ │ ├── hitokoto │ │ │ │ │ ├── README.md │ │ │ │ │ └── hitokoto.plugin.zsh │ │ │ │ ├── homestead │ │ │ │ │ ├── README.md │ │ │ │ │ └── homestead.plugin.zsh │ │ │ │ ├── httpie │ │ │ │ │ ├── README.md │ │ │ │ │ └── _httpie │ │ │ │ ├── invoke │ │ │ │ │ ├── README.md │ │ │ │ │ └── invoke.plugin.zsh │ │ │ │ ├── ionic │ │ │ │ │ ├── README.md │ │ │ │ │ └── ionic.plugin.zsh │ │ │ │ ├── ipfs │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ └── _ipfs │ │ │ │ ├── isodate │ │ │ │ │ ├── README.md │ │ │ │ │ └── isodate.plugin.zsh │ │ │ │ ├── istioctl │ │ │ │ │ ├── README.md │ │ │ │ │ └── istioctl.plugin.zsh │ │ │ │ ├── iterm2 │ │ │ │ │ ├── README.md │ │ │ │ │ └── iterm2.plugin.zsh │ │ │ │ ├── jake-node │ │ │ │ │ ├── README.md │ │ │ │ │ └── jake-node.plugin.zsh │ │ │ │ ├── jenv │ │ │ │ │ ├── README.md │ │ │ │ │ └── jenv.plugin.zsh │ │ │ │ ├── jfrog │ │ │ │ │ ├── README.md │ │ │ │ │ └── jfrog.plugin.zsh │ │ │ │ ├── jhbuild │ │ │ │ │ ├── README.md │ │ │ │ │ └── jhbuild.plugin.zsh │ │ │ │ ├── jira │ │ │ │ │ ├── README.md │ │ │ │ │ ├── _jira │ │ │ │ │ └── jira.plugin.zsh │ │ │ │ ├── jruby │ │ │ │ │ ├── README.md │ │ │ │ │ └── jruby.plugin.zsh │ │ │ │ ├── jsontools │ │ │ │ │ ├── README.md │ │ │ │ │ └── jsontools.plugin.zsh │ │ │ │ ├── juju │ │ │ │ │ ├── README.md │ │ │ │ │ └── juju.plugin.zsh │ │ │ │ ├── jump │ │ │ │ │ ├── README.md │ │ │ │ │ └── jump.plugin.zsh │ │ │ │ ├── kate │ │ │ │ │ ├── README.md │ │ │ │ │ └── kate.plugin.zsh │ │ │ │ ├── keychain │ │ │ │ │ ├── README.md │ │ │ │ │ └── keychain.plugin.zsh │ │ │ │ ├── kitchen │ │ │ │ │ ├── README.md │ │ │ │ │ └── _kitchen │ │ │ │ ├── kn │ │ │ │ │ ├── README.md │ │ │ │ │ └── kn.plugin.zsh │ │ │ │ ├── knife │ │ │ │ │ ├── README.md │ │ │ │ │ └── _knife │ │ │ │ ├── knife_ssh │ │ │ │ │ ├── README.md │ │ │ │ │ └── knife_ssh.plugin.zsh │ │ │ │ ├── kops │ │ │ │ │ ├── README.md │ │ │ │ │ └── kops.plugin.zsh │ │ │ │ ├── kube-ps1 │ │ │ │ │ ├── README.md │ │ │ │ │ └── kube-ps1.plugin.zsh │ │ │ │ ├── kubectl │ │ │ │ │ ├── README.md │ │ │ │ │ └── kubectl.plugin.zsh │ │ │ │ ├── kubectx │ │ │ │ │ ├── README.md │ │ │ │ │ ├── kubectx.plugin.zsh │ │ │ │ │ ├── prod.png │ │ │ │ │ └── stage.png │ │ │ │ ├── lando │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ └── lando.plugin.zsh │ │ │ │ ├── laravel │ │ │ │ │ ├── README.md │ │ │ │ │ ├── _artisan │ │ │ │ │ └── laravel.plugin.zsh │ │ │ │ ├── laravel4 │ │ │ │ │ ├── README.md │ │ │ │ │ └── laravel4.plugin.zsh │ │ │ │ ├── laravel5 │ │ │ │ │ ├── README.md │ │ │ │ │ └── laravel5.plugin.zsh │ │ │ │ ├── last-working-dir │ │ │ │ │ ├── README.md │ │ │ │ │ └── last-working-dir.plugin.zsh │ │ │ │ ├── lein │ │ │ │ │ ├── README.md │ │ │ │ │ └── _lein │ │ │ │ ├── lighthouse │ │ │ │ │ ├── README.md │ │ │ │ │ └── lighthouse.plugin.zsh │ │ │ │ ├── lol │ │ │ │ │ ├── README.md │ │ │ │ │ └── lol.plugin.zsh │ │ │ │ ├── lpass │ │ │ │ │ ├── README.md │ │ │ │ │ └── _lpass │ │ │ │ ├── lxd │ │ │ │ │ ├── README.md │ │ │ │ │ └── lxd.plugin.zsh │ │ │ │ ├── macos │ │ │ │ │ ├── README.md │ │ │ │ │ ├── _security │ │ │ │ │ ├── macos.plugin.zsh │ │ │ │ │ ├── music │ │ │ │ │ └── spotify │ │ │ │ ├── macports │ │ │ │ │ ├── README.md │ │ │ │ │ ├── _port │ │ │ │ │ └── macports.plugin.zsh │ │ │ │ ├── magic-enter │ │ │ │ │ ├── README.md │ │ │ │ │ └── magic-enter.plugin.zsh │ │ │ │ ├── man │ │ │ │ │ ├── README.md │ │ │ │ │ └── man.plugin.zsh │ │ │ │ ├── marked2 │ │ │ │ │ ├── README.md │ │ │ │ │ └── marked2.plugin.zsh │ │ │ │ ├── mercurial │ │ │ │ │ ├── README.md │ │ │ │ │ └── mercurial.plugin.zsh │ │ │ │ ├── meteor │ │ │ │ │ ├── README.md │ │ │ │ │ ├── _meteor │ │ │ │ │ └── meteor.plugin.zsh │ │ │ │ ├── microk8s │ │ │ │ │ ├── README.md │ │ │ │ │ └── microk8s.plugin.zsh │ │ │ │ ├── minikube │ │ │ │ │ ├── README.md │ │ │ │ │ └── minikube.plugin.zsh │ │ │ │ ├── mix-fast │ │ │ │ │ ├── README.md │ │ │ │ │ └── mix-fast.plugin.zsh │ │ │ │ ├── mix │ │ │ │ │ ├── README.md │ │ │ │ │ └── _mix │ │ │ │ ├── mongocli │ │ │ │ │ ├── README.md │ │ │ │ │ └── mongocli.plugin.zsh │ │ │ │ ├── mosh │ │ │ │ │ ├── README.md │ │ │ │ │ └── mosh.plugin.zsh │ │ │ │ ├── multipass │ │ │ │ │ ├── README.md │ │ │ │ │ ├── _multipass │ │ │ │ │ └── multipass.plugin.zsh │ │ │ │ ├── mvn │ │ │ │ │ ├── README.md │ │ │ │ │ └── mvn.plugin.zsh │ │ │ │ ├── mysql-macports │ │ │ │ │ ├── README.md │ │ │ │ │ └── mysql-macports.plugin.zsh │ │ │ │ ├── n98-magerun │ │ │ │ │ ├── README.md │ │ │ │ │ └── n98-magerun.plugin.zsh │ │ │ │ ├── nanoc │ │ │ │ │ ├── README.md │ │ │ │ │ ├── _nanoc │ │ │ │ │ └── nanoc.plugin.zsh │ │ │ │ ├── ng │ │ │ │ │ ├── README.md │ │ │ │ │ └── _ng │ │ │ │ ├── nmap │ │ │ │ │ ├── README.md │ │ │ │ │ └── nmap.plugin.zsh │ │ │ │ ├── node │ │ │ │ │ ├── README.md │ │ │ │ │ └── node.plugin.zsh │ │ │ │ ├── nomad │ │ │ │ │ ├── README.md │ │ │ │ │ └── _nomad │ │ │ │ ├── npm │ │ │ │ │ ├── README.md │ │ │ │ │ └── npm.plugin.zsh │ │ │ │ ├── nvm │ │ │ │ │ ├── README.md │ │ │ │ │ ├── _nvm │ │ │ │ │ └── nvm.plugin.zsh │ │ │ │ ├── oc │ │ │ │ │ ├── README.md │ │ │ │ │ └── oc.plugin.zsh │ │ │ │ ├── octozen │ │ │ │ │ ├── README.md │ │ │ │ │ └── octozen.plugin.zsh │ │ │ │ ├── operator-sdk │ │ │ │ │ ├── README.md │ │ │ │ │ └── operator-sdk.plugin.zsh │ │ │ │ ├── otp │ │ │ │ │ ├── README.md │ │ │ │ │ └── otp.plugin.zsh │ │ │ │ ├── pass │ │ │ │ │ ├── README.md │ │ │ │ │ └── _pass │ │ │ │ ├── paver │ │ │ │ │ ├── README.md │ │ │ │ │ └── paver.plugin.zsh │ │ │ │ ├── pep8 │ │ │ │ │ ├── README.md │ │ │ │ │ └── _pep8 │ │ │ │ ├── per-directory-history │ │ │ │ │ ├── README.md │ │ │ │ │ ├── per-directory-history.plugin.zsh │ │ │ │ │ └── per-directory-history.zsh │ │ │ │ ├── percol │ │ │ │ │ ├── README.md │ │ │ │ │ └── percol.plugin.zsh │ │ │ │ ├── perl │ │ │ │ │ ├── README.md │ │ │ │ │ └── perl.plugin.zsh │ │ │ │ ├── perms │ │ │ │ │ ├── README.md │ │ │ │ │ └── perms.plugin.zsh │ │ │ │ ├── phing │ │ │ │ │ ├── README.md │ │ │ │ │ └── phing.plugin.zsh │ │ │ │ ├── pip │ │ │ │ │ ├── README.md │ │ │ │ │ ├── _pip │ │ │ │ │ └── pip.plugin.zsh │ │ │ │ ├── pipenv │ │ │ │ │ ├── README.md │ │ │ │ │ └── pipenv.plugin.zsh │ │ │ │ ├── pj │ │ │ │ │ ├── README.md │ │ │ │ │ └── pj.plugin.zsh │ │ │ │ ├── please │ │ │ │ │ ├── README.md │ │ │ │ │ └── please.plugin.zsh │ │ │ │ ├── pm2 │ │ │ │ │ ├── README.md │ │ │ │ │ ├── _pm2 │ │ │ │ │ └── pm2.plugin.zsh │ │ │ │ ├── pod │ │ │ │ │ ├── README.md │ │ │ │ │ └── _pod │ │ │ │ ├── poetry │ │ │ │ │ ├── README.md │ │ │ │ │ └── poetry.plugin.zsh │ │ │ │ ├── postgres │ │ │ │ │ ├── README.md │ │ │ │ │ └── postgres.plugin.zsh │ │ │ │ ├── pow │ │ │ │ │ ├── README.md │ │ │ │ │ └── pow.plugin.zsh │ │ │ │ ├── powder │ │ │ │ │ ├── README.md │ │ │ │ │ └── _powder │ │ │ │ ├── powify │ │ │ │ │ ├── README.md │ │ │ │ │ └── _powify │ │ │ │ ├── profiles │ │ │ │ │ ├── README.md │ │ │ │ │ └── profiles.plugin.zsh │ │ │ │ ├── pyenv │ │ │ │ │ ├── README.md │ │ │ │ │ └── pyenv.plugin.zsh │ │ │ │ ├── pylint │ │ │ │ │ ├── README.md │ │ │ │ │ ├── _pylint │ │ │ │ │ └── pylint.plugin.zsh │ │ │ │ ├── python │ │ │ │ │ ├── README.md │ │ │ │ │ └── python.plugin.zsh │ │ │ │ ├── rails │ │ │ │ │ ├── README.md │ │ │ │ │ ├── _rails │ │ │ │ │ └── rails.plugin.zsh │ │ │ │ ├── rake-fast │ │ │ │ │ ├── README.md │ │ │ │ │ └── rake-fast.plugin.zsh │ │ │ │ ├── rake │ │ │ │ │ ├── README.md │ │ │ │ │ └── rake.plugin.zsh │ │ │ │ ├── rand-quote │ │ │ │ │ ├── README.md │ │ │ │ │ └── rand-quote.plugin.zsh │ │ │ │ ├── rbenv │ │ │ │ │ ├── README.md │ │ │ │ │ └── rbenv.plugin.zsh │ │ │ │ ├── rbfu │ │ │ │ │ ├── README.md │ │ │ │ │ └── rbfu.plugin.zsh │ │ │ │ ├── rbw │ │ │ │ │ ├── README.md │ │ │ │ │ └── rbw.plugin.zsh │ │ │ │ ├── react-native │ │ │ │ │ ├── README.md │ │ │ │ │ ├── _react-native │ │ │ │ │ └── react-native.plugin.zsh │ │ │ │ ├── rebar │ │ │ │ │ ├── README.md │ │ │ │ │ └── _rebar │ │ │ │ ├── redis-cli │ │ │ │ │ ├── README.md │ │ │ │ │ └── _redis-cli │ │ │ │ ├── repo │ │ │ │ │ ├── README.md │ │ │ │ │ ├── _repo │ │ │ │ │ └── repo.plugin.zsh │ │ │ │ ├── ripgrep │ │ │ │ │ ├── README.md │ │ │ │ │ └── _ripgrep │ │ │ │ ├── ros │ │ │ │ │ ├── README.md │ │ │ │ │ └── _ros │ │ │ │ ├── rsync │ │ │ │ │ ├── README.md │ │ │ │ │ └── rsync.plugin.zsh │ │ │ │ ├── ruby │ │ │ │ │ ├── README.md │ │ │ │ │ └── ruby.plugin.zsh │ │ │ │ ├── rust │ │ │ │ │ ├── README.md │ │ │ │ │ ├── _rustc │ │ │ │ │ └── rust.plugin.zsh │ │ │ │ ├── rvm │ │ │ │ │ ├── README.md │ │ │ │ │ └── rvm.plugin.zsh │ │ │ │ ├── safe-paste │ │ │ │ │ ├── README.md │ │ │ │ │ └── safe-paste.plugin.zsh │ │ │ │ ├── salt │ │ │ │ │ ├── README.md │ │ │ │ │ └── _salt │ │ │ │ ├── samtools │ │ │ │ │ ├── README.md │ │ │ │ │ └── _samtools │ │ │ │ ├── sbt │ │ │ │ │ ├── README.md │ │ │ │ │ ├── _sbt │ │ │ │ │ └── sbt.plugin.zsh │ │ │ │ ├── scala │ │ │ │ │ ├── README.md │ │ │ │ │ └── _scala │ │ │ │ ├── scd │ │ │ │ │ ├── README.md │ │ │ │ │ ├── _scd │ │ │ │ │ ├── scd │ │ │ │ │ └── scd.plugin.zsh │ │ │ │ ├── screen │ │ │ │ │ ├── README.md │ │ │ │ │ └── screen.plugin.zsh │ │ │ │ ├── scw │ │ │ │ │ ├── README.md │ │ │ │ │ └── _scw │ │ │ │ ├── sdk │ │ │ │ │ ├── README.md │ │ │ │ │ └── sdk.plugin.zsh │ │ │ │ ├── sfdx │ │ │ │ │ ├── README.md │ │ │ │ │ └── _sfdx │ │ │ │ ├── sfffe │ │ │ │ │ ├── README.md │ │ │ │ │ └── sfffe.plugin.zsh │ │ │ │ ├── shell-proxy │ │ │ │ │ ├── .editorconfig │ │ │ │ │ ├── README.md │ │ │ │ │ ├── proxy.py │ │ │ │ │ ├── shell-proxy.plugin.zsh │ │ │ │ │ ├── ssh-agent.py │ │ │ │ │ └── ssh-proxy.py │ │ │ │ ├── shrink-path │ │ │ │ │ ├── README.md │ │ │ │ │ └── shrink-path.plugin.zsh │ │ │ │ ├── singlechar │ │ │ │ │ ├── README.md │ │ │ │ │ └── singlechar.plugin.zsh │ │ │ │ ├── spring │ │ │ │ │ ├── README.md │ │ │ │ │ └── _spring │ │ │ │ ├── sprunge │ │ │ │ │ ├── README.md │ │ │ │ │ └── sprunge.plugin.zsh │ │ │ │ ├── ssh-agent │ │ │ │ │ ├── README.md │ │ │ │ │ └── ssh-agent.plugin.zsh │ │ │ │ ├── stack │ │ │ │ │ ├── README.md │ │ │ │ │ └── stack.plugin.zsh │ │ │ │ ├── sublime-merge │ │ │ │ │ ├── README.md │ │ │ │ │ └── sublime-merge.plugin.zsh │ │ │ │ ├── sublime │ │ │ │ │ ├── README.md │ │ │ │ │ └── sublime.plugin.zsh │ │ │ │ ├── sudo │ │ │ │ │ ├── README.md │ │ │ │ │ └── sudo.plugin.zsh │ │ │ │ ├── supervisor │ │ │ │ │ ├── README.md │ │ │ │ │ ├── _supervisorctl │ │ │ │ │ ├── _supervisord │ │ │ │ │ └── supervisor.plugin.zsh │ │ │ │ ├── suse │ │ │ │ │ ├── README.md │ │ │ │ │ └── suse.plugin.zsh │ │ │ │ ├── svcat │ │ │ │ │ ├── README.md │ │ │ │ │ └── svcat.plugin.zsh │ │ │ │ ├── svn-fast-info │ │ │ │ │ ├── README.md │ │ │ │ │ └── svn-fast-info.plugin.zsh │ │ │ │ ├── svn │ │ │ │ │ ├── README.md │ │ │ │ │ └── svn.plugin.zsh │ │ │ │ ├── swiftpm │ │ │ │ │ ├── README.md │ │ │ │ │ ├── _swift │ │ │ │ │ └── swiftpm.plugin.zsh │ │ │ │ ├── symfony │ │ │ │ │ ├── README.md │ │ │ │ │ └── symfony.plugin.zsh │ │ │ │ ├── symfony2 │ │ │ │ │ ├── README.md │ │ │ │ │ └── symfony2.plugin.zsh │ │ │ │ ├── systemadmin │ │ │ │ │ ├── README.md │ │ │ │ │ └── systemadmin.plugin.zsh │ │ │ │ ├── systemd │ │ │ │ │ ├── README.md │ │ │ │ │ └── systemd.plugin.zsh │ │ │ │ ├── taskwarrior │ │ │ │ │ ├── README.md │ │ │ │ │ ├── _task │ │ │ │ │ └── taskwarrior.plugin.zsh │ │ │ │ ├── term_tab │ │ │ │ │ ├── README │ │ │ │ │ └── term_tab.plugin.zsh │ │ │ │ ├── terminitor │ │ │ │ │ ├── README.md │ │ │ │ │ └── _terminitor │ │ │ │ ├── terraform │ │ │ │ │ ├── README.md │ │ │ │ │ ├── _terraform │ │ │ │ │ └── terraform.plugin.zsh │ │ │ │ ├── textastic │ │ │ │ │ ├── README.md │ │ │ │ │ └── textastic.plugin.zsh │ │ │ │ ├── textmate │ │ │ │ │ ├── README.md │ │ │ │ │ └── textmate.plugin.zsh │ │ │ │ ├── thefuck │ │ │ │ │ ├── README.md │ │ │ │ │ └── thefuck.plugin.zsh │ │ │ │ ├── themes │ │ │ │ │ ├── README.md │ │ │ │ │ └── themes.plugin.zsh │ │ │ │ ├── thor │ │ │ │ │ ├── README.md │ │ │ │ │ └── _thor │ │ │ │ ├── tig │ │ │ │ │ ├── README.md │ │ │ │ │ └── tig.plugin.zsh │ │ │ │ ├── timer │ │ │ │ │ ├── README.md │ │ │ │ │ └── timer.plugin.zsh │ │ │ │ ├── tmux-cssh │ │ │ │ │ ├── README.md │ │ │ │ │ └── _tmux-cssh │ │ │ │ ├── tmux │ │ │ │ │ ├── README.md │ │ │ │ │ ├── tmux.extra.conf │ │ │ │ │ ├── tmux.only.conf │ │ │ │ │ └── tmux.plugin.zsh │ │ │ │ ├── tmuxinator │ │ │ │ │ ├── README.md │ │ │ │ │ ├── _tmuxinator │ │ │ │ │ └── tmuxinator.plugin.zsh │ │ │ │ ├── toolbox │ │ │ │ │ ├── README.md │ │ │ │ │ └── toolbox.plugin.zsh │ │ │ │ ├── torrent │ │ │ │ │ ├── README.md │ │ │ │ │ └── torrent.plugin.zsh │ │ │ │ ├── transfer │ │ │ │ │ ├── README.md │ │ │ │ │ └── transfer.plugin.zsh │ │ │ │ ├── tugboat │ │ │ │ │ ├── README.md │ │ │ │ │ └── _tugboat │ │ │ │ ├── ubuntu │ │ │ │ │ ├── README.md │ │ │ │ │ └── ubuntu.plugin.zsh │ │ │ │ ├── ufw │ │ │ │ │ ├── README.md │ │ │ │ │ └── _ufw │ │ │ │ ├── universalarchive │ │ │ │ │ ├── README.md │ │ │ │ │ ├── _universalarchive │ │ │ │ │ └── universalarchive.plugin.zsh │ │ │ │ ├── urltools │ │ │ │ │ ├── README.md │ │ │ │ │ └── urltools.plugin.zsh │ │ │ │ ├── vagrant-prompt │ │ │ │ │ ├── README.md │ │ │ │ │ └── vagrant-prompt.plugin.zsh │ │ │ │ ├── vagrant │ │ │ │ │ ├── README.md │ │ │ │ │ ├── _vagrant │ │ │ │ │ └── vagrant.plugin.zsh │ │ │ │ ├── vault │ │ │ │ │ ├── README.md │ │ │ │ │ └── _vault │ │ │ │ ├── vi-mode │ │ │ │ │ ├── README.md │ │ │ │ │ └── vi-mode.plugin.zsh │ │ │ │ ├── vim-interaction │ │ │ │ │ ├── README.md │ │ │ │ │ └── vim-interaction.plugin.zsh │ │ │ │ ├── virtualenv │ │ │ │ │ ├── README.md │ │ │ │ │ └── virtualenv.plugin.zsh │ │ │ │ ├── virtualenvwrapper │ │ │ │ │ ├── README.md │ │ │ │ │ └── virtualenvwrapper.plugin.zsh │ │ │ │ ├── volta │ │ │ │ │ ├── README.md │ │ │ │ │ └── volta.plugin.zsh │ │ │ │ ├── vscode │ │ │ │ │ ├── README.md │ │ │ │ │ └── vscode.plugin.zsh │ │ │ │ ├── vundle │ │ │ │ │ ├── README.md │ │ │ │ │ └── vundle.plugin.zsh │ │ │ │ ├── wakeonlan │ │ │ │ │ ├── README.md │ │ │ │ │ ├── _wake │ │ │ │ │ └── wakeonlan.plugin.zsh │ │ │ │ ├── wd │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── _wd.sh │ │ │ │ │ ├── wd.plugin.zsh │ │ │ │ │ └── wd.sh │ │ │ │ ├── web-search │ │ │ │ │ ├── README.md │ │ │ │ │ └── web-search.plugin.zsh │ │ │ │ ├── wp-cli │ │ │ │ │ ├── README.md │ │ │ │ │ └── wp-cli.plugin.zsh │ │ │ │ ├── xcode │ │ │ │ │ ├── README.md │ │ │ │ │ ├── _xcselv │ │ │ │ │ └── xcode.plugin.zsh │ │ │ │ ├── yarn │ │ │ │ │ ├── README.md │ │ │ │ │ ├── _yarn │ │ │ │ │ └── yarn.plugin.zsh │ │ │ │ ├── yii │ │ │ │ │ ├── README.md │ │ │ │ │ └── yii.plugin.zsh │ │ │ │ ├── yii2 │ │ │ │ │ ├── README.md │ │ │ │ │ └── yii2.plugin.zsh │ │ │ │ ├── yum │ │ │ │ │ ├── README.md │ │ │ │ │ └── yum.plugin.zsh │ │ │ │ ├── z │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── README.md │ │ │ │ │ ├── z.1 │ │ │ │ │ ├── z.plugin.zsh │ │ │ │ │ └── z.sh │ │ │ │ ├── zbell │ │ │ │ │ ├── README.md │ │ │ │ │ └── zbell.plugin.zsh │ │ │ │ ├── zeus │ │ │ │ │ ├── README.md │ │ │ │ │ ├── _zeus │ │ │ │ │ └── zeus.plugin.zsh │ │ │ │ ├── zoxide │ │ │ │ │ ├── README.md │ │ │ │ │ └── zoxide.plugin.zsh │ │ │ │ ├── zsh-interactive-cd │ │ │ │ │ ├── README.md │ │ │ │ │ └── zsh-interactive-cd.plugin.zsh │ │ │ │ └── zsh-navigation-tools │ │ │ │ │ ├── .config │ │ │ │ │ └── znt │ │ │ │ │ │ ├── n-aliases.conf │ │ │ │ │ │ ├── n-cd.conf │ │ │ │ │ │ ├── n-env.conf │ │ │ │ │ │ ├── n-functions.conf │ │ │ │ │ │ ├── n-history.conf │ │ │ │ │ │ ├── n-kill.conf │ │ │ │ │ │ ├── n-list.conf │ │ │ │ │ │ ├── n-options.conf │ │ │ │ │ │ └── n-panelize.conf │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── NEWS │ │ │ │ │ ├── README.md │ │ │ │ │ ├── _n-kill │ │ │ │ │ ├── doc │ │ │ │ │ ├── generate_single_file │ │ │ │ │ ├── img │ │ │ │ │ │ └── n-history2.png │ │ │ │ │ ├── install.sh │ │ │ │ │ ├── n-preview │ │ │ │ │ └── znt-tmux.zsh │ │ │ │ │ ├── n-aliases │ │ │ │ │ ├── n-cd │ │ │ │ │ ├── n-env │ │ │ │ │ ├── n-functions │ │ │ │ │ ├── n-help │ │ │ │ │ ├── n-history │ │ │ │ │ ├── n-kill │ │ │ │ │ ├── n-list │ │ │ │ │ ├── n-list-draw │ │ │ │ │ ├── n-list-input │ │ │ │ │ ├── n-options │ │ │ │ │ ├── n-panelize │ │ │ │ │ ├── znt-cd-widget │ │ │ │ │ ├── znt-history-widget │ │ │ │ │ ├── znt-kill-widget │ │ │ │ │ ├── znt-usetty-wrapper │ │ │ │ │ └── zsh-navigation-tools.plugin.zsh │ │ │ ├── templates │ │ │ │ └── zshrc.zsh-template │ │ │ ├── themes │ │ │ │ ├── 3den.zsh-theme │ │ │ │ ├── Soliah.zsh-theme │ │ │ │ ├── adben.zsh-theme │ │ │ │ ├── af-magic.zsh-theme │ │ │ │ ├── afowler.zsh-theme │ │ │ │ ├── agnoster.zsh-theme │ │ │ │ ├── alanpeabody.zsh-theme │ │ │ │ ├── amuse.zsh-theme │ │ │ │ ├── apple.zsh-theme │ │ │ │ ├── arrow.zsh-theme │ │ │ │ ├── aussiegeek.zsh-theme │ │ │ │ ├── avit.zsh-theme │ │ │ │ ├── awesomepanda.zsh-theme │ │ │ │ ├── bira.zsh-theme │ │ │ │ ├── blinks.zsh-theme │ │ │ │ ├── bureau.zsh-theme │ │ │ │ ├── candy-kingdom.zsh-theme │ │ │ │ ├── candy.zsh-theme │ │ │ │ ├── clean.zsh-theme │ │ │ │ ├── cloud.zsh-theme │ │ │ │ ├── crcandy.zsh-theme │ │ │ │ ├── crunch.zsh-theme │ │ │ │ ├── cypher.zsh-theme │ │ │ │ ├── dallas.zsh-theme │ │ │ │ ├── darkblood.zsh-theme │ │ │ │ ├── daveverwer.zsh-theme │ │ │ │ ├── dieter.zsh-theme │ │ │ │ ├── dogenpunk.zsh-theme │ │ │ │ ├── dpoggi.zsh-theme │ │ │ │ ├── dst.zsh-theme │ │ │ │ ├── dstufft.zsh-theme │ │ │ │ ├── duellj.zsh-theme │ │ │ │ ├── eastwood.zsh-theme │ │ │ │ ├── edvardm.zsh-theme │ │ │ │ ├── emotty.zsh-theme │ │ │ │ ├── essembeh.zsh-theme │ │ │ │ ├── evan.zsh-theme │ │ │ │ ├── fino-time.zsh-theme │ │ │ │ ├── fino.zsh-theme │ │ │ │ ├── fishy.zsh-theme │ │ │ │ ├── flazz.zsh-theme │ │ │ │ ├── fletcherm.zsh-theme │ │ │ │ ├── fox.zsh-theme │ │ │ │ ├── frisk.zsh-theme │ │ │ │ ├── frontcube.zsh-theme │ │ │ │ ├── funky.zsh-theme │ │ │ │ ├── fwalch.zsh-theme │ │ │ │ ├── gallifrey.zsh-theme │ │ │ │ ├── gallois.zsh-theme │ │ │ │ ├── garyblessington.zsh-theme │ │ │ │ ├── gentoo.zsh-theme │ │ │ │ ├── geoffgarside.zsh-theme │ │ │ │ ├── gianu.zsh-theme │ │ │ │ ├── gnzh.zsh-theme │ │ │ │ ├── gozilla.zsh-theme │ │ │ │ ├── half-life.zsh-theme │ │ │ │ ├── humza.zsh-theme │ │ │ │ ├── imajes.zsh-theme │ │ │ │ ├── intheloop.zsh-theme │ │ │ │ ├── itchy.zsh-theme │ │ │ │ ├── jaischeema.zsh-theme │ │ │ │ ├── jbergantine.zsh-theme │ │ │ │ ├── jispwoso.zsh-theme │ │ │ │ ├── jnrowe.zsh-theme │ │ │ │ ├── jonathan.zsh-theme │ │ │ │ ├── josh.zsh-theme │ │ │ │ ├── jreese.zsh-theme │ │ │ │ ├── jtriley.zsh-theme │ │ │ │ ├── juanghurtado.zsh-theme │ │ │ │ ├── junkfood.zsh-theme │ │ │ │ ├── kafeitu.zsh-theme │ │ │ │ ├── kardan.zsh-theme │ │ │ │ ├── kennethreitz.zsh-theme │ │ │ │ ├── kiwi.zsh-theme │ │ │ │ ├── kolo.zsh-theme │ │ │ │ ├── kphoen.zsh-theme │ │ │ │ ├── lambda.zsh-theme │ │ │ │ ├── linuxonly.zsh-theme │ │ │ │ ├── lukerandall.zsh-theme │ │ │ │ ├── macovsky-ruby.zsh-theme │ │ │ │ ├── macovsky.zsh-theme │ │ │ │ ├── maran.zsh-theme │ │ │ │ ├── mgutz.zsh-theme │ │ │ │ ├── mh.zsh-theme │ │ │ │ ├── michelebologna.zsh-theme │ │ │ │ ├── mikeh.zsh-theme │ │ │ │ ├── miloshadzic.zsh-theme │ │ │ │ ├── minimal.zsh-theme │ │ │ │ ├── mira.zsh-theme │ │ │ │ ├── mlh.zsh-theme │ │ │ │ ├── mortalscumbag.zsh-theme │ │ │ │ ├── mrtazz.zsh-theme │ │ │ │ ├── murilasso.zsh-theme │ │ │ │ ├── muse.zsh-theme │ │ │ │ ├── nanotech.zsh-theme │ │ │ │ ├── nebirhos.zsh-theme │ │ │ │ ├── nicoulaj.zsh-theme │ │ │ │ ├── norm.zsh-theme │ │ │ │ ├── obraun.zsh-theme │ │ │ │ ├── peepcode.zsh-theme │ │ │ │ ├── philips.zsh-theme │ │ │ │ ├── pmcgee.zsh-theme │ │ │ │ ├── pygmalion-virtualenv.zsh-theme │ │ │ │ ├── pygmalion.zsh-theme │ │ │ │ ├── random.zsh-theme │ │ │ │ ├── re5et.zsh-theme │ │ │ │ ├── refined.zsh-theme │ │ │ │ ├── rgm.zsh-theme │ │ │ │ ├── risto.zsh-theme │ │ │ │ ├── rixius.zsh-theme │ │ │ │ ├── rkj-repos.zsh-theme │ │ │ │ ├── rkj.zsh-theme │ │ │ │ ├── robbyrussell.zsh-theme │ │ │ │ ├── sammy.zsh-theme │ │ │ │ ├── simonoff.zsh-theme │ │ │ │ ├── simple.zsh-theme │ │ │ │ ├── skaro.zsh-theme │ │ │ │ ├── smt.zsh-theme │ │ │ │ ├── sonicradish.zsh-theme │ │ │ │ ├── sorin.zsh-theme │ │ │ │ ├── sporty_256.zsh-theme │ │ │ │ ├── steeef.zsh-theme │ │ │ │ ├── strug.zsh-theme │ │ │ │ ├── sunaku.zsh-theme │ │ │ │ ├── sunrise.zsh-theme │ │ │ │ ├── superjarin.zsh-theme │ │ │ │ ├── suvash.zsh-theme │ │ │ │ ├── takashiyoshida.zsh-theme │ │ │ │ ├── terminalparty.zsh-theme │ │ │ │ ├── theunraveler.zsh-theme │ │ │ │ ├── tjkirch.zsh-theme │ │ │ │ ├── tjkirch_mod.zsh-theme │ │ │ │ ├── tonotdo.zsh-theme │ │ │ │ ├── trapd00r.zsh-theme │ │ │ │ ├── wedisagree.zsh-theme │ │ │ │ ├── wezm+.zsh-theme │ │ │ │ ├── wezm.zsh-theme │ │ │ │ ├── wuffers.zsh-theme │ │ │ │ ├── xiong-chiamiov-plus.zsh-theme │ │ │ │ ├── xiong-chiamiov.zsh-theme │ │ │ │ ├── ys.zsh-theme │ │ │ │ └── zhann.zsh-theme │ │ │ └── tools │ │ │ │ ├── changelog.sh │ │ │ │ ├── check_for_upgrade.sh │ │ │ │ ├── install.sh │ │ │ │ ├── require_tool.sh │ │ │ │ ├── theme_chooser.sh │ │ │ │ ├── uninstall.sh │ │ │ │ └── upgrade.sh │ │ ├── .themes │ │ │ ├── Afterpiece │ │ │ │ └── openbox-3 │ │ │ │ │ ├── close.xbm │ │ │ │ │ ├── close_alt.xbm │ │ │ │ │ ├── desk.xbm │ │ │ │ │ ├── desk_alt.xbm │ │ │ │ │ ├── desk_toggled.xbm │ │ │ │ │ ├── desk_toggled_alt.xbm │ │ │ │ │ ├── iconify.xbm │ │ │ │ │ ├── iconify_alt.xbm │ │ │ │ │ ├── iconify_alt2.xbm │ │ │ │ │ ├── max.xbm │ │ │ │ │ ├── max_alt.xbm │ │ │ │ │ ├── max_alt2.xbm │ │ │ │ │ ├── max_toggled.xbm │ │ │ │ │ ├── max_toggled_alt.xbm │ │ │ │ │ ├── max_toggled_alt2.xbm │ │ │ │ │ ├── shade.xbm │ │ │ │ │ ├── shade_alt.xbm │ │ │ │ │ ├── shade_alt2.xbm │ │ │ │ │ ├── shade_toggled.xbm │ │ │ │ │ ├── shade_toggled_alt.xbm │ │ │ │ │ ├── shade_toggled_alt2.xbm │ │ │ │ │ └── themerc │ │ │ ├── Arc-Darkest │ │ │ │ ├── cinnamon │ │ │ │ │ ├── cinnamon.css │ │ │ │ │ ├── common-assets │ │ │ │ │ │ ├── menu │ │ │ │ │ │ │ ├── menu-hover.svg │ │ │ │ │ │ │ └── menu-separator.svg │ │ │ │ │ │ ├── misc │ │ │ │ │ │ │ ├── add-workspace-active.svg │ │ │ │ │ │ │ ├── add-workspace-hover.svg │ │ │ │ │ │ │ ├── add-workspace.svg │ │ │ │ │ │ │ ├── bg.svg │ │ │ │ │ │ │ ├── calendar-arrow-left-hover.svg │ │ │ │ │ │ │ ├── calendar-arrow-left.svg │ │ │ │ │ │ │ ├── calendar-arrow-right-hover.svg │ │ │ │ │ │ │ ├── calendar-arrow-right.svg │ │ │ │ │ │ │ ├── close-active.svg │ │ │ │ │ │ │ ├── close-hover.svg │ │ │ │ │ │ │ ├── close.svg │ │ │ │ │ │ │ ├── corner-ripple.svg │ │ │ │ │ │ │ ├── desklet-header.svg │ │ │ │ │ │ │ ├── desklet.svg │ │ │ │ │ │ │ ├── osd.svg │ │ │ │ │ │ │ ├── overview-hover.png │ │ │ │ │ │ │ ├── overview.png │ │ │ │ │ │ │ └── trash-icon.svg │ │ │ │ │ │ ├── panel │ │ │ │ │ │ │ ├── panel-bottom.svg │ │ │ │ │ │ │ ├── panel-left.svg │ │ │ │ │ │ │ ├── panel-right.svg │ │ │ │ │ │ │ └── panel-top.svg │ │ │ │ │ │ └── switch │ │ │ │ │ │ │ ├── switch-off-selected.svg │ │ │ │ │ │ │ └── switch-on-selected.svg │ │ │ │ │ ├── light-assets │ │ │ │ │ │ ├── checkbox │ │ │ │ │ │ │ ├── checkbox-checked-focused.svg │ │ │ │ │ │ │ ├── checkbox-checked.svg │ │ │ │ │ │ │ ├── checkbox-unchecked-focused.svg │ │ │ │ │ │ │ └── checkbox-unchecked.svg │ │ │ │ │ │ ├── menu │ │ │ │ │ │ │ ├── menu.svg │ │ │ │ │ │ │ └── submenu.svg │ │ │ │ │ │ ├── misc │ │ │ │ │ │ │ ├── button-box.svg │ │ │ │ │ │ │ ├── message.svg │ │ │ │ │ │ │ └── modal.svg │ │ │ │ │ │ └── switch │ │ │ │ │ │ │ ├── switch-off.svg │ │ │ │ │ │ │ └── switch-on.svg │ │ │ │ │ └── thumbnail.png │ │ │ │ ├── gnome-shell │ │ │ │ │ ├── README.md │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── calendar-arrow-left.svg │ │ │ │ │ │ ├── calendar-arrow-right.svg │ │ │ │ │ │ ├── checkbox-off.svg │ │ │ │ │ │ ├── checkbox.svg │ │ │ │ │ │ ├── close.svg │ │ │ │ │ │ ├── dash-placeholder.svg │ │ │ │ │ │ ├── dash │ │ │ │ │ │ │ ├── bottom-running1-focused.svg │ │ │ │ │ │ │ ├── bottom-running1.svg │ │ │ │ │ │ │ ├── bottom-running2-focused.svg │ │ │ │ │ │ │ ├── bottom-running2.svg │ │ │ │ │ │ │ ├── bottom-running3-focused.svg │ │ │ │ │ │ │ ├── bottom-running3.svg │ │ │ │ │ │ │ ├── bottom-running4-focused.svg │ │ │ │ │ │ │ ├── bottom-running4.svg │ │ │ │ │ │ │ ├── left-running1-focused.svg │ │ │ │ │ │ │ ├── left-running1.svg │ │ │ │ │ │ │ ├── left-running2-focused.svg │ │ │ │ │ │ │ ├── left-running2.svg │ │ │ │ │ │ │ ├── left-running3-focused.svg │ │ │ │ │ │ │ ├── left-running3.svg │ │ │ │ │ │ │ ├── left-running4-focused.svg │ │ │ │ │ │ │ ├── left-running4.svg │ │ │ │ │ │ │ ├── right-running1-focused.svg │ │ │ │ │ │ │ ├── right-running1.svg │ │ │ │ │ │ │ ├── right-running2-focused.svg │ │ │ │ │ │ │ ├── right-running2.svg │ │ │ │ │ │ │ ├── right-running3-focused.svg │ │ │ │ │ │ │ ├── right-running3.svg │ │ │ │ │ │ │ ├── right-running4-focused.svg │ │ │ │ │ │ │ ├── right-running4.svg │ │ │ │ │ │ │ ├── top-running1-focused.svg │ │ │ │ │ │ │ ├── top-running1.svg │ │ │ │ │ │ │ ├── top-running2-focused.svg │ │ │ │ │ │ │ ├── top-running2.svg │ │ │ │ │ │ │ ├── top-running3-focused.svg │ │ │ │ │ │ │ ├── top-running3.svg │ │ │ │ │ │ │ ├── top-running4-focused.svg │ │ │ │ │ │ │ └── top-running4.svg │ │ │ │ │ │ ├── key-enter.svg │ │ │ │ │ │ ├── key-hide.svg │ │ │ │ │ │ ├── key-layout.svg │ │ │ │ │ │ ├── key-shift-latched-uppercase.svg │ │ │ │ │ │ ├── key-shift-uppercase.svg │ │ │ │ │ │ ├── key-shift.svg │ │ │ │ │ │ ├── more-results.svg │ │ │ │ │ │ ├── no-events.svg │ │ │ │ │ │ ├── no-notifications.svg │ │ │ │ │ │ ├── process-working.svg │ │ │ │ │ │ ├── toggle-off.svg │ │ │ │ │ │ ├── toggle-on.svg │ │ │ │ │ │ ├── window-close-active.svg │ │ │ │ │ │ └── window-close.svg │ │ │ │ │ ├── extensions │ │ │ │ │ │ └── workspaces-to-dock │ │ │ │ │ │ │ └── workspaces-to-dock.css │ │ │ │ │ ├── gnome-shell-theme.gresource.xml │ │ │ │ │ ├── gnome-shell.css │ │ │ │ │ ├── message-indicator-symbolic.svg │ │ │ │ │ ├── no-events.svg │ │ │ │ │ ├── no-notifications.svg │ │ │ │ │ ├── noise-texture.png │ │ │ │ │ ├── pad-osd.css │ │ │ │ │ ├── pointer-double-click-symbolic.svg │ │ │ │ │ ├── pointer-drag-symbolic.svg │ │ │ │ │ ├── pointer-primary-click-symbolic.svg │ │ │ │ │ ├── pointer-secondary-click-symbolic.svg │ │ │ │ │ └── process-working.svg │ │ │ │ ├── gtk-2.0 │ │ │ │ │ ├── apps.rc │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── arrow-down-insens.png │ │ │ │ │ │ ├── arrow-down-prelight.png │ │ │ │ │ │ ├── arrow-down-small-insens.png │ │ │ │ │ │ ├── arrow-down-small-prelight.png │ │ │ │ │ │ ├── arrow-down-small.png │ │ │ │ │ │ ├── arrow-down.png │ │ │ │ │ │ ├── arrow-left-insens.png │ │ │ │ │ │ ├── arrow-left-prelight.png │ │ │ │ │ │ ├── arrow-left.png │ │ │ │ │ │ ├── arrow-right-insens.png │ │ │ │ │ │ ├── arrow-right-prelight.png │ │ │ │ │ │ ├── arrow-right.png │ │ │ │ │ │ ├── arrow-up-insens.png │ │ │ │ │ │ ├── arrow-up-prelight.png │ │ │ │ │ │ ├── arrow-up-small-insens.png │ │ │ │ │ │ ├── arrow-up-small-prelight.png │ │ │ │ │ │ ├── arrow-up-small.png │ │ │ │ │ │ ├── arrow-up.png │ │ │ │ │ │ ├── button-active.png │ │ │ │ │ │ ├── button-hover.png │ │ │ │ │ │ ├── button-insensitive.png │ │ │ │ │ │ ├── button.png │ │ │ │ │ │ ├── checkbox-checked-insensitive.png │ │ │ │ │ │ ├── checkbox-checked.png │ │ │ │ │ │ ├── checkbox-unchecked-insensitive.png │ │ │ │ │ │ ├── checkbox-unchecked.png │ │ │ │ │ │ ├── combo-entry-border-focus-rtl.png │ │ │ │ │ │ ├── combo-entry-border-focus.png │ │ │ │ │ │ ├── combo-entry-border-rtl.png │ │ │ │ │ │ ├── combo-entry-border.png │ │ │ │ │ │ ├── combo-entry-button-active-rtl.png │ │ │ │ │ │ ├── combo-entry-button-active.png │ │ │ │ │ │ ├── combo-entry-button-insensitive-rtl.png │ │ │ │ │ │ ├── combo-entry-button-insensitive.png │ │ │ │ │ │ ├── combo-entry-button-rtl.png │ │ │ │ │ │ ├── combo-entry-button.png │ │ │ │ │ │ ├── combo-entry-focus-notebook-rtl.png │ │ │ │ │ │ ├── combo-entry-focus-notebook.png │ │ │ │ │ │ ├── combo-entry-focus-rtl.png │ │ │ │ │ │ ├── combo-entry-focus.png │ │ │ │ │ │ ├── combo-entry-insensitive-notebook-rtl.png │ │ │ │ │ │ ├── combo-entry-insensitive-notebook.png │ │ │ │ │ │ ├── combo-entry-insensitive-rtl.png │ │ │ │ │ │ ├── combo-entry-insensitive.png │ │ │ │ │ │ ├── combo-entry-notebook-rtl.png │ │ │ │ │ │ ├── combo-entry-notebook.png │ │ │ │ │ │ ├── combo-entry-rtl.png │ │ │ │ │ │ ├── combo-entry.png │ │ │ │ │ │ ├── down-background-disable-rtl.png │ │ │ │ │ │ ├── down-background-disable.png │ │ │ │ │ │ ├── down-background-rtl.png │ │ │ │ │ │ ├── down-background.png │ │ │ │ │ │ ├── entry-active-bg.png │ │ │ │ │ │ ├── entry-active-notebook.png │ │ │ │ │ │ ├── entry-active-toolbar.png │ │ │ │ │ │ ├── entry-background-disabled.png │ │ │ │ │ │ ├── entry-background.png │ │ │ │ │ │ ├── entry-bg.png │ │ │ │ │ │ ├── entry-border-active-bg.png │ │ │ │ │ │ ├── entry-border-bg.png │ │ │ │ │ │ ├── entry-disabled-bg.png │ │ │ │ │ │ ├── entry-disabled-notebook.png │ │ │ │ │ │ ├── entry-disabled-toolbar.png │ │ │ │ │ │ ├── entry-notebook.png │ │ │ │ │ │ ├── entry-toolbar.png │ │ │ │ │ │ ├── focus-line.png │ │ │ │ │ │ ├── frame-gap-end.png │ │ │ │ │ │ ├── frame-gap-start.png │ │ │ │ │ │ ├── frame.png │ │ │ │ │ │ ├── handle-h.png │ │ │ │ │ │ ├── handle-v.png │ │ │ │ │ │ ├── inline-toolbar.png │ │ │ │ │ │ ├── line-h.png │ │ │ │ │ │ ├── line-v.png │ │ │ │ │ │ ├── menu-arrow-prelight.png │ │ │ │ │ │ ├── menu-arrow.png │ │ │ │ │ │ ├── menu-checkbox-checked-insensitive.png │ │ │ │ │ │ ├── menu-checkbox-checked-selected.png │ │ │ │ │ │ ├── menu-checkbox-checked.png │ │ │ │ │ │ ├── menu-checkbox-unchecked-insensitive.png │ │ │ │ │ │ ├── menu-checkbox-unchecked-selected.png │ │ │ │ │ │ ├── menu-checkbox-unchecked.png │ │ │ │ │ │ ├── menu-radio-checked-insensitive.png │ │ │ │ │ │ ├── menu-radio-checked-selected.png │ │ │ │ │ │ ├── menu-radio-checked.png │ │ │ │ │ │ ├── menu-radio-unchecked-insensitive.png │ │ │ │ │ │ ├── menu-radio-unchecked-selected.png │ │ │ │ │ │ ├── menu-radio-unchecked.png │ │ │ │ │ │ ├── menubar.png │ │ │ │ │ │ ├── menubar_button.png │ │ │ │ │ │ ├── menuitem.png │ │ │ │ │ │ ├── minus.png │ │ │ │ │ │ ├── notebook-gap-horiz.png │ │ │ │ │ │ ├── notebook-gap-vert.png │ │ │ │ │ │ ├── notebook.png │ │ │ │ │ │ ├── null.png │ │ │ │ │ │ ├── plus.png │ │ │ │ │ │ ├── progressbar.png │ │ │ │ │ │ ├── progressbar_v.png │ │ │ │ │ │ ├── radio-checked-insensitive.png │ │ │ │ │ │ ├── radio-checked.png │ │ │ │ │ │ ├── radio-unchecked-insensitive.png │ │ │ │ │ │ ├── radio-unchecked.png │ │ │ │ │ │ ├── slider-horiz-active.png │ │ │ │ │ │ ├── slider-horiz-insens.png │ │ │ │ │ │ ├── slider-horiz-prelight.png │ │ │ │ │ │ ├── slider-horiz.png │ │ │ │ │ │ ├── slider-insensitive.png │ │ │ │ │ │ ├── slider-prelight.png │ │ │ │ │ │ ├── slider-vert-active.png │ │ │ │ │ │ ├── slider-vert-insens.png │ │ │ │ │ │ ├── slider-vert-prelight.png │ │ │ │ │ │ ├── slider-vert.png │ │ │ │ │ │ ├── slider.png │ │ │ │ │ │ ├── tab-bottom-active.png │ │ │ │ │ │ ├── tab-left-active.png │ │ │ │ │ │ ├── tab-right-active.png │ │ │ │ │ │ ├── tab-top-active.png │ │ │ │ │ │ ├── toolbar.png │ │ │ │ │ │ ├── tree_header.png │ │ │ │ │ │ ├── trough-horizontal-active.png │ │ │ │ │ │ ├── trough-horizontal.png │ │ │ │ │ │ ├── trough-progressbar.png │ │ │ │ │ │ ├── trough-progressbar_v.png │ │ │ │ │ │ ├── trough-scrollbar-horiz.png │ │ │ │ │ │ ├── trough-scrollbar-vert.png │ │ │ │ │ │ ├── trough-vertical-active.png │ │ │ │ │ │ ├── trough-vertical.png │ │ │ │ │ │ ├── up-background-disable-rtl.png │ │ │ │ │ │ ├── up-background-disable.png │ │ │ │ │ │ ├── up-background-rtl.png │ │ │ │ │ │ └── up-background.png │ │ │ │ │ ├── gtkrc │ │ │ │ │ ├── main.rc │ │ │ │ │ ├── menubar-toolbar │ │ │ │ │ │ ├── button-active.png │ │ │ │ │ │ ├── button-hover.png │ │ │ │ │ │ ├── button-insensitive.png │ │ │ │ │ │ ├── button.png │ │ │ │ │ │ ├── entry-active-toolbar-dark.png │ │ │ │ │ │ ├── entry-disabled-toolbar-dark.png │ │ │ │ │ │ ├── entry-toolbar-dark.png │ │ │ │ │ │ ├── menubar-dark.png │ │ │ │ │ │ ├── menubar-toolbar-dark.rc │ │ │ │ │ │ └── menubar_button-dark.png │ │ │ │ │ ├── panel.rc │ │ │ │ │ └── xfce-notify.rc │ │ │ │ ├── gtk-3.0 │ │ │ │ │ ├── gtk-dark.css │ │ │ │ │ ├── gtk.css │ │ │ │ │ ├── gtk.gresource │ │ │ │ │ └── thumbnail.png │ │ │ │ ├── index.theme │ │ │ │ ├── metacity-1 │ │ │ │ │ ├── button-bg.svg │ │ │ │ │ ├── button-border.svg │ │ │ │ │ ├── close-icon.svg │ │ │ │ │ ├── max-icon.svg │ │ │ │ │ ├── metacity-theme-1.xml │ │ │ │ │ ├── metacity-theme-2.xml │ │ │ │ │ ├── metacity-theme-3.xml │ │ │ │ │ ├── min-icon.svg │ │ │ │ │ └── thumbnail.png │ │ │ │ ├── openbox-3 │ │ │ │ │ ├── close.xbm │ │ │ │ │ ├── desk.xbm │ │ │ │ │ ├── desk_toggled.xbm │ │ │ │ │ ├── iconify.xbm │ │ │ │ │ ├── max.xbm │ │ │ │ │ ├── max_toggled.xbm │ │ │ │ │ ├── shade.xbm │ │ │ │ │ ├── shade_toggled.xbm │ │ │ │ │ └── themerc │ │ │ │ ├── plank │ │ │ │ │ └── dock.theme │ │ │ │ ├── unity │ │ │ │ │ ├── close.svg │ │ │ │ │ ├── close_dash.svg │ │ │ │ │ ├── close_dash_disabled.svg │ │ │ │ │ ├── close_dash_prelight.svg │ │ │ │ │ ├── close_dash_pressed.svg │ │ │ │ │ ├── close_focused_normal.svg │ │ │ │ │ ├── close_focused_prelight.svg │ │ │ │ │ ├── close_focused_pressed.svg │ │ │ │ │ ├── close_unfocused.svg │ │ │ │ │ ├── close_unfocused_prelight.svg │ │ │ │ │ ├── close_unfocused_pressed.svg │ │ │ │ │ ├── dash │ │ │ │ │ │ ├── close_dash.svg │ │ │ │ │ │ ├── close_dash_disabled.svg │ │ │ │ │ │ ├── close_dash_prelight.svg │ │ │ │ │ │ ├── close_dash_pressed.svg │ │ │ │ │ │ ├── maximize_dash.svg │ │ │ │ │ │ ├── maximize_dash_disabled.svg │ │ │ │ │ │ ├── maximize_dash_prelight.svg │ │ │ │ │ │ ├── maximize_dash_pressed.svg │ │ │ │ │ │ ├── minimize_dash.svg │ │ │ │ │ │ ├── minimize_dash_disabled.svg │ │ │ │ │ │ ├── minimize_dash_prelight.svg │ │ │ │ │ │ └── minimize_dash_pressed.svg │ │ │ │ │ ├── launcher_arrow_ltr_19.svg │ │ │ │ │ ├── launcher_arrow_ltr_37.svg │ │ │ │ │ ├── launcher_arrow_outline_ltr_19.svg │ │ │ │ │ ├── launcher_arrow_outline_ltr_37.svg │ │ │ │ │ ├── launcher_arrow_outline_rtl_19.svg │ │ │ │ │ ├── launcher_arrow_outline_rtl_37.svg │ │ │ │ │ ├── launcher_arrow_rtl_19.svg │ │ │ │ │ ├── launcher_arrow_rtl_37.svg │ │ │ │ │ ├── launcher_icon_back_150.svg │ │ │ │ │ ├── launcher_icon_back_54.svg │ │ │ │ │ ├── launcher_icon_edge_150.svg │ │ │ │ │ ├── launcher_icon_edge_54.svg │ │ │ │ │ ├── launcher_icon_glow_200.svg │ │ │ │ │ ├── launcher_icon_glow_62.svg │ │ │ │ │ ├── launcher_icon_selected_back_150.svg │ │ │ │ │ ├── launcher_icon_selected_back_54.svg │ │ │ │ │ ├── launcher_icon_shadow_200.svg │ │ │ │ │ ├── launcher_icon_shadow_62.svg │ │ │ │ │ ├── launcher_icon_shine_150.svg │ │ │ │ │ ├── launcher_icon_shine_54.svg │ │ │ │ │ ├── launcher_pip_ltr_19.svg │ │ │ │ │ ├── launcher_pip_ltr_37.svg │ │ │ │ │ ├── launcher_pip_rtl_19.svg │ │ │ │ │ ├── launcher_pip_rtl_37.svg │ │ │ │ │ ├── maximize.svg │ │ │ │ │ ├── maximize_dash.svg │ │ │ │ │ ├── maximize_dash_disabled.svg │ │ │ │ │ ├── maximize_dash_prelight.svg │ │ │ │ │ ├── maximize_dash_pressed.svg │ │ │ │ │ ├── maximize_focused_normal.svg │ │ │ │ │ ├── maximize_focused_prelight.svg │ │ │ │ │ ├── maximize_focused_pressed.svg │ │ │ │ │ ├── maximize_unfocused.svg │ │ │ │ │ ├── maximize_unfocused_prelight.svg │ │ │ │ │ ├── maximize_unfocused_pressed.svg │ │ │ │ │ ├── minimize.svg │ │ │ │ │ ├── minimize_dash.svg │ │ │ │ │ ├── minimize_dash_disabled.svg │ │ │ │ │ ├── minimize_dash_prelight.svg │ │ │ │ │ ├── minimize_dash_pressed.svg │ │ │ │ │ ├── minimize_focused_normal.svg │ │ │ │ │ ├── minimize_focused_prelight.svg │ │ │ │ │ ├── minimize_focused_pressed.svg │ │ │ │ │ ├── minimize_unfocused.svg │ │ │ │ │ ├── minimize_unfocused_prelight.svg │ │ │ │ │ ├── minimize_unfocused_pressed.svg │ │ │ │ │ ├── sheet_style_close_focused.svg │ │ │ │ │ ├── sheet_style_close_focused_prelight.svg │ │ │ │ │ ├── sheet_style_close_focused_pressed.svg │ │ │ │ │ ├── unmaximize.svg │ │ │ │ │ ├── unmaximize_dash.svg │ │ │ │ │ ├── unmaximize_dash_disabled.svg │ │ │ │ │ ├── unmaximize_dash_prelight.svg │ │ │ │ │ ├── unmaximize_dash_pressed.svg │ │ │ │ │ ├── unmaximize_focused_normal.svg │ │ │ │ │ ├── unmaximize_focused_prelight.svg │ │ │ │ │ ├── unmaximize_focused_pressed.svg │ │ │ │ │ ├── unmaximize_unfocused.svg │ │ │ │ │ ├── unmaximize_unfocused_prelight.svg │ │ │ │ │ ├── unmaximize_unfocused_pressed.svg │ │ │ │ │ └── window-buttons │ │ │ │ │ │ ├── close.svg │ │ │ │ │ │ ├── close_prelight.svg │ │ │ │ │ │ ├── close_pressed.svg │ │ │ │ │ │ ├── close_unfocused.svg │ │ │ │ │ │ ├── maximize.svg │ │ │ │ │ │ ├── maximize_prelight.svg │ │ │ │ │ │ ├── maximize_pressed.svg │ │ │ │ │ │ ├── maximize_unfocused.svg │ │ │ │ │ │ ├── minimize.svg │ │ │ │ │ │ ├── minimize_prelight.svg │ │ │ │ │ │ ├── minimize_pressed.svg │ │ │ │ │ │ └── minimize_unfocused.svg │ │ │ │ └── xfwm4 │ │ │ │ │ ├── bottom-active.png │ │ │ │ │ ├── bottom-inactive.png │ │ │ │ │ ├── bottom-left-active.png │ │ │ │ │ ├── bottom-left-inactive.png │ │ │ │ │ ├── bottom-right-active.png │ │ │ │ │ ├── bottom-right-inactive.png │ │ │ │ │ ├── close-active.png │ │ │ │ │ ├── close-inactive.png │ │ │ │ │ ├── close-prelight.png │ │ │ │ │ ├── close-pressed.png │ │ │ │ │ ├── hide-active.png │ │ │ │ │ ├── hide-inactive.png │ │ │ │ │ ├── hide-prelight.png │ │ │ │ │ ├── hide-pressed.png │ │ │ │ │ ├── left-active.png │ │ │ │ │ ├── left-inactive.png │ │ │ │ │ ├── maximize-active.png │ │ │ │ │ ├── maximize-inactive.png │ │ │ │ │ ├── maximize-prelight.png │ │ │ │ │ ├── maximize-pressed.png │ │ │ │ │ ├── menu-active.png │ │ │ │ │ ├── menu-inactive.png │ │ │ │ │ ├── menu-pressed.png │ │ │ │ │ ├── right-active.png │ │ │ │ │ ├── right-inactive.png │ │ │ │ │ ├── shade-active.png │ │ │ │ │ ├── shade-inactive.png │ │ │ │ │ ├── shade-pressed.png │ │ │ │ │ ├── stick-active.png │ │ │ │ │ ├── stick-inactive.png │ │ │ │ │ ├── stick-pressed.png │ │ │ │ │ ├── themerc │ │ │ │ │ ├── title-1-active.png │ │ │ │ │ ├── title-1-inactive.png │ │ │ │ │ ├── title-2-active.png │ │ │ │ │ ├── title-2-inactive.png │ │ │ │ │ ├── title-3-active.png │ │ │ │ │ ├── title-3-inactive.png │ │ │ │ │ ├── title-4-active.png │ │ │ │ │ ├── title-4-inactive.png │ │ │ │ │ ├── title-5-active.png │ │ │ │ │ ├── title-5-inactive.png │ │ │ │ │ ├── top-left-active.png │ │ │ │ │ ├── top-left-inactive.png │ │ │ │ │ ├── top-right-active.png │ │ │ │ │ └── top-right-inactive.png │ │ │ ├── Blocks │ │ │ │ └── openbox-3 │ │ │ │ │ ├── bullet.xbm │ │ │ │ │ ├── close.xbm │ │ │ │ │ ├── desk.xbm │ │ │ │ │ ├── desk_toggled.xbm │ │ │ │ │ ├── iconify.xbm │ │ │ │ │ ├── max.xbm │ │ │ │ │ ├── max_disabled.xbm │ │ │ │ │ ├── max_toggled.xbm │ │ │ │ │ ├── shade.xbm │ │ │ │ │ └── themerc │ │ │ ├── Box-Dark │ │ │ │ └── openbox-3 │ │ │ │ │ ├── bullet.xbm │ │ │ │ │ ├── close.xbm │ │ │ │ │ ├── desk.xbm │ │ │ │ │ ├── desk_toggled.xbm │ │ │ │ │ ├── iconify.xbm │ │ │ │ │ ├── max.xbm │ │ │ │ │ ├── max_disabled.xbm │ │ │ │ │ ├── max_toggled.xbm │ │ │ │ │ ├── shade.xbm │ │ │ │ │ ├── shade_toggled.xbm │ │ │ │ │ └── themerc │ │ │ ├── Clair-Crimson │ │ │ │ └── openbox-3 │ │ │ │ │ ├── bullet.xbm │ │ │ │ │ ├── close.xbm │ │ │ │ │ ├── desk.xbm │ │ │ │ │ ├── desk_toggled.xbm │ │ │ │ │ ├── iconify.xbm │ │ │ │ │ ├── max.xbm │ │ │ │ │ ├── max_disabled.xbm │ │ │ │ │ ├── max_toggled.xbm │ │ │ │ │ ├── shade.xbm │ │ │ │ │ └── themerc │ │ │ ├── Dracula-withoutBorder │ │ │ │ └── openbox-3 │ │ │ │ │ ├── bullet.xbm │ │ │ │ │ ├── close.xbm │ │ │ │ │ ├── close_hover.xbm │ │ │ │ │ ├── desk.xbm │ │ │ │ │ ├── desk_hover.xbm │ │ │ │ │ ├── desk_hover_toggled.xbm │ │ │ │ │ ├── desk_toggled.xbm │ │ │ │ │ ├── iconify.xbm │ │ │ │ │ ├── iconify_hover.xbm │ │ │ │ │ ├── max.xbm │ │ │ │ │ ├── max_hover.xbm │ │ │ │ │ ├── max_hover_toggled.xbm │ │ │ │ │ ├── max_toggled.xbm │ │ │ │ │ ├── shade.xbm │ │ │ │ │ ├── shade_hover.xbm │ │ │ │ │ ├── shade_hover_toggled.xbm │ │ │ │ │ ├── shade_toggled.xbm │ │ │ │ │ ├── test.xbm │ │ │ │ │ └── themerc │ │ │ ├── Dracula │ │ │ │ └── openbox-3 │ │ │ │ │ ├── bullet.xbm │ │ │ │ │ ├── close.xbm │ │ │ │ │ ├── close_hover.xbm │ │ │ │ │ ├── desk.xbm │ │ │ │ │ ├── desk_hover.xbm │ │ │ │ │ ├── desk_hover_toggled.xbm │ │ │ │ │ ├── desk_toggled.xbm │ │ │ │ │ ├── iconify.xbm │ │ │ │ │ ├── iconify_hover.xbm │ │ │ │ │ ├── max.xbm │ │ │ │ │ ├── max_hover.xbm │ │ │ │ │ ├── max_hover_toggled.xbm │ │ │ │ │ ├── max_toggled.xbm │ │ │ │ │ ├── shade.xbm │ │ │ │ │ ├── shade_hover.xbm │ │ │ │ │ ├── shade_hover_toggled.xbm │ │ │ │ │ ├── shade_toggled.xbm │ │ │ │ │ ├── test.xbm │ │ │ │ │ └── themerc │ │ │ ├── Joy │ │ │ │ └── openbox-3 │ │ │ │ │ ├── bullet.xbm │ │ │ │ │ ├── close.xbm │ │ │ │ │ ├── desk.xbm │ │ │ │ │ ├── desk_toggled.xbm │ │ │ │ │ ├── iconify.xbm │ │ │ │ │ ├── max.xbm │ │ │ │ │ ├── max_disabled.xbm │ │ │ │ │ ├── max_toggled.xbm │ │ │ │ │ ├── shade.xbm │ │ │ │ │ ├── shade_toggled.xbm │ │ │ │ │ └── themerc │ │ │ ├── Lovely │ │ │ │ └── openbox-3 │ │ │ │ │ ├── bullet.xbm │ │ │ │ │ ├── close.xbm │ │ │ │ │ ├── desk.xbm │ │ │ │ │ ├── desk_toggled.xbm │ │ │ │ │ ├── iconify.xbm │ │ │ │ │ ├── max.xbm │ │ │ │ │ ├── max_disabled.xbm │ │ │ │ │ ├── max_toggled.xbm │ │ │ │ │ ├── shade.xbm │ │ │ │ │ ├── shade_toggled.xbm │ │ │ │ │ └── themerc │ │ │ ├── Nord-Openbox-theme │ │ │ │ └── openbox-3 │ │ │ │ │ ├── bullet.xbm │ │ │ │ │ ├── close.xbm │ │ │ │ │ ├── close_hover.xbm │ │ │ │ │ ├── close_pressed.xbm │ │ │ │ │ ├── desk.xbm │ │ │ │ │ ├── desk_hover.xbm │ │ │ │ │ ├── desk_pressed.xbm │ │ │ │ │ ├── desk_toggled_hover.xbm │ │ │ │ │ ├── iconify.xbm │ │ │ │ │ ├── iconify_hover.xbm │ │ │ │ │ ├── iconify_pressed.xbm │ │ │ │ │ ├── max.xbm │ │ │ │ │ ├── max_hover.xbm │ │ │ │ │ ├── max_pressed.xbm │ │ │ │ │ ├── max_toggled_hover.xbm │ │ │ │ │ ├── max_toggled_pressed.xbm │ │ │ │ │ ├── shade.xbm │ │ │ │ │ ├── shade_hover.xbm │ │ │ │ │ ├── shade_pressed.xbm │ │ │ │ │ ├── shade_toggled_hover.xbm │ │ │ │ │ └── themerc │ │ │ ├── Pelangi │ │ │ │ └── openbox-3 │ │ │ │ │ ├── bullet.xbm │ │ │ │ │ ├── close.xbm │ │ │ │ │ ├── desk.xbm │ │ │ │ │ ├── desk_toggled.xbm │ │ │ │ │ ├── iconify.xbm │ │ │ │ │ ├── max.xbm │ │ │ │ │ ├── max_disabled.xbm │ │ │ │ │ ├── max_toggled.xbm │ │ │ │ │ ├── shade.xbm │ │ │ │ │ └── themerc │ │ │ ├── Prismatic-Night │ │ │ │ ├── index.theme │ │ │ │ ├── openbox-3 │ │ │ │ │ ├── bullet.xbm │ │ │ │ │ ├── close.xbm │ │ │ │ │ ├── desk.xbm │ │ │ │ │ ├── desk_toggled.xbm │ │ │ │ │ ├── iconify.xbm │ │ │ │ │ ├── max.xbm │ │ │ │ │ ├── max_toggled.xbm │ │ │ │ │ ├── shade.xbm │ │ │ │ │ └── themerc │ │ │ │ └── xfce-notify-4.0 │ │ │ │ │ └── gtk.css │ │ │ ├── README.md │ │ │ ├── Raven-Crimson │ │ │ │ └── openbox-3 │ │ │ │ │ ├── bullet.xbm │ │ │ │ │ ├── close.xbm │ │ │ │ │ ├── desk.xbm │ │ │ │ │ ├── desk_toggled.xbm │ │ │ │ │ ├── iconify.xbm │ │ │ │ │ ├── max.xbm │ │ │ │ │ ├── max_disabled.xbm │ │ │ │ │ ├── max_toggled.xbm │ │ │ │ │ ├── shade.xbm │ │ │ │ │ └── themerc │ │ │ ├── Surreal_Gentoo │ │ │ │ ├── gpl.txt │ │ │ │ └── openbox-3 │ │ │ │ │ └── themerc │ │ │ └── Yaru │ │ │ │ └── openbox-3 │ │ │ │ ├── close.xbm │ │ │ │ ├── desk.xbm │ │ │ │ ├── desk_toggled.xbm │ │ │ │ ├── iconify.xbm │ │ │ │ ├── max.xbm │ │ │ │ ├── max_toggled.xbm │ │ │ │ ├── shade.xbm │ │ │ │ ├── shade_toggled.xbm │ │ │ │ └── themerc │ │ └── .zshrc │ ├── ssh │ │ └── sshd_config │ ├── sudoers.d │ │ ├── 01_pw_feedback │ │ └── 02_g_wheel │ ├── systemd │ │ ├── journald.conf.d │ │ │ └── volatile-storage.conf │ │ ├── logind.conf.d │ │ │ └── do-not-suspend.conf │ │ ├── network │ │ │ ├── 20-ethernet.network │ │ │ ├── 20-wlan.network │ │ │ └── 20-wwan.network │ │ ├── system-generators │ │ │ └── systemd-gpt-auto-generator │ │ └── system │ │ │ ├── bluetooth.target.wants │ │ │ └── bluetooth.service │ │ │ ├── choose-mirror.service │ │ │ ├── cloud-init.target.wants │ │ │ ├── cloud-config.service │ │ │ ├── cloud-final.service │ │ │ ├── cloud-init-local.service │ │ │ └── cloud-init.service │ │ │ ├── dbus-org.bluez.service │ │ │ ├── dbus-org.freedesktop.ModemManager1.service │ │ │ ├── dbus-org.freedesktop.network1.service │ │ │ ├── dbus-org.freedesktop.nm-dispatcher.service │ │ │ ├── dbus-org.freedesktop.resolve1.service │ │ │ ├── dbus-org.freedesktop.timesync1.service │ │ │ ├── default.target │ │ │ ├── display-manager.service │ │ │ ├── etc-pacman.d-gnupg.mount │ │ │ ├── getty@tty1.service.d │ │ │ └── autologin.conf │ │ │ ├── livecd-alsa-unmuter.service │ │ │ ├── livecd-talk.service │ │ │ ├── multi-user.target.wants │ │ │ ├── ModemManager.service │ │ │ ├── NetworkManager.service │ │ │ ├── choose-mirror.service │ │ │ ├── hv_fcopy_daemon.service │ │ │ ├── hv_kvp_daemon.service │ │ │ ├── hv_vss_daemon.service │ │ │ ├── iwd.service │ │ │ ├── livecd-talk.service │ │ │ ├── pacman-init.service │ │ │ ├── qemu-guest-agent.service │ │ │ ├── reflector.service │ │ │ ├── sshd.service │ │ │ ├── systemd-networkd.service │ │ │ ├── systemd-resolved.service │ │ │ ├── vboxservice.service │ │ │ ├── vmtoolsd.service │ │ │ ├── vmware-vmblock-fuse.service │ │ │ └── wpa_supplicant.service │ │ │ ├── network-online.target.wants │ │ │ ├── NetworkManager-wait-online.service │ │ │ └── systemd-networkd-wait-online.service │ │ │ ├── pacman-init.service │ │ │ ├── reflector.service.d │ │ │ └── archiso.conf │ │ │ ├── sockets.target.wants │ │ │ └── systemd-networkd.socket │ │ │ ├── sound.target.wants │ │ │ └── livecd-alsa-unmuter.service │ │ │ ├── sysinit.target.wants │ │ │ ├── systemd-time-wait-sync.service │ │ │ └── systemd-timesyncd.service │ │ │ └── systemd-networkd-wait-online.service.d │ │ │ └── wait-for-only-one-interface.conf │ ├── vitunix-release │ └── xdg │ │ └── reflector │ │ └── reflector.conf ├── root │ ├── .automated_script.sh │ ├── .zlogin │ └── customize_airootfs.sh ├── usr │ ├── bin │ │ ├── chrooted_post_install.sh │ │ └── post_install.sh │ └── local │ │ ├── bin │ │ ├── Installation_guide │ │ ├── choose-mirror │ │ ├── chrooted_post_install.sh │ │ ├── livecd-sound │ │ └── post_install.sh │ │ └── share │ │ └── livecd-sound │ │ └── asound.conf.in └── var │ └── lib │ └── sddm │ └── state.conf ├── bootstrap_packages.x86_64 ├── efiboot └── loader │ ├── entries │ ├── 01-archiso-x86_64-linux.conf │ └── 02-archiso-x86_64-speech-linux.conf │ └── loader.conf ├── grub └── grub.cfg ├── packages.x86_64 ├── pacman.conf ├── profiledef.sh └── syslinux ├── archiso_head.cfg ├── archiso_pxe-linux.cfg ├── archiso_pxe.cfg ├── archiso_sys-linux.cfg ├── archiso_sys.cfg ├── archiso_tail.cfg ├── splash.png └── syslinux.cfg /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | #funding for vitunix iso 2 | 3 | ko_fi: heapbytes 4 | -------------------------------------------------------------------------------- /src/airootfs/etc/hostname: -------------------------------------------------------------------------------- 1 | vitunix 2 | -------------------------------------------------------------------------------- /src/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=C.UTF-8 2 | -------------------------------------------------------------------------------- /src/airootfs/etc/localtime: -------------------------------------------------------------------------------- 1 | /usr/share/zoneinfo/UTC -------------------------------------------------------------------------------- /src/airootfs/etc/mkinitcpio.d/linux.preset: -------------------------------------------------------------------------------- 1 | # mkinitcpio preset file for the 'linux' package on archiso 2 | 3 | PRESETS=('archiso') 4 | 5 | ALL_kver='/boot/vmlinuz-linux' 6 | ALL_config='/etc/mkinitcpio.conf' 7 | 8 | archiso_image="/boot/initramfs-linux.img" 9 | -------------------------------------------------------------------------------- /src/airootfs/etc/os-release: -------------------------------------------------------------------------------- 1 | NAME="Vitunix" 2 | PRETTY_NAME="Vitunix" 3 | ID=Vitunix 4 | ID_LIKE=arch 5 | BUILD_ID=rolling 6 | ANSI_COLOR="38;2;23;147;209" 7 | HOME_URL="https://vitunix.github.io/" 8 | LOGO=Vitunix 9 | IMAGE_ID=Vitunix 10 | IMAGE_VERSION=2022.2.12 11 | -------------------------------------------------------------------------------- /src/airootfs/etc/passwd: -------------------------------------------------------------------------------- 1 | root:x:0:0:root:/root:/usr/bin/bash 2 | liveuser:x:1000:1000::/home/liveuser:/usr/bin/zsh 3 | -------------------------------------------------------------------------------- /src/airootfs/etc/polkit-1/rules.d/50-org.freedesktop.NetworkManager.rules: -------------------------------------------------------------------------------- 1 | polkit.addRule(function(action, subject) { 2 | if (action.id.indexOf("org.freedesktop.NetworkManager.") == 0 && subject.isInGroup("network")) { 3 | return polkit.Result.YES; 4 | } 5 | }); 6 | -------------------------------------------------------------------------------- /src/airootfs/etc/polkit-1/rules.d/always-allow-wheel.rules: -------------------------------------------------------------------------------- 1 | polkit.addRule(function(action, subject) { 2 | if (/^org\.freedesktop\.udisks\./.test(action.id) 3 | && subject.isInGroup("wheel")) 4 | { 5 | return polkit.Result.YES; 6 | } 7 | }); 8 | -------------------------------------------------------------------------------- /src/airootfs/etc/resolv.conf: -------------------------------------------------------------------------------- 1 | /run/systemd/resolve/stub-resolv.conf -------------------------------------------------------------------------------- /src/airootfs/etc/shadow: -------------------------------------------------------------------------------- 1 | root::14871:::::: 2 | liveuser:$6$TMf6RYQ5138CZrJJ$NwesWINLnlu2ailpwPZOKLvFfO19uZZNhQcz8WBkyTtGXWu0kpAMhKjJ5X0AzQ8MT7LCRiGuJ74IZi31pC4/S1:14871:::::: 3 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/cache/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.oh-my-zsh/cache/.gitkeep -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/cache/docker_hide_legacy_commands: -------------------------------------------------------------------------------- 1 | _docker_hide_legacy_commands='' 2 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/cache/grep-alias: -------------------------------------------------------------------------------- 1 | alias grep='grep --color=auto --exclude-dir={.bzr,CVS,.git,.hg,.svn,.idea,.tox}' 2 | alias egrep='egrep --color=auto --exclude-dir={.bzr,CVS,.git,.hg,.svn,.idea,.tox}' 3 | alias fgrep='fgrep --color=auto --exclude-dir={.bzr,CVS,.git,.hg,.svn,.idea,.tox}' 4 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/custom/plugins/example/example.plugin.zsh: -------------------------------------------------------------------------------- 1 | # Add your own custom plugins in the custom/plugins directory. Plugins placed 2 | # here will override ones with the same name in the main plugins directory. 3 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/custom/plugins/zsh-autosuggestions/.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --require spec_helper 3 | --format documentation 4 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/custom/plugins/zsh-autosuggestions/.ruby-version: -------------------------------------------------------------------------------- 1 | 2.5.3 2 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/custom/plugins/zsh-autosuggestions/DESCRIPTION: -------------------------------------------------------------------------------- 1 | Fish-like fast/unobtrusive autosuggestions for zsh. 2 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/custom/plugins/zsh-autosuggestions/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'rspec' 4 | gem 'rspec-wait' 5 | gem 'pry-byebug' 6 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/custom/plugins/zsh-autosuggestions/URL: -------------------------------------------------------------------------------- 1 | https://github.com/zsh-users/zsh-autosuggestions 2 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/custom/plugins/zsh-autosuggestions/VERSION: -------------------------------------------------------------------------------- 1 | v0.7.0 2 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/custom/plugins/zsh-autosuggestions/spec/multi_line_spec.rb: -------------------------------------------------------------------------------- 1 | describe 'a multi-line suggestion' do 2 | it 'should be displayed on multiple lines' do 3 | with_history("echo \"\n\"") do 4 | session.send_keys('e') 5 | wait_for { session.content }.to eq("echo \"\n\"") 6 | end 7 | end 8 | end 9 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/custom/plugins/zsh-autosuggestions/spec/options/highlight_style_spec.rb: -------------------------------------------------------------------------------- 1 | describe 'a displayed suggestion' do 2 | it 'is shown in the default style' 3 | 4 | describe 'when ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE is set to a zle_highlight string' do 5 | it 'is shown in the specified style' 6 | end 7 | end 8 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/custom/plugins/zsh-autosuggestions/zsh-autosuggestions.plugin.zsh: -------------------------------------------------------------------------------- 1 | source ${0:A:h}/zsh-autosuggestions.zsh 2 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting/.editorconfig: -------------------------------------------------------------------------------- 1 | # Top-most editorconfig file 2 | 3 | root = true 4 | 5 | [*] 6 | end_of_line = lf 7 | tab_width = 2 8 | indent_size = 2 9 | indent_style = space 10 | 11 | [Makefile] 12 | tab_width = 8 13 | indent_size = 8 14 | indent_style = tab 15 | 16 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting/.gitattributes: -------------------------------------------------------------------------------- 1 | .revision-hash export-subst 2 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting/.gitignore: -------------------------------------------------------------------------------- 1 | *.zwc* 2 | .pc/ 3 | docs/all.md 4 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting/.revision-hash: -------------------------------------------------------------------------------- 1 | e83fa417dc4d0f4b36eb0d7fadcc732882c20f51 2 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting/.version: -------------------------------------------------------------------------------- 1 | 0.8.0-alpha2-dev 2 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting/highlighters/brackets/README.md: -------------------------------------------------------------------------------- 1 | ../../docs/highlighters/brackets.md -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting/highlighters/cursor/README.md: -------------------------------------------------------------------------------- 1 | ../../docs/highlighters/cursor.md -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting/highlighters/line/README.md: -------------------------------------------------------------------------------- 1 | ../../docs/highlighters/line.md -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting/highlighters/main/README.md: -------------------------------------------------------------------------------- 1 | ../../docs/highlighters/main.md -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting/highlighters/pattern/README.md: -------------------------------------------------------------------------------- 1 | ../../docs/highlighters/pattern.md -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting/highlighters/regexp/README.md: -------------------------------------------------------------------------------- 1 | ../../docs/highlighters/regexp.md -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting/highlighters/root/README.md: -------------------------------------------------------------------------------- 1 | ../../docs/highlighters/root.md -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting/images/after1-smaller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting/images/after1-smaller.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting/images/after1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting/images/after1.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting/images/after2-smaller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting/images/after2-smaller.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting/images/after2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting/images/after2.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting/images/after3-smaller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting/images/after3-smaller.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting/images/after3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting/images/after3.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting/images/after4-smaller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting/images/after4-smaller.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting/images/before1-smaller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting/images/before1-smaller.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting/images/before1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting/images/before1.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting/images/before2-smaller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting/images/before2-smaller.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting/images/before2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting/images/before2.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting/images/before3-smaller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting/images/before3-smaller.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting/images/before3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting/images/before3.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting/images/before4-smaller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting/images/before4-smaller.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting/images/preview-smaller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting/images/preview-smaller.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting/images/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting/images/preview.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.plugin.zsh: -------------------------------------------------------------------------------- 1 | 0=${(%):-%N} 2 | source ${0:A:h}/zsh-syntax-highlighting.zsh 3 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/custom/themes/example.zsh-theme: -------------------------------------------------------------------------------- 1 | # Put your custom themes in this folder. 2 | # Example: 3 | 4 | PROMPT="%{$fg[red]%}%n%{$reset_color%}@%{$fg[blue]%}%m %{$fg[yellow]%}%~ %{$reset_color%}%% " 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/custom/themes/powerlevel10k/gitstatus/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: Google 2 | ColumnLimit: 100 3 | DerivePointerAlignment: false 4 | PointerAlignment: Left 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/custom/themes/powerlevel10k/gitstatus/.gitignore: -------------------------------------------------------------------------------- 1 | *.zwc 2 | /core 3 | /deps/libgit2-*.tar.gz 4 | /locks 5 | /logs 6 | /obj 7 | /usrbin/gitstatusd* 8 | /.vscode/ipch 9 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/custom/themes/powerlevel10k/gitstatus/deps/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.oh-my-zsh/custom/themes/powerlevel10k/gitstatus/deps/.gitkeep -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/custom/themes/powerlevel10k/gitstatus/usrbin/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.oh-my-zsh/custom/themes/powerlevel10k/gitstatus/usrbin/.gitkeep -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/custom/themes/powerlevel10k/internal/configure.zsh.zwc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.oh-my-zsh/custom/themes/powerlevel10k/internal/configure.zsh.zwc -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/custom/themes/powerlevel10k/internal/icons.zsh.zwc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.oh-my-zsh/custom/themes/powerlevel10k/internal/icons.zsh.zwc -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/custom/themes/powerlevel10k/internal/p10k.zsh.zwc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.oh-my-zsh/custom/themes/powerlevel10k/internal/p10k.zsh.zwc -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/custom/themes/powerlevel10k/internal/parser.zsh.zwc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.oh-my-zsh/custom/themes/powerlevel10k/internal/parser.zsh.zwc -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/custom/themes/powerlevel10k/internal/worker.zsh.zwc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.oh-my-zsh/custom/themes/powerlevel10k/internal/worker.zsh.zwc -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/custom/themes/powerlevel10k/powerlevel10k.zsh-theme.zwc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.oh-my-zsh/custom/themes/powerlevel10k/powerlevel10k.zsh-theme.zwc -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/custom/themes/powerlevel10k/powerlevel9k.zsh-theme: -------------------------------------------------------------------------------- 1 | 'builtin' 'source' "${POWERLEVEL9K_INSTALLATION_DIR:-${${(%):-%x}:A:h}}/powerlevel10k.zsh-theme" 2 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/custom/themes/powerlevel10k/powerlevel9k.zsh-theme.zwc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.oh-my-zsh/custom/themes/powerlevel10k/powerlevel9k.zsh-theme.zwc -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/custom/themes/powerlevel10k/prompt_powerlevel10k_setup: -------------------------------------------------------------------------------- 1 | 'builtin' 'source' "${POWERLEVEL9K_INSTALLATION_DIR:-${${(%):-%x}:A:h}}/powerlevel10k.zsh-theme" 2 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/custom/themes/powerlevel10k/prompt_powerlevel9k_setup: -------------------------------------------------------------------------------- 1 | 'builtin' 'source' "${POWERLEVEL9K_INSTALLATION_DIR:-${${(%):-%x}:A:h}}/powerlevel10k.zsh-theme" 2 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/custom/themes/spaceship-prompt/spaceship.zsh-theme: -------------------------------------------------------------------------------- 1 | spaceship.zsh -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/custom/themes/spaceship.zsh-theme: -------------------------------------------------------------------------------- 1 | spaceship-prompt/spaceship.zsh-theme -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/lib/nvm.zsh: -------------------------------------------------------------------------------- 1 | # get the nvm-controlled node.js version 2 | function nvm_prompt_info() { 3 | which nvm &>/dev/null || return 4 | local nvm_prompt=${$(nvm current)#v} 5 | echo "${ZSH_THEME_NVM_PROMPT_PREFIX}${nvm_prompt:gs/%/%%}${ZSH_THEME_NVM_PROMPT_SUFFIX}" 6 | } 7 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/log/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.oh-my-zsh/log/.gitkeep -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/1password/1password.plugin.zsh: -------------------------------------------------------------------------------- 1 | # Do nothing if op is not installed 2 | (( ${+commands[op]} )) || return 3 | 4 | # Load op completion 5 | eval "$(op completion zsh)" 6 | compdef _op op 7 | 8 | # Load opswd function 9 | autoload -Uz opswd 10 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/adb/README.md: -------------------------------------------------------------------------------- 1 | # adb autocomplete plugin 2 | 3 | * Adds autocomplete options for all adb commands. 4 | * Add autocomplete for `adb -s` 5 | 6 | ## Requirements 7 | 8 | In order to make this work, you will need to have the Android adb tools set up in your path. 9 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/aliases/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/ant/ant.plugin.zsh: -------------------------------------------------------------------------------- 1 | # Default to colored output 2 | export ANT_ARGS='-logger org.apache.tools.ant.listener.AnsiColorLogger' 3 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/bedtools/README.md: -------------------------------------------------------------------------------- 1 | # Bedtools plugin 2 | 3 | This plugin adds support for the [bedtools suite](http://bedtools.readthedocs.org/en/latest/): 4 | 5 | * Adds autocomplete options for all bedtools sub commands. 6 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/catimg/colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.oh-my-zsh/plugins/catimg/colors.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/celery/README.md: -------------------------------------------------------------------------------- 1 | # Celery 2 | 3 | This plugin provides completion for [Celery](http://www.celeryproject.org/). 4 | 5 | To use it add celery to the plugins array in your zshrc file. 6 | 7 | ```bash 8 | plugins=(... celery) 9 | ``` 10 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/charm/README.md: -------------------------------------------------------------------------------- 1 | # Charm plugin 2 | 3 | This plugin adds completion for the [charm](https://github.com/charmbracelet/charm) CLI. 4 | 5 | To use it, add `charm` to the plugins array in your zshrc file: 6 | 7 | ```zsh 8 | plugins=(... charm) 9 | ``` 10 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/chucknorris/.gitignore: -------------------------------------------------------------------------------- 1 | fortunes/chucknorris.dat 2 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/codeclimate/README.md: -------------------------------------------------------------------------------- 1 | # codeclimate plugin 2 | 3 | This plugin adds autocompletion for the [`codeclimate` CLI](https://github.com/codeclimate/codeclimate). 4 | 5 | To use it, add `codeclimate` to the plugins array in your zshrc file: 6 | ```zsh 7 | plugins=(... codeclimate) 8 | ``` 9 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/colemak/.gitignore: -------------------------------------------------------------------------------- 1 | .less 2 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/colemak/colemak-less: -------------------------------------------------------------------------------- 1 | n forw-line 2 | e back-line 3 | k repeat-search 4 | \ek repeat-search-all 5 | K reverse-search 6 | \eK reverse-search-all 7 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/compleat/README.md: -------------------------------------------------------------------------------- 1 | # compleat plugin 2 | 3 | This plugin looks for [compleat](https://github.com/mbrubeck/compleat) and loads its completion. 4 | 5 | To use it, add compleat to the plugins array in your zshrc file: 6 | 7 | ```zsh 8 | plugins=(... compleat) 9 | ``` 10 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/copyfile/copyfile.plugin.zsh: -------------------------------------------------------------------------------- 1 | # Copies the contents of a given file to the system or X Windows clipboard 2 | # 3 | # copyfile 4 | function copyfile { 5 | emulate -L zsh 6 | clipcopy $1 7 | } 8 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/cp/cp.plugin.zsh: -------------------------------------------------------------------------------- 1 | cpv() { 2 | rsync -pogbr -hhh --backup-dir="/tmp/rsync-${USERNAME}" -e /dev/null --progress "$@" 3 | } 4 | compdef _files cpv 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/cpanm/README.md: -------------------------------------------------------------------------------- 1 | # Cpanm 2 | 3 | This plugin provides completion for [Cpanm](https://github.com/miyagawa/cpanminus) ([docs](https://metacpan.org/pod/App::cpanminus)). 4 | 5 | To use it add cpanm to the plugins array in your zshrc file. 6 | 7 | ```zsh 8 | plugins=(... cpanm) 9 | ``` 10 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/doctl/README.md: -------------------------------------------------------------------------------- 1 | # Doctl 2 | 3 | This plugin provides completion for [Doctl](https://github.com/digitalocean/doctl). 4 | 5 | To use it add doctl to the plugins array in your zshrc file. 6 | 7 | ```bash 8 | plugins=(... doctl) 9 | ``` 10 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/doctl/doctl.plugin.zsh: -------------------------------------------------------------------------------- 1 | # Autocompletion for doctl, the command line tool for DigitalOcean service 2 | # 3 | # doctl project: https://github.com/digitalocean/doctl 4 | # 5 | # Author: https://github.com/HalisCz 6 | 7 | if [ $commands[doctl] ]; then 8 | source <(doctl completion zsh) 9 | fi 10 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/fabric/README.md: -------------------------------------------------------------------------------- 1 | # Fabric 2 | 3 | This plugin provides completion for [Fabric](https://www.fabfile.org/). 4 | 5 | To use it add fabric to the plugins array in your zshrc file. 6 | 7 | ```zsh 8 | plugins=(... fabric) 9 | ``` 10 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/fabric/fabric.plugin.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.oh-my-zsh/plugins/fabric/fabric.plugin.zsh -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/fancy-ctrl-z/fancy-ctrl-z.plugin.zsh: -------------------------------------------------------------------------------- 1 | fancy-ctrl-z () { 2 | if [[ $#BUFFER -eq 0 ]]; then 3 | BUFFER="fg" 4 | zle accept-line -w 5 | else 6 | zle push-input -w 7 | zle clear-screen -w 8 | fi 9 | } 10 | zle -N fancy-ctrl-z 11 | bindkey '^Z' fancy-ctrl-z 12 | 13 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/fbterm/README.md: -------------------------------------------------------------------------------- 1 | # fbterm 2 | 3 | This plugin automatically starts [fbterm](https://github.com/zhangyuanwei/fbterm) 4 | if on a real TTY (`/dev/tty*`). 5 | 6 | To use it, add `fbterm` to the plugins array of your zshrc file: 7 | 8 | ```zsh 9 | plugins=(... fbterm) 10 | ``` 11 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/fbterm/fbterm.plugin.zsh: -------------------------------------------------------------------------------- 1 | # start fbterm automatically in /dev/tty* 2 | 3 | if (( ${+commands[fbterm]} )); then 4 | if [[ "$TTY" = /dev/tty* ]] ; then 5 | fbterm && exit 6 | fi 7 | fi 8 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/fd/README.md: -------------------------------------------------------------------------------- 1 | # fd 2 | 3 | This plugin adds completion for the file search tool [`fd`](https://github.com/sharkdp/fd), also known as `fd-find`. 4 | 5 | To use it, add `fd` to the plugins array in your zshrc file: 6 | 7 | ```zsh 8 | plugins=(... fd) 9 | ``` 10 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/fig/README.md: -------------------------------------------------------------------------------- 1 | # Fig plugin 2 | 3 | This plugin sets up completion for [Fig](https://fig.io/). 4 | 5 | To use it, add `fig` to the plugins array in your zshrc file: 6 | 7 | ```zsh 8 | plugins=(... fig) 9 | ``` 10 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/fnm/README.md: -------------------------------------------------------------------------------- 1 | # fnm plugin 2 | 3 | This plugin adds autocompletion for [fnm](https://github.com/Schniz/fnm) - a Node.js version manager. 4 | 5 | To use it, add `fnm` to the plugins array in your zshrc file: 6 | 7 | ```zsh 8 | plugins=(... fnm) 9 | ``` 10 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/fossil/README.md: -------------------------------------------------------------------------------- 1 | ## Fossil Plugin 2 | 3 | This plugin adds completion support and prompt for fossil repositories. 4 | The prompt will display the current branch and status been dirty or clean. 5 | 6 | ### CONTRIBUTOR 7 | - Jefferson González ([jgmdev](https://github.com/jgmdev)) 8 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/gas/README.md: -------------------------------------------------------------------------------- 1 | # Gas plugin 2 | 3 | This plugin adds autocompletion for the [gas](http://walle.github.com/gas) command, 4 | a utility to manage Git authors. 5 | 6 | To use it, add `gas` to the plugins array of your zshrc file: 7 | 8 | ```zsh 9 | plugins=(... gas) 10 | ``` 11 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/gatsby/README.md: -------------------------------------------------------------------------------- 1 | # gatsby autocomplete plugin 2 | 3 | * Adds autocomplete options for all gatsby commands. 4 | 5 | ## Requirements 6 | 7 | In order to make this work, you will need to have gatsby set up in your path. 8 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/geeknote/geeknote.plugin.zsh: -------------------------------------------------------------------------------- 1 | #Alias 2 | alias gn='geeknote' 3 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/gem/gem.plugin.zsh: -------------------------------------------------------------------------------- 1 | alias gemb="gem build *.gemspec" 2 | alias gemp="gem push *.gem" 3 | 4 | # gemy GEM 0.0.0 = gem yank GEM -v 0.0.0 5 | function gemy { 6 | gem yank $1 -v $2 7 | } -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/genpass/genpass.plugin.zsh: -------------------------------------------------------------------------------- 1 | autoload -Uz genpass-apple genpass-monkey genpass-xkcd 2 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/glassfish/glassfish.plugin.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.oh-my-zsh/plugins/glassfish/glassfish.plugin.zsh -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/golang/templates/search.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.oh-my-zsh/plugins/golang/templates/search.txt -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/gpg-agent/README.md: -------------------------------------------------------------------------------- 1 | # gpg-agent 2 | 3 | Enables [GPG's gpg-agent](https://www.gnupg.org/documentation/manuals/gnupg/) if it is not running. 4 | 5 | To use it, add `gpg-agent` to the plugins array of your zshrc file: 6 | 7 | ```zsh 8 | plugins=(... gpg-agent) 9 | ``` 10 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/helm/README.md: -------------------------------------------------------------------------------- 1 | # Helm plugin 2 | 3 | This plugin adds completion for [Helm](https://helm.sh/), the Kubernetes package manager. 4 | 5 | To use it, add `helm` to the plugins array in your zshrc file: 6 | 7 | ```zsh 8 | plugins=(... helm) 9 | ``` 10 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/heroku/README.md: -------------------------------------------------------------------------------- 1 | # Heroku 2 | 3 | This plugin provides completion for the [Heroku CLI](https://devcenter.heroku.com/articles/heroku-cli). 4 | 5 | To use it add heroku to the plugins array in your zshrc file: 6 | 7 | ```bash 8 | plugins=(... heroku) 9 | ``` 10 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/history/history.plugin.zsh: -------------------------------------------------------------------------------- 1 | alias h='history' 2 | alias hs='history | grep' 3 | alias hsi='history | grep -i' 4 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/hitchhiker/.gitignore: -------------------------------------------------------------------------------- 1 | fortunes/hitchhiker.dat 2 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/homestead/README.md: -------------------------------------------------------------------------------- 1 | # Homestead 2 | 3 | This plugin provides completion for [Homestead](https://laravel.com/docs/homestead). 4 | 5 | To use it add homestead to the plugins array in your zshrc file. 6 | 7 | ```bash 8 | plugins=(... homestead) 9 | ``` 10 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/invoke/README.md: -------------------------------------------------------------------------------- 1 | # Invoke plugin 2 | 3 | This plugin adds completion for [invoke](https://github.com/pyinvoke/invoke). 4 | 5 | To use it, add `invoke` to the plugins array in your `~/.zshrc` file: 6 | 7 | ```zsh 8 | plugins=(... invoke) 9 | ``` 10 | 11 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/invoke/invoke.plugin.zsh: -------------------------------------------------------------------------------- 1 | # Autocompletion for invoke. 2 | # 3 | if [ $commands[invoke] ]; then 4 | source <(invoke --print-completion-script=zsh) 5 | fi 6 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/isodate/isodate.plugin.zsh: -------------------------------------------------------------------------------- 1 | # work with date ISO 8601 easy 2 | 3 | alias isodate="date +%Y-%m-%dT%H:%M:%S%z" 4 | alias isodate_utc="date -u +%Y-%m-%dT%H:%M:%SZ" 5 | alias isodate_basic="date -u +%Y%m%dT%H%M%SZ" 6 | alias unixstamp="date +%s" 7 | alias date_locale="date +"%c"" 8 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/istioctl/istioctl.plugin.zsh: -------------------------------------------------------------------------------- 1 | if [ $commands[istioctl] ]; then 2 | source <(istioctl completion zsh) 3 | compdef _istioctl istioctl 4 | fi 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/jake-node/README.md: -------------------------------------------------------------------------------- 1 | # Jake 2 | 3 | This plugin provides completion for [Jake](http://jakejs.com/). 4 | 5 | To use it add jake-node to the plugins array in your zshrc file. 6 | 7 | ```bash 8 | plugins=(... jake-node) 9 | ``` 10 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/jruby/jruby.plugin.zsh: -------------------------------------------------------------------------------- 1 | # Aliases 2 | alias jrspec='jruby --debug -S rspec --debug' 3 | alias jprofile='jruby --profile.api -S rspec' 4 | alias jexec='jruby -S' 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/kate/kate.plugin.zsh: -------------------------------------------------------------------------------- 1 | 2 | # Kate 3 | # Start kate always silent 4 | alias kate='kate >/dev/null 2>&1' 5 | 6 | function kt () { 7 | cd $1 8 | kate $1 9 | } -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/kitchen/README.md: -------------------------------------------------------------------------------- 1 | # kitchen plugin 2 | 3 | This plugin adds completion support for the [Test Kitchen](https://kitchen.ci). 4 | 5 | To use it, add `kitchen` to the plugins array in your zshrc file: 6 | 7 | ```zsh 8 | plugins=(... kitchen) 9 | ``` 10 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/kn/kn.plugin.zsh: -------------------------------------------------------------------------------- 1 | # Autocompletion for kn, the command line interface for knative 2 | # 3 | # Author: https://github.com/btannous 4 | 5 | if [ $commands[kn] ]; then 6 | source <(kn completion zsh) 7 | compdef _kn kn 8 | fi 9 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/kops/kops.plugin.zsh: -------------------------------------------------------------------------------- 1 | if [ $commands[kops] ]; then 2 | source <(kops completion zsh) 3 | fi 4 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/kubectx/prod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.oh-my-zsh/plugins/kubectx/prod.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/kubectx/stage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.oh-my-zsh/plugins/kubectx/stage.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/lein/README.md: -------------------------------------------------------------------------------- 1 | # Leiningen plugin 2 | 3 | This plugin adds completions for the [Leiningen](https://leiningen.org/) Clojure build tool. 4 | 5 | To use it, add `lein` to the plugins array in your zshrc file: 6 | 7 | ```zsh 8 | plugins=(... lein) 9 | ``` 10 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/lxd/README.md: -------------------------------------------------------------------------------- 1 | # lxd 2 | 3 | This plugin provides completion for [lxd](https://linuxcontainers.org/lxd/), as well as aliases 4 | for frequent lxc commands. 5 | 6 | To use it add `lxd` to the plugins array in your zshrc file. 7 | 8 | ```zsh 9 | plugins=(... lxd) 10 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/minikube/README.md: -------------------------------------------------------------------------------- 1 | # minikube 2 | 3 | This plugin provides completion for [minikube](https://github.com/kubernetes/minikube). 4 | 5 | To use it, add `minikube` to the plugins array in your zshrc file. 6 | 7 | ``` 8 | plugins=(... minikube) 9 | ``` 10 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/mongocli/mongocli.plugin.zsh: -------------------------------------------------------------------------------- 1 | alias ma='mongocli atlas' 2 | alias mcm='mongocli cloud-manager' 3 | alias mom='mongocli ops-manager' 4 | alias miam='mongocli iam' 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/mosh/README.md: -------------------------------------------------------------------------------- 1 | # Mosh Plugin 2 | 3 | This plugin allows SSH tab completion for [mosh](https://mosh.org/) hostnames. 4 | 5 | To use it, add `mosh` to the plugins array in your zshrc file: 6 | 7 | ``` 8 | plugins=(... mosh) 9 | ``` 10 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/mosh/mosh.plugin.zsh: -------------------------------------------------------------------------------- 1 | # Allow SSH tab completion for mosh hostnames 2 | compdef mosh=ssh 3 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/multipass/multipass.plugin.zsh: -------------------------------------------------------------------------------- 1 | alias mp="multipass" 2 | alias mpl="multipass list" 3 | alias mpla="multipass launch" 4 | alias mpln="multipass launch --network en0 --network name=bridge0,mode=manual" 5 | alias mps="multipass shell" 6 | alias mpsp="multipass stop" 7 | alias mpst="multipass start" 8 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/nanoc/nanoc.plugin.zsh: -------------------------------------------------------------------------------- 1 | alias n='nanoc' 2 | alias nco='nanoc compile' 3 | alias ncs='nanoc create-site' 4 | alias nd='nanoc deploy' 5 | alias np='nanoc prune' 6 | alias nv='nanoc view' 7 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/ng/README.md: -------------------------------------------------------------------------------- 1 | # ng plugin 2 | 3 | This plugin adds autocompletion support for [Angular's CLI](https://github.com/angular/angular-cli) 4 | (named `ng`). 5 | 6 | To use it, add `ng` to the plugins array of your zshrc file: 7 | 8 | ```zsh 9 | plugins=(... ng) 10 | ``` 11 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/node/node.plugin.zsh: -------------------------------------------------------------------------------- 1 | # Open the node api for your current version to the optional section. 2 | # TODO: Make the section part easier to use. 3 | function node-docs { 4 | local section=${1:-all} 5 | open_command "https://nodejs.org/docs/$(node --version)/api/$section.html" 6 | } 7 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/oc/oc.plugin.zsh: -------------------------------------------------------------------------------- 1 | # Autocompletion for oc, the command line interface for OpenShift 2 | # 3 | # Author: https://github.com/kevinkirkup 4 | 5 | if [ $commands[oc] ]; then 6 | source <(oc completion zsh) 7 | compdef _oc oc 8 | fi 9 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/operator-sdk/operator-sdk.plugin.zsh: -------------------------------------------------------------------------------- 1 | if [ $commands[operator-sdk] ]; then 2 | source <(operator-sdk completion zsh) 3 | compdef _operator-sdk operator-sdk 4 | fi 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/per-directory-history/per-directory-history.plugin.zsh: -------------------------------------------------------------------------------- 1 | per-directory-history.zsh -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/phing/README.md: -------------------------------------------------------------------------------- 1 | # Phing plugin 2 | 3 | This plugin adds autocompletion for [`phing`](https://github.com/phingofficial/phing) targets. 4 | 5 | To use it, add `phing` to the plugins array of your `.zshrc` file: 6 | 7 | ```zsh 8 | plugins=(... phing) 9 | ``` 10 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/phing/phing.plugin.zsh: -------------------------------------------------------------------------------- 1 | _phing () { 2 | if [ -f build.xml ]; then 3 | compadd $(phing -l|grep -v "\[property\]"|grep -v "Buildfile"|sed 1d|grep -v ":$" |grep -v "^\-*$"|grep -v "Warning:"|awk '{print $1}') 4 | fi 5 | } 6 | 7 | compdef _phing phing 8 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/please/please.plugin.zsh: -------------------------------------------------------------------------------- 1 | if (( $+commands[plz] )); then 2 | source <(plz --completion_script) 3 | fi 4 | 5 | alias pb='plz build' 6 | alias pt='plz test' 7 | alias pw='plz watch' 8 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/pm2/pm2.plugin.zsh: -------------------------------------------------------------------------------- 1 | alias p2s='pm2 start' 2 | alias p2o='pm2 stop' 3 | alias p2d='pm2 delete' 4 | alias p2r='pm2 restart' 5 | alias p2i='pm2 list' 6 | alias p2l='pm2 logs' 7 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/powder/README.md: -------------------------------------------------------------------------------- 1 | # Powder 2 | 3 | This plugin provides completion for [powder](https://github.com/powder-rb/powder/). 4 | 5 | To use it, add powder to the plugins array of your zshrc file: 6 | ``` 7 | plugins=(... powder) 8 | ``` 9 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/powder/_powder: -------------------------------------------------------------------------------- 1 | #compdef powder 2 | #autoload 3 | 4 | compadd `powder help | grep powder | cut -d " " -f 4` 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/pylint/pylint.plugin.zsh: -------------------------------------------------------------------------------- 1 | alias pylint-quick='pylint --reports=n' 2 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/rebar/README.md: -------------------------------------------------------------------------------- 1 | # rebar plugin 2 | 3 | This plugin adds completions for the [rebar](https://www.rebar3.org/) Erlang build tool. 4 | 5 | To use it, add `rebar` to the plugins array in your zshrc file: 6 | 7 | ```zsh 8 | plugins=(... rebar) 9 | ``` 10 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/ripgrep/README.md: -------------------------------------------------------------------------------- 1 | # ripgrep 2 | 3 | This plugin adds completion for the text search tool [`ripgrep`](https://github.com/BurntSushi/ripgrep), also known as `rg`. 4 | 5 | To use it, add `ripgrep` to the plugins array in your zshrc file: 6 | 7 | ```zsh 8 | plugins=(... ripgrep) 9 | ``` 10 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/ros/README.md: -------------------------------------------------------------------------------- 1 | # Roswell Plugin 2 | 3 | This plugin adds completions and aliases for [Roswell](https://github.com/roswell/roswell/). 4 | 5 | To use it, add `ros` to the plugins array in your zshrc file: 6 | 7 | ```zsh 8 | plugins=(... ros) 9 | ``` 10 | 11 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/rsync/rsync.plugin.zsh: -------------------------------------------------------------------------------- 1 | alias rsync-copy="rsync -avz --progress -h" 2 | alias rsync-move="rsync -avz --progress -h --remove-source-files" 3 | alias rsync-update="rsync -avzu --progress -h" 4 | alias rsync-synchronize="rsync -avzu --delete --progress -h" 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/salt/README.md: -------------------------------------------------------------------------------- 1 | ## Salt autocomplete plugin 2 | 3 | A copy of the completion script from the 4 | [salt](https://github.com/saltstack/salt/blob/develop/pkg/zsh_completion.zsh) 5 | git repo. 6 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/samtools/README.md: -------------------------------------------------------------------------------- 1 | # Samtools plugin 2 | 3 | This plugin adds support for [samtools](http://www.htslib.org/): 4 | 5 | * Adds autocomplete options for all samtools sub commands. 6 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/shell-proxy/.editorconfig: -------------------------------------------------------------------------------- 1 | [*.py] 2 | indent_size = 4 3 | indent_style = space 4 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/stack/README.md: -------------------------------------------------------------------------------- 1 | # Stack 2 | 3 | This plugin provides completion for [Stack](https://haskellstack.org). 4 | 5 | To use it add stack to the plugins array in your zshrc file. 6 | 7 | ```bash 8 | plugins=(... stack) 9 | ``` 10 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/stack/stack.plugin.zsh: -------------------------------------------------------------------------------- 1 | (( $+commands[stack] )) || return 2 | 3 | autoload -U +X bashcompinit && bashcompinit 4 | source <(stack --bash-completion-script stack) 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/svcat/README.md: -------------------------------------------------------------------------------- 1 | # svcat 2 | 3 | This plugin provides completion for the [Kubernetes service catalog cli](https://github.com/kubernetes-incubator/service-catalog). 4 | 5 | To use it, add `svcat` to the plugins array in your zshrc file. 6 | 7 | ``` 8 | plugins=(... svcat) 9 | ``` 10 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/svcat/svcat.plugin.zsh: -------------------------------------------------------------------------------- 1 | # Autocompletion for svcat. 2 | # 3 | 4 | if [ $commands[svcat] ]; then 5 | source <(svcat completion zsh) 6 | fi 7 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/symfony/README.md: -------------------------------------------------------------------------------- 1 | # Symfony 2 | 3 | This plugin provides completion for [Symfony](https://symfony.com/). 4 | 5 | To use it add symfony to the plugins array in your zshrc file. 6 | 7 | ```bash 8 | plugins=(... symfony) 9 | ``` 10 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/taskwarrior/taskwarrior.plugin.zsh: -------------------------------------------------------------------------------- 1 | zstyle ':completion:*:*:task:*' verbose yes 2 | zstyle ':completion:*:*:task:*:descriptions' format '%U%B%d%b%u' 3 | 4 | zstyle ':completion:*:*:task:*' group-name '' 5 | 6 | alias t=task 7 | compdef _task t=task 8 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/thor/README.md: -------------------------------------------------------------------------------- 1 | # Thor plugin 2 | 3 | This plugin adds completion for [Thor](http://whatisthor.com/), 4 | a ruby toolkit for building powerful command-line interfaces. 5 | 6 | To use it, add `thor` to the plugins array in your zshrc file: 7 | 8 | ```zsh 9 | plugins=(... thor) 10 | ``` 11 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/thor/_thor: -------------------------------------------------------------------------------- 1 | #compdef thor 2 | #autoload 3 | 4 | compadd `thor list | grep thor | cut -d " " -f 2` 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/tig/tig.plugin.zsh: -------------------------------------------------------------------------------- 1 | alias tis='tig status' 2 | alias til='tig log' 3 | alias tib='tig blame -C' 4 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/tmux/tmux.extra.conf: -------------------------------------------------------------------------------- 1 | set -g default-terminal $ZSH_TMUX_TERM 2 | source-file $ZSH_TMUX_CONFIG -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/tmux/tmux.only.conf: -------------------------------------------------------------------------------- 1 | set -g default-terminal $ZSH_TMUX_TERM 2 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/tmuxinator/tmuxinator.plugin.zsh: -------------------------------------------------------------------------------- 1 | # aliases 2 | alias txs='tmuxinator start' 3 | alias txo='tmuxinator open' 4 | alias txn='tmuxinator new' 5 | alias txl='tmuxinator list' 6 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/toolbox/toolbox.plugin.zsh: -------------------------------------------------------------------------------- 1 | function toolbox_prompt_info() { 2 | [[ -f /run/.toolboxenv ]] && echo "⬢" 3 | } 4 | 5 | alias tb="toolbox enter" 6 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/universalarchive/_universalarchive: -------------------------------------------------------------------------------- 1 | #compdef ua 2 | 3 | _arguments \ 4 | "1:archive format:(7z bz2 gz lzma lzo rar tar tar.bz2 tar.gz tar.lzma tar.xz tar.Z tbz tgz tlz txz tZ xz Z zip zst)" \ 5 | "*:input files:_files" \ 6 | && return 0 7 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/vagrant-prompt/README.md: -------------------------------------------------------------------------------- 1 | This plugin prompts the status of the Vagrant VMs. It supports single-host and 2 | multi-host configurations as well. 3 | 4 | Look inside the source for documentation about custom variables. 5 | 6 | Alberto Re 7 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/volta/README.md: -------------------------------------------------------------------------------- 1 | # Volta 2 | 3 | This plugin provides completion for [Volta](https://volta.sh/). 4 | 5 | To use it add volta to the plugins array in your zshrc file. 6 | 7 | ```bash 8 | plugins=(... volta) 9 | ``` 10 | 11 | This plugin installs no aliases. 12 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/wakeonlan/_wake: -------------------------------------------------------------------------------- 1 | #compdef wake 2 | #autoload 3 | 4 | _arguments "1:device to wake:_files -W '$HOME/.wakeonlan'" && return 0 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/yii2/README.md: -------------------------------------------------------------------------------- 1 | # Yii2 autocomplete plugin 2 | 3 | * Adds autocomplete commands and subcommands for yii. 4 | 5 | ## Requirements 6 | 7 | Autocomplete works from directory where your `yii` file contains. 8 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/z/Makefile: -------------------------------------------------------------------------------- 1 | readme: 2 | @groff -man -Tascii z.1 | col -bx 3 | 4 | .PHONY: readme 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/z/z.plugin.zsh: -------------------------------------------------------------------------------- 1 | # Handle $0 according to the standard: 2 | # https://zdharma-continuum.github.io/Zsh-100-Commits-Club/Zsh-Plugin-Standard.html 3 | 0="${${ZERO:-${0:#$ZSH_ARGZERO}}:-${(%):-%N}}" 4 | 0="${${(M)0:#/*}:-$PWD/$0}" 5 | 6 | source "${0:h}/z.sh" 7 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/zoxide/zoxide.plugin.zsh: -------------------------------------------------------------------------------- 1 | if (( $+commands[zoxide] )); then 2 | eval "$(zoxide init zsh)" 3 | else 4 | echo '[oh-my-zsh] zoxide not found, please install it from https://github.com/ajeetdsouza/zoxide' 5 | fi 6 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/zsh-navigation-tools/doc/img/n-history2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.oh-my-zsh/plugins/zsh-navigation-tools/doc/img/n-history2.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/zsh-navigation-tools/znt-cd-widget: -------------------------------------------------------------------------------- 1 | autoload znt-usetty-wrapper n-cd 2 | local NLIST_START_IN_SEARCH_MODE=0 3 | local NLIST_START_IN_UNIQ_MODE=0 4 | 5 | znt-usetty-wrapper n-cd "$@" 6 | 7 | unset NLIST_START_IN_SEARCH_MODE 8 | unset NLIST_START_IN_UNIQ_MODE 9 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/plugins/zsh-navigation-tools/znt-kill-widget: -------------------------------------------------------------------------------- 1 | autoload znt-usetty-wrapper n-kill 2 | local NLIST_START_IN_SEARCH_MODE=0 3 | local NLIST_START_IN_UNIQ_MODE=0 4 | 5 | znt-usetty-wrapper n-kill "$@" 6 | 7 | unset NLIST_START_IN_SEARCH_MODE 8 | unset NLIST_START_IN_UNIQ_MODE 9 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/themes/cypher.zsh-theme: -------------------------------------------------------------------------------- 1 | # Based on evan's prompt 2 | # Shows the exit status of the last command if non-zero 3 | # Uses "#" instead of "»" when running with elevated privileges 4 | PROMPT="%m %{${fg_bold[red]}%}:: %{${fg[green]}%}%3~%(0?. . %{${fg[red]}%}%? )%{${fg[blue]}%}»%{${reset_color}%} " 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/themes/evan.zsh-theme: -------------------------------------------------------------------------------- 1 | # Evan's minimal prompt 2 | PROMPT='%m :: %2~ %B»%b ' 3 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/themes/geoffgarside.zsh-theme: -------------------------------------------------------------------------------- 1 | # PROMPT="[%*] %n:%c $(git_prompt_info)%(!.#.$) " 2 | PROMPT='[%*] %{$fg[cyan]%}%n%{$reset_color%}:%{$fg[green]%}%c%{$reset_color%}$(git_prompt_info) %(!.#.$) ' 3 | 4 | ZSH_THEME_GIT_PROMPT_PREFIX=" %{$fg[yellow]%}git:(" 5 | ZSH_THEME_GIT_PROMPT_SUFFIX=")%{$reset_color%}" 6 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/themes/imajes.zsh-theme: -------------------------------------------------------------------------------- 1 | # Found on the ZshWiki 2 | # http://zshwiki.org/home/config/prompt 3 | # 4 | 5 | PROMPT="%{$fg[red]%}%%%{$reset_color%} " -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/themes/jtriley.zsh-theme: -------------------------------------------------------------------------------- 1 | PROMPT="%{$fg_bold[cyan]%}%T%{$fg_bold[green]%} %{$fg_bold[white]%}%n%{$fg[magenta]%}@%{$fg_bold[white]%}%m %{$fg_bold[green]%}%d 2 | %{$fg_bold[yellow]%}%% %{$reset_color%}" 3 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/themes/lambda.zsh-theme: -------------------------------------------------------------------------------- 1 | PROMPT='λ %~/ $(git_prompt_info)%{$reset_color%}' 2 | 3 | ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[green]%}" 4 | ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%} " 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/themes/macovsky-ruby.zsh-theme: -------------------------------------------------------------------------------- 1 | macovsky.zsh-theme -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/themes/mgutz.zsh-theme: -------------------------------------------------------------------------------- 1 | PROMPT='%{$fg_bold[magenta]%}%1~$(git_prompt_info) %{$fg_bold[magenta]%}%# %{$reset_color%}' 2 | 3 | ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg_bold[yellow]%}[" 4 | ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}" 5 | ZSH_THEME_GIT_PROMPT_DIRTY="*]" 6 | ZSH_THEME_GIT_PROMPT_CLEAN="]" 7 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/themes/nanotech.zsh-theme: -------------------------------------------------------------------------------- 1 | PROMPT='%F{green}%2c%F{blue} [%f ' 2 | RPROMPT='$(git_prompt_info) %F{blue}] %F{green}%D{%L:%M} %F{yellow}%D{%p}%f' 3 | 4 | ZSH_THEME_GIT_PROMPT_PREFIX="%F{yellow}" 5 | ZSH_THEME_GIT_PROMPT_SUFFIX="%f" 6 | ZSH_THEME_GIT_PROMPT_DIRTY=" %F{red}*%f" 7 | ZSH_THEME_GIT_PROMPT_CLEAN="" 8 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.oh-my-zsh/themes/sammy.zsh-theme: -------------------------------------------------------------------------------- 1 | PROMPT='%{$fg[white]%}%c$(git_prompt_info)$ % %{$reset_color%}' 2 | 3 | ZSH_THEME_GIT_PROMPT_PREFIX="(" 4 | ZSH_THEME_GIT_PROMPT_SUFFIX="" 5 | ZSH_THEME_GIT_PROMPT_DIRTY="*)" 6 | ZSH_THEME_GIT_PROMPT_CLEAN=")" 7 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Afterpiece/openbox-3/close.xbm: -------------------------------------------------------------------------------- 1 | #define close_width 10 2 | #define close_height 10 3 | static unsigned char close_bits[] = { 4 | 0x00, 0x00, 0x00, 0x00, 0x84, 0x00, 0x48, 0x00, 0x30, 0x00, 0x30, 0x00, 5 | 0x48, 0x00, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00 }; 6 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Afterpiece/openbox-3/close_alt.xbm: -------------------------------------------------------------------------------- 1 | #define close_width 8 2 | #define close_height 8 3 | static unsigned char close_bits[] = { 4 | 0xc3, 0xe7, 0x7e, 0x3c, 0x3c, 0x7e, 0xe7, 0xc3 }; 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Afterpiece/openbox-3/desk.xbm: -------------------------------------------------------------------------------- 1 | #define desk_alt_width 10 2 | #define desk_alt_height 10 3 | static unsigned char desk_alt_bits[] = { 4 | 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x00, 0x00, 5 | 0xcc, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x00, 0x00 }; 6 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Afterpiece/openbox-3/desk_alt.xbm: -------------------------------------------------------------------------------- 1 | #define desk_toggled_width 8 2 | #define desk_toggled_height 8 3 | static unsigned char desk_toggled_bits[] = { 4 | 0xe7, 0xe7, 0xe7, 0x00, 0x00, 0xe7, 0xe7, 0xe7 }; 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Afterpiece/openbox-3/desk_toggled.xbm: -------------------------------------------------------------------------------- 1 | #define desk_toggled_alt_width 10 2 | #define desk_toggled_alt_height 10 3 | static unsigned char desk_toggled_alt_bits[] = { 4 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x00, 0x78, 0x00, 0x78, 0x00, 5 | 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; 6 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Afterpiece/openbox-3/desk_toggled_alt.xbm: -------------------------------------------------------------------------------- 1 | #define desk_width 8 2 | #define desk_height 8 3 | static unsigned char desk_bits[] = { 4 | 0x04, 0x0e, 0x3f, 0x1e, 0x1c, 0x24, 0x40, 0x80 }; 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Afterpiece/openbox-3/iconify.xbm: -------------------------------------------------------------------------------- 1 | #define iconify_width 10 2 | #define iconify_height 10 3 | static unsigned char iconify_bits[] = { 4 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 5 | 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00 }; 6 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Afterpiece/openbox-3/iconify_alt.xbm: -------------------------------------------------------------------------------- 1 | #define iconify_alt_width 8 2 | #define iconify_alt_height 8 3 | static unsigned char iconify_alt_bits[] = { 4 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff }; 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Afterpiece/openbox-3/iconify_alt2.xbm: -------------------------------------------------------------------------------- 1 | #define iconify_width 10 2 | #define iconify_height 10 3 | static unsigned char iconify_bits[] = { 4 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x82, 0x00, 0x44, 0x00, 0x28, 0x00, 5 | 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; 6 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Afterpiece/openbox-3/max.xbm: -------------------------------------------------------------------------------- 1 | #define max_alt2_width 10 2 | #define max_alt2_height 10 3 | static unsigned char max_alt2_bits[] = { 4 | 0x00, 0x00, 0x00, 0x00, 0xfc, 0x00, 0x84, 0x00, 0x84, 0x00, 0x84, 0x00, 5 | 0x84, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00 }; 6 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Afterpiece/openbox-3/max_alt.xbm: -------------------------------------------------------------------------------- 1 | #define max_width 8 2 | #define max_height 8 3 | static unsigned char max_bits[] = { 4 | 0xff, 0xff, 0xc3, 0xc3, 0xc3, 0xc3, 0xff, 0xff }; 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Afterpiece/openbox-3/max_alt2.xbm: -------------------------------------------------------------------------------- 1 | #define max_width 10 2 | #define max_height 10 3 | static unsigned char max_bits[] = { 4 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x28, 0x00, 0x44, 0x00, 5 | 0x82, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; 6 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Afterpiece/openbox-3/max_toggled.xbm: -------------------------------------------------------------------------------- 1 | #define max_alt2_width 10 2 | #define max_alt2_height 10 3 | static unsigned char max_alt2_bits[] = { 4 | 0x00, 0x00, 0x00, 0x00, 0xfc, 0x00, 0x84, 0x00, 0x84, 0x00, 0x84, 0x00, 5 | 0x84, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00 }; 6 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Afterpiece/openbox-3/max_toggled_alt.xbm: -------------------------------------------------------------------------------- 1 | #define max_toggled_width 8 2 | #define max_toggled_height 8 3 | static unsigned char max_toggled_bits[] = { 4 | 0xff, 0xff, 0xc3, 0xc3, 0xc3, 0xc3, 0xff, 0xff }; 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Afterpiece/openbox-3/max_toggled_alt2.xbm: -------------------------------------------------------------------------------- 1 | #define max_width 10 2 | #define max_height 10 3 | static unsigned char max_bits[] = { 4 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x28, 0x00, 0x44, 0x00, 5 | 0x82, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; 6 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Afterpiece/openbox-3/shade.xbm: -------------------------------------------------------------------------------- 1 | #define max_width 10 2 | #define max_height 10 3 | static unsigned char max_bits[] = { 4 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x28, 0x00, 0x44, 0x00, 5 | 0x82, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; 6 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Afterpiece/openbox-3/shade_alt.xbm: -------------------------------------------------------------------------------- 1 | #define shade_alt_width 10 2 | #define shade_alt_height 10 3 | static unsigned char shade_alt_bits[] = { 4 | 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x78, 0x00, 0xfc, 0x00, 0xb4, 0x00, 5 | 0x30, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00 }; 6 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Afterpiece/openbox-3/shade_alt2.xbm: -------------------------------------------------------------------------------- 1 | #define shade_width 8 2 | #define shade_height 8 3 | static unsigned char shade_bits[] = { 4 | 0x18, 0x3c, 0x7e, 0xff, 0xdb, 0x18, 0x18, 0x18 }; 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Afterpiece/openbox-3/shade_toggled.xbm: -------------------------------------------------------------------------------- 1 | #define iconify_width 10 2 | #define iconify_height 10 3 | static unsigned char iconify_bits[] = { 4 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x82, 0x00, 0x44, 0x00, 0x28, 0x00, 5 | 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; 6 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Afterpiece/openbox-3/shade_toggled_alt.xbm: -------------------------------------------------------------------------------- 1 | #define shade_toggled_alt_width 10 2 | #define shade_toggled_alt_height 10 3 | static unsigned char shade_toggled_alt_bits[] = { 4 | 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x30, 0x00, 0xb4, 0x00, 0xfc, 0x00, 5 | 0x78, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00 }; 6 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Afterpiece/openbox-3/shade_toggled_alt2.xbm: -------------------------------------------------------------------------------- 1 | #define shade_toggled_width 8 2 | #define shade_toggled_height 8 3 | static unsigned char shade_toggled_bits[] = { 4 | 0x18, 0x18, 0x18, 0xdb, 0xff, 0x7e, 0x3c, 0x18 }; 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/cinnamon/common-assets/misc/overview-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/cinnamon/common-assets/misc/overview-hover.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/cinnamon/common-assets/misc/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/cinnamon/common-assets/misc/overview.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/cinnamon/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/cinnamon/thumbnail.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gnome-shell/assets/calendar-arrow-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gnome-shell/assets/calendar-arrow-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gnome-shell/assets/checkbox-off.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gnome-shell/assets/checkbox.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gnome-shell/assets/close.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gnome-shell/assets/dash-placeholder.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gnome-shell/assets/dash/bottom-running1-focused.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gnome-shell/assets/dash/bottom-running1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gnome-shell/assets/dash/bottom-running2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gnome-shell/assets/dash/left-running1-focused.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gnome-shell/assets/dash/left-running1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gnome-shell/assets/dash/left-running2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gnome-shell/assets/dash/left-running3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gnome-shell/assets/dash/right-running1-focused.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gnome-shell/assets/dash/right-running1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gnome-shell/assets/dash/right-running2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gnome-shell/assets/dash/top-running1-focused.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gnome-shell/assets/dash/top-running1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gnome-shell/assets/dash/top-running2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gnome-shell/assets/dash/top-running3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gnome-shell/assets/key-enter.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gnome-shell/assets/key-shift-latched-uppercase.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gnome-shell/assets/key-shift-uppercase.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gnome-shell/assets/key-shift.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gnome-shell/assets/more-results.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gnome-shell/assets/toggle-off.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gnome-shell/assets/toggle-on.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gnome-shell/message-indicator-symbolic.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gnome-shell/no-events.svg: -------------------------------------------------------------------------------- 1 | assets/no-events.svg -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gnome-shell/no-notifications.svg: -------------------------------------------------------------------------------- 1 | assets/no-notifications.svg -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gnome-shell/noise-texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gnome-shell/noise-texture.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gnome-shell/process-working.svg: -------------------------------------------------------------------------------- 1 | assets/process-working.svg -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/arrow-down-insens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/arrow-down-insens.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/arrow-down-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/arrow-down-prelight.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/arrow-down-small-insens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/arrow-down-small-insens.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/arrow-down-small-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/arrow-down-small-prelight.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/arrow-down-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/arrow-down-small.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/arrow-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/arrow-down.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/arrow-left-insens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/arrow-left-insens.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/arrow-left-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/arrow-left-prelight.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/arrow-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/arrow-left.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/arrow-right-insens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/arrow-right-insens.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/arrow-right-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/arrow-right-prelight.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/arrow-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/arrow-right.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/arrow-up-insens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/arrow-up-insens.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/arrow-up-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/arrow-up-prelight.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/arrow-up-small-insens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/arrow-up-small-insens.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/arrow-up-small-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/arrow-up-small-prelight.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/arrow-up-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/arrow-up-small.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/arrow-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/arrow-up.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/button-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/button-active.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/button-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/button-hover.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/button-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/button-insensitive.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/button.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/checkbox-checked-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/checkbox-checked-insensitive.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/checkbox-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/checkbox-checked.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/checkbox-unchecked-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/checkbox-unchecked-insensitive.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/checkbox-unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/checkbox-unchecked.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/combo-entry-border-focus-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/combo-entry-border-focus-rtl.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/combo-entry-border-focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/combo-entry-border-focus.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/combo-entry-border-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/combo-entry-border-rtl.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/combo-entry-border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/combo-entry-border.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/combo-entry-button-active-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/combo-entry-button-active-rtl.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/combo-entry-button-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/combo-entry-button-active.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/combo-entry-button-insensitive-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/combo-entry-button-insensitive-rtl.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/combo-entry-button-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/combo-entry-button-insensitive.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/combo-entry-button-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/combo-entry-button-rtl.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/combo-entry-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/combo-entry-button.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/combo-entry-focus-notebook-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/combo-entry-focus-notebook-rtl.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/combo-entry-focus-notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/combo-entry-focus-notebook.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/combo-entry-focus-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/combo-entry-focus-rtl.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/combo-entry-focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/combo-entry-focus.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/combo-entry-insensitive-notebook-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/combo-entry-insensitive-notebook-rtl.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/combo-entry-insensitive-notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/combo-entry-insensitive-notebook.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/combo-entry-insensitive-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/combo-entry-insensitive-rtl.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/combo-entry-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/combo-entry-insensitive.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/combo-entry-notebook-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/combo-entry-notebook-rtl.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/combo-entry-notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/combo-entry-notebook.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/combo-entry-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/combo-entry-rtl.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/combo-entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/combo-entry.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/down-background-disable-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/down-background-disable-rtl.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/down-background-disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/down-background-disable.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/down-background-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/down-background-rtl.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/down-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/down-background.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/entry-active-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/entry-active-bg.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/entry-active-notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/entry-active-notebook.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/entry-active-toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/entry-active-toolbar.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/entry-background-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/entry-background-disabled.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/entry-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/entry-background.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/entry-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/entry-bg.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/entry-border-active-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/entry-border-active-bg.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/entry-border-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/entry-border-bg.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/entry-disabled-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/entry-disabled-bg.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/entry-disabled-notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/entry-disabled-notebook.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/entry-disabled-toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/entry-disabled-toolbar.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/entry-notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/entry-notebook.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/entry-toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/entry-toolbar.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/focus-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/focus-line.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/frame-gap-end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/frame-gap-end.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/frame-gap-start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/frame-gap-start.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/frame.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/handle-h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/handle-h.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/handle-v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/handle-v.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/inline-toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/inline-toolbar.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/line-h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/line-h.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/line-v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/line-v.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/menu-arrow-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/menu-arrow-prelight.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/menu-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/menu-arrow.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/menu-checkbox-checked-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/menu-checkbox-checked-insensitive.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/menu-checkbox-checked-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/menu-checkbox-checked-selected.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/menu-checkbox-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/menu-checkbox-checked.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/menu-checkbox-unchecked-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/menu-checkbox-unchecked-insensitive.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/menu-checkbox-unchecked-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/menu-checkbox-unchecked-selected.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/menu-checkbox-unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/menu-checkbox-unchecked.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/menu-radio-checked-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/menu-radio-checked-insensitive.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/menu-radio-checked-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/menu-radio-checked-selected.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/menu-radio-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/menu-radio-checked.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/menu-radio-unchecked-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/menu-radio-unchecked-insensitive.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/menu-radio-unchecked-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/menu-radio-unchecked-selected.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/menu-radio-unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/menu-radio-unchecked.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/menubar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/menubar.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/menubar_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/menubar_button.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/menuitem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/menuitem.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/minus.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/notebook-gap-horiz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/notebook-gap-horiz.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/notebook-gap-vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/notebook-gap-vert.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/notebook.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/null.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/null.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/plus.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/progressbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/progressbar.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/progressbar_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/progressbar_v.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/radio-checked-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/radio-checked-insensitive.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/radio-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/radio-checked.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/radio-unchecked-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/radio-unchecked-insensitive.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/radio-unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/radio-unchecked.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/slider-horiz-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/slider-horiz-active.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/slider-horiz-insens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/slider-horiz-insens.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/slider-horiz-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/slider-horiz-prelight.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/slider-horiz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/slider-horiz.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/slider-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/slider-insensitive.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/slider-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/slider-prelight.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/slider-vert-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/slider-vert-active.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/slider-vert-insens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/slider-vert-insens.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/slider-vert-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/slider-vert-prelight.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/slider-vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/slider-vert.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/slider.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/tab-bottom-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/tab-bottom-active.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/tab-left-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/tab-left-active.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/tab-right-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/tab-right-active.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/tab-top-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/tab-top-active.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/toolbar.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/tree_header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/tree_header.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/trough-horizontal-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/trough-horizontal-active.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/trough-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/trough-horizontal.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/trough-progressbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/trough-progressbar.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/trough-progressbar_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/trough-progressbar_v.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/trough-scrollbar-horiz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/trough-scrollbar-horiz.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/trough-scrollbar-vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/trough-scrollbar-vert.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/trough-vertical-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/trough-vertical-active.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/trough-vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/trough-vertical.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/up-background-disable-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/up-background-disable-rtl.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/up-background-disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/up-background-disable.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/up-background-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/up-background-rtl.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/up-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/assets/up-background.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/menubar-toolbar/button-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/menubar-toolbar/button-active.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/menubar-toolbar/button-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/menubar-toolbar/button-hover.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/menubar-toolbar/button-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/menubar-toolbar/button-insensitive.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/menubar-toolbar/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/menubar-toolbar/button.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/menubar-toolbar/entry-active-toolbar-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/menubar-toolbar/entry-active-toolbar-dark.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/menubar-toolbar/entry-disabled-toolbar-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/menubar-toolbar/entry-disabled-toolbar-dark.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/menubar-toolbar/entry-toolbar-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/menubar-toolbar/entry-toolbar-dark.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/menubar-toolbar/menubar-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/menubar-toolbar/menubar-dark.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/menubar-toolbar/menubar_button-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-2.0/menubar-toolbar/menubar_button-dark.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-3.0/gtk-dark.css: -------------------------------------------------------------------------------- 1 | @import url("resource:///org/gnome/arc-theme/gtk-main-dark.css"); 2 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-3.0/gtk.css: -------------------------------------------------------------------------------- 1 | @import url("resource:///org/gnome/arc-theme/gtk-main.css"); 2 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-3.0/gtk.gresource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-3.0/gtk.gresource -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-3.0/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/gtk-3.0/thumbnail.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/metacity-1/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/metacity-1/thumbnail.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/openbox-3/close.xbm: -------------------------------------------------------------------------------- 1 | #define close_width 8 2 | #define close_height 8 3 | static unsigned char close_bits[] = { 4 | 0xc3, 0xe7, 0x7e, 0x3c, 0x3c, 0x7e, 0xe7, 0xc3 }; 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/openbox-3/desk.xbm: -------------------------------------------------------------------------------- 1 | #define desk_toggled_width 8 2 | #define desk_toggled_height 8 3 | static unsigned char desk_toggled_bits[] = { 4 | 0xe7, 0xe7, 0xe7, 0x00, 0x00, 0xe7, 0xe7, 0xe7 }; 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/openbox-3/desk_toggled.xbm: -------------------------------------------------------------------------------- 1 | #define desk_width 8 2 | #define desk_height 8 3 | static unsigned char desk_bits[] = { 4 | 0x04, 0x0e, 0x3f, 0x1e, 0x1c, 0x24, 0x40, 0x80 }; 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/openbox-3/iconify.xbm: -------------------------------------------------------------------------------- 1 | #define iconify_width 8 2 | #define iconify_height 8 3 | static unsigned char iconify_bits[] = { 4 | 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00 }; 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/openbox-3/max.xbm: -------------------------------------------------------------------------------- 1 | #define titlebutton_max_2_width 8 2 | #define titlebutton_max_2_height 8 3 | static unsigned char titlebutton_max_2_bits[] = { 4 | 0xf8, 0xf0, 0xe0, 0xc1, 0x83, 0x07, 0x0f, 0x1f }; 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/openbox-3/max_toggled.xbm: -------------------------------------------------------------------------------- 1 | #define titlebutton_max_2_width 8 2 | #define titlebutton_max_2_height 8 3 | static unsigned char titlebutton_max_2_bits[] = { 4 | 0xf8, 0xf0, 0xe0, 0xc1, 0x83, 0x07, 0x0f, 0x1f }; 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/openbox-3/shade.xbm: -------------------------------------------------------------------------------- 1 | #define shade_width 8 2 | #define shade_height 8 3 | static unsigned char shade_bits[] = { 4 | 0x18, 0x3c, 0x7e, 0xff, 0xdb, 0x18, 0x18, 0x18 }; 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/openbox-3/shade_toggled.xbm: -------------------------------------------------------------------------------- 1 | #define shade_toggled_width 8 2 | #define shade_toggled_height 8 3 | static unsigned char shade_toggled_bits[] = { 4 | 0x18, 0x18, 0x18, 0xdb, 0xff, 0x7e, 0x3c, 0x18 }; 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/unity/close.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close.svg -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/unity/close_dash.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash.svg -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/unity/close_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash_disabled.svg -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/unity/close_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash_prelight.svg -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/unity/close_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash_pressed.svg -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/unity/close_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close.svg -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/unity/close_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_prelight.svg -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/unity/close_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_pressed.svg -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/unity/close_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_unfocused.svg -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/unity/close_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_prelight.svg -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/unity/close_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_pressed.svg -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/unity/maximize.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/unity/maximize_dash.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash.svg -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/unity/maximize_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_disabled.svg -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/unity/maximize_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_prelight.svg -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/unity/maximize_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_pressed.svg -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/unity/maximize_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/unity/maximize_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/unity/maximize_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/unity/maximize_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_unfocused.svg -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/unity/maximize_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/unity/maximize_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/unity/minimize.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize.svg -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/unity/minimize_dash.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash.svg -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/unity/minimize_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash_disabled.svg -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/unity/minimize_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash_prelight.svg -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/unity/minimize_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash_pressed.svg -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/unity/minimize_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize.svg -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/unity/minimize_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_prelight.svg -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/unity/minimize_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_pressed.svg -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/unity/minimize_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_unfocused.svg -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/unity/minimize_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_prelight.svg -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/unity/minimize_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_pressed.svg -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/unity/sheet_style_close_focused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close.svg -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/unity/sheet_style_close_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_prelight.svg -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/unity/sheet_style_close_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_unfocused.svg -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/unity/unmaximize.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/unity/unmaximize_dash.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash.svg -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/unity/unmaximize_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_disabled.svg -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/unity/unmaximize_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_prelight.svg -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/unity/unmaximize_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_pressed.svg -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/unity/unmaximize_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/unity/unmaximize_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/unity/unmaximize_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/unity/unmaximize_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_unfocused.svg -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/unity/unmaximize_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/unity/unmaximize_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/bottom-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/bottom-active.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/bottom-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/bottom-inactive.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/bottom-left-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/bottom-left-active.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/bottom-left-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/bottom-left-inactive.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/bottom-right-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/bottom-right-active.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/bottom-right-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/bottom-right-inactive.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/close-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/close-active.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/close-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/close-inactive.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/close-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/close-prelight.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/close-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/close-pressed.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/hide-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/hide-active.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/hide-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/hide-inactive.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/hide-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/hide-prelight.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/hide-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/hide-pressed.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/left-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/left-active.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/left-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/left-inactive.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/maximize-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/maximize-active.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/maximize-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/maximize-inactive.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/maximize-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/maximize-prelight.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/maximize-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/maximize-pressed.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/menu-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/menu-active.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/menu-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/menu-inactive.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/menu-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/menu-pressed.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/right-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/right-active.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/right-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/right-inactive.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/shade-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/shade-active.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/shade-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/shade-inactive.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/shade-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/shade-pressed.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/stick-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/stick-active.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/stick-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/stick-inactive.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/stick-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/stick-pressed.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/title-1-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/title-1-active.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/title-1-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/title-1-inactive.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/title-2-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/title-2-active.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/title-2-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/title-2-inactive.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/title-3-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/title-3-active.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/title-3-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/title-3-inactive.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/title-4-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/title-4-active.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/title-4-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/title-4-inactive.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/title-5-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/title-5-active.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/title-5-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/title-5-inactive.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/top-left-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/top-left-active.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/top-left-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/top-left-inactive.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/top-right-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/top-right-active.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/top-right-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/airootfs/etc/skel/.themes/Arc-Darkest/xfwm4/top-right-inactive.png -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Blocks/openbox-3/bullet.xbm: -------------------------------------------------------------------------------- 1 | #define bullet_width 10 2 | #define bullet_height 10 3 | static unsigned char bullet_bits[] = { 4 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x30, 0x00, 5 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; 6 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Blocks/openbox-3/close.xbm: -------------------------------------------------------------------------------- 1 | #define close_width 10 2 | #define close_height 10 3 | static unsigned char close_bits[] = { 4 | 0xff, 0x03, 0xff, 0x03, 0xff, 0x03, 0xff, 0x03, 0xff, 0x03, 0xff, 0x03, 5 | 0xff, 0x03, 0xff, 0x03, 0xff, 0x03, 0xff, 0x03 }; 6 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Blocks/openbox-3/desk.xbm: -------------------------------------------------------------------------------- 1 | #define close_width 10 2 | #define close_height 10 3 | static unsigned char close_bits[] = { 4 | 0xff, 0x03, 0xff, 0x03, 0xff, 0x03, 0xff, 0x03, 0xff, 0x03, 0xff, 0x03, 5 | 0xff, 0x03, 0xff, 0x03, 0xff, 0x03, 0xff, 0x03 }; 6 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Blocks/openbox-3/desk_toggled.xbm: -------------------------------------------------------------------------------- 1 | #define close_width 10 2 | #define close_height 10 3 | static unsigned char close_bits[] = { 4 | 0xff, 0x03, 0xff, 0x03, 0xff, 0x03, 0xff, 0x03, 0xff, 0x03, 0xff, 0x03, 5 | 0xff, 0x03, 0xff, 0x03, 0xff, 0x03, 0xff, 0x03 }; 6 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Blocks/openbox-3/iconify.xbm: -------------------------------------------------------------------------------- 1 | #define close_width 10 2 | #define close_height 10 3 | static unsigned char close_bits[] = { 4 | 0xff, 0x03, 0xff, 0x03, 0xff, 0x03, 0xff, 0x03, 0xff, 0x03, 0xff, 0x03, 5 | 0xff, 0x03, 0xff, 0x03, 0xff, 0x03, 0xff, 0x03 }; 6 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Blocks/openbox-3/max.xbm: -------------------------------------------------------------------------------- 1 | #define close_width 10 2 | #define close_height 10 3 | static unsigned char close_bits[] = { 4 | 0xff, 0x03, 0xff, 0x03, 0xff, 0x03, 0xff, 0x03, 0xff, 0x03, 0xff, 0x03, 5 | 0xff, 0x03, 0xff, 0x03, 0xff, 0x03, 0xff, 0x03 }; 6 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Blocks/openbox-3/max_disabled.xbm: -------------------------------------------------------------------------------- 1 | #define close_width 10 2 | #define close_height 10 3 | static unsigned char close_bits[] = { 4 | 0xff, 0x03, 0xff, 0x03, 0xff, 0x03, 0xff, 0x03, 0xff, 0x03, 0xff, 0x03, 5 | 0xff, 0x03, 0xff, 0x03, 0xff, 0x03, 0xff, 0x03 }; 6 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Blocks/openbox-3/max_toggled.xbm: -------------------------------------------------------------------------------- 1 | #define close_width 10 2 | #define close_height 10 3 | static unsigned char close_bits[] = { 4 | 0xff, 0x03, 0xff, 0x03, 0xff, 0x03, 0xff, 0x03, 0xff, 0x03, 0xff, 0x03, 5 | 0xff, 0x03, 0xff, 0x03, 0xff, 0x03, 0xff, 0x03 }; 6 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Blocks/openbox-3/shade.xbm: -------------------------------------------------------------------------------- 1 | #define close_width 10 2 | #define close_height 10 3 | static unsigned char close_bits[] = { 4 | 0xff, 0x03, 0xff, 0x03, 0xff, 0x03, 0xff, 0x03, 0xff, 0x03, 0xff, 0x03, 5 | 0xff, 0x03, 0xff, 0x03, 0xff, 0x03, 0xff, 0x03 }; 6 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Clair-Crimson/openbox-3/bullet.xbm: -------------------------------------------------------------------------------- 1 | #define bullet_width 10 2 | #define bullet_height 10 3 | static unsigned char bullet_bits[] = { 4 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x30, 0x00, 5 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; 6 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Clair-Crimson/openbox-3/close.xbm: -------------------------------------------------------------------------------- 1 | #define desk_width 6 2 | #define desk_height 6 3 | static unsigned char desk_bits[] = { 4 | 0x33, 0x33, 0x00, 0x00, 0x33, 0x33 }; 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Clair-Crimson/openbox-3/desk.xbm: -------------------------------------------------------------------------------- 1 | #define desk_width 6 2 | #define desk_height 6 3 | static unsigned char desk_bits[] = { 4 | 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f }; 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Clair-Crimson/openbox-3/desk_toggled.xbm: -------------------------------------------------------------------------------- 1 | #define desk_width 6 2 | #define desk_height 6 3 | static unsigned char desk_bits[] = { 4 | 0x3f, 0x3f, 0x33, 0x33, 0x3f, 0x3f }; 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Clair-Crimson/openbox-3/iconify.xbm: -------------------------------------------------------------------------------- 1 | #define iconify_width 6 2 | #define iconify_height 6 3 | static unsigned char iconify_bits[] = { 4 | 0x00, 0x00, 0x00, 0x00, 0x0c, 0x0c }; 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Clair-Crimson/openbox-3/max.xbm: -------------------------------------------------------------------------------- 1 | #define max7_width 6 2 | #define max7_height 6 3 | static unsigned char max7_bits[] = { 4 | 0x33, 0x33, 0x00, 0x00, 0x30, 0x30 }; 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Clair-Crimson/openbox-3/max_disabled.xbm: -------------------------------------------------------------------------------- 1 | #define max_disabled_width 6 2 | #define max_disabled_height 6 3 | static unsigned char max_disabled_bits[] = { 4 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Clair-Crimson/openbox-3/max_toggled.xbm: -------------------------------------------------------------------------------- 1 | #define iconify2_width 6 2 | #define iconify2_height 6 3 | static unsigned char iconify2_bits[] = { 4 | 0x03, 0x03, 0x00, 0x00, 0x33, 0x33 }; 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Clair-Crimson/openbox-3/shade.xbm: -------------------------------------------------------------------------------- 1 | #define shade_width 6 2 | #define shade_height 6 3 | static unsigned char shade_bits[] = { 4 | 0x0c, 0x0c, 0x00, 0x00, 0x00, 0x00 }; 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Dracula-withoutBorder/openbox-3/bullet.xbm: -------------------------------------------------------------------------------- 1 | #define bullet_width 6 2 | #define bullet_height 6 3 | static unsigned char bullet_bits[] = { 4 | 0x06, 0x0c, 0x18, 0x18, 0x0c, 0x06 }; 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Dracula-withoutBorder/openbox-3/close.xbm: -------------------------------------------------------------------------------- 1 | #define close_width 10 2 | #define close_height 10 3 | static unsigned char close_bits[] = { 4 | 0x7c, 0x00, 0xfe, 0x00, 0xff, 0x01, 0xff, 0x01, 0xff, 0x01, 0xff, 0x01, 5 | 0xff, 0x01, 0xfe, 0x00, 0x7c, 0x00, 0x00, 0x00 }; 6 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Dracula-withoutBorder/openbox-3/close_hover.xbm: -------------------------------------------------------------------------------- 1 | #define close_width 8 2 | #define close_height 8 3 | static unsigned char close_bits[] = { 4 | 0xc3, 0xe7, 0x7e, 0x3c, 0x3c, 0x7e, 0xe7, 0xc3 }; 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Dracula-withoutBorder/openbox-3/desk.xbm: -------------------------------------------------------------------------------- 1 | #define close_width 10 2 | #define close_height 10 3 | static unsigned char close_bits[] = { 4 | 0x7c, 0x00, 0xfe, 0x00, 0xff, 0x01, 0xff, 0x01, 0xff, 0x01, 0xff, 0x01, 5 | 0xff, 0x01, 0xfe, 0x00, 0x7c, 0x00, 0x00, 0x00 }; 6 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Dracula-withoutBorder/openbox-3/desk_hover.xbm: -------------------------------------------------------------------------------- 1 | #define desk_toggled_width 8 2 | #define desk_toggled_height 8 3 | static unsigned char desk_toggled_bits[] = { 4 | 0xe7, 0xe7, 0xe7, 0x00, 0x00, 0xe7, 0xe7, 0xe7 }; 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Dracula-withoutBorder/openbox-3/desk_hover_toggled.xbm: -------------------------------------------------------------------------------- 1 | #define desk_width 8 2 | #define desk_height 8 3 | static unsigned char desk_bits[] = { 4 | 0x04, 0x0e, 0x3f, 0x1e, 0x1c, 0x24, 0x40, 0x80 }; 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Dracula-withoutBorder/openbox-3/desk_toggled.xbm: -------------------------------------------------------------------------------- 1 | #define close_width 10 2 | #define close_height 10 3 | static unsigned char close_bits[] = { 4 | 0x7c, 0x00, 0xfe, 0x00, 0xff, 0x01, 0xff, 0x01, 0xff, 0x01, 0xff, 0x01, 5 | 0xff, 0x01, 0xfe, 0x00, 0x7c, 0x00, 0x00, 0x00 }; 6 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Dracula-withoutBorder/openbox-3/iconify.xbm: -------------------------------------------------------------------------------- 1 | #define iconify_width 10 2 | #define iconify_height 10 3 | static unsigned char iconify_bits[] = { 4 | 0x7c, 0x00, 0xfe, 0x00, 0xff, 0x01, 0xff, 0x01, 0xff, 0x01, 0xff, 0x01, 5 | 0xff, 0x01, 0xfe, 0x00, 0x7c, 0x00, 0x00, 0x00 }; 6 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Dracula-withoutBorder/openbox-3/iconify_hover.xbm: -------------------------------------------------------------------------------- 1 | #define iconify_width 8 2 | #define iconify_height 8 3 | static unsigned char iconify_bits[] = { 4 | 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00 }; 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Dracula-withoutBorder/openbox-3/max.xbm: -------------------------------------------------------------------------------- 1 | #define max_width 10 2 | #define max_height 10 3 | static unsigned char max_bits[] = { 4 | 0x7c, 0x00, 0xfe, 0x00, 0xff, 0x01, 0xff, 0x01, 0xff, 0x01, 0xff, 0x01, 5 | 0xff, 0x01, 0xfe, 0x00, 0x7c, 0x00, 0x00, 0x00 }; 6 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Dracula-withoutBorder/openbox-3/max_hover.xbm: -------------------------------------------------------------------------------- 1 | #define titlebutton_max_2_width 8 2 | #define titlebutton_max_2_height 8 3 | static unsigned char titlebutton_max_2_bits[] = { 4 | 0xf8, 0xf0, 0xe0, 0xc1, 0x83, 0x07, 0x0f, 0x1f }; 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Dracula-withoutBorder/openbox-3/max_hover_toggled.xbm: -------------------------------------------------------------------------------- 1 | #define titlebutton_max_2_width 8 2 | #define titlebutton_max_2_height 8 3 | static unsigned char titlebutton_max_2_bits[] = { 4 | 0xf8, 0xf0, 0xe0, 0xc1, 0x83, 0x07, 0x0f, 0x1f }; 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Dracula-withoutBorder/openbox-3/max_toggled.xbm: -------------------------------------------------------------------------------- 1 | #define max_width 10 2 | #define max_height 10 3 | static unsigned char max_bits[] = { 4 | 0x7c, 0x00, 0xfe, 0x00, 0xff, 0x01, 0xff, 0x01, 0xff, 0x01, 0xff, 0x01, 5 | 0xff, 0x01, 0xfe, 0x00, 0x7c, 0x00, 0x00, 0x00 }; 6 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Dracula-withoutBorder/openbox-3/shade.xbm: -------------------------------------------------------------------------------- 1 | #define iconify_width 10 2 | #define iconify_height 10 3 | static unsigned char iconify_bits[] = { 4 | 0x7c, 0x00, 0xfe, 0x00, 0xff, 0x01, 0xff, 0x01, 0xff, 0x01, 0xff, 0x01, 5 | 0xff, 0x01, 0xfe, 0x00, 0x7c, 0x00, 0x00, 0x00 }; 6 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Dracula-withoutBorder/openbox-3/shade_hover.xbm: -------------------------------------------------------------------------------- 1 | #define shade_width 8 2 | #define shade_height 8 3 | static unsigned char shade_bits[] = { 4 | 0x18, 0x3c, 0x7e, 0xff, 0xdb, 0x18, 0x18, 0x18 }; 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Dracula-withoutBorder/openbox-3/shade_hover_toggled.xbm: -------------------------------------------------------------------------------- 1 | #define shade_toggled_width 8 2 | #define shade_toggled_height 8 3 | static unsigned char shade_toggled_bits[] = { 4 | 0x18, 0x18, 0x18, 0xdb, 0xff, 0x7e, 0x3c, 0x18 }; 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Dracula-withoutBorder/openbox-3/shade_toggled.xbm: -------------------------------------------------------------------------------- 1 | #define iconify_width 10 2 | #define iconify_height 10 3 | static unsigned char iconify_bits[] = { 4 | 0x7c, 0x00, 0xfe, 0x00, 0xff, 0x01, 0xff, 0x01, 0xff, 0x01, 0xff, 0x01, 5 | 0xff, 0x01, 0xfe, 0x00, 0x7c, 0x00, 0x00, 0x00 }; 6 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Dracula/openbox-3/bullet.xbm: -------------------------------------------------------------------------------- 1 | #define bullet_width 6 2 | #define bullet_height 6 3 | static unsigned char bullet_bits[] = { 4 | 0x06, 0x0c, 0x18, 0x18, 0x0c, 0x06 }; 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Dracula/openbox-3/close.xbm: -------------------------------------------------------------------------------- 1 | #define close_width 10 2 | #define close_height 10 3 | static unsigned char close_bits[] = { 4 | 0x7c, 0x00, 0xfe, 0x00, 0xff, 0x01, 0xff, 0x01, 0xff, 0x01, 0xff, 0x01, 5 | 0xff, 0x01, 0xfe, 0x00, 0x7c, 0x00, 0x00, 0x00 }; 6 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Dracula/openbox-3/close_hover.xbm: -------------------------------------------------------------------------------- 1 | #define close_width 8 2 | #define close_height 8 3 | static unsigned char close_bits[] = { 4 | 0xc3, 0xe7, 0x7e, 0x3c, 0x3c, 0x7e, 0xe7, 0xc3 }; 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Dracula/openbox-3/desk.xbm: -------------------------------------------------------------------------------- 1 | #define close_width 10 2 | #define close_height 10 3 | static unsigned char close_bits[] = { 4 | 0x7c, 0x00, 0xfe, 0x00, 0xff, 0x01, 0xff, 0x01, 0xff, 0x01, 0xff, 0x01, 5 | 0xff, 0x01, 0xfe, 0x00, 0x7c, 0x00, 0x00, 0x00 }; 6 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Dracula/openbox-3/desk_hover.xbm: -------------------------------------------------------------------------------- 1 | #define desk_toggled_width 8 2 | #define desk_toggled_height 8 3 | static unsigned char desk_toggled_bits[] = { 4 | 0xe7, 0xe7, 0xe7, 0x00, 0x00, 0xe7, 0xe7, 0xe7 }; 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Dracula/openbox-3/desk_hover_toggled.xbm: -------------------------------------------------------------------------------- 1 | #define desk_width 8 2 | #define desk_height 8 3 | static unsigned char desk_bits[] = { 4 | 0x04, 0x0e, 0x3f, 0x1e, 0x1c, 0x24, 0x40, 0x80 }; 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Dracula/openbox-3/desk_toggled.xbm: -------------------------------------------------------------------------------- 1 | #define close_width 10 2 | #define close_height 10 3 | static unsigned char close_bits[] = { 4 | 0x7c, 0x00, 0xfe, 0x00, 0xff, 0x01, 0xff, 0x01, 0xff, 0x01, 0xff, 0x01, 5 | 0xff, 0x01, 0xfe, 0x00, 0x7c, 0x00, 0x00, 0x00 }; 6 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Dracula/openbox-3/iconify.xbm: -------------------------------------------------------------------------------- 1 | #define iconify_width 10 2 | #define iconify_height 10 3 | static unsigned char iconify_bits[] = { 4 | 0x7c, 0x00, 0xfe, 0x00, 0xff, 0x01, 0xff, 0x01, 0xff, 0x01, 0xff, 0x01, 5 | 0xff, 0x01, 0xfe, 0x00, 0x7c, 0x00, 0x00, 0x00 }; 6 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Dracula/openbox-3/iconify_hover.xbm: -------------------------------------------------------------------------------- 1 | #define iconify_width 8 2 | #define iconify_height 8 3 | static unsigned char iconify_bits[] = { 4 | 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00 }; 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Dracula/openbox-3/max.xbm: -------------------------------------------------------------------------------- 1 | #define max_width 10 2 | #define max_height 10 3 | static unsigned char max_bits[] = { 4 | 0x7c, 0x00, 0xfe, 0x00, 0xff, 0x01, 0xff, 0x01, 0xff, 0x01, 0xff, 0x01, 5 | 0xff, 0x01, 0xfe, 0x00, 0x7c, 0x00, 0x00, 0x00 }; 6 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Dracula/openbox-3/max_hover.xbm: -------------------------------------------------------------------------------- 1 | #define titlebutton_max_2_width 8 2 | #define titlebutton_max_2_height 8 3 | static unsigned char titlebutton_max_2_bits[] = { 4 | 0xf8, 0xf0, 0xe0, 0xc1, 0x83, 0x07, 0x0f, 0x1f }; 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Dracula/openbox-3/max_hover_toggled.xbm: -------------------------------------------------------------------------------- 1 | #define titlebutton_max_2_width 8 2 | #define titlebutton_max_2_height 8 3 | static unsigned char titlebutton_max_2_bits[] = { 4 | 0xf8, 0xf0, 0xe0, 0xc1, 0x83, 0x07, 0x0f, 0x1f }; 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Dracula/openbox-3/max_toggled.xbm: -------------------------------------------------------------------------------- 1 | #define max_width 10 2 | #define max_height 10 3 | static unsigned char max_bits[] = { 4 | 0x7c, 0x00, 0xfe, 0x00, 0xff, 0x01, 0xff, 0x01, 0xff, 0x01, 0xff, 0x01, 5 | 0xff, 0x01, 0xfe, 0x00, 0x7c, 0x00, 0x00, 0x00 }; 6 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Dracula/openbox-3/shade.xbm: -------------------------------------------------------------------------------- 1 | #define iconify_width 10 2 | #define iconify_height 10 3 | static unsigned char iconify_bits[] = { 4 | 0x7c, 0x00, 0xfe, 0x00, 0xff, 0x01, 0xff, 0x01, 0xff, 0x01, 0xff, 0x01, 5 | 0xff, 0x01, 0xfe, 0x00, 0x7c, 0x00, 0x00, 0x00 }; 6 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Dracula/openbox-3/shade_hover.xbm: -------------------------------------------------------------------------------- 1 | #define shade_width 8 2 | #define shade_height 8 3 | static unsigned char shade_bits[] = { 4 | 0x18, 0x3c, 0x7e, 0xff, 0xdb, 0x18, 0x18, 0x18 }; 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Dracula/openbox-3/shade_hover_toggled.xbm: -------------------------------------------------------------------------------- 1 | #define shade_toggled_width 8 2 | #define shade_toggled_height 8 3 | static unsigned char shade_toggled_bits[] = { 4 | 0x18, 0x18, 0x18, 0xdb, 0xff, 0x7e, 0x3c, 0x18 }; 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Dracula/openbox-3/shade_toggled.xbm: -------------------------------------------------------------------------------- 1 | #define iconify_width 10 2 | #define iconify_height 10 3 | static unsigned char iconify_bits[] = { 4 | 0x7c, 0x00, 0xfe, 0x00, 0xff, 0x01, 0xff, 0x01, 0xff, 0x01, 0xff, 0x01, 5 | 0xff, 0x01, 0xfe, 0x00, 0x7c, 0x00, 0x00, 0x00 }; 6 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Joy/openbox-3/close.xbm: -------------------------------------------------------------------------------- 1 | #define close_width 14 2 | #define close_height 14 3 | static unsigned char close_bits[] = { 4 | 0x00, 0x00, 0x00, 0x00, 0x0c, 0x0c, 0x1c, 0x0e, 0x3c, 0x0f, 0xf8, 0x07, 5 | 0xf0, 0x03, 0xe0, 0x01, 0xf0, 0x03, 0xf8, 0x07, 0x3c, 0x0f, 0x1c, 0x0e, 6 | 0x00, 0x00, 0x00, 0x00 }; 7 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Joy/openbox-3/desk.xbm: -------------------------------------------------------------------------------- 1 | #define desk_width 14 2 | #define desk_height 14 3 | static unsigned char desk_bits[] = { 4 | 0x00, 0x00, 0x00, 0x00, 0xf8, 0x07, 0xfc, 0x0f, 0xfc, 0x0f, 0xfc, 0x0f, 5 | 0xfc, 0x0f, 0xf8, 0x07, 0xf8, 0x07, 0xf0, 0x03, 0xf0, 0x03, 0xe0, 0x01, 6 | 0x00, 0x00, 0x00, 0x00 }; 7 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Joy/openbox-3/max.xbm: -------------------------------------------------------------------------------- 1 | #define max_width 14 2 | #define max_height 14 3 | static unsigned char max_bits[] = { 4 | 0x00, 0x00, 0x00, 0x00, 0xf8, 0x07, 0xfc, 0x0f, 0xfc, 0x0f, 0xfc, 0x0f, 5 | 0xfc, 0x0f, 0xfc, 0x0f, 0xfc, 0x0f, 0xfc, 0x0f, 0xfc, 0x0f, 0xf8, 0x07, 6 | 0x00, 0x00, 0x00, 0x00 }; 7 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Joy/openbox-3/shade.xbm: -------------------------------------------------------------------------------- 1 | #define max_width 14 2 | #define max_height 14 3 | static unsigned char max_bits[] = { 4 | 0x00, 0x00, 0x00, 0x00, 0xf0, 0x03, 0xf8, 0x07, 0xfc, 0x0f, 0xfc, 0x0f, 5 | 0xfc, 0x0f, 0xfc, 0x0f, 0xfc, 0x0f, 0xfc, 0x0f, 0xf8, 0x07, 0xf0, 0x03, 6 | 0x00, 0x00, 0x00, 0x00 }; 7 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Joy/openbox-3/shade_toggled.xbm: -------------------------------------------------------------------------------- 1 | #define max_width 14 2 | #define max_height 14 3 | static unsigned char max_bits[] = { 4 | 0x00, 0x00, 0x00, 0x00, 0xf0, 0x03, 0xf8, 0x07, 0xfc, 0x0f, 0xfc, 0x0f, 5 | 0xfc, 0x0f, 0xfc, 0x0f, 0xfc, 0x0f, 0xfc, 0x0f, 0xf8, 0x07, 0xf0, 0x03, 6 | 0x00, 0x00, 0x00, 0x00 }; 7 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Lovely/openbox-3/desk.xbm: -------------------------------------------------------------------------------- 1 | #define desk_width 14 2 | #define desk_height 14 3 | static unsigned char desk_bits[] = { 4 | 0x00, 0x00, 0x00, 0x00, 0xf0, 0x03, 0xf8, 0x07, 0xfc, 0x0f, 0xfc, 0x0f, 5 | 0xfc, 0x0f, 0xfc, 0x0f, 0xfc, 0x0f, 0xfc, 0x0f, 0xf8, 0x07, 0xf0, 0x03, 6 | 0x00, 0x00, 0x00, 0x00 }; 7 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Lovely/openbox-3/max.xbm: -------------------------------------------------------------------------------- 1 | #define max_width 14 2 | #define max_height 14 3 | static unsigned char max_bits[] = { 4 | 0x00, 0x00, 0x00, 0x00, 0xf0, 0x03, 0xf8, 0x07, 0xfc, 0x0f, 0xfc, 0x0f, 5 | 0xfc, 0x0f, 0xfc, 0x0f, 0xfc, 0x0f, 0xfc, 0x0f, 0xf8, 0x07, 0xf0, 0x03, 6 | 0x00, 0x00, 0x00, 0x00 }; 7 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Nord-Openbox-theme/openbox-3/bullet.xbm: -------------------------------------------------------------------------------- 1 | #define bullet_width 10 2 | #define bullet_height 10 3 | static unsigned char bullet_bits[] = { 4 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x30, 0x00, 5 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; 6 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Pelangi/openbox-3/bullet.xbm: -------------------------------------------------------------------------------- 1 | #define bullet_width 10 2 | #define bullet_height 10 3 | static unsigned char bullet_bits[] = { 4 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x30, 0x00, 5 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; 6 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Pelangi/openbox-3/close.xbm: -------------------------------------------------------------------------------- 1 | #define close_width 4 2 | #define close_height 4 3 | static unsigned char close_bits[] = { 4 | 0x0f, 0x0f, 0x0f, 0x0f }; 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Pelangi/openbox-3/desk.xbm: -------------------------------------------------------------------------------- 1 | #define close_width 4 2 | #define close_height 4 3 | static unsigned char close_bits[] = { 4 | 0x0f, 0x0f, 0x0f, 0x0f }; 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Pelangi/openbox-3/desk_toggled.xbm: -------------------------------------------------------------------------------- 1 | #define close_width 4 2 | #define close_height 4 3 | static unsigned char close_bits[] = { 4 | 0x0f, 0x0f, 0x0f, 0x0f }; 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Pelangi/openbox-3/iconify.xbm: -------------------------------------------------------------------------------- 1 | #define close_width 4 2 | #define close_height 4 3 | static unsigned char close_bits[] = { 4 | 0x0f, 0x0f, 0x0f, 0x0f }; 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Pelangi/openbox-3/max.xbm: -------------------------------------------------------------------------------- 1 | #define close_width 4 2 | #define close_height 4 3 | static unsigned char close_bits[] = { 4 | 0x0f, 0x0f, 0x0f, 0x0f }; 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Pelangi/openbox-3/max_disabled.xbm: -------------------------------------------------------------------------------- 1 | #define close_width 4 2 | #define close_height 4 3 | static unsigned char close_bits[] = { 4 | 0x0f, 0x0f, 0x0f, 0x0f }; 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Pelangi/openbox-3/max_toggled.xbm: -------------------------------------------------------------------------------- 1 | #define close_width 4 2 | #define close_height 4 3 | static unsigned char close_bits[] = { 4 | 0x0f, 0x0f, 0x0f, 0x0f }; 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Pelangi/openbox-3/shade.xbm: -------------------------------------------------------------------------------- 1 | #define close_width 4 2 | #define close_height 4 3 | static unsigned char close_bits[] = { 4 | 0x0f, 0x0f, 0x0f, 0x0f }; 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Prismatic-Night/index.theme: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Type=X-GNOME-Metatheme 3 | Name=Prismatic-Night 4 | Comment=A dark theme with vibrant, colorful buttons 5 | Encoding=UTF-8 6 | 7 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Prismatic-Night/openbox-3/bullet.xbm: -------------------------------------------------------------------------------- 1 | #define bullet_width 6 2 | #define bullet_height 9 3 | static unsigned char bullet_bits[] = { 4 | 0x00, 0x06, 0x0e, 0x1c, 0x38, 0x1c, 0x0e, 0x06, 0x00 }; 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Raven-Crimson/openbox-3/bullet.xbm: -------------------------------------------------------------------------------- 1 | #define bullet_width 10 2 | #define bullet_height 10 3 | static unsigned char bullet_bits[] = { 4 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x30, 0x00, 5 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; 6 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Raven-Crimson/openbox-3/close.xbm: -------------------------------------------------------------------------------- 1 | #define desk_width 6 2 | #define desk_height 6 3 | static unsigned char desk_bits[] = { 4 | 0x33, 0x33, 0x00, 0x00, 0x33, 0x33 }; 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Raven-Crimson/openbox-3/desk.xbm: -------------------------------------------------------------------------------- 1 | #define desk_width 6 2 | #define desk_height 6 3 | static unsigned char desk_bits[] = { 4 | 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f }; 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Raven-Crimson/openbox-3/desk_toggled.xbm: -------------------------------------------------------------------------------- 1 | #define desk_width 6 2 | #define desk_height 6 3 | static unsigned char desk_bits[] = { 4 | 0x3f, 0x3f, 0x33, 0x33, 0x3f, 0x3f }; 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Raven-Crimson/openbox-3/iconify.xbm: -------------------------------------------------------------------------------- 1 | #define iconify_width 6 2 | #define iconify_height 6 3 | static unsigned char iconify_bits[] = { 4 | 0x00, 0x00, 0x00, 0x00, 0x0c, 0x0c }; 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Raven-Crimson/openbox-3/max.xbm: -------------------------------------------------------------------------------- 1 | #define max7_width 6 2 | #define max7_height 6 3 | static unsigned char max7_bits[] = { 4 | 0x33, 0x33, 0x00, 0x00, 0x30, 0x30 }; 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Raven-Crimson/openbox-3/max_disabled.xbm: -------------------------------------------------------------------------------- 1 | #define max_disabled_width 6 2 | #define max_disabled_height 6 3 | static unsigned char max_disabled_bits[] = { 4 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Raven-Crimson/openbox-3/max_toggled.xbm: -------------------------------------------------------------------------------- 1 | #define iconify2_width 6 2 | #define iconify2_height 6 3 | static unsigned char iconify2_bits[] = { 4 | 0x03, 0x03, 0x00, 0x00, 0x33, 0x33 }; 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Raven-Crimson/openbox-3/shade.xbm: -------------------------------------------------------------------------------- 1 | #define shade_width 6 2 | #define shade_height 6 3 | static unsigned char shade_bits[] = { 4 | 0x0c, 0x0c, 0x00, 0x00, 0x00, 0x00 }; 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Yaru/openbox-3/desk.xbm: -------------------------------------------------------------------------------- 1 | #define desk_toggled_width 8 2 | #define desk_toggled_height 8 3 | static unsigned char desk_toggled_bits[] = { 4 | 0xe7, 0xe7, 0xe7, 0x00, 0x00, 0xe7, 0xe7, 0xe7 }; 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Yaru/openbox-3/desk_toggled.xbm: -------------------------------------------------------------------------------- 1 | #define desk_width 8 2 | #define desk_height 8 3 | static unsigned char desk_bits[] = { 4 | 0x04, 0x0e, 0x3f, 0x1e, 0x1c, 0x24, 0x40, 0x80 }; 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Yaru/openbox-3/iconify.xbm: -------------------------------------------------------------------------------- 1 | #define max_width 14 2 | #define max_height 14 3 | static unsigned char max_bits[] = { 4 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 5 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x07, 0x00, 0x00, 6 | 0x00, 0x00, 0x00, 0x00 }; 7 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Yaru/openbox-3/max.xbm: -------------------------------------------------------------------------------- 1 | #define max_width 14 2 | #define max_height 14 3 | static unsigned char max_bits[] = { 4 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x07, 0x08, 0x04, 0x08, 0x04, 5 | 0x08, 0x04, 0x08, 0x04, 0x08, 0x04, 0x08, 0x04, 0xf8, 0x07, 0x00, 0x00, 6 | 0x00, 0x00, 0x00, 0x00 }; 7 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Yaru/openbox-3/shade.xbm: -------------------------------------------------------------------------------- 1 | #define shade_width 8 2 | #define shade_height 8 3 | static unsigned char shade_bits[] = { 4 | 0x18, 0x3c, 0x7e, 0xff, 0xdb, 0x18, 0x18, 0x18 }; 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/skel/.themes/Yaru/openbox-3/shade_toggled.xbm: -------------------------------------------------------------------------------- 1 | #define shade_toggled_width 8 2 | #define shade_toggled_height 8 3 | static unsigned char shade_toggled_bits[] = { 4 | 0x18, 0x18, 0x18, 0xdb, 0xff, 0x7e, 0x3c, 0x18 }; 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/sudoers.d/01_pw_feedback: -------------------------------------------------------------------------------- 1 | Defaults env_reset,pwfeedback,insults 2 | -------------------------------------------------------------------------------- /src/airootfs/etc/sudoers.d/02_g_wheel: -------------------------------------------------------------------------------- 1 | %wheel ALL=(ALL) NOPASSWD: ALL 2 | -------------------------------------------------------------------------------- /src/airootfs/etc/systemd/journald.conf.d/volatile-storage.conf: -------------------------------------------------------------------------------- 1 | [Journal] 2 | Storage=volatile 3 | -------------------------------------------------------------------------------- /src/airootfs/etc/systemd/logind.conf.d/do-not-suspend.conf: -------------------------------------------------------------------------------- 1 | [Login] 2 | HandleSuspendKey=ignore 3 | HandleHibernateKey=ignore 4 | HandleLidSwitch=ignore 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/systemd/system-generators/systemd-gpt-auto-generator: -------------------------------------------------------------------------------- 1 | /dev/null -------------------------------------------------------------------------------- /src/airootfs/etc/systemd/system/bluetooth.target.wants/bluetooth.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/bluetooth.service -------------------------------------------------------------------------------- /src/airootfs/etc/systemd/system/choose-mirror.service: -------------------------------------------------------------------------------- 1 | [Unit] 2 | Description=Choose mirror from the kernel command line 3 | ConditionKernelCommandLine=mirror 4 | 5 | [Service] 6 | Type=oneshot 7 | ExecStart=/usr/local/bin/choose-mirror 8 | 9 | [Install] 10 | WantedBy=multi-user.target 11 | -------------------------------------------------------------------------------- /src/airootfs/etc/systemd/system/cloud-init.target.wants/cloud-config.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/cloud-config.service -------------------------------------------------------------------------------- /src/airootfs/etc/systemd/system/cloud-init.target.wants/cloud-final.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/cloud-final.service -------------------------------------------------------------------------------- /src/airootfs/etc/systemd/system/cloud-init.target.wants/cloud-init-local.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/cloud-init-local.service -------------------------------------------------------------------------------- /src/airootfs/etc/systemd/system/cloud-init.target.wants/cloud-init.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/cloud-init.service -------------------------------------------------------------------------------- /src/airootfs/etc/systemd/system/dbus-org.bluez.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/bluetooth.service -------------------------------------------------------------------------------- /src/airootfs/etc/systemd/system/dbus-org.freedesktop.ModemManager1.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/ModemManager.service -------------------------------------------------------------------------------- /src/airootfs/etc/systemd/system/dbus-org.freedesktop.network1.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/systemd-networkd.service -------------------------------------------------------------------------------- /src/airootfs/etc/systemd/system/dbus-org.freedesktop.nm-dispatcher.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/NetworkManager-dispatcher.service -------------------------------------------------------------------------------- /src/airootfs/etc/systemd/system/dbus-org.freedesktop.resolve1.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/systemd-resolved.service -------------------------------------------------------------------------------- /src/airootfs/etc/systemd/system/dbus-org.freedesktop.timesync1.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/systemd-timesyncd.service -------------------------------------------------------------------------------- /src/airootfs/etc/systemd/system/default.target: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/graphical.target -------------------------------------------------------------------------------- /src/airootfs/etc/systemd/system/display-manager.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/sddm-plymouth.service -------------------------------------------------------------------------------- /src/airootfs/etc/systemd/system/etc-pacman.d-gnupg.mount: -------------------------------------------------------------------------------- 1 | [Unit] 2 | Description=Temporary /etc/pacman.d/gnupg directory 3 | 4 | [Mount] 5 | What=ramfs 6 | Where=/etc/pacman.d/gnupg 7 | Type=ramfs 8 | Options=mode=0755 9 | -------------------------------------------------------------------------------- /src/airootfs/etc/systemd/system/getty@tty1.service.d/autologin.conf: -------------------------------------------------------------------------------- 1 | [Service] 2 | ExecStart= 3 | ExecStart=-/sbin/agetty -o '-p -f -- \\u' --noclear --autologin root - $TERM 4 | -------------------------------------------------------------------------------- /src/airootfs/etc/systemd/system/multi-user.target.wants/ModemManager.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/ModemManager.service -------------------------------------------------------------------------------- /src/airootfs/etc/systemd/system/multi-user.target.wants/NetworkManager.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/NetworkManager.service -------------------------------------------------------------------------------- /src/airootfs/etc/systemd/system/multi-user.target.wants/choose-mirror.service: -------------------------------------------------------------------------------- 1 | ../choose-mirror.service -------------------------------------------------------------------------------- /src/airootfs/etc/systemd/system/multi-user.target.wants/hv_fcopy_daemon.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/hv_fcopy_daemon.service -------------------------------------------------------------------------------- /src/airootfs/etc/systemd/system/multi-user.target.wants/hv_kvp_daemon.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/hv_kvp_daemon.service -------------------------------------------------------------------------------- /src/airootfs/etc/systemd/system/multi-user.target.wants/hv_vss_daemon.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/hv_vss_daemon.service -------------------------------------------------------------------------------- /src/airootfs/etc/systemd/system/multi-user.target.wants/iwd.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/iwd.service -------------------------------------------------------------------------------- /src/airootfs/etc/systemd/system/multi-user.target.wants/livecd-talk.service: -------------------------------------------------------------------------------- 1 | /etc/systemd/system/livecd-talk.service -------------------------------------------------------------------------------- /src/airootfs/etc/systemd/system/multi-user.target.wants/pacman-init.service: -------------------------------------------------------------------------------- 1 | ../pacman-init.service -------------------------------------------------------------------------------- /src/airootfs/etc/systemd/system/multi-user.target.wants/qemu-guest-agent.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/qemu-guest-agent.service -------------------------------------------------------------------------------- /src/airootfs/etc/systemd/system/multi-user.target.wants/reflector.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/reflector.service -------------------------------------------------------------------------------- /src/airootfs/etc/systemd/system/multi-user.target.wants/sshd.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/sshd.service -------------------------------------------------------------------------------- /src/airootfs/etc/systemd/system/multi-user.target.wants/systemd-networkd.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/systemd-networkd.service -------------------------------------------------------------------------------- /src/airootfs/etc/systemd/system/multi-user.target.wants/systemd-resolved.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/systemd-resolved.service -------------------------------------------------------------------------------- /src/airootfs/etc/systemd/system/multi-user.target.wants/vboxservice.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/vboxservice.service -------------------------------------------------------------------------------- /src/airootfs/etc/systemd/system/multi-user.target.wants/vmtoolsd.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/vmtoolsd.service -------------------------------------------------------------------------------- /src/airootfs/etc/systemd/system/multi-user.target.wants/vmware-vmblock-fuse.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/vmware-vmblock-fuse.service -------------------------------------------------------------------------------- /src/airootfs/etc/systemd/system/multi-user.target.wants/wpa_supplicant.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/wpa_supplicant.service -------------------------------------------------------------------------------- /src/airootfs/etc/systemd/system/network-online.target.wants/NetworkManager-wait-online.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/NetworkManager-wait-online.service -------------------------------------------------------------------------------- /src/airootfs/etc/systemd/system/network-online.target.wants/systemd-networkd-wait-online.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/systemd-networkd-wait-online.service -------------------------------------------------------------------------------- /src/airootfs/etc/systemd/system/reflector.service.d/archiso.conf: -------------------------------------------------------------------------------- 1 | [Unit] 2 | ConditionKernelCommandLine=!mirror 3 | 4 | [Service] 5 | Restart=on-failure 6 | RestartSec=10 7 | -------------------------------------------------------------------------------- /src/airootfs/etc/systemd/system/sockets.target.wants/systemd-networkd.socket: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/systemd-networkd.socket -------------------------------------------------------------------------------- /src/airootfs/etc/systemd/system/sound.target.wants/livecd-alsa-unmuter.service: -------------------------------------------------------------------------------- 1 | ../livecd-alsa-unmuter.service -------------------------------------------------------------------------------- /src/airootfs/etc/systemd/system/sysinit.target.wants/systemd-time-wait-sync.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/systemd-time-wait-sync.service -------------------------------------------------------------------------------- /src/airootfs/etc/systemd/system/sysinit.target.wants/systemd-timesyncd.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/systemd-timesyncd.service -------------------------------------------------------------------------------- /src/airootfs/etc/vitunix-release: -------------------------------------------------------------------------------- 1 | LSB_VERSION=1.4 2 | DISTRIB_ID=Vitunix 3 | DISTRIB_RELEASE=rolling 4 | DISTRIB_DESCRIPTION="Vitunix" 5 | -------------------------------------------------------------------------------- /src/airootfs/etc/xdg/reflector/reflector.conf: -------------------------------------------------------------------------------- 1 | # Reflector configuration file for the systemd service. 2 | 3 | --save /etc/pacman.d/mirrorlist 4 | --ipv4 5 | --ipv6 6 | --protocol https 7 | --latest 20 8 | --sort rate 9 | -------------------------------------------------------------------------------- /src/airootfs/root/.zlogin: -------------------------------------------------------------------------------- 1 | # fix for screen readers 2 | if grep -Fqa 'accessibility=' /proc/cmdline &> /dev/null; then 3 | setopt SINGLE_LINE_ZLE 4 | fi 5 | 6 | ~/.automated_script.sh 7 | -------------------------------------------------------------------------------- /src/airootfs/usr/local/bin/Installation_guide: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # SPDX-License-Identifier: GPL-3.0-or-later 4 | 5 | exec lynx 'https://wiki.archlinux.org/title/Installation_guide' 6 | -------------------------------------------------------------------------------- /src/airootfs/usr/local/share/livecd-sound/asound.conf.in: -------------------------------------------------------------------------------- 1 | Defaults node 2 | defaults.ctl.card %card%; 3 | defaults.pcm.card %card%; 4 | -------------------------------------------------------------------------------- /src/bootstrap_packages.x86_64: -------------------------------------------------------------------------------- 1 | arch-install-scripts 2 | base 3 | -------------------------------------------------------------------------------- /src/efiboot/loader/loader.conf: -------------------------------------------------------------------------------- 1 | timeout 15 2 | default 01-archiso-x86_64-linux.conf 3 | beep on 4 | -------------------------------------------------------------------------------- /src/syslinux/archiso_pxe.cfg: -------------------------------------------------------------------------------- 1 | INCLUDE archiso_head.cfg 2 | 3 | INCLUDE archiso_pxe-linux.cfg 4 | 5 | INCLUDE archiso_tail.cfg 6 | -------------------------------------------------------------------------------- /src/syslinux/archiso_sys.cfg: -------------------------------------------------------------------------------- 1 | INCLUDE archiso_head.cfg 2 | 3 | DEFAULT arch64 4 | TIMEOUT 150 5 | 6 | INCLUDE archiso_sys-linux.cfg 7 | 8 | INCLUDE archiso_tail.cfg 9 | -------------------------------------------------------------------------------- /src/syslinux/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitunix/vitunix-iso/e83fa417dc4d0f4b36eb0d7fadcc732882c20f51/src/syslinux/splash.png -------------------------------------------------------------------------------- /src/syslinux/syslinux.cfg: -------------------------------------------------------------------------------- 1 | DEFAULT select 2 | 3 | LABEL select 4 | COM32 whichsys.c32 5 | APPEND -pxe- pxe -sys- sys -iso- sys 6 | 7 | LABEL pxe 8 | CONFIG archiso_pxe.cfg 9 | 10 | LABEL sys 11 | CONFIG archiso_sys.cfg 12 | --------------------------------------------------------------------------------