├── .zshrc.pre-oh-my-zsh ├── .bash_logout ├── .python_history ├── .prismic ├── .zshrcn ├── .bash_profile ├── .zcompdump-botbox-5.9.zwc ├── .wget-hsts ├── .tcshrc ├── .profile ├── .nvidia-settings-rc ├── .Xresources ├── .psql_history ├── .histfile ├── .gtkrc-2.0 ├── .xonshrc ├── .bashrc ├── Scripts └── makesymlinks.sh ├── .gitconfig ├── .bashrc_cat ├── .zshrc-hyprdots ├── .bashrc_garuda ├── .viminfo ├── .zshrc ├── .zshrc.merged ├── .dircolors ├── .zshrc.recovered ├── .zcompdump └── .zcompdump-botbox-5.9 /.zshrc.pre-oh-my-zsh: -------------------------------------------------------------------------------- 1 | alias air='~/.air' 2 | -------------------------------------------------------------------------------- /.bash_logout: -------------------------------------------------------------------------------- 1 | # 2 | # ~/.bash_logout 3 | # 4 | -------------------------------------------------------------------------------- /.python_history: -------------------------------------------------------------------------------- 1 | exit 2 | exit() 3 | quit 4 | exit 5 | -------------------------------------------------------------------------------- /.prismic: -------------------------------------------------------------------------------- 1 | { 2 | "base": "https://prismic.io", 3 | "cookies": "" 4 | } -------------------------------------------------------------------------------- /.zshrcn: -------------------------------------------------------------------------------- 1 | source /usr/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh 2 | -------------------------------------------------------------------------------- /.bash_profile: -------------------------------------------------------------------------------- 1 | # 2 | # ~/.bash_profile 3 | # 4 | 5 | [[ -f ~/.bashrc ]] && . ~/.bashrc 6 | -------------------------------------------------------------------------------- /.zcompdump-botbox-5.9.zwc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bots/dotfiles/master/.zcompdump-botbox-5.9.zwc -------------------------------------------------------------------------------- /.wget-hsts: -------------------------------------------------------------------------------- 1 | # HSTS 1.0 Known Hosts database for GNU Wget. 2 | # Edit at your own risk. 3 | # 4 | bootstrap.pypa.io 0 1 1708425044 315360000 5 | widgets.streamelements.com 0 1 1708125660 31536000 6 | -------------------------------------------------------------------------------- /.tcshrc: -------------------------------------------------------------------------------- 1 | 2 | # >>> conda initialize >>> 3 | # !! Contents within this block are managed by 'conda init' !! 4 | if ( -f "/opt/miniconda3/etc/profile.d/conda.csh" ) then 5 | source "/opt/miniconda3/etc/profile.d/conda.csh" 6 | else 7 | setenv PATH "/opt/miniconda3/bin:$PATH" 8 | endif 9 | # <<< conda initialize <<< 10 | 11 | -------------------------------------------------------------------------------- /.profile: -------------------------------------------------------------------------------- 1 | export MOZ_ENABLE_WAYLAND=1 2 | export MOZ_WAYLAND_USE_VAAPI=1 3 | export MOZ_DBUS_REMOTE=1 4 | export GDK_BACKEND=wayland 5 | export XDG_CURRENT_DESKTOP=hyprland 6 | export XDG_SESSION_DESKTOP=hyprland 7 | export XDG_SESSION_TYPE=wayland 8 | export EDITOR=/usr/bin/micro 9 | export TERM=xterm-256color 10 | export GTK2_RC_FILES=$HOME/.gtkrc-2.0 11 | -------------------------------------------------------------------------------- /.nvidia-settings-rc: -------------------------------------------------------------------------------- 1 | # 2 | # /home/bots/.nvidia-settings-rc 3 | # 4 | # Configuration file for nvidia-settings - the NVIDIA Settings utility 5 | # Generated on Tue Mar 12 07:41:25 2024 6 | # 7 | 8 | # ConfigProperties: 9 | 10 | RcFileLocale = C 11 | DisplayStatusBar = Yes 12 | SliderTextEntries = Yes 13 | IncludeDisplayNameInConfigFile = No 14 | UpdateRulesOnProfileNameChange = Yes 15 | Timer = Memory_Used_(GPU_0),Yes,3000 16 | Timer = Thermal_Monitor_(GPU_0),Yes,1000 17 | 18 | # Attributes: 19 | 20 | -------------------------------------------------------------------------------- /.Xresources: -------------------------------------------------------------------------------- 1 | *background: #1E1E2E 2 | *foreground: #CDD6F4 3 | 4 | ! black 5 | *color0: #45475A 6 | *color8: #585B70 7 | 8 | ! red 9 | *color1: #F38BA8 10 | *color9: #F38BA8 11 | 12 | ! green 13 | *color2: #A6E3A1 14 | *color10: #A6E3A1 15 | 16 | ! yellow 17 | *color3: #F9E2AF 18 | *color11: #F9E2AF 19 | 20 | ! blue 21 | *color4: #89B4FA 22 | *color12: #89B4FA 23 | 24 | ! magenta 25 | *color5: #F5C2E7 26 | *color13: #F5C2E7 27 | 28 | ! cyan 29 | *color6: #94E2D5 30 | *color14: #94E2D5 31 | 32 | ! white 33 | *color7: #BAC2DE 34 | *color15: #A6ADC8 35 | -------------------------------------------------------------------------------- /.psql_history: -------------------------------------------------------------------------------- 1 | lsdropuser botsonelsuserDROP USER "botsone@gmail.com"exit 2 | \q 3 | SELECT usename AS role_name, CASE  WHEN usesuper AND usecreatedb THEN  CAST('superuser, create database' AS pg_catalog.text) WHEN usesuper THEN  CAST('superuser' AS pg_catalog.text) WHEN usecreatedb THEN  CAST('create database' AS pg_catalog.text) ELSE  CAST('' AS pg_catalog.text) END role_attributesFROM pg_catalog.pg_userORDER BY role_name desc; 4 | \du 5 | \q 6 | DROP TABLE [IF EXISTS] user 7 | \q 8 | \q 9 | pwdhelp 10 | \? 11 | \q 12 | -------------------------------------------------------------------------------- /.histfile: -------------------------------------------------------------------------------- 1 | autoload -Uz zsh-newuser-install 2 | zsh-newuser-install -f 3 | ls 4 | nano .zshrc 5 | yay oh my zsh 6 | ls 7 | yay -r powerlevel10k 8 | yay 9 | yay -R powerlevel10k 10 | yay -R powerlevel10k-git 11 | yay -R oh-my-zsh-git 12 | yay powerlevel10k-git 13 | source ~/.zshrc 14 | source ~/.zshrc 15 | : 1711304823:3;yay -R powerlevel10k 16 | : 1711304839:0;yay -R ohmyzsh 17 | : 1711304849:7;yay oh my zsh 18 | : 1711304878:8;yay oh my zsh 19 | : 1711304912:0;source ~/.zshrc 20 | : 1711304928:0;cp /usr/share/oh-my-zsh/zshrc ~/.zshrc 21 | : 1711304933:0;source ~/.zshrc 22 | : 1711304949:0;yay powerlevel10k 23 | : 1711305023:0;source ~/.zshrc 24 | -------------------------------------------------------------------------------- /.gtkrc-2.0: -------------------------------------------------------------------------------- 1 | # DO NOT EDIT! This file will be overwritten by nwg-look. 2 | # Any customization should be done in ~/.gtkrc-2.0.mine instead. 3 | 4 | include "~/.gtkrc-2.0.mine" 5 | gtk-theme-name="Catppuccin-Mocha" 6 | gtk-icon-theme-name="Tela-circle-dracula" 7 | gtk-font-name="Cantarell 10" 8 | gtk-cursor-theme-name="Bibata-Modern-Ice" 9 | gtk-cursor-theme-size=20 10 | gtk-toolbar-style=GTK_TOOLBAR_ICONS 11 | gtk-toolbar-icon-size=GTK_ICON_SIZE_LARGE_TOOLBAR 12 | gtk-button-images=0 13 | gtk-menu-images=0 14 | gtk-enable-event-sounds=1 15 | gtk-enable-input-feedback-sounds=0 16 | gtk-xft-antialias=1 17 | gtk-xft-hinting=1 18 | gtk-xft-hintstyle="hintfull" 19 | gtk-xft-rgba="rgb" 20 | -------------------------------------------------------------------------------- /.xonshrc: -------------------------------------------------------------------------------- 1 | 2 | # >>> conda initialize >>> 3 | # !! Contents within this block are managed by 'conda init' !! 4 | if !(test -f "/opt/miniconda3/bin/conda"): 5 | import sys as _sys 6 | from types import ModuleType as _ModuleType 7 | _mod = _ModuleType("xontrib.conda", 8 | "Autogenerated from $(/opt/miniconda3/bin/conda shell.xonsh hook)") 9 | __xonsh__.execer.exec($("/opt/miniconda3/bin/conda" "shell.xonsh" "hook"), 10 | glbs=_mod.__dict__, 11 | filename="$(/opt/miniconda3/bin/conda shell.xonsh hook)") 12 | _sys.modules["xontrib.conda"] = _mod 13 | del _sys, _mod, _ModuleType 14 | # <<< conda initialize <<< 15 | 16 | -------------------------------------------------------------------------------- /.bashrc: -------------------------------------------------------------------------------- 1 | # 2 | # ~/.bashrc 3 | # 4 | 5 | # If not running interactively, don't do anything 6 | [[ $- != *i* ]] && return 7 | 8 | alias ls='ls --color=auto' 9 | alias grep='grep --color=auto' 10 | PS1='[\u@\h \W]\$ ' 11 | 12 | # >>> conda initialize >>> 13 | # !! Contents within this block are managed by 'conda init' !! 14 | __conda_setup="$('/opt/miniconda3/bin/conda' 'shell.bash' 'hook' 2> /dev/null)" 15 | if [ $? -eq 0 ]; then 16 | eval "$__conda_setup" 17 | else 18 | if [ -f "/opt/miniconda3/etc/profile.d/conda.sh" ]; then 19 | . "/opt/miniconda3/etc/profile.d/conda.sh" 20 | else 21 | export PATH="/opt/miniconda3/bin:$PATH" 22 | fi 23 | fi 24 | unset __conda_setup 25 | # <<< conda initialize <<< 26 | 27 | -------------------------------------------------------------------------------- /Scripts/makesymlinks.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | ############################ 3 | # .make.sh 4 | # This script creates symlinks from the home directory to any desired dotfiles in ~/dotfiles 5 | ############################ 6 | 7 | ########## Variables 8 | 9 | dir=~/dotfiles # dotfiles directory 10 | olddir=~/dotfiles_old # old dotfiles backup directory 11 | files="bashrc Xresources archey3.cfg zshrc" # list of files/folders to symlink in homedir 12 | 13 | ########## 14 | 15 | # create dotfiles_old in homedir 16 | echo "Creating $olddir for backup of any existing dotfiles in ~" 17 | mkdir -p $olddir 18 | echo "...done" 19 | 20 | # change to the dotfiles directory 21 | echo "Changing to the $dir directory" 22 | cd $dir 23 | echo "...done" 24 | 25 | # move any existing dotfiles in homedir to dotfiles_old directory, then create symlinks 26 | for file in $files; do 27 | echo "Moving any existing dotfiles from ~ to $olddir" 28 | mv ~/.$file ~/dotfiles_old/ 29 | echo "Creating symlink to $file in home directory." 30 | ln -s $dir/$file ~/.$file 31 | 32 | done 33 | -------------------------------------------------------------------------------- /.gitconfig: -------------------------------------------------------------------------------- 1 | # Private settings in include file 2 | [include] 3 | path = ~/.gitconfig.local 4 | 5 | # Dracula theme 6 | [url "https://github.com/dracula/"] 7 | insteadOf = dracula:// 8 | [color] 9 | ui = auto 10 | [color "branch"] 11 | current = cyan bold reverse 12 | local = white 13 | plain = 14 | remote = cyan 15 | [color "diff"] 16 | commit = 17 | func = cyan 18 | plain = 19 | whitespace = magenta reverse 20 | meta = white 21 | frag = cyan bold reverse 22 | old = red 23 | new = green 24 | [color "grep"] 25 | context = 26 | filename = 27 | function = 28 | linenumber = white 29 | match = 30 | selected = 31 | separator = 32 | [color "interactive"] 33 | error = 34 | header = 35 | help = 36 | prompt = 37 | [color "status"] 38 | added = green 39 | changed = yellow 40 | header = 41 | localBranch = 42 | nobranch = 43 | remoteBranch = cyan bold 44 | unmerged = magenta bold reverse 45 | untracked = red 46 | updated = green bold 47 | [user] 48 | name = Bots 49 | email = botsone@gmail.com 50 | [credential] 51 | helper = store 52 | [credential "https://dev.azure.com"] 53 | useHttpPath = true 54 | [alias] 55 | st = status 56 | [core] 57 | editor = nano 58 | -------------------------------------------------------------------------------- /.bashrc_cat: -------------------------------------------------------------------------------- 1 | # If not running interactively, don't do anything 2 | [[ $- != *i* ]] && return 3 | 4 | # Load starship prompt if starship is installed 5 | if [ -x /usr/bin/starship ]; then 6 | __main() { 7 | local major="${BASH_VERSINFO[0]}" 8 | local minor="${BASH_VERSINFO[1]}" 9 | 10 | if ((major > 4)) || { ((major == 4)) && ((minor >= 1)); }; then 11 | source <("/usr/bin/starship" init bash --print-full-init) 12 | else 13 | source /dev/stdin <<<"$("/usr/bin/starship" init bash --print-full-init)" 14 | fi 15 | } 16 | __main 17 | unset -f __main 18 | fi 19 | 20 | # Colors 21 | if [ "$TERM" = "linux" ]; then 22 | printf %b '\e]P01E1E2E' # set background color to "Base" 23 | printf %b '\e]P8585B70' # set bright black to "Surface2" 24 | 25 | printf %b '\e]P7BAC2DE' # set text color to "Text" 26 | printf %b '\e]PFA6ADC8' # set bright white to "Subtext0" 27 | 28 | printf %b '\e]P1F38BA8' # set red to "Red" 29 | printf %b '\e]P9F38BA8' # set bright red to "Red" 30 | 31 | printf %b '\e]P2A6E3A1' # set green to "Green" 32 | printf %b '\e]PAA6E3A1' # set bright green to "Green" 33 | 34 | printf %b '\e]P3F9E2AF' # set yellow to "Yellow" 35 | printf %b '\e]PBF9E2AF' # set bright yellow to "Yellow" 36 | 37 | printf %b '\e]P489B4FA' # set blue to "Blue" 38 | printf %b '\e]PC89B4FA' # set bright blue to "Blue" 39 | 40 | printf %b '\e]P5F5C2E7' # set magenta to "Pink" 41 | printf %b '\e]PDF5C2E7' # set bright magenta to "Pink" 42 | 43 | printf %b '\e]P694E2D5' # set cyan to "Teal" 44 | printf %b '\e]PE94E2D5' # set bright cyan to "Teal" 45 | 46 | clear 47 | fi 48 | 49 | # Advanced command-not-found hook 50 | source /usr/share/doc/find-the-command/ftc.bash 51 | 52 | # Aliases 53 | alias dir='dir --color=auto' 54 | alias egrep='egrep --color=auto' 55 | alias fgrep='fgrep --color=auto' 56 | alias fixpacman="sudo rm /var/lib/pacman/db.lck" 57 | alias grep='grep --color=auto' 58 | alias grubup="sudo update-grub" 59 | alias hw='hwinfo --short' 60 | alias psmem10='ps auxf | sort -nr -k 4 | head -10' 61 | alias psmem='ps auxf | sort -nr -k 4' 62 | alias rmpkg="sudo pacman -Rdd" 63 | alias tarnow='tar -acf ' 64 | alias untar='tar -zxvf ' 65 | alias upd='/usr/bin/update' 66 | alias vdir='vdir --color=auto' 67 | alias wget='wget -c ' 68 | 69 | # Help people new to Arch 70 | alias apt-get='man pacman' 71 | alias apt='man pacman' 72 | alias helpme='cht.sh --shell' 73 | alias please='sudo' 74 | alias tb='nc termbin.com 9999' 75 | 76 | # Cleanup orphaned packages 77 | alias cleanup='sudo pacman -Rns `pacman -Qtdq`' 78 | 79 | # Get the error messages from journalctl 80 | alias jctl="journalctl -p 3 -xb" 81 | 82 | # Recent installed packages 83 | alias rip="expac --timefmt='%Y-%m-%d %T' '%l\t%n %v' | sort | tail -200 | nl" 84 | -------------------------------------------------------------------------------- /.zshrc-hyprdots: -------------------------------------------------------------------------------- 1 | # Path to your oh-my-zsh installation. 2 | ZSH=/usr/share/oh-my-zsh/ 3 | 4 | # Path to powerlevel10k theme 5 | source /usr/share/zsh-theme-powerlevel10k/powerlevel10k.zsh-theme 6 | 7 | # List of plugins used 8 | plugins=() 9 | source $ZSH/oh-my-zsh.sh 10 | 11 | # In case a command is not found, try to find the package that has it 12 | function command_not_found_handler { 13 | local purple='\e[1;35m' bright='\e[0;1m' green='\e[1;32m' reset='\e[0m' 14 | printf 'zsh: command not found: %s\n' "$1" 15 | local entries=( ${(f)"$(/usr/bin/pacman -F --machinereadable -- "/usr/bin/$1")"} ) 16 | if (( ${#entries[@]} )) ; then 17 | printf "${bright}$1${reset} may be found in the following packages:\n" 18 | local pkg 19 | for entry in "${entries[@]}" ; do 20 | local fields=( ${(0)entry} ) 21 | if [[ "$pkg" != "${fields[2]}" ]] ; then 22 | printf "${purple}%s/${bright}%s ${green}%s${reset}\n" "${fields[1]}" "${fields[2]}" "${fields[3]}" 23 | fi 24 | printf ' /%s\n' "${fields[4]}" 25 | pkg="${fields[2]}" 26 | done 27 | fi 28 | return 127 29 | } 30 | 31 | # Detect the AUR wrapper 32 | if pacman -Qi yay &>/dev/null ; then 33 | aurhelper="yay" 34 | elif pacman -Qi paru &>/dev/null ; then 35 | aurhelper="paru" 36 | fi 37 | 38 | function in { 39 | local -a inPkg=("$@") 40 | local -a arch=() 41 | local -a aur=() 42 | 43 | for pkg in "${inPkg[@]}"; do 44 | if pacman -Si "${pkg}" &>/dev/null ; then 45 | arch+=("${pkg}") 46 | else 47 | aur+=("${pkg}") 48 | fi 49 | done 50 | 51 | if [[ ${#arch[@]} -gt 0 ]]; then 52 | sudo pacman -S "${arch[@]}" 53 | fi 54 | 55 | if [[ ${#aur[@]} -gt 0 ]]; then 56 | ${aurhelper} -S "${aur[@]}" 57 | fi 58 | } 59 | 60 | # Helpful aliases 61 | alias c='clear' # clear terminal 62 | alias l='eza -lh --icons=auto' # long list 63 | alias ls='eza -1 --icons=auto' # short list 64 | alias ll='eza -lha --icons=auto --sort=name --group-directories-first' # long list all 65 | alias ld='eza -lhD --icons=auto' # long list dirs 66 | alias un='$aurhelper -Rns' # uninstall package 67 | alias up='$aurhelper -Syu' # update system/package/aur 68 | alias pl='$aurhelper -Qs' # list installed package 69 | alias pa='$aurhelper -Ss' # list availabe package 70 | alias pc='$aurhelper -Sc' # remove unused cache 71 | alias po='$aurhelper -Qtdq | $aurhelper -Rns -' # remove unused packages, also try > $aurhelper -Qqd | $aurhelper -Rsu --print - 72 | alias vc='code --ozone-platform-hint=wayland --disable-gpu' # gui code editor 73 | 74 | # Handy change dir shortcuts 75 | alias ..='cd ..' 76 | alias ...='cd ../..' 77 | alias .3='cd ../../..' 78 | alias .4='cd ../../../..' 79 | alias .5='cd ../../../../..' 80 | 81 | # Always mkdir a path (this doesn't inhibit functionality to make a single dir) 82 | alias mkdir='mkdir -p' 83 | 84 | # Fixes "Error opening terminal: xterm-kitty" when using the default kitty term to open some programs through ssh 85 | alias ssh='kitten ssh' 86 | 87 | # To customize prompt, run `p10k configure` or edit ~/.p10k.zsh. 88 | [[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh 89 | 90 | #Display Pokemon 91 | pokemon-colorscripts --no-title -r 1,3,6 92 | -------------------------------------------------------------------------------- /.bashrc_garuda: -------------------------------------------------------------------------------- 1 | # If not running interactively, don't do anything 2 | [[ $- != *i* ]] && return 3 | 4 | # Load starship prompt if starship is installed 5 | if [ -x /usr/bin/starship ]; then 6 | __main() { 7 | local major="${BASH_VERSINFO[0]}" 8 | local minor="${BASH_VERSINFO[1]}" 9 | 10 | if ((major > 4)) || { ((major == 4)) && ((minor >= 1)); }; then 11 | source <("/usr/bin/starship" init bash --print-full-init) 12 | else 13 | source /dev/stdin <<<"$("/usr/bin/starship" init bash --print-full-init)" 14 | fi 15 | } 16 | __main 17 | unset -f __main 18 | fi 19 | 20 | # Advanced command-not-found hook 21 | source /usr/share/doc/find-the-command/ftc.bash 22 | 23 | ## Useful aliases 24 | 25 | # Replace ls with exa 26 | alias ls='exa -al --color=always --group-directories-first --icons' # preferred listing 27 | alias la='exa -a --color=always --group-directories-first --icons' # all files and dirs 28 | alias ll='exa -l --color=always --group-directories-first --icons' # long format 29 | alias lt='exa -aT --color=always --group-directories-first --icons' # tree listing 30 | alias l.='exa -ald --color=always --group-directories-first --icons .*' # show only dotfiles 31 | 32 | # Replace some more things with better alternatives 33 | alias cat='bat --style header --style snip --style changes --style header' 34 | [ ! -x /usr/bin/yay ] && [ -x /usr/bin/paru ] && alias yay='paru' 35 | 36 | # Common use 37 | alias grubup="sudo update-grub" 38 | alias fixpacman="sudo rm /var/lib/pacman/db.lck" 39 | alias tarnow='tar -acf ' 40 | alias untar='tar -zxvf ' 41 | alias wget='wget -c ' 42 | alias rmpkg="sudo pacman -Rdd" 43 | alias psmem='ps auxf | sort -nr -k 4' 44 | alias psmem10='ps auxf | sort -nr -k 4 | head -10' 45 | alias upd='/usr/bin/garuda-update' 46 | alias ..='cd ..' 47 | alias ...='cd ../..' 48 | alias ....='cd ../../..' 49 | alias .....='cd ../../../..' 50 | alias ......='cd ../../../../..' 51 | alias dir='dir --color=auto' 52 | alias vdir='vdir --color=auto' 53 | alias grep='ugrep --color=auto' 54 | alias fgrep='ugrep -F --color=auto' 55 | alias egrep='ugrep -E --color=auto' 56 | alias hw='hwinfo --short' # Hardware Info 57 | alias big="expac -H M '%m\t%n' | sort -h | nl" # Sort installed packages according to size in MB (expac must be installed) 58 | alias gitpkg='pacman -Q | grep -i "\-git" | wc -l' # List amount of -git packages 59 | alias ip='ip -color' 60 | 61 | # Get fastest mirrors 62 | alias mirror="sudo reflector -f 30 -l 30 --number 10 --verbose --save /etc/pacman.d/mirrorlist" 63 | alias mirrord="sudo reflector --latest 50 --number 20 --sort delay --save /etc/pacman.d/mirrorlist" 64 | alias mirrors="sudo reflector --latest 50 --number 20 --sort score --save /etc/pacman.d/mirrorlist" 65 | alias mirrora="sudo reflector --latest 50 --number 20 --sort age --save /etc/pacman.d/mirrorlist" 66 | 67 | # Help people new to Arch 68 | alias apt='man pacman' 69 | alias apt-get='man pacman' 70 | alias please='sudo' 71 | alias tb='nc termbin.com 9999' 72 | alias helpme='cht.sh --shell' 73 | alias pacdiff='sudo -H DIFFPROG=meld pacdiff' 74 | 75 | # Cleanup orphaned packages 76 | alias cleanup='sudo pacman -Rns $(pacman -Qtdq)' 77 | 78 | # Get the error messages from journalctl 79 | alias jctl="journalctl -p 3 -xb" 80 | 81 | # Recent installed packages 82 | alias rip="expac --timefmt='%Y-%m-%d %T' '%l\t%n %v' | sort | tail -200 | nl" 83 | -------------------------------------------------------------------------------- /.viminfo: -------------------------------------------------------------------------------- 1 | # This viminfo file was generated by Vim 9.1. 2 | # You may edit it if you're careful! 3 | 4 | # Viminfo version 5 | |1,4 6 | 7 | # Value of 'encoding' when this file was written 8 | *encoding=utf-8 9 | 10 | 11 | # hlsearch on (H) or off (h): 12 | ~h 13 | # Command Line History (newest to oldest): 14 | :q! 15 | |2,0,1712218470,,"q!" 16 | :q 17 | |2,0,1712218460,,"q" 18 | :Q 19 | |2,0,1712218411,,"Q" 20 | :x 21 | |2,0,1711261393,,"x" 22 | 23 | # Search String History (newest to oldest): 24 | 25 | # Expression History (newest to oldest): 26 | 27 | # Input Line History (newest to oldest): 28 | 29 | # Debug Line History (newest to oldest): 30 | 31 | # Registers: 32 | ""- CHAR 0 33 | [ 34 | |3,1,36,0,1,0,1711261383,"[" 35 | 36 | # File marks: 37 | '0 21 425 ~/Documents/iquit.txt 38 | |4,48,21,425,1712218470,"~/Documents/iquit.txt" 39 | '1 85 0 ~/.zshrc 40 | |4,49,85,0,1711261393,"~/.zshrc" 41 | '2 81 11 ~/.zhistory 42 | |4,50,81,11,1711261339,"~/.zhistory" 43 | '3 39 0 ~/.zsh_history 44 | |4,51,39,0,1711261111,"~/.zsh_history" 45 | 46 | # Jumplist (newest first): 47 | -' 21 425 ~/Documents/iquit.txt 48 | |4,39,21,425,1712218470,"~/Documents/iquit.txt" 49 | -' 1 0 ~/Documents/iquit.txt 50 | |4,39,1,0,1712218399,"~/Documents/iquit.txt" 51 | -' 85 0 ~/.zshrc 52 | |4,39,85,0,1711261393,"~/.zshrc" 53 | -' 85 0 ~/.zshrc 54 | |4,39,85,0,1711261393,"~/.zshrc" 55 | -' 1 0 ~/.zshrc 56 | |4,39,1,0,1711261363,"~/.zshrc" 57 | -' 1 0 ~/.zshrc 58 | |4,39,1,0,1711261363,"~/.zshrc" 59 | -' 81 11 ~/.zhistory 60 | |4,39,81,11,1711261339,"~/.zhistory" 61 | -' 81 11 ~/.zhistory 62 | |4,39,81,11,1711261339,"~/.zhistory" 63 | -' 81 11 ~/.zhistory 64 | |4,39,81,11,1711261339,"~/.zhistory" 65 | -' 81 11 ~/.zhistory 66 | |4,39,81,11,1711261339,"~/.zhistory" 67 | -' 1 0 ~/.zhistory 68 | |4,39,1,0,1711261116,"~/.zhistory" 69 | -' 1 0 ~/.zhistory 70 | |4,39,1,0,1711261116,"~/.zhistory" 71 | -' 1 0 ~/.zhistory 72 | |4,39,1,0,1711261116,"~/.zhistory" 73 | -' 1 0 ~/.zhistory 74 | |4,39,1,0,1711261116,"~/.zhistory" 75 | -' 39 0 ~/.zsh_history 76 | |4,39,39,0,1711261111,"~/.zsh_history" 77 | -' 39 0 ~/.zsh_history 78 | |4,39,39,0,1711261111,"~/.zsh_history" 79 | -' 39 0 ~/.zsh_history 80 | |4,39,39,0,1711261111,"~/.zsh_history" 81 | -' 39 0 ~/.zsh_history 82 | |4,39,39,0,1711261111,"~/.zsh_history" 83 | -' 39 0 ~/.zsh_history 84 | |4,39,39,0,1711261111,"~/.zsh_history" 85 | -' 39 0 ~/.zsh_history 86 | |4,39,39,0,1711261111,"~/.zsh_history" 87 | -' 39 0 ~/.zsh_history 88 | |4,39,39,0,1711261111,"~/.zsh_history" 89 | -' 39 0 ~/.zsh_history 90 | |4,39,39,0,1711261111,"~/.zsh_history" 91 | -' 1 0 ~/.zsh_history 92 | |4,39,1,0,1711261077,"~/.zsh_history" 93 | -' 1 0 ~/.zsh_history 94 | |4,39,1,0,1711261077,"~/.zsh_history" 95 | -' 1 0 ~/.zsh_history 96 | |4,39,1,0,1711261077,"~/.zsh_history" 97 | -' 1 0 ~/.zsh_history 98 | |4,39,1,0,1711261077,"~/.zsh_history" 99 | -' 1 0 ~/.zsh_history 100 | |4,39,1,0,1711261077,"~/.zsh_history" 101 | -' 1 0 ~/.zsh_history 102 | |4,39,1,0,1711261077,"~/.zsh_history" 103 | -' 1 0 ~/.zsh_history 104 | |4,39,1,0,1711261077,"~/.zsh_history" 105 | -' 1 0 ~/.zsh_history 106 | |4,39,1,0,1711261077,"~/.zsh_history" 107 | 108 | # History of marks within files (newest to oldest): 109 | 110 | > ~/Documents/iquit.txt 111 | * 1712218460 0 112 | " 21 425 113 | ^ 22 0 114 | . 21 742 115 | + 21 742 116 | 117 | > ~/.zshrc 118 | * 1711261389 0 119 | " 85 0 120 | . 85 0 121 | + 85 0 122 | 123 | > ~/.zhistory 124 | * 1711261336 0 125 | " 81 11 126 | 127 | > ~/.zsh_history 128 | * 1711261106 0 129 | " 39 0 130 | -------------------------------------------------------------------------------- /.zshrc: -------------------------------------------------------------------------------- 1 | # Path to your oh-my-zsh installation. 2 | ZSH=/usr/share/oh-my-zsh/ 3 | 4 | # Path to powerlevel10k theme 5 | source /usr/share/zsh-theme-powerlevel10k/powerlevel10k.zsh-theme 6 | 7 | # List of plugins used 8 | plugins=( git sudo zsh-256color zsh-autosuggestions zsh-syntax-highlighting ) 9 | source $ZSH/oh-my-zsh.sh 10 | 11 | # In case a command is not found, try to find the package that has it 12 | function command_not_found_handler { 13 | local purple='\e[1;35m' bright='\e[0;1m' green='\e[1;32m' reset='\e[0m' 14 | printf 'zsh: command not found: %s\n' "$1" 15 | local entries=( ${(f)"$(/usr/bin/pacman -F --machinereadable -- "/usr/bin/$1")"} ) 16 | if (( ${#entries[@]} )) ; then 17 | printf "${bright}$1${reset} may be found in the following packages:\n" 18 | local pkg 19 | for entry in "${entries[@]}" ; do 20 | local fields=( ${(0)entry} ) 21 | if [[ "$pkg" != "${fields[2]}" ]] ; then 22 | printf "${purple}%s/${bright}%s ${green}%s${reset}\n" "${fields[1]}" "${fields[2]}" "${fields[3]}" 23 | fi 24 | printf ' /%s\n' "${fields[4]}" 25 | pkg="${fields[2]}" 26 | done 27 | fi 28 | return 127 29 | } 30 | 31 | # Detect the AUR wrapper 32 | if pacman -Qi yay &>/dev/null ; then 33 | aurhelper="yay" 34 | elif pacman -Qi paru &>/dev/null ; then 35 | aurhelper="paru" 36 | fi 37 | 38 | function in { 39 | local -a inPkg=("$@") 40 | local -a arch=() 41 | local -a aur=() 42 | 43 | for pkg in "${inPkg[@]}"; do 44 | if pacman -Si "${pkg}" &>/dev/null ; then 45 | arch+=("${pkg}") 46 | else 47 | aur+=("${pkg}") 48 | fi 49 | done 50 | 51 | if [[ ${#arch[@]} -gt 0 ]]; then 52 | sudo pacman -S "${arch[@]}" 53 | fi 54 | 55 | if [[ ${#aur[@]} -gt 0 ]]; then 56 | ${aurhelper} -S "${aur[@]}" 57 | fi 58 | } 59 | 60 | # Helpful aliases 61 | alias c='clear' # clear terminal 62 | alias l='eza -lh --icons=auto' # long list 63 | alias ls='eza -1 --icons=auto' # short list 64 | alias ll='eza -lha --icons=auto --sort=name --group-directories-first' # long list all 65 | alias ld='eza -lhD --icons=auto' # long list dirs 66 | alias un='$aurhelper -Rns' # uninstall package 67 | alias up='$aurhelper -Syu' # update system/package/aur 68 | alias pl='$aurhelper -Qs' # list installed package 69 | alias pa='$aurhelper -Ss' # list availabe package 70 | alias pc='$aurhelper -Sc' # remove unused cache 71 | alias po='$aurhelper -Qtdq | $aurhelper -Rns -' # remove unused packages, also try > $aurhelper -Qqd | $aurhelper -Rsu --print - 72 | alias vc='code' # gui code editor 73 | 74 | # Handy change dir shortcuts 75 | alias ..='cd ..' 76 | alias ...='cd ../..' 77 | alias .3='cd ../../..' 78 | alias .4='cd ../../../..' 79 | alias .5='cd ../../../../..' 80 | 81 | # Always mkdir a path (this doesn't inhibit functionality to make a single dir) 82 | alias mkdir='mkdir -p' 83 | 84 | # Fixes "Error opening terminal: xterm-kitty" when using the default kitty term to open some programs through ssh 85 | alias ssh='kitten ssh' 86 | 87 | # To customize prompt, run `p10k configure` or edit ~/.p10k.zsh. 88 | [[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh 89 | 90 | #Display Pokemon 91 | pokemon-colorscripts --no-title -r 1,3,6 92 | 93 | # >>> conda initialize >>> 94 | # !! Contents within this block are managed by 'conda init' !! 95 | __conda_setup="$('/opt/miniconda3/bin/conda' 'shell.zsh' 'hook' 2> /dev/null)" 96 | if [ $? -eq 0 ]; then 97 | eval "$__conda_setup" 98 | else 99 | if [ -f "/opt/miniconda3/etc/profile.d/conda.sh" ]; then 100 | . "/opt/miniconda3/etc/profile.d/conda.sh" 101 | else 102 | export PATH="/opt/miniconda3/bin:$PATH" 103 | fi 104 | fi 105 | unset __conda_setup 106 | # <<< conda initialize <<< 107 | 108 | # pnpm 109 | export PNPM_HOME="/home/bots/.local/share/pnpm" 110 | case ":$PATH:" in 111 | *":$PNPM_HOME:"*) ;; 112 | *) export PATH="$PNPM_HOME:$PATH" ;; 113 | esac 114 | # pnpm end 115 | 116 | export NVM_DIR=~/.nvm 117 | [ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" 118 | -------------------------------------------------------------------------------- /.zshrc.merged: -------------------------------------------------------------------------------- 1 | 2 | # 3 | } 4 | ${aurhelper} -S "${aur[@]}" 5 | # Add wisely, as too many plugins slow down shell startup. 6 | alias .3='cd ../../..' 7 | alias .4='cd ../../../..' 8 | alias .5='cd ../../../../..' 9 | alias c='clear' # clear terminal 10 | alias ...='cd ../..' 11 | alias ..='cd ..' 12 | alias ld='eza -lhD --icons=auto' # long list dirs 13 | alias l='eza -lh --icons=auto' # long list 14 | alias ll='eza -lha --icons=auto --sort=name --group-directories-first' # long list all 15 | alias ls='eza -1 --icons=auto' # short list 16 | alias mkdir='mkdir -p' 17 | # alias ohmyzsh="mate ~/.oh-my-zsh" 18 | alias pa='$aurhelper -Ss' # list availabe package 19 | alias pc='$aurhelper -Sc' # remove unused cache 20 | alias pl='$aurhelper -Qs' # list installed package 21 | alias po='$aurhelper -Qtdq | $aurhelper -Rns -' # remove unused packages, also try > $aurhelper -Qqd | $aurhelper -Rsu --print - 22 | alias ssh='kitten ssh' 23 | alias un='$aurhelper -Rns' # uninstall package 24 | alias up='$aurhelper -Syu' # update system/package/aur 25 | alias vc='code --ozone-platform-hint=wayland --disable-gpu' # gui code editor 26 | # alias zshconfig="mate ~/.zshrc" 27 | # Always mkdir a path (this doesn't inhibit functionality to make a single dir) 28 | arch+=("${pkg}") 29 | # a theme from this variable instead of looking in $ZSH/themes/ 30 | aur+=("${pkg}") 31 | aurhelper="paru" 32 | aurhelper="yay" 33 | # Case-sensitive completion must be off. _ and - will be interchangeable. 34 | # CASE_SENSITIVE="true" 35 | # Caution: this setting can cause issues with multiline prompts in zsh < 5.7.1 (see #5765) 36 | # Compilation flags 37 | # COMPLETION_WAITING_DOTS="true" 38 | # confirmations, etc.) must go above this block; everything else may go below. 39 | # Custom plugins may be added to $ZSH_CUSTOM/plugins/ 40 | # Detect the AUR wrapper 41 | # DISABLE_AUTO_TITLE="true" 42 | # DISABLE_LS_COLORS="true" 43 | # DISABLE_MAGIC_FUNCTIONS="true" 44 | # DISABLE_UNTRACKED_FILES_DIRTY="true" 45 | #Display Pokemon 46 | done 47 | done 48 | # e.g. COMPLETION_WAITING_DOTS="%F{yellow}waiting...%f" 49 | elif pacman -Qi paru &>/dev/null ; then 50 | else 51 | # else 52 | # ENABLE_CORRECTION="true" 53 | # Enable Powerlevel10k instant prompt. Should stay close to the top of ~/.zshrc. 54 | # Example aliases 55 | # Example format: plugins=(rails git textmate ruby lighthouse) 56 | # export ARCHFLAGS="-arch x86_64" 57 | # export EDITOR='mvim' 58 | # export EDITOR='vim' 59 | # export LANG=en_US.UTF-8 60 | # export MANPATH="/usr/local/man:$MANPATH" 61 | # export PATH=$HOME/bin:/usr/local/bin:$PATH 62 | fi 63 | fi 64 | fi 65 | # fi 66 | fi 67 | # Fixes "Error opening terminal: xterm-kitty" when using the default kitty term to open some programs through ssh 68 | # For a full list of active aliases, run `alias`. 69 | for entry in "${entries[@]}" ; do 70 | for pkg in "${inPkg[@]}"; do 71 | [[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh 72 | function command_not_found_handler { 73 | function in { 74 | # Handy change dir shortcuts 75 | # Helpful aliases 76 | # HIST_STAMPS="mm/dd/yyyy" 77 | # HYPHEN_INSENSITIVE="true" 78 | if [[ ${#arch[@]} -gt 0 ]]; then 79 | if [[ ${#aur[@]} -gt 0 ]]; then 80 | if (( ${#entries[@]} )) ; then 81 | if [[ "$pkg" != "${fields[2]}" ]] ; then 82 | if [[ ! -d $ZSH_CACHE_DIR ]]; then 83 | # if [[ -n $SSH_CONNECTION ]]; then 84 | if pacman -Qi yay &>/dev/null ; then 85 | if pacman -Si "${pkg}" &>/dev/null ; then 86 | if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then 87 | # If set to an empty array, this variable will have no effect. 88 | # If you come from bash you might have to change your $PATH. 89 | # In case a command is not found, try to find the package that has it 90 | # Initialization code that may require console input (password prompts, [y/n] 91 | # List of plugins used 92 | # load a random theme each time oh-my-zsh is loaded, in which case, 93 | local -a arch=() 94 | local -a aur=() 95 | local -a inPkg=("$@") 96 | local entries=( ${(f)"$(/usr/bin/pacman -F --machinereadable -- "/usr/bin/$1")"} ) 97 | local fields=( ${(0)entry} ) 98 | local pkg 99 | local purple='\e[1;35m' bright='\e[0;1m' green='\e[1;32m' reset='\e[0m' 100 | mkdir $ZSH_CACHE_DIR 101 | # "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd" 102 | # much, much faster. 103 | # or set a custom format using the strftime function format specifications, 104 | # Path to powerlevel10k theme 105 | # Path to your oh-my-zsh installation. 106 | pkg="${fields[2]}" 107 | plugins=() 108 | # plugins, and themes. Aliases can be placed here, though oh-my-zsh 109 | plugins=(git) 110 | pokemon-colorscripts --no-title -r 1,3,6 111 | # Preferred editor for local and remote sessions 112 | printf "${bright}$1${reset} may be found in the following packages:\n" 113 | printf "${purple}%s/${bright}%s ${green}%s${reset}\n" "${fields[1]}" "${fields[2]}" "${fields[3]}" 114 | printf ' /%s\n' "${fields[4]}" 115 | printf 'zsh: command not found: %s\n' "$1" 116 | return 127 117 | # See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes 118 | # see 'man strftime' for details. 119 | # Set list of themes to pick from when loading at random 120 | # Set name of the theme to load --- if set to "random", it will 121 | # Set personal aliases, overriding those provided by oh-my-zsh libs, 122 | # Setting this variable when ZSH_THEME=random will cause zsh to load 123 | source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" 124 | source $ZSH/oh-my-zsh.sh 125 | source /usr/share/zsh-theme-powerlevel10k/powerlevel10k.zsh-theme 126 | # stamp shown in the history command output. 127 | # Standard plugins can be found in $ZSH/plugins/ 128 | sudo pacman -S "${arch[@]}" 129 | # To customize prompt, run `p10k configure` or edit ~/.p10k.zsh. 130 | # to know which specific one was loaded, run: echo $RANDOM_THEME 131 | # Uncomment one of the following lines to change the auto-update behavior 132 | # Uncomment the following line if pasting URLs and other text is messed up. 133 | # Uncomment the following line if you want to change the command execution time 134 | # Uncomment the following line if you want to disable marking untracked files 135 | # Uncomment the following line to change how often to auto-update (in days). 136 | # Uncomment the following line to disable auto-setting terminal title. 137 | # Uncomment the following line to disable colors in ls. 138 | # Uncomment the following line to display red dots whilst waiting for completion. 139 | # Uncomment the following line to enable command auto-correction. 140 | # Uncomment the following line to use case-sensitive completion. 141 | # Uncomment the following line to use hyphen-insensitive completion. 142 | # under VCS as dirty. This makes repository status check for large repositories 143 | # User configuration 144 | # users are encouraged to define aliases within the ZSH_CUSTOM folder. 145 | # Which plugins would you like to load? 146 | # Would you like to use another custom folder than $ZSH/custom? 147 | # You can also set it to another string to have that shown instead of the default red dots. 148 | # You can set one of the optional three formats: 149 | # You may need to manually set your language environment 150 | ZSH_CACHE_DIR=$HOME/.cache/oh-my-zsh 151 | # ZSH_CUSTOM=/path/to/new-custom-folder 152 | # ZSH_THEME_RANDOM_CANDIDATES=( "robbyrussell" "agnoster" ) 153 | ZSH_THEME="robbyrussell" 154 | ZSH=/usr/share/oh-my-zsh/ 155 | # zstyle ':omz:update' frequency 13 156 | # zstyle ':omz:update' mode auto # update automatically without asking 157 | # zstyle ':omz:update' mode disabled # disable automatic updates 158 | # zstyle ':omz:update' mode reminder # just remind me to update when it's time 159 | -------------------------------------------------------------------------------- /.dircolors: -------------------------------------------------------------------------------- 1 | # Configuration file for dircolors, a utility to help you set the 2 | # LS_COLORS environment variable used by GNU ls with the --color option. 3 | 4 | # Copyright (C) 1996-2022 Free Software Foundation, Inc. 5 | # Copying and distribution of this file, with or without modification, 6 | # are permitted provided the copyright notice and this notice are preserved. 7 | 8 | # The keywords COLOR, OPTIONS, and EIGHTBIT (honored by the 9 | # slackware version of dircolors) are recognized but ignored. 10 | 11 | # Global config options can be specified before TERM or COLORTERM entries 12 | 13 | # Below are TERM or COLORTERM entries, which can be glob patterns, which 14 | # restrict following config to systems with matching environment variables. 15 | COLORTERM ?* 16 | TERM Eterm 17 | TERM ansi 18 | TERM *color* 19 | TERM con[0-9]*x[0-9]* 20 | TERM cons25 21 | TERM console 22 | TERM cygwin 23 | TERM *direct* 24 | TERM dtterm 25 | TERM gnome 26 | TERM hurd 27 | TERM jfbterm 28 | TERM konsole 29 | TERM kterm 30 | TERM linux 31 | TERM linux-c 32 | TERM mlterm 33 | TERM putty 34 | TERM rxvt* 35 | TERM screen* 36 | TERM st 37 | TERM terminator 38 | TERM tmux* 39 | TERM vt48;2;98;114;164 40 | TERM xterm* 41 | 42 | # Below are the color init strings for the basic file types. 43 | # One can use codes for 256 or more colors supported by modern terminals. 44 | # The default color codes use the capabilities of an 8 color terminal 45 | # with some additional attributes as per the following codes: 46 | # Attribute codes: 47 | # 00=none 01=bold 04=underscore 05=blink 07=reverse 08=concealed 48 | # Text color codes: 49 | # 38;2;33;34;44=black 38;2;255;85;85=red 38;2;80;250;123=green 38;2;241;250;140=yellow 38;2;189;147;249=blue 38;2;255;121;198=magenta 38;2;139;233;253=cyan 38;2;248;248;242=white 50 | # Background color codes: 51 | # 48;2;33;34;44=black 48;2;255;85;85=red 48;2;80;250;123=green 48;2;241;250;140=yellow 48;2;189;147;249=blue 48;2;255;121;198=magenta 48;2;139;233;253=cyan 48;2;248;248;242=white 52 | #NORMAL 00 # no color code at all 53 | #FILE 00 # regular file: use no color at all 54 | RESET 0 # reset to "normal" color 55 | DIR 01;38;2;189;147;249 # directory 56 | LINK 01;38;2;139;233;253 # symbolic link. (If you set this to 'target' instead of a 57 | # numerical value, the color is as for the file pointed to.) 58 | MULTIHARDLINK 00 # regular file with more than one link 59 | FIFO 48;2;33;34;44;38;2;241;250;140 # pipe 60 | SOCK 01;38;2;255;121;198 # socket 61 | DOOR 01;38;2;255;121;198 # door 62 | BLK 48;2;33;34;44;38;2;241;250;140;01 # block device driver 63 | CHR 48;2;33;34;44;38;2;241;250;140;01 # character device driver 64 | ORPHAN 48;2;33;34;44;38;2;255;85;85;01 # symlink to nonexistent file, or non-stat'able file ... 65 | MISSING 00 # ... and the files they point to 66 | SETUID 38;2;248;248;242;48;2;255;85;85 # file that is setuid (u+s) 67 | SETGID 38;2;33;34;44;48;2;241;250;140 # file that is setgid (g+s) 68 | CAPABILITY 00 # file with capability (very expensive to lookup) 69 | STICKY_OTHER_WRITABLE 38;2;33;34;44;48;2;80;250;123 # dir that is sticky and other-writable (+t,o+w) 70 | OTHER_WRITABLE 38;2;189;147;249;48;2;80;250;123 # dir that is other-writable (o+w) and not sticky 71 | STICKY 38;2;248;248;242;48;2;189;147;249 # dir with the sticky bit set (+t) and not other-writable 72 | 73 | # This is for files with execute permission: 74 | EXEC 01;38;2;80;250;123 75 | 76 | # List any file extensions like '.gz' or '.tar' that you would like ls 77 | # to color below. Put the extension, a space, and the color init string. 78 | # (and any comments you want to add after a '#') 79 | 80 | # If you use DOS-style suffixes, you may want to uncomment the following: 81 | #.cmd 01;38;2;80;250;123 # executables (bright green) 82 | #.exe 01;38;2;80;250;123 83 | #.com 01;38;2;80;250;123 84 | #.btm 01;38;2;80;250;123 85 | #.bat 01;38;2;80;250;123 86 | # Or if you want to color scripts even if they do not have the 87 | # executable bit actually set. 88 | #.sh 01;38;2;80;250;123 89 | #.csh 01;38;2;80;250;123 90 | 91 | # archives or compressed (bright red) 92 | .tar 01;38;2;255;85;85 93 | .tgz 01;38;2;255;85;85 94 | .arc 01;38;2;255;85;85 95 | .arj 01;38;2;255;85;85 96 | .taz 01;38;2;255;85;85 97 | .lha 01;38;2;255;85;85 98 | .lz4 01;38;2;255;85;85 99 | .lzh 01;38;2;255;85;85 100 | .lzma 01;38;2;255;85;85 101 | .tlz 01;38;2;255;85;85 102 | .txz 01;38;2;255;85;85 103 | .tzo 01;38;2;255;85;85 104 | .t7z 01;38;2;255;85;85 105 | .zip 01;38;2;255;85;85 106 | .z 01;38;2;255;85;85 107 | .dz 01;38;2;255;85;85 108 | .gz 01;38;2;255;85;85 109 | .lrz 01;38;2;255;85;85 110 | .lz 01;38;2;255;85;85 111 | .lzo 01;38;2;255;85;85 112 | .xz 01;38;2;255;85;85 113 | .zst 01;38;2;255;85;85 114 | .tzst 01;38;2;255;85;85 115 | .bz2 01;38;2;255;85;85 116 | .bz 01;38;2;255;85;85 117 | .tbz 01;38;2;255;85;85 118 | .tbz2 01;38;2;255;85;85 119 | .tz 01;38;2;255;85;85 120 | .deb 01;38;2;255;85;85 121 | .rpm 01;38;2;255;85;85 122 | .jar 01;38;2;255;85;85 123 | .war 01;38;2;255;85;85 124 | .ear 01;38;2;255;85;85 125 | .sar 01;38;2;255;85;85 126 | .rar 01;38;2;255;85;85 127 | .alz 01;38;2;255;85;85 128 | .ace 01;38;2;255;85;85 129 | .zoo 01;38;2;255;85;85 130 | .cpio 01;38;2;255;85;85 131 | .7z 01;38;2;255;85;85 132 | .rz 01;38;2;255;85;85 133 | .cab 01;38;2;255;85;85 134 | .wim 01;38;2;255;85;85 135 | .swm 01;38;2;255;85;85 136 | .dwm 01;38;2;255;85;85 137 | .esd 01;38;2;255;85;85 138 | 139 | # image formats 140 | .avif 01;38;2;255;121;198 141 | .jpg 01;38;2;255;121;198 142 | .jpeg 01;38;2;255;121;198 143 | .mjpg 01;38;2;255;121;198 144 | .mjpeg 01;38;2;255;121;198 145 | .gif 01;38;2;255;121;198 146 | .bmp 01;38;2;255;121;198 147 | .pbm 01;38;2;255;121;198 148 | .pgm 01;38;2;255;121;198 149 | .ppm 01;38;2;255;121;198 150 | .tga 01;38;2;255;121;198 151 | .xbm 01;38;2;255;121;198 152 | .xpm 01;38;2;255;121;198 153 | .tif 01;38;2;255;121;198 154 | .tiff 01;38;2;255;121;198 155 | .png 01;38;2;255;121;198 156 | .svg 01;38;2;255;121;198 157 | .svgz 01;38;2;255;121;198 158 | .mng 01;38;2;255;121;198 159 | .pcx 01;38;2;255;121;198 160 | .mov 01;38;2;255;121;198 161 | .mpg 01;38;2;255;121;198 162 | .mpeg 01;38;2;255;121;198 163 | .m2v 01;38;2;255;121;198 164 | .mkv 01;38;2;255;121;198 165 | .webm 01;38;2;255;121;198 166 | .webp 01;38;2;255;121;198 167 | .ogm 01;38;2;255;121;198 168 | .mp4 01;38;2;255;121;198 169 | .m4v 01;38;2;255;121;198 170 | .mp4v 01;38;2;255;121;198 171 | .vob 01;38;2;255;121;198 172 | .qt 01;38;2;255;121;198 173 | .nuv 01;38;2;255;121;198 174 | .wmv 01;38;2;255;121;198 175 | .asf 01;38;2;255;121;198 176 | .rm 01;38;2;255;121;198 177 | .rmvb 01;38;2;255;121;198 178 | .flc 01;38;2;255;121;198 179 | .avi 01;38;2;255;121;198 180 | .fli 01;38;2;255;121;198 181 | .flv 01;38;2;255;121;198 182 | .gl 01;38;2;255;121;198 183 | .dl 01;38;2;255;121;198 184 | .xcf 01;38;2;255;121;198 185 | .xwd 01;38;2;255;121;198 186 | .yuv 01;38;2;255;121;198 187 | .cgm 01;38;2;255;121;198 188 | .emf 01;38;2;255;121;198 189 | 190 | # https://wiki.xiph.org/MIME_Types_and_File_Extensions 191 | .ogv 01;38;2;255;121;198 192 | .ogx 01;38;2;255;121;198 193 | 194 | # audio formats 195 | .aac 00;38;2;139;233;253 196 | .au 00;38;2;139;233;253 197 | .flac 00;38;2;139;233;253 198 | .m4a 00;38;2;139;233;253 199 | .mid 00;38;2;139;233;253 200 | .midi 00;38;2;139;233;253 201 | .mka 00;38;2;139;233;253 202 | .mp3 00;38;2;139;233;253 203 | .mpc 00;38;2;139;233;253 204 | .ogg 00;38;2;139;233;253 205 | .ra 00;38;2;139;233;253 206 | .wav 00;38;2;139;233;253 207 | 208 | # https://wiki.xiph.org/MIME_Types_and_File_Extensions 209 | .oga 00;38;2;139;233;253 210 | .opus 00;38;2;139;233;253 211 | .spx 00;38;2;139;233;253 212 | .xspf 00;38;2;139;233;253 213 | 214 | # backup files 215 | *~ 00;38;2;98;114;164 216 | *# 00;38;2;98;114;164 217 | .bak 00;38;2;98;114;164 218 | .old 00;38;2;98;114;164 219 | .orig 00;38;2;98;114;164 220 | .part 00;38;2;98;114;164 221 | .rej 00;38;2;98;114;164 222 | .swp 00;38;2;98;114;164 223 | .tmp 00;38;2;98;114;164 224 | .dpkg-dist 00;38;2;98;114;164 225 | .dpkg-old 00;38;2;98;114;164 226 | .ucf-dist 00;38;2;98;114;164 227 | .ucf-new 00;38;2;98;114;164 228 | .ucf-old 00;38;2;98;114;164 229 | .rpmnew 00;38;2;98;114;164 230 | .rpmorig 00;38;2;98;114;164 231 | .rpmsave 00;38;2;98;114;164 232 | 233 | # Subsequent TERM or COLORTERM entries, can be used to add / override 234 | # config specific to those matching environment variables. 235 | -------------------------------------------------------------------------------- /.zshrc.recovered: -------------------------------------------------------------------------------- 1 | integer 10 readonly '!'=0 2 | integer 10 readonly '#'=0 3 | integer 10 readonly '$'=123530 4 | array readonly '*'=( ) 5 | readonly -=0569BJNPXZikms 6 | 0=/bin/zsh 7 | integer 10 readonly '?'=0 8 | array readonly @=( ) 9 | integer 10 readonly ARGC=0 10 | BEMENU_BACKEND=wayland 11 | BUFFER='' 12 | tied cdpath CDPATH='' 13 | COLORTERM=truecolor 14 | integer 10 COLUMNS=168 15 | CONDA_DEFAULT_ENV=base 16 | CONDA_EXE=/home/bots/anaconda3/bin/conda 17 | CONDA_PREFIX=/home/bots/anaconda3 18 | CONDA_PROMPT_MODIFIER='(base) ' 19 | CONDA_PYTHON_EXE=/home/bots/anaconda3/bin/python 20 | CONDA_SHLVL=1 21 | CPUTYPE=x86_64 22 | CURSOR='' 23 | DBUS_SESSION_BUS_ADDRESS='unix:path=/run/user/1000/bus' 24 | DEBUGINFOD_URLS='https://debuginfod.archlinux.org ' 25 | DESKTOP_SESSION=garuda-hyprland 26 | DISPLAY=:1 27 | ECORE_EVAS_ENGINE=wayland-egl 28 | EDITOR=nano 29 | integer 10 EGID=1000 30 | ELM_ENGINE=wayland_egl 31 | float readonly EPOCHREALTIME 32 | integer readonly EPOCHSECONDS 33 | integer 10 EUID=1000 34 | tied fignore FIGNORE='' 35 | tied fpath FPATH=/usr/lib/kitty/shell-integration/zsh/completions:/usr/local/share/zsh/site-functions:/usr/share/zsh/site-functions:/usr/share/zsh/functions/Calendar:/usr/share/zsh/functions/Chpwd:/usr/share/zsh/functions/Completion:/usr/share/zsh/functions/Completion/Base:/usr/share/zsh/functions/Completion/Linux:/usr/share/zsh/functions/Completion/Unix:/usr/share/zsh/functions/Completion/X:/usr/share/zsh/functions/Completion/Zsh:/usr/share/zsh/functions/Exceptions:/usr/share/zsh/functions/MIME:/usr/share/zsh/functions/Math:/usr/share/zsh/functions/Misc:/usr/share/zsh/functions/Newuser:/usr/share/zsh/functions/Prompts:/usr/share/zsh/functions/TCP:/usr/share/zsh/functions/VCS_Info:/usr/share/zsh/functions/VCS_Info/Backends:/usr/share/zsh/functions/Zftp:/usr/share/zsh/functions/Zle 36 | integer 10 FUNCNEST=500 37 | FZF_DEFAULT_OPTS=' --color=bg+:-1,bg:#1e1e2e,spinner:#f5e0dc,hl:#f38ba8 --color=fg:#cdd6f4,header:#f38ba8,info:#cba6f7,pointer:#f5e0dc --color=marker:#f5e0dc,fg+:#a6e3a1,prompt:#cba6f7,hl+:#f38ba8' 38 | GDK_BACKEND=wayland 39 | integer 10 GID=1000 40 | GSETTINGS_SCHEMA_DIR=/home/bots/anaconda3/share/glib-2.0/schemas 41 | GSETTINGS_SCHEMA_DIR_CONDA_BACKUP='' 42 | GTK2_RC_FILES=/home/bots/.gtkrc-2.0 43 | HG=/usr/bin/hg 44 | HISTCHARS='!^#' 45 | integer 10 readonly HISTCMD=1165 46 | HISTFILE=/home/bots/.zhistory 47 | HISTORY_SUBSTRING_SEARCH_ENSURE_UNIQUE='' 48 | HISTORY_SUBSTRING_SEARCH_FUZZY='' 49 | HISTORY_SUBSTRING_SEARCH_GLOBBING_FLAGS=i 50 | HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_FOUND='bg=magenta,fg=white,bold' 51 | HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_NOT_FOUND='bg=red,fg=white,bold' 52 | HISTORY_SUBSTRING_SEARCH_PREFIXED='' 53 | integer 10 HISTSIZE=50000 54 | HOME=/home/bots 55 | HOST=botbox 56 | HYPRLAND_CMD=Hyprland 57 | HYPRLAND_INSTANCE_SIGNATURE=4ffcdc41ff8233a92f02c633475ac3472b0998df_1711124695 58 | IFS=$' \t\n\C-@' 59 | KEYBOARD_HACK='' 60 | integer KEYTIMEOUT=40 61 | KITTY_INSTALLATION_DIR=/usr/lib/kitty 62 | KITTY_PID=123294 63 | KITTY_PUBLIC_KEY='1:mW?ZVTJ($7EuHWJPMwbsH$hnC>tPgGk,bzip2' '_bzip2' 1192 | '-redirect-,<,compress' '_compress' 1193 | '-redirect-,>,compress' '_compress' 1194 | '-redirect-,-default-,-default-' '_files' 1195 | '-redirect-,<,gunzip' '_gzip' 1196 | '-redirect-,<,gzip' '_gzip' 1197 | '-redirect-,>,gzip' '_gzip' 1198 | '-redirect-,<,uncompress' '_compress' 1199 | '-redirect-,<,unxz' '_xz' 1200 | '-redirect-,<,xz' '_xz' 1201 | '-redirect-,>,xz' '_xz' 1202 | 'redis-cli' '_redis-cli' 1203 | 'refile' '_mh' 1204 | 'rehash' '_hash' 1205 | 'reindexdb' '_postgresql' 1206 | 'reload' '_initctl' 1207 | 'remsh' '_rlogin' 1208 | 'renice' '_renice' 1209 | 'repl' '_mh' 1210 | 'resolvectl' '_resolvectl' 1211 | 'restart' '_initctl' 1212 | 'retawq' '_webbrowser' 1213 | 'rfkill' '_rfkill' 1214 | 'rgrep' '_grep' 1215 | 'rgview' '_vim' 1216 | 'rgvim' '_vim' 1217 | 'ri' '_ri' 1218 | 'rkt' '_rkt' 1219 | 'rlogin' '_rlogin' 1220 | 'rm' '_rm' 1221 | 'rmd160' '_cksum' 1222 | 'rmdel' '_sccs' 1223 | 'rmdir' '_rmdir' 1224 | 'rmf' '_mh' 1225 | 'rmic' '_java' 1226 | 'rmid' '_java' 1227 | 'rmiregistry' '_java' 1228 | 'rmlint' '_rmlint' 1229 | 'rmlint.sh' '_rmlint' 1230 | 'rmm' '_mh' 1231 | 'rmmod' '_modutils' 1232 | 'route' '_route' 1233 | 'rrdtool' '_rrdtool' 1234 | 'rsh' '_rlogin' 1235 | 'rslsync' '_rslsync' 1236 | 'rspec' '_rspec' 1237 | 'rsvm' '_rsvm' 1238 | 'rsync' '_rsync' 1239 | 'rtin' '_tin' 1240 | 'rubber' '_rubber' 1241 | 'rubber-info' '_rubber' 1242 | 'rubber-pipe' '_rubber' 1243 | 'rubocop' '_rubocop' 1244 | 'ruby' '_ruby' 1245 | 'ruby-mri' '_ruby' 1246 | 'run-help' '_run-help' 1247 | 'rup' '_hosts' 1248 | 'rusage' '_precommand' 1249 | 'rview' '_vim' 1250 | 'rvim' '_vim' 1251 | 'rwho' '_hosts' 1252 | 'rxvt' '_urxvt' 1253 | 's2p' '_sed' 1254 | 'sact' '_sccs' 1255 | 'sadf' '_sysstat' 1256 | 'sahara' '_openstack' 1257 | 'sar' '_sysstat' 1258 | 'sbt' '_sbt' 1259 | 'scala' '_scala' 1260 | 'scalac' '_scala' 1261 | 'scan' '_mh' 1262 | 'sccs' '_sccs' 1263 | 'sccsdiff' '_sccs' 1264 | 'sched' '_sched' 1265 | 'schedtool' '_schedtool' 1266 | 'scons' '_scons' 1267 | 'scp' '_ssh' 1268 | 'screen' '_screen' 1269 | 'screencapture' '_screencapture' 1270 | 'script' '_script' 1271 | 'scriptreplay' '_script' 1272 | 'scrub' '_scrub' 1273 | 'sdd' '_sdd' 1274 | 'sdkmanager' '_sdkmanager' 1275 | 'seaf-cli' '_seafile' 1276 | 'sed' '_sed' 1277 | 'senlin' '_openstack' 1278 | 'seq' '_seq' 1279 | 'serialver' '_java' 1280 | 'service' '_service' 1281 | 'set' '_set' 1282 | 'setcap' '_setcap' 1283 | 'setfacl' '_setfacl' 1284 | 'setfacl.exe' '_setfacl' 1285 | 'setfattr' '_attr' 1286 | 'setopt' '_setopt' 1287 | 'setpriv' '_setpriv' 1288 | 'setsid' '_setsid' 1289 | 'setup.py' '_setup.py' 1290 | 'setxkbmap' '_setxkbmap' 1291 | 'sfdx' '_sfdx' 1292 | 'sftp' '_ssh' 1293 | 'sh' '_sh' 1294 | 'sha1' '_cksum' 1295 | 'sha1sum' '_md5sum' 1296 | 'sha224sum' '_md5sum' 1297 | 'sha256' '_cksum' 1298 | 'sha256sum' '_md5sum' 1299 | 'sha384' '_cksum' 1300 | 'sha384sum' '_md5sum' 1301 | 'sha512' '_cksum' 1302 | 'sha512sum' '_md5sum' 1303 | 'sha512t256' '_cksum' 1304 | 'shasum' '_shasum' 1305 | 'shellcheck' '_shellcheck' 1306 | 'shift' '_arrays' 1307 | 'show' '_mh' 1308 | 'showchar' '_psutils' 1309 | 'showmount' '_showmount' 1310 | 'showoff' '_showoff' 1311 | 'shred' '_shred' 1312 | 'shuf' '_shuf' 1313 | 'shutdown' '_shutdown' 1314 | 'sisu' '_sisu' 1315 | 'skein1024' '_cksum' 1316 | 'skein256' '_cksum' 1317 | 'skein512' '_cksum' 1318 | 'skipstone' '_webbrowser' 1319 | 'slabtop' '_slabtop' 1320 | 'slitex' '_tex' 1321 | 'slocate' '_locate' 1322 | 'slogin' '_ssh' 1323 | 'slrn' '_slrn' 1324 | 'smartctl' '_smartmontools' 1325 | 'smbclient' '_samba' 1326 | 'smbcontrol' '_samba' 1327 | 'smbstatus' '_samba' 1328 | 'snapper' '_snapper' 1329 | 'soa' '_hosts' 1330 | 'socket' '_socket' 1331 | 'sort' '_sort' 1332 | 'sortm' '_mh' 1333 | 'source' '_source' 1334 | 'spamassassin' '_spamassassin' 1335 | 'split' '_split' 1336 | 'splitdiff' '_patchutils' 1337 | 'sqlite' '_sqlite' 1338 | 'sqlite3' '_sqlite' 1339 | 'sqsh' '_sqsh' 1340 | 'sr' '_surfraw' 1341 | 'srm' '_srm' 1342 | 'srptool' '_gnutls' 1343 | 'ss' '_ss' 1344 | 'ssh' '_ssh' 1345 | 'ssh-add' '_ssh' 1346 | 'ssh-agent' '_ssh' 1347 | 'ssh-copy-id' '_ssh' 1348 | 'sshfs' '_sshfs' 1349 | 'ssh-keygen' '_ssh' 1350 | 'ssh-keyscan' '_ssh' 1351 | 'stack' '_stack' 1352 | 'star' '_tar' 1353 | 'starship' '_starship' 1354 | 'start' '_initctl' 1355 | 'stat' '_stat' 1356 | 'status' '_initctl' 1357 | 'stdbuf' '_stdbuf' 1358 | 'stg' '_stgit' 1359 | 'stop' '_initctl' 1360 | 'stow' '_stow' 1361 | 'strace' '_strace' 1362 | 'strace64' '_strace' 1363 | 'streamlink' '_streamlink' 1364 | 'strftime' '_strftime' 1365 | 'strings' '_strings' 1366 | 'strip' '_strip' 1367 | 'strongswan' '_ipsec' 1368 | 'stty' '_stty' 1369 | 'su' '_su' 1370 | 'subl' '_sublimetext' 1371 | 'subliminal' '_subliminal' 1372 | '-subscript-' '_subscript' 1373 | 'sudo' '_sudo' 1374 | 'sudoedit' '_sudo' 1375 | 'sum' '_cksum' 1376 | 'supervisorctl' '_supervisorctl' 1377 | 'surfraw' '_surfraw' 1378 | 'sv' '_runit' 1379 | 'svm' '_svm' 1380 | 'svn' '_subversion' 1381 | 'svnadmin' '_subversion' 1382 | 'svnadmin-static' '_subversion' 1383 | 'svnlite' '_subversion' 1384 | 'svnliteadmin' '_subversion' 1385 | 'swaks' '_swaks' 1386 | 'swanctl' '_swanctl' 1387 | 'swayidle' '_swayidle' 1388 | 'swaylock' '_swaylock' 1389 | 'swaync' '_swaync' 1390 | 'swaync-client' '_swaync-client' 1391 | 'swift' '_swift' 1392 | 'swiftc' '_swift' 1393 | 'swww' '_swww' 1394 | 'sync' '_nothing' 1395 | 'sysctl' '_sysctl' 1396 | 'systemctl' '_systemctl' 1397 | 'systemd-analyze' '_systemd-analyze' 1398 | 'systemd-ask-password' '_systemd' 1399 | 'systemd-cat' '_systemd' 1400 | 'systemd-cgls' '_systemd' 1401 | 'systemd-cgtop' '_systemd' 1402 | 'systemd-delta' '_systemd-delta' 1403 | 'systemd-detect-virt' '_systemd' 1404 | 'systemd-inhibit' '_systemd-inhibit' 1405 | 'systemd-machine-id-setup' '_systemd' 1406 | 'systemd-notify' '_systemd' 1407 | 'systemd-nspawn' '_systemd-nspawn' 1408 | 'systemd-path' '_systemd-path' 1409 | 'systemd-resolve' '_resolvectl' 1410 | 'systemd-run' '_systemd-run' 1411 | 'systemd-tmpfiles' '_systemd-tmpfiles' 1412 | 'systemd-tty-ask-password-agent' '_systemd' 1413 | 'systemsettings' '_systemsettings' 1414 | 'tac' '_tac' 1415 | 'tacker' '_openstack' 1416 | 'tail' '_tail' 1417 | 'talk' '_other_accounts' 1418 | 'tar' '_tar' 1419 | 'tardy' '_tardy' 1420 | 'tcpdump' '_tcpdump' 1421 | 'tcp_open' '_tcpsys' 1422 | 'tcptraceroute' '_tcptraceroute' 1423 | 'tcsh' '_sh' 1424 | 'tda' '_devtodo' 1425 | 'tdd' '_devtodo' 1426 | 'tde' '_devtodo' 1427 | 'tdr' '_devtodo' 1428 | 'teamocil' '_teamocil' 1429 | 'tee' '_tee' 1430 | 'telnet' '_telnet' 1431 | 'tex' '_tex' 1432 | 'texi2any' '_texinfo' 1433 | 'texi2dvi' '_texinfo' 1434 | 'texi2pdf' '_texinfo' 1435 | 'texindex' '_texinfo' 1436 | 'tg' '_topgit' 1437 | 'thor' '_thor' 1438 | 'tidy' '_tidy' 1439 | 'tig' '_git' 1440 | '-tilde-' '_tilde' 1441 | 'time' '_precommand' 1442 | 'timedatectl' '_timedatectl' 1443 | 'timeout' '_timeout' 1444 | 'times' '_nothing' 1445 | 'tin' '_tin' 1446 | 'tkconch' '_twisted' 1447 | 'tkinfo' '_texinfo' 1448 | 'tla' '_tla' 1449 | 'tldr' '_tldr' 1450 | 'tload' '_tload' 1451 | 'tmux' '_tmux' 1452 | 'tmuxinator' '_tmuxinator' 1453 | 'todo' '_devtodo' 1454 | 'todo.sh' '_todo.sh' 1455 | 'toilet' '_toilet' 1456 | 'top' '_top' 1457 | 'totdconfig' '_totd' 1458 | 'touch' '_touch' 1459 | 'tox' '_tox' 1460 | 'tpb' '_tpb' 1461 | 'tput' '_tput' 1462 | 'tr' '_tr' 1463 | 'tracepath' '_tracepath' 1464 | 'tracepath6' '_tracepath' 1465 | 'traceroute' '_hosts' 1466 | 'transmission-remote' '_transmission' 1467 | 'trap' '_trap' 1468 | 'tree' '_tree' 1469 | 'trial' '_twisted' 1470 | 'trove' '_openstack' 1471 | 'true' '_nothing' 1472 | 'truncate' '_truncate' 1473 | 'truss' '_truss' 1474 | 'tryaffix' '_ispell' 1475 | 'tsc' '_tsc' 1476 | 'ts-node' '_ts-node' 1477 | 'tty' '_tty' 1478 | 'ttyctl' '_ttyctl' 1479 | 'tunctl' '_uml' 1480 | 'tune2fs' '_tune2fs' 1481 | 'tunes2pod' '_gnupod' 1482 | 'tunes2pod.pl' '_gnupod' 1483 | 'twidge' '_twidge' 1484 | 'twist' '_twisted' 1485 | 'twistd' '_twisted' 1486 | 'txt' '_hosts' 1487 | 'type' '_which' 1488 | 'typeset' '_typeset' 1489 | 'udevadm' '_udevadm' 1490 | 'udisksctl' '_udisks2' 1491 | 'ufw' '_ufw' 1492 | 'ug' '_ug' 1493 | 'ug+' '_ug+' 1494 | 'ugrep' '_ugrep' 1495 | 'ugrep+' '_ugrep+' 1496 | 'ulimit' '_ulimit' 1497 | 'uml_mconsole' '_uml' 1498 | 'uml_moo' '_uml' 1499 | 'uml_switch' '_uml' 1500 | 'umount' '_mount' 1501 | 'unace' '_unace' 1502 | 'unalias' '_aliases' 1503 | 'uname' '_uname' 1504 | 'uncompress' '_compress' 1505 | 'unexpand' '_unexpand' 1506 | 'unfunction' '_functions' 1507 | 'unget' '_sccs' 1508 | 'unhash' '_unhash' 1509 | 'uniq' '_uniq' 1510 | 'unison' '_unison' 1511 | 'units' '_units' 1512 | 'unix2dos' '_dos2unix' 1513 | 'unix2mac' '_dos2unix' 1514 | 'unlimit' '_limits' 1515 | 'unlz4' '_lz4' 1516 | 'unlzma' '_xz' 1517 | 'unpack' '_pack' 1518 | 'unpigz' '_gzip' 1519 | 'unrar' '_rar' 1520 | 'unset' '_vars' 1521 | 'unsetopt' '_setopt' 1522 | 'unshare' '_unshare' 1523 | 'unwrapdiff' '_patchutils' 1524 | 'unxz' '_xz' 1525 | 'unzip' '_zip' 1526 | 'updpkgsums' '_updpkgsums' 1527 | 'uptime' '_uptime' 1528 | 'urxvt' '_urxvt' 1529 | 'urxvt256c' '_urxvt' 1530 | 'urxvt256cc' '_urxvt' 1531 | 'urxvt256c-ml' '_urxvt' 1532 | 'urxvt256c-mlc' '_urxvt' 1533 | 'urxvtc' '_urxvt' 1534 | 'useradd' '_user_admin' 1535 | 'userdel' '_users' 1536 | 'usermod' '_user_admin' 1537 | 'vacuumdb' '_pgsql_utils' 1538 | 'val' '_sccs' 1539 | 'valgrind' '_valgrind' 1540 | '-value-' '_value' 1541 | '-value-,ADB_TRACE,-default-' '_adb' 1542 | '-value-,ANDROID_LOG_TAGS,-default-' '_adb' 1543 | '-value-,ANDROID_SERIAL,-default-' '_adb' 1544 | '-value-,ANSIBLE_INVENTORY_ENABLED,-default-' '_ansible' 1545 | '-value-,ANSIBLE_STDOUT_CALLBACK,-default-' '_ansible' 1546 | '-value-,ANT_ARGS,-default-' '_ant' 1547 | '-value-,CFLAGS,-default-' '_gcc' 1548 | '-value-,CMAKE_GENERATOR,-default-' '_cmake' 1549 | '-value-,CPPFLAGS,-default-' '_gcc' 1550 | '-value-,CXXFLAGS,-default-' '_gcc' 1551 | '-value-,-default-,-command-' '_zargs' 1552 | '-value-,-default-,-default-' '_value' 1553 | '-value-,DISPLAY,-default-' '_x_display' 1554 | '-value-,GREP_OPTIONS,-default-' '_grep' 1555 | '-value-,GZIP,-default-' '_gzip' 1556 | '-value-,LANG,-default-' '_locales' 1557 | '-value-,LANGUAGE,-default-' '_locales' 1558 | '-value-,LD_DEBUG,-default-' '_ld_debug' 1559 | '-value-,LDFLAGS,-default-' '_gcc' 1560 | '-value-,LESSCHARSET,-default-' '_less' 1561 | '-value-,LESS,-default-' '_less' 1562 | '-value-,LOOPDEV_DEBUG,-default-' '_losetup' 1563 | '-value-,LPDEST,-default-' '_printers' 1564 | '-value-,MPD_HOST,-default' '_mpc' 1565 | '-value-,P4CLIENT,-default-' '_perforce' 1566 | '-value-,P4MERGE,-default-' '_perforce' 1567 | '-value-,P4PORT,-default-' '_perforce' 1568 | '-value-,P4USER,-default-' '_perforce' 1569 | '-value-,PERLDOC,-default-' '_perldoc' 1570 | '-value-,PRINTER,-default-' '_printers' 1571 | '-value-,PROMPT2,-default-' '_ps1234' 1572 | '-value-,PROMPT3,-default-' '_ps1234' 1573 | '-value-,PROMPT4,-default-' '_ps1234' 1574 | '-value-,PROMPT,-default-' '_ps1234' 1575 | '-value-,PS1,-default-' '_ps1234' 1576 | '-value-,PS2,-default-' '_ps1234' 1577 | '-value-,PS3,-default-' '_ps1234' 1578 | '-value-,PS4,-default-' '_ps1234' 1579 | '-value-,RPROMPT2,-default-' '_ps1234' 1580 | '-value-,RPROMPT,-default-' '_ps1234' 1581 | '-value-,RPS1,-default-' '_ps1234' 1582 | '-value-,RPS2,-default-' '_ps1234' 1583 | '-value-,SPROMPT,-default-' '_ps1234' 1584 | '-value-,TERM,-default-' '_terminals' 1585 | '-value-,TERMINFO_DIRS,-default-' '_dir_list' 1586 | '-value-,TZ,-default-' '_time_zone' 1587 | '-value-,VALGRIND_OPTS,-default-' '_valgrind' 1588 | '-value-,WWW_HOME,-default-' '_urls' 1589 | '-value-,XML_CATALOG_FILES,-default-' '_xmlsoft' 1590 | '-value-,XZ_DEFAULTS,-default-' '_xz' 1591 | '-value-,XZ_OPT,-default-' '_xz' 1592 | '-vared-' '_in_vared' 1593 | 'vared' '_vared' 1594 | 'vboxheadless' '_virtualbox' 1595 | 'VBoxHeadless' '_virtualbox' 1596 | 'vboxmanage' '_virtualbox' 1597 | 'VBoxManage' '_virtualbox' 1598 | 'vcs_info_hookadd' '_vcs_info' 1599 | 'vcs_info_hookdel' '_vcs_info' 1600 | 'vi' '_vi' 1601 | 'view' '_vi' 1602 | 'vim' '_vim' 1603 | 'vimdiff' '_vim' 1604 | 'virsh' '_libvirt' 1605 | 'virt-admin' '_libvirt' 1606 | 'virt-host-validate' '_libvirt' 1607 | 'virt-pki-validate' '_libvirt' 1608 | 'virt-xml-validate' '_libvirt' 1609 | 'visudo' '_visudo' 1610 | 'vitrage' '_openstack' 1611 | 'vmstat' '_vmstat' 1612 | 'vncserver' '_vnc' 1613 | 'vncviewer' '_vnc' 1614 | 'vnstat' '_vnstat' 1615 | 'vorbiscomment' '_vorbis' 1616 | 'vpnc' '_vpnc' 1617 | 'vpnc-connect' '_vpnc' 1618 | 'vserver' '_vserver' 1619 | 'w' '_w' 1620 | 'w3m' '_w3m' 1621 | 'wait' '_wait' 1622 | 'watch' '_watch' 1623 | 'watcher' '_openstack' 1624 | 'wc' '_wc' 1625 | 'wemux' '_wemux' 1626 | 'wget' '_wget' 1627 | 'wg-quick' '_wg-quick' 1628 | 'what' '_sccs' 1629 | 'whatis' '_man' 1630 | 'whence' '_which' 1631 | 'where' '_which' 1632 | 'whereis' '_whereis' 1633 | 'which' '_which' 1634 | 'who' '_who' 1635 | 'whoami' '_nothing' 1636 | 'whois' '_whois' 1637 | 'whom' '_mh' 1638 | 'wiggle' '_wiggle' 1639 | 'wipefs' '_wipefs' 1640 | 'wl-copy' '_wl-copy' 1641 | 'wlogout' '_wlogout' 1642 | 'wl-paste' '_wl-paste' 1643 | 'wodim' '_cdrecord' 1644 | 'wpa_cli' '_wpa_cli' 1645 | 'wpaperd' '_wpaperd' 1646 | 'wpctl' '_wpctl' 1647 | 'write' '_users_on' 1648 | 'www' '_webbrowser' 1649 | 'xargs' '_xargs' 1650 | 'xattr' '_attr' 1651 | 'xauth' '_xauth' 1652 | 'xautolock' '_xautolock' 1653 | 'xclip' '_xclip' 1654 | 'xdpyinfo' '_x_utils' 1655 | 'xdvi' '_xdvi' 1656 | 'xelatex' '_tex' 1657 | 'xetex' '_tex' 1658 | 'xev' '_x_utils' 1659 | 'xfd' '_x_utils' 1660 | 'xfig' '_xfig' 1661 | 'xfontsel' '_x_utils' 1662 | 'xfreerdp' '_rdesktop' 1663 | 'xhost' '_x_utils' 1664 | 'xinput' '_xinput' 1665 | 'xkill' '_x_utils' 1666 | 'xli' '_xloadimage' 1667 | 'xloadimage' '_xloadimage' 1668 | 'xlsatoms' '_x_utils' 1669 | 'xlsclients' '_x_utils' 1670 | 'xml' '_xmlstarlet' 1671 | 'xmllint' '_xmlsoft' 1672 | 'xmlstarlet' '_xmlstarlet' 1673 | 'xmms2' '_xmms2' 1674 | 'xmodmap' '_xmodmap' 1675 | 'xmosaic' '_webbrowser' 1676 | 'xon' '_x_utils' 1677 | 'xournal' '_xournal' 1678 | 'xpdf' '_xpdf' 1679 | 'xping' '_hosts' 1680 | 'xprop' '_x_utils' 1681 | 'xrandr' '_xrandr' 1682 | 'xrdb' '_x_utils' 1683 | 'xscreensaver-command' '_xscreensaver' 1684 | 'xsel' '_xsel' 1685 | 'xset' '_xset' 1686 | 'xsetbg' '_xloadimage' 1687 | 'xsetroot' '_x_utils' 1688 | 'xsltproc' '_xmlsoft' 1689 | 'xterm' '_xterm' 1690 | 'xtightvncviewer' '_vnc' 1691 | 'xtp' '_imagemagick' 1692 | 'xv' '_xv' 1693 | 'xview' '_xloadimage' 1694 | 'xvnc4viewer' '_vnc' 1695 | 'xvncviewer' '_vnc' 1696 | 'xwd' '_x_utils' 1697 | 'xwininfo' '_x_utils' 1698 | 'xwit' '_xwit' 1699 | 'xwud' '_x_utils' 1700 | 'xxd' '_xxd' 1701 | 'xz' '_xz' 1702 | 'xzcat' '_xz' 1703 | 'yafc' '_yafc' 1704 | 'yarn' '_yarn' 1705 | 'yash' '_sh' 1706 | 'yay' '_yay' 1707 | 'ypbind' '_yp' 1708 | 'ypcat' '_yp' 1709 | 'ypmatch' '_yp' 1710 | 'yppasswd' '_yp' 1711 | 'yppoll' '_yp' 1712 | 'yppush' '_yp' 1713 | 'ypserv' '_yp' 1714 | 'ypset' '_yp' 1715 | 'ypwhich' '_yp' 1716 | 'ypxfr' '_yp' 1717 | 'ytalk' '_other_accounts' 1718 | 'zargs' '_zargs' 1719 | 'zcalc' '_zcalc' 1720 | '-zcalc-line-' '_zcalc_line' 1721 | 'zcash-cli' '_zcash-cli' 1722 | 'zcat' '_zcat' 1723 | 'zcompile' '_zcompile' 1724 | 'zcp' '_zmv' 1725 | 'zdb' '_zfs' 1726 | 'zdelattr' '_zattr' 1727 | 'zdump' '_zdump' 1728 | 'zeal' '_zeal' 1729 | 'zed' '_zed' 1730 | 'zegrep' '_grep' 1731 | 'zen' '_webbrowser' 1732 | 'zf_chgrp' '_chown' 1733 | 'zf_chmod' '_chmod' 1734 | 'zf_chown' '_chown' 1735 | 'zfgrep' '_grep' 1736 | 'zf_ln' '_ln' 1737 | 'zf_mkdir' '_mkdir' 1738 | 'zf_mv' '_mv' 1739 | 'zf_rm' '_rm' 1740 | 'zf_rmdir' '_rmdir' 1741 | 'zfs' '_zfs' 1742 | 'zgetattr' '_zattr' 1743 | 'zgrep' '_grep' 1744 | 'zip' '_zip' 1745 | 'zipinfo' '_zip' 1746 | 'zle' '_zle' 1747 | 'zlistattr' '_zattr' 1748 | 'zln' '_zmv' 1749 | 'zmail' '_mail' 1750 | 'zmodload' '_zmodload' 1751 | 'zmv' '_zmv' 1752 | 'zone' '_hosts' 1753 | 'zparseopts' '_zparseopts' 1754 | 'zpool' '_zfs' 1755 | 'zpty' '_zpty' 1756 | 'zsetattr' '_zattr' 1757 | 'zsh' '_zsh' 1758 | 'zsh-mime-handler' '_zsh-mime-handler' 1759 | 'zsocket' '_zsocket' 1760 | 'zstat' '_stat' 1761 | 'zstyle' '_zstyle' 1762 | 'ztodo' '_ztodo' 1763 | 'zun' '_openstack' 1764 | 'zxpdf' '_xpdf' 1765 | ) 1766 | 1767 | _services=( 1768 | 'bzcat' 'bunzip2' 1769 | 'gchgrp' 'chgrp' 1770 | 'gchown' 'chown' 1771 | 'gnupod_addsong.pl' 'gnupod_addsong' 1772 | 'gnupod_check.pl' 'gnupod_check' 1773 | 'gnupod_INIT.pl' 'gnupod_INIT' 1774 | 'gnupod_search.pl' 'gnupod_search' 1775 | 'gpg2' 'gpg' 1776 | 'gzcat' 'gunzip' 1777 | 'https' 'http' 1778 | 'iceweasel' 'firefox' 1779 | 'lzcat' 'unxz' 1780 | 'lzma' 'xz' 1781 | 'Mail' 'mail' 1782 | 'mailx' 'mail' 1783 | 'mktunes.pl' 'mktunes' 1784 | 'nail' 'mail' 1785 | 'ncl' 'nc' 1786 | 'nedit-nc' 'nc' 1787 | 'pacman.static' 'pacman' 1788 | 'pcat' 'unpack' 1789 | '-redirect-,<,bunzip2' 'bunzip2' 1790 | '-redirect-,<,bzip2' 'bzip2' 1791 | '-redirect-,>,bzip2' 'bunzip2' 1792 | '-redirect-,<,compress' 'compress' 1793 | '-redirect-,>,compress' 'uncompress' 1794 | '-redirect-,<,gunzip' 'gunzip' 1795 | '-redirect-,<,gzip' 'gzip' 1796 | '-redirect-,>,gzip' 'gunzip' 1797 | '-redirect-,<,uncompress' 'uncompress' 1798 | '-redirect-,<,unxz' 'unxz' 1799 | '-redirect-,<,xz' 'xz' 1800 | '-redirect-,>,xz' 'unxz' 1801 | 'remsh' 'rsh' 1802 | 'slogin' 'ssh' 1803 | 'svnadmin-static' 'svnadmin' 1804 | 'svnlite' 'svn' 1805 | 'svnliteadmin' 'svnadmin' 1806 | 'tunes2pod.pl' 'tunes2pod' 1807 | 'unlzma' 'unxz' 1808 | 'vboxheadless' 'vboxheadless' 1809 | 'VBoxHeadless' 'vboxheadless' 1810 | 'vboxmanage' 'vboxmanage' 1811 | 'VBoxManage' 'vboxmanage' 1812 | 'xelatex' 'latex' 1813 | 'xetex' 'tex' 1814 | 'xzcat' 'unxz' 1815 | 'zf_chgrp' 'chgrp' 1816 | 'zf_chown' 'chown' 1817 | ) 1818 | 1819 | _patcomps=( 1820 | '*/(init|rc[0-9S]#).d/*' '_init_d' 1821 | ) 1822 | 1823 | _postpatcomps=( 1824 | '_*' '_compadd' 1825 | 'c++-*' '_gcc' 1826 | 'g++-*' '_gcc' 1827 | 'gcc-*' '_gcc' 1828 | 'gem[0-9.]#' '_gem' 1829 | 'lua[0-9.-]##' '_lua' 1830 | '(p[bgpn]m*|*top[bgpn]m)' '_pbm' 1831 | 'php[0-9.-]' '_php' 1832 | 'pip[0-9.]#' '_pip' 1833 | 'pydoc[0-9.]#' '_pydoc' 1834 | 'python[0-9.]#' '_python' 1835 | 'qemu(|-system-*)' '_qemu' 1836 | 'rmlint.*.sh' '_rmlint' 1837 | '(ruby|[ei]rb)[0-9.]#' '_ruby' 1838 | 'shasum(|5).*' '_shasum' 1839 | '(texi(2*|ndex))' '_texi' 1840 | '(tiff*|*2tiff|pal2rgb)' '_tiff' 1841 | '-value-,CCACHE_*,-default-' '_ccache' 1842 | '-value-,CGO*,-default-' '_golang' 1843 | '-value-,(ftp|http(|s))_proxy,-default-' '_urls' 1844 | '-value-,GO*,-default-' '_golang' 1845 | '-value-,LC_*,-default-' '_locales' 1846 | '-value-,*path,-default-' '_directories' 1847 | '-value-,*PATH,-default-' '_dir_list' 1848 | '-value-,RUBY(LIB|OPT|PATH),-default-' '_ruby' 1849 | '*/X11(|R<4->)/*' '_x_arguments' 1850 | 'yodl(|2*)' '_yodl' 1851 | 'zf*' '_zftp' 1852 | ) 1853 | 1854 | _compautos=( 1855 | '_call_program' '+X' 1856 | ) 1857 | 1858 | zle -C _bash_complete-word .complete-word _bash_completions 1859 | zle -C _bash_list-choices .list-choices _bash_completions 1860 | zle -C _complete_debug .complete-word _complete_debug 1861 | zle -C _complete_help .complete-word _complete_help 1862 | zle -C _complete_tag .complete-word _complete_tag 1863 | zle -C _correct_filename .complete-word _correct_filename 1864 | zle -C _correct_word .complete-word _correct_word 1865 | zle -C _expand_alias .complete-word _expand_alias 1866 | zle -C _expand_word .complete-word _expand_word 1867 | zle -C _history-complete-newer .complete-word _history_complete_word 1868 | zle -C _history-complete-older .complete-word _history_complete_word 1869 | zle -C _list_expansions .list-choices _expand_word 1870 | zle -C _most_recent_file .complete-word _most_recent_file 1871 | zle -C _next_tags .list-choices _next_tags 1872 | zle -C _read_comp .complete-word _read_comp 1873 | bindkey '^X^R' _read_comp 1874 | bindkey '^X?' _complete_debug 1875 | bindkey '^XC' _correct_filename 1876 | bindkey '^Xa' _expand_alias 1877 | bindkey '^Xc' _correct_word 1878 | bindkey '^Xd' _list_expansions 1879 | bindkey '^Xe' _expand_word 1880 | bindkey '^Xh' _complete_help 1881 | bindkey '^Xm' _most_recent_file 1882 | bindkey '^Xn' _next_tags 1883 | bindkey '^Xt' _complete_tag 1884 | bindkey '^X~' _bash_list-choices 1885 | bindkey '^[,' _history-complete-newer 1886 | bindkey '^[/' _history-complete-older 1887 | bindkey '^[~' _bash_complete-word 1888 | 1889 | autoload -Uz _kitty _afew _alacritty _android _archlinux-java \ 1890 | _artisan _atach _avdmanager _bat _bitcoin-cli \ 1891 | _bluetoothctl _bootctl _bower _bundle _busctl \ 1892 | _bwrap _cap _cargo _cask _ccache \ 1893 | _cf _checkupdates _choc _chromium _clang-check \ 1894 | _clang-format _clang-tidy _cmake _code _coffee \ 1895 | _conan _concourse _console _coredumpctl _cppcheck \ 1896 | _ctr _curl _dad _dart _dget \ 1897 | _dhcpcd _diana _direnv _docker _docpad \ 1898 | _dolphin _downgrade _drush _ecdsautil _eksctl \ 1899 | _emacs _emacsclient _emulator _envdir _exportfs \ 1900 | _eza _fab _fail2ban-client _ffind _flatpak \ 1901 | _fleetctl _flutter _foot _footclient _fvm \ 1902 | _fwupdmgr _gas _gh _ghc _gist \ 1903 | _git-flow _git-pulls _git-revise _git-wtf _glances \ 1904 | _golang _google _gpgconf _grpcurl _gtk-launch \ 1905 | _hello _hg _hledger _homestead _hostnamectl \ 1906 | _httpie _ibus _include-what-you-use _inxi _jmeter \ 1907 | _jmeter-plugins _jonas _journalctl _jrnl _kak \ 1908 | _kde-inhibit _kernel-install _kitchen _kitty _knife \ 1909 | _konsole _kqml _krunner _kscreen-doctor _kubectl \ 1910 | _language_codes _libinput _lilypond _localectl _loginctl \ 1911 | _lsd _lunchy _machinectl _mc _meson \ 1912 | _middleman _mina _mix _mkcert _mssh \ 1913 | _mussh _mvn _nano _nanoc _neofetch \ 1914 | _networkctl _networkQuality _nftables _ngrok _ninja \ 1915 | _node _nvm _oomctl _openssl _openvpn3 \ 1916 | _optirun _paccache _pacdiff _pacignore _paclist \ 1917 | _paclog-pkglist _pacman _pacscripts _pacsearch _pacsort \ 1918 | _pactree _parallel _paru _patool _periscope \ 1919 | _pgsql_utils _phing _pip _pixz _pkcon \ 1920 | _pkgfile _plasmashell _plasmoidviewer _play _playerctl \ 1921 | _pm2 _poetry _port _protoc _psd \ 1922 | _pulseaudio _pygmentize _qmk _rails _ralio \ 1923 | _rankmirrors _redis-cli _resolvectl _rfkill _rkt \ 1924 | _rmlint _rslsync _rspec _rsvm _rubocop \ 1925 | _sbt _scala _screencapture _scrub _sdd \ 1926 | _sd_hosts_or_user_at_host _sdkmanager _sd_machines _sd_outputmodes _sd_unit_files \ 1927 | _setcap _setup.py _sfdx _shellcheck _showoff \ 1928 | _snapper _srm _stack _starship _streamlink \ 1929 | _subliminal _supervisorctl _svm _swayidle _swaylock \ 1930 | _swaync _swaync-client _swww _systemctl _systemd \ 1931 | _systemd-analyze _systemd-delta _systemd-inhibit _systemd-nspawn _systemd-path \ 1932 | _systemd-run _systemd-tmpfiles _systemsettings _teamocil _thor \ 1933 | _timedatectl _tldr _tmuxinator _tox _tsc \ 1934 | _ts-node _udevadm _udisks2 _udisksctl _ufw \ 1935 | _ug _ug+ _ugrep _ugrep+ _updpkgsums \ 1936 | _virtualbox _vnstat _wemux _wg-quick _wl-copy \ 1937 | _wlogout _wl-paste _wpaperd _wpctl _xsel \ 1938 | _yarn _yay _zcash-cli _cdr _all_labels \ 1939 | _all_matches _alternative _approximate _arg_compile _arguments \ 1940 | _bash_completions _cache_invalid _call_function _combination _complete \ 1941 | _complete_debug _complete_help _complete_help_generic _complete_tag _comp_locale \ 1942 | _correct _correct_filename _correct_word _describe _description \ 1943 | _dispatch _expand _expand_alias _expand_word _extensions \ 1944 | _external_pwds _generic _guard _history _history_complete_word \ 1945 | _ignored _list _main_complete _match _menu \ 1946 | _message _most_recent_file _multi_parts _next_label _next_tags \ 1947 | _normal _nothing _numbers _oldlist _pick_variant \ 1948 | _prefix _read_comp _regex_arguments _regex_words _requested \ 1949 | _retrieve_cache _sep_parts _sequence _set_command _setup \ 1950 | _store_cache _sub_commands _tags _user_expand _values \ 1951 | _wanted _acpi _acpitool _alsa-utils _analyseplugin \ 1952 | _basenc _brctl _btrfs _capabilities _chattr \ 1953 | _chcon _choom _chrt _cpupower _cryptsetup \ 1954 | _dkms _e2label _ethtool _findmnt _free \ 1955 | _fuse_arguments _fusermount _fuse_values _gpasswd _htop \ 1956 | _iconvconfig _ionice _ipset _iptables _iwconfig \ 1957 | _kpartx _losetup _lsattr _lsblk _lsns \ 1958 | _lsusb _ltrace _mat _mat2 _mdadm \ 1959 | _mii-tool _modutils _mondo _networkmanager _nsenter \ 1960 | _opkg _perf _pidof _pmap _qdbus \ 1961 | _schedtool _selinux_contexts _selinux_roles _selinux_types _selinux_users \ 1962 | _setpriv _setsid _slabtop _ss _sshfs \ 1963 | _strace _sysstat _tload _tpb _tracepath \ 1964 | _tune2fs _uml _unshare _valgrind _vserver \ 1965 | _wakeup_capable_devices _wipefs _wpa_cli _a2ps _aap \ 1966 | _abcde _absolute_command_paths _ack _adb _ansible \ 1967 | _ant _antiword _apachectl _apm _arch_archives \ 1968 | _arch_namespace _arp _arping _asciidoctor _asciinema \ 1969 | _at _attr _augeas _avahi _awk \ 1970 | _base64 _basename _bash _baudrates _baz \ 1971 | _beep _bibtex _bind_addresses _bison _bittorrent \ 1972 | _bogofilter _bpf_filters _bpython _bzip2 _bzr \ 1973 | _cabal _cal _calendar _canonical_paths _cat \ 1974 | _ccal _cdcd _cdrdao _cdrecord _chkconfig \ 1975 | _chmod _chown _chroot _chsh _cksum \ 1976 | _clay _cmdambivalent _cmdstring _cmp _column \ 1977 | _comm _composer _compress _configure _cowsay \ 1978 | _cp _cpio _cplay _crontab _cscope \ 1979 | _csplit _cssh _ctags _ctags_tags _curl \ 1980 | _cut _cvs _darcs _date _date_formats \ 1981 | _dates _dbus _dconf _dd _devtodo \ 1982 | _df _dhclient _dict _dict_words _diff \ 1983 | _diff3 _diff_options _diffstat _dig _directories \ 1984 | _dir_list _django _dmesg _dmidecode _dns_types \ 1985 | _doas _domains _dos2unix _drill _dropbox \ 1986 | _dsh _dtruss _du _dvi _ecasound \ 1987 | _ed _elfdump _elinks _email_addresses _enscript \ 1988 | _entr _env _espeak _etags _fakeroot \ 1989 | _feh _fetchmail _ffmpeg _figlet _file_modes \ 1990 | _files _file_systems _find _find_net_interfaces _finger \ 1991 | _flac _flex _fmt _fold _fortune \ 1992 | _fsh _fuser _gcc _gcore _gdb \ 1993 | _gem _genisoimage _getconf _getent _getfacl \ 1994 | _getmail _getopt _ghostscript _git _global \ 1995 | _global_tags _gnu_generic _gnupod _gnutls _go \ 1996 | _gpg _gphoto2 _gprof _gradle _graphicsmagick \ 1997 | _grep _groff _groups _growisofs _gsettings \ 1998 | _guilt _gzip _have_glob_qual _head _hexdump \ 1999 | _host _hostname _hosts _iconv _id \ 2000 | _ifconfig _iftop _imagemagick _initctl _init_d \ 2001 | _install _iostat _ip _ipsec _irssi \ 2002 | _ispell _java _java_class _joe _join \ 2003 | _jq _killall _knock _kvno _last \ 2004 | _ldconfig _ldd _ld_debug _less _lha \ 2005 | _libvirt _links _list_files _lldb _ln \ 2006 | _loadkeys _locale _localedef _locales _locate \ 2007 | _logger _look _lp _ls _lsof \ 2008 | _lua _luarocks _lynx _lz4 _lzop \ 2009 | _mail _mailboxes _make _man _md5sum \ 2010 | _mencal _mh _mime_types _mkdir _mkfifo \ 2011 | _mknod _mktemp _module _monotone _moosic \ 2012 | _mosh _mount _mpc _mt _mtools \ 2013 | _mtr _mutt _mv _my_accounts _myrepos \ 2014 | _mysqldiff _mysql_utils _ncftp _netcat _net_interfaces \ 2015 | _netstat _newsgroups _nginx _ngrep _nice \ 2016 | _nkf _nl _nm _nmap _npm \ 2017 | _nslookup _numfmt _objdump _object_files _od \ 2018 | _openstack _opustools _other_accounts _pack _pandoc \ 2019 | _paste _patch _patchutils _path_commands _path_files \ 2020 | _pax _pbm _pdf _perforce _perl \ 2021 | _perl_basepods _perldoc _perl_modules _pgids _pgrep \ 2022 | _php _picocom _pids _pine _ping \ 2023 | _pip _pkgadd _pkg-config _pkginfo _pkg_instance \ 2024 | _pkgrm _pon _ports _postfix _postgresql \ 2025 | _postscript _pr _printenv _printers _process_names \ 2026 | _prove _ps _pspdf _psutils _ptx \ 2027 | _pump _pv _pwgen _pydoc _python \ 2028 | _python_modules _qemu _quilt _rake _ranlib \ 2029 | _rar _rclone _rcs _readelf _readlink \ 2030 | _remote_files _renice _ri _rlogin _rm \ 2031 | _rmdir _route _rrdtool _rsync _rubber \ 2032 | _ruby _runit _samba _sccs _scons \ 2033 | _screen _script _seafile _sed _seq \ 2034 | _service _services _setfacl _sh _shasum \ 2035 | _showmount _shred _shuf _shutdown _signals \ 2036 | _sisu _slrn _smartmontools _socket _sort \ 2037 | _spamassassin _split _sqlite _sqsh _ssh \ 2038 | _ssh_hosts _stat _stdbuf _stgit _stow \ 2039 | _strings _strip _stty _su _subversion \ 2040 | _sudo _surfraw _swaks _swanctl _swift \ 2041 | _sys_calls _sysctl _tac _tail _tar \ 2042 | _tar_archive _tardy _tcpdump _tcptraceroute _tee \ 2043 | _telnet _terminals _tex _texi _texinfo \ 2044 | _tidy _tiff _tilde_files _timeout _time_zone \ 2045 | _tin _tla _tmux _todo.sh _toilet \ 2046 | _top _topgit _totd _touch _tput \ 2047 | _tr _transmission _tree _truncate _truss \ 2048 | _tty _ttys _twidge _twisted _umountable \ 2049 | _unace _uname _unexpand _uniq _unison \ 2050 | _units _uptime _urls _user_admin _user_at_host \ 2051 | _users _users_on _vi _vim _visudo \ 2052 | _vmstat _vorbis _vpnc _w _w3m \ 2053 | _watch _wc _webbrowser _wget _whereis \ 2054 | _who _whois _wiggle _xargs _xmlsoft \ 2055 | _xmlstarlet _xmms2 _xxd _xz _yafc \ 2056 | _yodl _yp _zcat _zdump _zfs \ 2057 | _zfs_dataset _zfs_pool _zip _zsh _acroread \ 2058 | _code _dcop _eog _evince _geany \ 2059 | _gnome-gv _gqview _gv _kdeconnect _kfmclient \ 2060 | _matlab _mozilla _mplayer _mupdf _nautilus \ 2061 | _nedit _netscape _okular _pdftk _qiv \ 2062 | _rdesktop _setxkbmap _sublimetext _urxvt _vnc \ 2063 | _x_arguments _xauth _xautolock _x_borderwidth _xclip \ 2064 | _x_color _x_colormapid _x_cursor _x_display _xdvi \ 2065 | _x_extension _xfig _x_font _xft_fonts _x_geometry \ 2066 | _xinput _x_keysym _xloadimage _x_locale _x_modifier \ 2067 | _xmodmap _x_name _xournal _xpdf _xrandr \ 2068 | _x_resource _xscreensaver _x_selection_timeout _xset _xt_arguments \ 2069 | _xterm _x_title _xt_session_id _x_utils _xv \ 2070 | _x_visual _x_window _xwit _zeal _add-zle-hook-widget \ 2071 | _add-zsh-hook _alias _aliases __arguments _arrays \ 2072 | _assign _autocd _bindkey _brace_parameter _builtin \ 2073 | _cd _command _command_names _compadd _compdef \ 2074 | _completers _condition _default _delimiters _directory_stack \ 2075 | _dirs _disable _dynamic_directory_name _echotc _echoti \ 2076 | _emulate _enable _equal _exec _fc \ 2077 | _file_descriptors _first _functions _globflags _globqual_delims \ 2078 | _globquals _hash _history_modifiers _in_vared _jobs \ 2079 | _jobs_bg _jobs_builtin _jobs_fg _kill _limit \ 2080 | _limits _math _math_params _mere _module_math_func \ 2081 | _options _options_set _options_unset _parameter _parameters \ 2082 | _precommand _print _prompt _ps1234 _read \ 2083 | _redirect _run-help _sched _set _setopt \ 2084 | _source _strftime _subscript _suffix_alias_files _tcpsys \ 2085 | _tilde _trap _ttyctl _typeset _ulimit \ 2086 | _unhash _user_math_func _value _vared _vars \ 2087 | _vcs_info _vcs_info_hooks _wait _which _widgets \ 2088 | _zargs _zattr _zcalc _zcalc_line _zcompile \ 2089 | _zed _zftp _zle _zmodload _zmv \ 2090 | _zparseopts _zpty _zsh-mime-handler _zsocket _zstyle \ 2091 | _ztodo 2092 | autoload -Uz +X _call_program 2093 | 2094 | typeset -gUa _comp_assocs 2095 | _comp_assocs=( '' ) 2096 | -------------------------------------------------------------------------------- /.zcompdump-botbox-5.9: -------------------------------------------------------------------------------- 1 | #files: 1025 version: 5.9 2 | 3 | _comps=( 4 | '-' '_precommand' 5 | '.' '_source' 6 | '5g' '_go' 7 | '5l' '_go' 8 | '6g' '_go' 9 | '6l' '_go' 10 | '8g' '_go' 11 | '8l' '_go' 12 | 'a2ps' '_a2ps' 13 | 'aaaa' '_hosts' 14 | 'aap' '_aap' 15 | 'abcde' '_abcde' 16 | 'ack' '_ack' 17 | 'ack2' '_ack' 18 | 'ack-grep' '_ack' 19 | 'ack-standalone' '_ack' 20 | 'acpi' '_acpi' 21 | 'acpitool' '_acpitool' 22 | 'acroread' '_acroread' 23 | 'adb' '_adb' 24 | 'add-zle-hook-widget' '_add-zle-hook-widget' 25 | 'add-zsh-hook' '_add-zsh-hook' 26 | 'admin' '_sccs' 27 | 'afew' '_afew' 28 | 'alacritty' '_alacritty' 29 | 'ali' '_mh' 30 | 'alias' '_alias' 31 | 'amaya' '_webbrowser' 32 | 'analyseplugin' '_analyseplugin' 33 | 'android' '_android' 34 | 'animate' '_imagemagick' 35 | 'anno' '_mh' 36 | 'ansible' '_ansible' 37 | 'ansible-config' '_ansible' 38 | 'ansible-console' '_ansible' 39 | 'ansible-doc' '_ansible' 40 | 'ansible-galaxy' '_ansible' 41 | 'ansible-inventory' '_ansible' 42 | 'ansible-playbook' '_ansible' 43 | 'ansible-pull' '_ansible' 44 | 'ansible-vault' '_ansible' 45 | 'ant' '_ant' 46 | 'antiword' '_antiword' 47 | 'aodh' '_openstack' 48 | 'aoss' '_precommand' 49 | 'apache2ctl' '_apachectl' 50 | 'apachectl' '_apachectl' 51 | 'aplay' '_alsa-utils' 52 | 'apm' '_apm' 53 | 'appletviewer' '_java' 54 | 'apropos' '_man' 55 | 'apvlv' '_pdf' 56 | 'archlinux-java' '_archlinux-java' 57 | 'arduino-ctags' '_ctags' 58 | 'arecord' '_alsa-utils' 59 | 'arena' '_webbrowser' 60 | '_arguments' '__arguments' 61 | 'arp' '_arp' 62 | 'arping' '_arping' 63 | '-array-value-' '_value' 64 | 'artisan' '_artisan' 65 | 'asciidoctor' '_asciidoctor' 66 | 'asciinema' '_asciinema' 67 | 'ash' '_sh' 68 | '-assign-parameter-' '_assign' 69 | 'at' '_at' 70 | 'atach' '_atach' 71 | 'atq' '_at' 72 | 'atrm' '_at' 73 | 'attr' '_attr' 74 | 'augtool' '_augeas' 75 | 'autoload' '_typeset' 76 | 'avahi-browse' '_avahi' 77 | 'avahi-browse-domains' '_avahi' 78 | 'avahi-resolve' '_avahi' 79 | 'avahi-resolve-address' '_avahi' 80 | 'avahi-resolve-host-name' '_avahi' 81 | 'avdmanager' '_avdmanager' 82 | 'awk' '_awk' 83 | 'b2sum' '_md5sum' 84 | 'barbican' '_openstack' 85 | 'base32' '_base64' 86 | 'base64' '_base64' 87 | 'basename' '_basename' 88 | 'basenc' '_basenc' 89 | 'bash' '_bash' 90 | 'bat' '_bat' 91 | 'batch' '_at' 92 | 'baz' '_baz' 93 | 'bazel' '_bazel' 94 | 'beep' '_beep' 95 | 'bg' '_jobs_bg' 96 | 'bibtex' '_bibtex' 97 | 'bindkey' '_bindkey' 98 | 'bison' '_bison' 99 | 'bitcoin-cli' '_bitcoin-cli' 100 | 'bluetoothctl' '_bluetoothctl' 101 | 'bmake' '_make' 102 | 'bogofilter' '_bogofilter' 103 | 'bogotune' '_bogofilter' 104 | 'bogoutil' '_bogofilter' 105 | 'bootctl' '_bootctl' 106 | 'bower' '_bower' 107 | 'bpython' '_bpython' 108 | 'bpython2' '_bpython' 109 | 'bpython2-gtk' '_bpython' 110 | 'bpython2-urwid' '_bpython' 111 | 'bpython3' '_bpython' 112 | 'bpython3-gtk' '_bpython' 113 | 'bpython3-urwid' '_bpython' 114 | 'bpython-gtk' '_bpython' 115 | 'bpython-urwid' '_bpython' 116 | '-brace-parameter-' '_brace_parameter' 117 | 'brctl' '_brctl' 118 | 'bsdgrep' '_grep' 119 | 'bsdtar' '_tar' 120 | 'btdownloadcurses' '_bittorrent' 121 | 'btdownloadgui' '_bittorrent' 122 | 'btdownloadheadless' '_bittorrent' 123 | 'btlaunchmany' '_bittorrent' 124 | 'btlaunchmanycurses' '_bittorrent' 125 | 'btmakemetafile' '_bittorrent' 126 | 'btreannounce' '_bittorrent' 127 | 'btrename' '_bittorrent' 128 | 'btrfs' '_btrfs' 129 | 'btshowmetainfo' '_bittorrent' 130 | 'bttrack' '_bittorrent' 131 | 'buildhash' '_ispell' 132 | 'builtin' '_builtin' 133 | 'bundle' '_bundle' 134 | 'bunzip2' '_bzip2' 135 | 'burst' '_mh' 136 | 'busctl' '_busctl' 137 | 'bwrap' '_bwrap' 138 | 'bzcat' '_bzip2' 139 | 'bzegrep' '_grep' 140 | 'bzfgrep' '_grep' 141 | 'bzgrep' '_grep' 142 | 'bzip2' '_bzip2' 143 | 'bzip2recover' '_bzip2' 144 | 'bzr' '_bzr' 145 | 'c++' '_gcc' 146 | 'cabal' '_cabal' 147 | 'cal' '_cal' 148 | 'calendar' '_calendar' 149 | 'cap' '_cap' 150 | 'cargo' '_cargo' 151 | 'cask' '_cask' 152 | 'cat' '_cat' 153 | 'catchsegv' '_precommand' 154 | 'cc' '_gcc' 155 | 'ccache' '_ccache' 156 | 'ccal' '_ccal' 157 | 'cd' '_cd' 158 | 'cdc' '_sccs' 159 | 'cdcd' '_cdcd' 160 | 'cdr' '_cdr' 161 | 'cdrdao' '_cdrdao' 162 | 'cdrecord' '_cdrecord' 163 | 'ceilometer' '_openstack' 164 | 'certtool' '_gnutls' 165 | 'cf' '_cf' 166 | 'cftp' '_twisted' 167 | 'chage' '_users' 168 | 'chattr' '_chattr' 169 | 'chcon' '_chcon' 170 | 'chdir' '_cd' 171 | 'checkupdates' '_checkupdates' 172 | 'chfn' '_users' 173 | 'chg' '_hg' 174 | 'chgrp' '_chown' 175 | 'chimera' '_webbrowser' 176 | 'chkconfig' '_chkconfig' 177 | 'chkstow' '_stow' 178 | 'chmod' '_chmod' 179 | 'choc' '_choc' 180 | 'choom' '_choom' 181 | 'chown' '_chown' 182 | 'chpass' '_chsh' 183 | 'chromium' '_chromium' 184 | 'chroot' '_chroot' 185 | 'chrt' '_chrt' 186 | 'chsh' '_chsh' 187 | 'ci' '_rcs' 188 | 'cifsiostat' '_sysstat' 189 | 'cinder' '_openstack' 190 | 'ckeygen' '_twisted' 191 | 'cksum' '_cksum' 192 | 'clang' '_gcc' 193 | 'clang++' '_gcc' 194 | 'clang-check' '_clang-check' 195 | 'clang-format' '_clang-format' 196 | 'clang-tidy' '_clang-tidy' 197 | 'clay' '_clay' 198 | 'clear' '_nothing' 199 | 'cloudkitty' '_openstack' 200 | 'clusterdb' '_postgresql' 201 | 'cmake' '_cmake' 202 | 'cmp' '_cmp' 203 | 'co' '_rcs' 204 | 'code' '_code' 205 | 'coffee' '_coffee' 206 | 'column' '_column' 207 | 'comb' '_sccs' 208 | 'combine' '_imagemagick' 209 | 'combinediff' '_patchutils' 210 | 'comm' '_comm' 211 | '-command-' '_autocd' 212 | 'command' '_command' 213 | '-command-line-' '_normal' 214 | 'comp' '_mh' 215 | 'compadd' '_compadd' 216 | 'compdef' '_compdef' 217 | 'composer' '_composer' 218 | 'composer.phar' '_composer' 219 | 'composite' '_imagemagick' 220 | 'compress' '_compress' 221 | 'conan' '_conan' 222 | 'conch' '_twisted' 223 | 'concourse' '_concourse' 224 | '-condition-' '_condition' 225 | 'config.status' '_configure' 226 | 'configure' '_configure' 227 | 'console' '_console' 228 | 'convert' '_imagemagick' 229 | 'coredumpctl' '_coredumpctl' 230 | 'cowsay' '_cowsay' 231 | 'cowthink' '_cowsay' 232 | 'cp' '_cp' 233 | 'cpio' '_cpio' 234 | 'cplay' '_cplay' 235 | 'cppcheck' '_cppcheck' 236 | 'cpupower' '_cpupower' 237 | 'createdb' '_pgsql_utils' 238 | 'createuser' '_pgsql_utils' 239 | 'crontab' '_crontab' 240 | 'crsh' '_cssh' 241 | 'cryptsetup' '_cryptsetup' 242 | 'cscope' '_cscope' 243 | 'csh' '_sh' 244 | 'csplit' '_csplit' 245 | 'cssh' '_cssh' 246 | 'ctags' '_ctags' 247 | 'ctags-exuberant' '_ctags' 248 | 'ctags-universal' '_ctags' 249 | 'ctr' '_ctr' 250 | 'curl' '_curl' 251 | 'cut' '_cut' 252 | 'cvs' '_cvs' 253 | 'dad' '_dad' 254 | 'darcs' '_darcs' 255 | 'dart' '_dart' 256 | 'dash' '_sh' 257 | 'date' '_date' 258 | 'dbus-launch' '_dbus' 259 | 'dbus-monitor' '_dbus' 260 | 'dbus-send' '_dbus' 261 | 'dconf' '_dconf' 262 | 'dcop' '_dcop' 263 | 'dcopclient' '_dcop' 264 | 'dcopfind' '_dcop' 265 | 'dcopobject' '_dcop' 266 | 'dcopref' '_dcop' 267 | 'dcopstart' '_dcop' 268 | 'dd' '_dd' 269 | 'declare' '_typeset' 270 | '-default-' '_default' 271 | 'delta' '_sccs' 272 | 'designate' '_openstack' 273 | 'devtodo' '_devtodo' 274 | 'df' '_df' 275 | 'dget' '_dget' 276 | 'dhclient' '_dhclient' 277 | 'dhclient3' '_dhclient' 278 | 'dhcpcd' '_dhcpcd' 279 | 'diana' '_diana' 280 | 'dict' '_dict' 281 | 'diff' '_diff' 282 | 'diff3' '_diff3' 283 | 'diffstat' '_diffstat' 284 | 'dig' '_dig' 285 | 'dillo' '_webbrowser' 286 | 'dircmp' '_directories' 287 | 'direnv' '_direnv' 288 | 'dirs' '_dirs' 289 | 'disable' '_disable' 290 | 'disown' '_jobs_fg' 291 | 'display' '_imagemagick' 292 | 'dist' '_mh' 293 | 'django-admin' '_django' 294 | 'django-admin.py' '_django' 295 | 'dkms' '_dkms' 296 | 'dmake' '_make' 297 | 'dmesg' '_dmesg' 298 | 'dmidecode' '_dmidecode' 299 | 'doas' '_doas' 300 | 'docker' '_docker' 301 | 'docpad' '_docpad' 302 | 'dolphin' '_dolphin' 303 | 'domainname' '_yp' 304 | 'dos2unix' '_dos2unix' 305 | 'dotnet' '_dotnet' 306 | 'downgrade' '_downgrade' 307 | 'drill' '_drill' 308 | 'dropbox' '_dropbox' 309 | 'dropdb' '_pgsql_utils' 310 | 'dropuser' '_pgsql_utils' 311 | 'drush' '_drush' 312 | 'dsh' '_dsh' 313 | 'dtruss' '_dtruss' 314 | 'du' '_du' 315 | '_dunst' '_dunst' 316 | 'dunst' '_dunst' 317 | '_dunstctl' '_dunstctl' 318 | 'dunstctl' '_dunstctl' 319 | 'dvibook' '_dvi' 320 | 'dviconcat' '_dvi' 321 | 'dvicopy' '_dvi' 322 | 'dvidvi' '_dvi' 323 | 'dvipdf' '_dvi' 324 | 'dvips' '_dvi' 325 | 'dviselect' '_dvi' 326 | 'dvitodvi' '_dvi' 327 | 'dvitype' '_dvi' 328 | 'dwb' '_webbrowser' 329 | 'e2label' '_e2label' 330 | 'eatmydata' '_precommand' 331 | 'ecasound' '_ecasound' 332 | 'ecdsautil' '_ecdsautil' 333 | 'echotc' '_echotc' 334 | 'echoti' '_echoti' 335 | 'ed' '_ed' 336 | 'egrep' '_grep' 337 | 'eksctl' '_eksctl' 338 | 'elfdump' '_elfdump' 339 | 'elinks' '_elinks' 340 | 'emacs' '_emacs' 341 | 'emacsclient' '_emacsclient' 342 | 'emulate' '_emulate' 343 | 'emulator' '_emulator' 344 | 'enable' '_enable' 345 | 'enscript' '_enscript' 346 | 'entr' '_entr' 347 | 'env' '_env' 348 | 'envdir' '_envdir' 349 | 'eog' '_eog' 350 | 'epdfview' '_pdf' 351 | 'epsffit' '_psutils' 352 | '-equal-' '_equal' 353 | 'erb' '_ruby' 354 | 'espeak' '_espeak' 355 | 'etags' '_etags' 356 | 'ethtool' '_ethtool' 357 | 'eu-nm' '_nm' 358 | 'eu-objdump' '_objdump' 359 | 'eu-readelf' '_readelf' 360 | 'eu-strings' '_strings' 361 | 'eval' '_precommand' 362 | 'eview' '_vim' 363 | 'evim' '_vim' 364 | 'evince' '_evince' 365 | 'ex' '_vi' 366 | 'exec' '_exec' 367 | 'expand' '_unexpand' 368 | 'export' '_typeset' 369 | 'exportfs' '_exportfs' 370 | 'express' '_webbrowser' 371 | 'extcheck' '_java' 372 | 'extractres' '_psutils' 373 | 'eza' '_eza' 374 | 'fab' '_fab' 375 | 'fail2ban-client' '_fail2ban-client' 376 | 'fakeroot' '_fakeroot' 377 | 'false' '_nothing' 378 | 'fc' '_fc' 379 | 'fc-list' '_xft_fonts' 380 | 'fc-match' '_xft_fonts' 381 | 'feh' '_feh' 382 | 'fetchmail' '_fetchmail' 383 | 'ffind' '_ffind' 384 | 'ffmpeg' '_ffmpeg' 385 | 'fg' '_jobs_fg' 386 | 'fgrep' '_grep' 387 | 'figlet' '_figlet' 388 | 'filterdiff' '_patchutils' 389 | 'find' '_find' 390 | 'findaffix' '_ispell' 391 | 'findmnt' '_findmnt' 392 | 'finger' '_finger' 393 | 'firefox' '_mozilla' 394 | '-first-' '_first' 395 | 'fixdlsrps' '_psutils' 396 | 'fixfmps' '_psutils' 397 | 'fixmacps' '_psutils' 398 | 'fixpsditps' '_psutils' 399 | 'fixpspps' '_psutils' 400 | 'fixscribeps' '_psutils' 401 | 'fixtpps' '_psutils' 402 | 'fixwfwps' '_psutils' 403 | 'fixwpps' '_psutils' 404 | 'fixwwps' '_psutils' 405 | 'flac' '_flac' 406 | 'flatpak' '_flatpak' 407 | 'fleetctl' '_fleetctl' 408 | 'flex' '_flex' 409 | 'flex++' '_flex' 410 | 'flipdiff' '_patchutils' 411 | 'flist' '_mh' 412 | 'flists' '_mh' 413 | 'float' '_typeset' 414 | 'flutter' '_flutter' 415 | 'fly' '_concourse' 416 | 'fmt' '_fmt' 417 | 'fmttest' '_mh' 418 | 'fned' '_zed' 419 | 'fnext' '_mh' 420 | 'fold' '_fold' 421 | 'folder' '_mh' 422 | 'folders' '_mh' 423 | 'foot' '_foot' 424 | 'footclient' '_footclient' 425 | 'fortune' '_fortune' 426 | 'forw' '_mh' 427 | 'fprev' '_mh' 428 | 'free' '_free' 429 | 'freebsd-make' '_make' 430 | 'freezer' '_openstack' 431 | 'fsh' '_fsh' 432 | 'ftp' '_hosts' 433 | 'functions' '_typeset' 434 | 'fuser' '_fuser' 435 | 'fusermount' '_fusermount' 436 | 'fvm' '_fvm' 437 | 'fwhois' '_whois' 438 | 'fwupdmgr' '_fwupdmgr' 439 | 'g++' '_gcc' 440 | 'galeon' '_webbrowser' 441 | 'gas' '_gas' 442 | 'gawk' '_awk' 443 | 'gb2sum' '_md5sum' 444 | 'gbase32' '_base64' 445 | 'gbase64' '_base64' 446 | 'gbasename' '_basename' 447 | 'gcat' '_cat' 448 | 'gcc' '_gcc' 449 | 'gccgo' '_go' 450 | 'gchgrp' '_chown' 451 | 'gchmod' '_chmod' 452 | 'gchown' '_chown' 453 | 'gchroot' '_chroot' 454 | 'gcksum' '_cksum' 455 | 'gcmp' '_cmp' 456 | 'gcomm' '_comm' 457 | 'gcore' '_gcore' 458 | 'gcp' '_cp' 459 | 'gcut' '_cut' 460 | 'gdate' '_date' 461 | 'gdb' '_gdb' 462 | 'gdd' '_dd' 463 | 'gdf' '_df' 464 | 'gdiff' '_diff' 465 | 'gdu' '_du' 466 | 'geany' '_geany' 467 | 'gegrep' '_grep' 468 | 'gem' '_gem' 469 | 'genisoimage' '_genisoimage' 470 | 'genv' '_env' 471 | 'get' '_sccs' 472 | 'getafm' '_psutils' 473 | 'getconf' '_getconf' 474 | 'getent' '_getent' 475 | 'getfacl' '_getfacl' 476 | 'getfacl.exe' '_getfacl' 477 | 'getfattr' '_attr' 478 | 'getmail' '_getmail' 479 | 'getopt' '_getopt' 480 | 'getopts' '_vars' 481 | 'gex' '_vim' 482 | 'gexpand' '_unexpand' 483 | 'gfgrep' '_grep' 484 | 'gfind' '_find' 485 | 'gfmt' '_fmt' 486 | 'gfold' '_fold' 487 | 'ggetopt' '_getopt' 488 | 'ggrep' '_grep' 489 | 'ggv' '_gnome-gv' 490 | 'gh' '_gh' 491 | 'ghc' '_ghc' 492 | 'ghci' '_ghc' 493 | 'ghc-pkg' '_ghc' 494 | 'ghead' '_head' 495 | 'ghostscript' '_ghostscript' 496 | 'ghostview' '_pspdf' 497 | 'gid' '_id' 498 | 'ginstall' '_install' 499 | 'gist' '_gist' 500 | 'git' '_git' 501 | 'git-cvsserver' '_git' 502 | 'git-flow' '_git-flow' 503 | 'gitk' '_git' 504 | 'git-pulls' '_git-pulls' 505 | 'git-receive-pack' '_git' 506 | 'git-revise' '_git-revise' 507 | 'git-shell' '_git' 508 | 'git-upload-archive' '_git' 509 | 'git-upload-pack' '_git' 510 | 'git-wtf' '_git-wtf' 511 | 'gjoin' '_join' 512 | 'glance' '_openstack' 513 | 'glances' '_glances' 514 | 'gln' '_ln' 515 | 'global' '_global' 516 | 'glocate' '_locate' 517 | 'gls' '_ls' 518 | 'gm' '_graphicsmagick' 519 | 'gmake' '_make' 520 | 'gmd5sum' '_md5sum' 521 | 'gmkdir' '_mkdir' 522 | 'gmkfifo' '_mkfifo' 523 | 'gmknod' '_mknod' 524 | 'gmktemp' '_mktemp' 525 | 'gmplayer' '_mplayer' 526 | 'gmv' '_mv' 527 | 'gnl' '_nl' 528 | 'gnocchi' '_openstack' 529 | 'gnome-gv' '_gnome-gv' 530 | 'gnumfmt' '_numfmt' 531 | 'gnupod_addsong' '_gnupod' 532 | 'gnupod_addsong.pl' '_gnupod' 533 | 'gnupod_check' '_gnupod' 534 | 'gnupod_check.pl' '_gnupod' 535 | 'gnupod_INIT' '_gnupod' 536 | 'gnupod_INIT.pl' '_gnupod' 537 | 'gnupod_search' '_gnupod' 538 | 'gnupod_search.pl' '_gnupod' 539 | 'gnutls-cli' '_gnutls' 540 | 'gnutls-cli-debug' '_gnutls' 541 | 'gnutls-serv' '_gnutls' 542 | 'go' '_golang' 543 | 'god' '_od' 544 | 'gofmt' '_go' 545 | 'google' '_google' 546 | 'gpasswd' '_gpasswd' 547 | 'gpaste' '_paste' 548 | 'gpatch' '_patch' 549 | 'gpg' '_gpg' 550 | 'gpg2' '_gpg' 551 | 'gpgconf' '_gpgconf' 552 | 'gpgv' '_gpg' 553 | 'gpg-zip' '_gpg' 554 | 'gphoto2' '_gphoto2' 555 | 'gprintenv' '_printenv' 556 | 'gprof' '_gprof' 557 | 'gqview' '_gqview' 558 | 'gradle' '_gradle' 559 | 'gradlew' '_gradle' 560 | 'grail' '_webbrowser' 561 | 'greadlink' '_readlink' 562 | 'grep' '_grep' 563 | 'grepdiff' '_patchutils' 564 | 'grm' '_rm' 565 | 'grmdir' '_rmdir' 566 | 'groff' '_groff' 567 | 'groupadd' '_user_admin' 568 | 'groupdel' '_groups' 569 | 'groupmod' '_user_admin' 570 | 'groups' '_users' 571 | 'growisofs' '_growisofs' 572 | 'grpcurl' '_grpcurl' 573 | 'gs' '_ghostscript' 574 | 'gsbj' '_pspdf' 575 | 'gsdj' '_pspdf' 576 | 'gsdj500' '_pspdf' 577 | 'gsed' '_sed' 578 | 'gseq' '_seq' 579 | 'gsettings' '_gsettings' 580 | 'gsha1sum' '_md5sum' 581 | 'gsha224sum' '_md5sum' 582 | 'gsha256sum' '_md5sum' 583 | 'gsha384sum' '_md5sum' 584 | 'gsha512sum' '_md5sum' 585 | 'gshred' '_shred' 586 | 'gshuf' '_shuf' 587 | 'gslj' '_pspdf' 588 | 'gslp' '_pspdf' 589 | 'gsnd' '_pspdf' 590 | 'gsort' '_sort' 591 | 'gsplit' '_split' 592 | 'gstat' '_stat' 593 | 'gstdbuf' '_stdbuf' 594 | 'gstrings' '_strings' 595 | 'gstty' '_stty' 596 | 'gsum' '_cksum' 597 | 'gtac' '_tac' 598 | 'gtail' '_tail' 599 | 'gtar' '_tar' 600 | 'gtee' '_tee' 601 | 'gtimeout' '_timeout' 602 | 'gtk-launch' '_gtk-launch' 603 | 'gtouch' '_touch' 604 | 'gtr' '_tr' 605 | 'gtty' '_tty' 606 | 'guilt' '_guilt' 607 | 'guilt-add' '_guilt' 608 | 'guilt-applied' '_guilt' 609 | 'guilt-delete' '_guilt' 610 | 'guilt-files' '_guilt' 611 | 'guilt-fold' '_guilt' 612 | 'guilt-fork' '_guilt' 613 | 'guilt-header' '_guilt' 614 | 'guilt-help' '_guilt' 615 | 'guilt-import' '_guilt' 616 | 'guilt-import-commit' '_guilt' 617 | 'guilt-init' '_guilt' 618 | 'guilt-new' '_guilt' 619 | 'guilt-next' '_guilt' 620 | 'guilt-patchbomb' '_guilt' 621 | 'guilt-pop' '_guilt' 622 | 'guilt-prev' '_guilt' 623 | 'guilt-push' '_guilt' 624 | 'guilt-rebase' '_guilt' 625 | 'guilt-refresh' '_guilt' 626 | 'guilt-rm' '_guilt' 627 | 'guilt-series' '_guilt' 628 | 'guilt-status' '_guilt' 629 | 'guilt-top' '_guilt' 630 | 'guilt-unapplied' '_guilt' 631 | 'guname' '_uname' 632 | 'gunexpand' '_unexpand' 633 | 'guniq' '_uniq' 634 | 'gunzip' '_gzip' 635 | 'guptime' '_uptime' 636 | 'gv' '_gv' 637 | 'gview' '_vim' 638 | 'gvim' '_vim' 639 | 'gvimdiff' '_vim' 640 | 'gwc' '_wc' 641 | 'gwho' '_who' 642 | 'gxargs' '_xargs' 643 | 'gzcat' '_gzip' 644 | 'gzegrep' '_grep' 645 | 'gzfgrep' '_grep' 646 | 'gzgrep' '_grep' 647 | 'gzilla' '_webbrowser' 648 | 'gzip' '_gzip' 649 | 'hash' '_hash' 650 | 'hd' '_hexdump' 651 | 'head' '_head' 652 | 'heat' '_openstack' 653 | 'hello' '_hello' 654 | 'help' '_sccs' 655 | 'hexdump' '_hexdump' 656 | 'hg' '_hg' 657 | 'hilite' '_precommand' 658 | 'histed' '_zed' 659 | 'history' '_fc' 660 | 'hledger' '_hledger' 661 | 'homestead' '_homestead' 662 | 'host' '_host' 663 | 'hostname' '_hostname' 664 | 'hostnamectl' '_hostnamectl' 665 | 'hotjava' '_webbrowser' 666 | 'htop' '_htop' 667 | 'http' '_httpie' 668 | 'https' '_httpie' 669 | 'hyprctl' '_hyprctl' 670 | 'hyprpm' '_hyprpm' 671 | 'ibus' '_ibus' 672 | 'iceweasel' '_mozilla' 673 | 'icombine' '_ispell' 674 | 'iconv' '_iconv' 675 | 'iconvconfig' '_iconvconfig' 676 | 'id' '_id' 677 | 'identify' '_imagemagick' 678 | 'ifconfig' '_ifconfig' 679 | 'ifdown' '_net_interfaces' 680 | 'iftop' '_iftop' 681 | 'ifup' '_net_interfaces' 682 | 'ijoin' '_ispell' 683 | 'import' '_imagemagick' 684 | 'inc' '_mh' 685 | 'includeres' '_psutils' 686 | 'include-what-you-use' '_include-what-you-use' 687 | 'info' '_texinfo' 688 | 'infocmp' '_terminals' 689 | 'initctl' '_initctl' 690 | 'initdb' '_pgsql_utils' 691 | 'insmod' '_modutils' 692 | 'install' '_install' 693 | 'install-info' '_texinfo' 694 | 'integer' '_typeset' 695 | 'interdiff' '_patchutils' 696 | 'inxi' '_inxi' 697 | 'ionice' '_ionice' 698 | 'iostat' '_iostat' 699 | 'ip' '_ip' 700 | 'ip6tables' '_iptables' 701 | 'ip6tables-restore' '_iptables' 702 | 'ip6tables-save' '_iptables' 703 | 'ipkg' '_opkg' 704 | 'ipsec' '_ipsec' 705 | 'ipset' '_ipset' 706 | 'iptables' '_iptables' 707 | 'iptables-restore' '_iptables' 708 | 'iptables-save' '_iptables' 709 | 'irb' '_ruby' 710 | 'ironic' '_openstack' 711 | 'irssi' '_irssi' 712 | 'isag' '_sysstat' 713 | 'ispell' '_ispell' 714 | 'iwconfig' '_iwconfig' 715 | 'iwyu' '_include-what-you-use' 716 | 'jadetex' '_tex' 717 | 'jar' '_java' 718 | 'jarsigner' '_java' 719 | 'java' '_java' 720 | 'javac' '_java' 721 | 'javadoc' '_java' 722 | 'javah' '_java' 723 | 'javap' '_java' 724 | 'jdb' '_java' 725 | 'jmeter' '_jmeter' 726 | 'jmeter-plugins' '_jmeter-plugins' 727 | 'jobs' '_jobs_builtin' 728 | 'joe' '_joe' 729 | 'join' '_join' 730 | 'jonas' '_jonas' 731 | 'journalctl' '_journalctl' 732 | 'jq' '_jq' 733 | 'jrnl' '_jrnl' 734 | 'kak' '_kak' 735 | 'kcmshell5' '_systemsettings' 736 | 'kcmshell6' '_systemsettings' 737 | 'kdeconnect-cli' '_kdeconnect' 738 | 'kde-inhibit' '_kde-inhibit' 739 | 'kernel-install' '_kernel-install' 740 | 'keystone' '_openstack' 741 | 'keytool' '_java' 742 | 'kfmclient' '_kfmclient' 743 | 'kill' '_kill' 744 | 'killall' '_killall' 745 | 'killall5' '_killall' 746 | 'kinfocenter' '_systemsettings' 747 | 'kioclient' '_kfmclient' 748 | 'kitchen' '_kitchen' 749 | 'kitty' '_kitty' 750 | 'knife' '_knife' 751 | 'knock' '_knock' 752 | 'konqueror' '_webbrowser' 753 | 'konsole' '_konsole' 754 | 'konsoleprofile' '_konsole' 755 | 'kpartx' '_kpartx' 756 | 'kpdf' '_pdf' 757 | 'kqml' '_kqml' 758 | 'krunner' '_krunner' 759 | 'kscreen-doctor' '_kscreen-doctor' 760 | 'ksh' '_sh' 761 | 'ksh88' '_sh' 762 | 'ksh93' '_sh' 763 | 'kubectl' '_kubectl' 764 | 'kvno' '_kvno' 765 | 'last' '_last' 766 | 'lastb' '_last' 767 | 'latex' '_tex' 768 | 'latexmk' '_tex' 769 | 'ldconfig' '_ldconfig' 770 | 'ldconfig.real' '_ldconfig' 771 | 'ldd' '_ldd' 772 | 'less' '_less' 773 | 'let' '_math' 774 | 'lftp' '_ncftp' 775 | 'lha' '_lha' 776 | 'libinput' '_libinput' 777 | 'light' '_webbrowser' 778 | 'lilypond' '_lilypond' 779 | 'limit' '_limit' 780 | 'links' '_links' 781 | 'links2' '_links' 782 | 'linux' '_uml' 783 | 'lldb' '_lldb' 784 | 'llvm-g++' '_gcc' 785 | 'llvm-gcc' '_gcc' 786 | 'llvm-objdump' '_objdump' 787 | 'ln' '_ln' 788 | 'loadkeys' '_loadkeys' 789 | 'local' '_typeset' 790 | 'locale' '_locale' 791 | 'localectl' '_localectl' 792 | 'localedef' '_localedef' 793 | 'locate' '_locate' 794 | 'log' '_nothing' 795 | 'logger' '_logger' 796 | 'loginctl' '_loginctl' 797 | 'logname' '_nothing' 798 | 'look' '_look' 799 | 'losetup' '_losetup' 800 | 'lp' '_lp' 801 | 'lpadmin' '_lp' 802 | 'lpinfo' '_lp' 803 | 'lpoptions' '_lp' 804 | 'lpq' '_lp' 805 | 'lpr' '_lp' 806 | 'lprm' '_lp' 807 | 'lpstat' '_lp' 808 | 'ls' '_ls' 809 | 'lsattr' '_lsattr' 810 | 'lsblk' '_lsblk' 811 | 'lsd' '_lsd' 812 | 'lsdiff' '_patchutils' 813 | 'lsmod' '_modutils' 814 | 'lsns' '_lsns' 815 | 'lsof' '_lsof' 816 | 'lsusb' '_lsusb' 817 | 'ltrace' '_ltrace' 818 | 'lua' '_lua' 819 | 'luarocks' '_luarocks' 820 | 'lunchy' '_lunchy' 821 | 'lynx' '_lynx' 822 | 'lz4' '_lz4' 823 | 'lz4c' '_lz4' 824 | 'lz4c32' '_lz4' 825 | 'lz4cat' '_lz4' 826 | 'lzcat' '_xz' 827 | 'lzma' '_xz' 828 | 'lzop' '_lzop' 829 | 'mac2unix' '_dos2unix' 830 | 'machinectl' '_machinectl' 831 | 'magnum' '_openstack' 832 | 'mail' '_mail' 833 | 'Mail' '_mail' 834 | 'mailx' '_mail' 835 | 'make' '_make' 836 | 'makeinfo' '_texinfo' 837 | 'makepkg' '_pacman' 838 | 'man' '_man' 839 | 'manage.py' '_django' 840 | 'manila' '_openstack' 841 | 'mark' '_mh' 842 | 'mat' '_mat' 843 | 'mat2' '_mat2' 844 | '-math-' '_math' 845 | 'matlab' '_matlab' 846 | 'mattrib' '_mtools' 847 | 'mc' '_mc' 848 | 'mcd' '_mtools' 849 | 'mcopy' '_mtools' 850 | 'md2' '_cksum' 851 | 'md4' '_cksum' 852 | 'md5' '_cksum' 853 | 'md5sum' '_md5sum' 854 | 'mdadm' '_mdadm' 855 | 'mdel' '_mtools' 856 | 'mdeltree' '_mtools' 857 | 'mdir' '_mtools' 858 | 'mdu' '_mtools' 859 | 'mencal' '_mencal' 860 | 'mere' '_mere' 861 | 'merge' '_rcs' 862 | 'meson' '_meson' 863 | 'metaflac' '_flac' 864 | 'mformat' '_mtools' 865 | 'mgv' '_pspdf' 866 | 'mhfixmsg' '_mh' 867 | 'mhlist' '_mh' 868 | 'mhmail' '_mh' 869 | 'mhn' '_mh' 870 | 'mhparam' '_mh' 871 | 'mhpath' '_mh' 872 | 'mhshow' '_mh' 873 | 'mhstore' '_mh' 874 | 'middleman' '_middleman' 875 | 'mii-tool' '_mii-tool' 876 | 'mina' '_mina' 877 | 'mistral' '_openstack' 878 | 'mix' '_mix' 879 | 'mkcert' '_mkcert' 880 | 'mkdir' '_mkdir' 881 | 'mkfifo' '_mkfifo' 882 | 'mkisofs' '_growisofs' 883 | 'mknod' '_mknod' 884 | 'mksh' '_sh' 885 | 'mktemp' '_mktemp' 886 | 'mktunes' '_gnupod' 887 | 'mktunes.pl' '_gnupod' 888 | 'mlabel' '_mtools' 889 | 'mlocate' '_locate' 890 | 'mmd' '_mtools' 891 | 'mmm' '_webbrowser' 892 | 'mmount' '_mtools' 893 | 'mmove' '_mtools' 894 | 'modinfo' '_modutils' 895 | 'modprobe' '_modutils' 896 | 'module' '_module' 897 | 'mogrify' '_imagemagick' 898 | 'monasca' '_openstack' 899 | 'mondoarchive' '_mondo' 900 | 'montage' '_imagemagick' 901 | 'moosic' '_moosic' 902 | 'Mosaic' '_webbrowser' 903 | 'mosh' '_mosh' 904 | 'mount' '_mount' 905 | 'mozilla' '_mozilla' 906 | 'mozilla-firefox' '_mozilla' 907 | 'mozilla-xremote-client' '_mozilla' 908 | 'mpc' '_mpc' 909 | 'mplayer' '_mplayer' 910 | 'mpstat' '_sysstat' 911 | 'mr' '_myrepos' 912 | 'mrd' '_mtools' 913 | 'mread' '_mtools' 914 | 'mren' '_mtools' 915 | 'msgchk' '_mh' 916 | 'mssh' '_mssh' 917 | 'mt' '_mt' 918 | 'mtn' '_monotone' 919 | 'mtoolstest' '_mtools' 920 | 'mtr' '_mtr' 921 | 'mtype' '_mtools' 922 | 'munchlist' '_ispell' 923 | 'mupdf' '_mupdf' 924 | 'murano' '_openstack' 925 | 'mush' '_mail' 926 | 'mussh' '_mussh' 927 | 'mutt' '_mutt' 928 | 'mux' '_tmuxinator' 929 | 'mv' '_mv' 930 | 'mvim' '_vim' 931 | 'mvn' '_mvn' 932 | 'mvnDebug' '_mvn' 933 | 'mx' '_hosts' 934 | 'mysql' '_mysql_utils' 935 | 'mysqladmin' '_mysql_utils' 936 | 'mysqldiff' '_mysqldiff' 937 | 'mysqldump' '_mysql_utils' 938 | 'mysqlimport' '_mysql_utils' 939 | 'mysqlshow' '_mysql_utils' 940 | 'nail' '_mail' 941 | 'nano' '_nano' 942 | 'nanoc' '_nanoc' 943 | 'native2ascii' '_java' 944 | 'nautilus' '_nautilus' 945 | 'nawk' '_awk' 946 | 'nc' '_netcat' 947 | 'ncal' '_cal' 948 | 'ncftp' '_ncftp' 949 | 'ncl' '_nedit' 950 | 'nedit' '_nedit' 951 | 'nedit-nc' '_nedit' 952 | 'neofetch' '_neofetch' 953 | 'netcat' '_netcat' 954 | 'netrik' '_webbrowser' 955 | 'netscape' '_netscape' 956 | 'netstat' '_netstat' 957 | 'networkctl' '_networkctl' 958 | 'networkQuality' '_networkQuality' 959 | 'neutron' '_openstack' 960 | 'new' '_mh' 961 | 'newgrp' '_groups' 962 | 'next' '_mh' 963 | 'nft' '_nftables' 964 | 'nginx' '_nginx' 965 | 'ngrep' '_ngrep' 966 | 'ngrok' '_ngrok' 967 | 'nice' '_nice' 968 | 'ninja' '_ninja' 969 | 'nkf' '_nkf' 970 | 'nl' '_nl' 971 | 'nm' '_nm' 972 | 'nmap' '_nmap' 973 | 'nmblookup' '_samba' 974 | 'nmcli' '_networkmanager' 975 | 'nocorrect' '_precommand' 976 | 'node' '_node' 977 | 'noglob' '_precommand' 978 | 'nohup' '_precommand' 979 | 'nova' '_openstack' 980 | 'npm' '_npm' 981 | 'ns' '_hosts' 982 | 'nsenter' '_nsenter' 983 | 'nslookup' '_nslookup' 984 | 'ntalk' '_other_accounts' 985 | 'numfmt' '_numfmt' 986 | 'nvim' '_vim' 987 | 'nvm' '_nvm' 988 | 'objdump' '_objdump' 989 | 'od' '_od' 990 | 'ogg123' '_vorbis' 991 | 'oggdec' '_vorbis' 992 | 'oggenc' '_vorbis' 993 | 'ogginfo' '_vorbis' 994 | 'oksh' '_sh' 995 | 'okular' '_okular' 996 | 'oomctl' '_oomctl' 997 | 'openssl' '_openssl' 998 | 'openstack' '_openstack' 999 | 'openvpn3' '_openvpn3' 1000 | 'opera' '_webbrowser' 1001 | 'opera-next' '_webbrowser' 1002 | 'opkg' '_opkg' 1003 | 'optirun' '_optirun' 1004 | 'opusdec' '_opustools' 1005 | 'opusenc' '_opustools' 1006 | 'opusinfo' '_opustools' 1007 | 'p4' '_perforce' 1008 | 'p4d' '_perforce' 1009 | 'pacat' '_pulseaudio' 1010 | 'paccache' '_paccache' 1011 | 'pacdiff' '_pacdiff' 1012 | 'pacignore' '_pacignore' 1013 | 'pack' '_pack' 1014 | 'packf' '_mh' 1015 | 'paclist' '_paclist' 1016 | 'paclog-pkglist' '_paclog-pkglist' 1017 | 'pacman' '_pacman' 1018 | 'pacman-conf' '_pacman' 1019 | 'pacman-key' '_pacman' 1020 | 'pacman.static' '_pacman' 1021 | 'pacmd' '_pulseaudio' 1022 | 'pacscripts' '_pacscripts' 1023 | 'pacsearch' '_pacsearch' 1024 | 'pacsort' '_pacsort' 1025 | 'pactl' '_pulseaudio' 1026 | 'pactree' '_pactree' 1027 | 'padsp' '_pulseaudio' 1028 | 'pandoc' '_pandoc' 1029 | 'paplay' '_pulseaudio' 1030 | 'parallel' '_parallel' 1031 | '-parameter-' '_parameter' 1032 | 'parec' '_pulseaudio' 1033 | 'parecord' '_pulseaudio' 1034 | 'paru' '_paru' 1035 | 'passwd' '_users' 1036 | 'paste' '_paste' 1037 | 'pasuspender' '_pulseaudio' 1038 | 'patch' '_patch' 1039 | 'patool' '_patool' 1040 | 'pax' '_pax' 1041 | 'pcat' '_pack' 1042 | 'pcp-htop' '_htop' 1043 | 'pcred' '_pids' 1044 | 'pdf2dsc' '_pdf' 1045 | 'pdf2ps' '_pdf' 1046 | 'pdffonts' '_pdf' 1047 | 'pdfimages' '_pdf' 1048 | 'pdfinfo' '_pdf' 1049 | 'pdfjadetex' '_tex' 1050 | 'pdflatex' '_tex' 1051 | 'pdfopt' '_pdf' 1052 | 'pdftex' '_tex' 1053 | 'pdftexi2dvi' '_texinfo' 1054 | 'pdftk' '_pdftk' 1055 | 'pdftopbm' '_pdf' 1056 | 'pdftops' '_pdf' 1057 | 'pdftotext' '_pdf' 1058 | 'pdksh' '_sh' 1059 | 'perf' '_perf' 1060 | 'periscope' '_periscope' 1061 | 'perl' '_perl' 1062 | 'perldoc' '_perldoc' 1063 | 'pfiles' '_pids' 1064 | 'pflags' '_pids' 1065 | 'pg_config' '_postgresql' 1066 | 'pg_ctl' '_postgresql' 1067 | 'pg_dump' '_pgsql_utils' 1068 | 'pg_dumpall' '_pgsql_utils' 1069 | 'pg_isready' '_postgresql' 1070 | 'pgrep' '_pgrep' 1071 | 'pg_restore' '_pgsql_utils' 1072 | 'pg_upgrade' '_postgresql' 1073 | 'phing' '_phing' 1074 | 'php' '_php' 1075 | 'pick' '_mh' 1076 | 'picocom' '_picocom' 1077 | 'pidof' '_pidof' 1078 | 'pidstat' '_sysstat' 1079 | 'pigz' '_gzip' 1080 | 'pine' '_pine' 1081 | 'pinef' '_pine' 1082 | 'pinfo' '_texinfo' 1083 | 'ping' '_ping' 1084 | 'ping6' '_ping' 1085 | 'pixz' '_pixz' 1086 | 'pkcon' '_pkcon' 1087 | 'pkgadd' '_pkgadd' 1088 | 'pkg-config' '_pkg-config' 1089 | 'pkgfile' '_pkgfile' 1090 | 'pkginfo' '_pkginfo' 1091 | 'pkgrm' '_pkgrm' 1092 | 'pkill' '_pgrep' 1093 | 'plasmashell' '_plasmashell' 1094 | 'plasmoidviewer' '_plasmoidviewer' 1095 | 'play' '_play' 1096 | 'playerctl' '_playerctl' 1097 | 'pldd' '_pids' 1098 | 'pm2' '_pm2' 1099 | 'pmake' '_make' 1100 | 'pman' '_perl_modules' 1101 | 'pmap' '_pmap' 1102 | 'pmcat' '_perl_modules' 1103 | 'pmdesc' '_perl_modules' 1104 | 'pmeth' '_perl_modules' 1105 | 'pmexp' '_perl_modules' 1106 | 'pmfunc' '_perl_modules' 1107 | 'pmload' '_perl_modules' 1108 | 'pmls' '_perl_modules' 1109 | 'pmpath' '_perl_modules' 1110 | 'pmvers' '_perl_modules' 1111 | 'podgrep' '_perl_modules' 1112 | 'podpath' '_perl_modules' 1113 | 'podtoc' '_perl_modules' 1114 | 'poetry' '_poetry' 1115 | 'poff' '_pon' 1116 | 'policytool' '_java' 1117 | 'pon' '_pon' 1118 | 'popd' '_directory_stack' 1119 | 'port' '_port' 1120 | 'postconf' '_postfix' 1121 | 'postgres' '_postgresql' 1122 | 'postmaster' '_postgresql' 1123 | 'postqueue' '_postfix' 1124 | 'postsuper' '_postfix' 1125 | 'pr' '_pr' 1126 | 'prev' '_mh' 1127 | 'print' '_print' 1128 | 'printenv' '_printenv' 1129 | 'printf' '_print' 1130 | 'profile-sync-daemon' '_psd' 1131 | 'prompt' '_prompt' 1132 | 'protoc' '_protoc' 1133 | 'prove' '_prove' 1134 | 'prs' '_sccs' 1135 | 'prt' '_sccs' 1136 | 'prun' '_pids' 1137 | 'ps' '_ps' 1138 | 'ps2ascii' '_pspdf' 1139 | 'ps2epsi' '_postscript' 1140 | 'ps2pdf' '_postscript' 1141 | 'ps2pdf12' '_postscript' 1142 | 'ps2pdf13' '_postscript' 1143 | 'ps2pdf14' '_postscript' 1144 | 'ps2pdfwr' '_postscript' 1145 | 'ps2ps' '_postscript' 1146 | 'psbook' '_psutils' 1147 | 'psd' '_psd' 1148 | 'psed' '_sed' 1149 | 'psig' '_pids' 1150 | 'psmerge' '_psutils' 1151 | 'psmulti' '_postscript' 1152 | 'psnup' '_psutils' 1153 | 'psql' '_pgsql_utils' 1154 | 'psresize' '_psutils' 1155 | 'psselect' '_psutils' 1156 | 'pstack' '_pids' 1157 | 'pstoedit' '_pspdf' 1158 | 'pstop' '_pids' 1159 | 'pstops' '_psutils' 1160 | 'pstotgif' '_pspdf' 1161 | 'pswrap' '_postscript' 1162 | 'ptx' '_ptx' 1163 | 'pulseaudio' '_pulseaudio' 1164 | 'pump' '_pump' 1165 | 'pushd' '_cd' 1166 | 'pv' '_pv' 1167 | 'pwait' '_pids' 1168 | 'pwdx' '_pids' 1169 | 'pwgen' '_pwgen' 1170 | 'pygmentize' '_pygmentize' 1171 | 'pyhtmlizer' '_twisted' 1172 | 'qdbus' '_qdbus' 1173 | 'qiv' '_qiv' 1174 | 'qmk' '_qmk' 1175 | 'quilt' '_quilt' 1176 | 'r' '_fc' 1177 | 'rails' '_rails' 1178 | 'rake' '_rake' 1179 | 'ralio' '_ralio' 1180 | 'rankmirrors' '_rankmirrors' 1181 | 'ranlib' '_ranlib' 1182 | 'rar' '_rar' 1183 | 'rc' '_sh' 1184 | 'rclone' '_rclone' 1185 | 'rcp' '_rlogin' 1186 | 'rcs' '_rcs' 1187 | 'rcsdiff' '_rcs' 1188 | 'rdesktop' '_rdesktop' 1189 | 'read' '_read' 1190 | 'readelf' '_readelf' 1191 | 'readlink' '_readlink' 1192 | 'readonly' '_typeset' 1193 | 'rec' '_redis-cli' 1194 | '-redirect-' '_redirect' 1195 | '-redirect-,<,bunzip2' '_bzip2' 1196 | '-redirect-,<,bzip2' '_bzip2' 1197 | '-redirect-,>,bzip2' '_bzip2' 1198 | '-redirect-,<,compress' '_compress' 1199 | '-redirect-,>,compress' '_compress' 1200 | '-redirect-,-default-,-default-' '_files' 1201 | '-redirect-,<,gunzip' '_gzip' 1202 | '-redirect-,<,gzip' '_gzip' 1203 | '-redirect-,>,gzip' '_gzip' 1204 | '-redirect-,<,uncompress' '_compress' 1205 | '-redirect-,<,unxz' '_xz' 1206 | '-redirect-,<,xz' '_xz' 1207 | '-redirect-,>,xz' '_xz' 1208 | 'redis-cli' '_redis-cli' 1209 | 'refile' '_mh' 1210 | 'rehash' '_hash' 1211 | 'reindexdb' '_postgresql' 1212 | 'reload' '_initctl' 1213 | 'remsh' '_rlogin' 1214 | 'renice' '_renice' 1215 | 'repl' '_mh' 1216 | 'resolvectl' '_resolvectl' 1217 | 'restart' '_initctl' 1218 | 'retawq' '_webbrowser' 1219 | 'rfkill' '_rfkill' 1220 | 'rgrep' '_grep' 1221 | 'rgview' '_vim' 1222 | 'rgvim' '_vim' 1223 | 'ri' '_ri' 1224 | 'rkt' '_rkt' 1225 | 'rlogin' '_rlogin' 1226 | 'rm' '_rm' 1227 | 'rmd160' '_cksum' 1228 | 'rmdel' '_sccs' 1229 | 'rmdir' '_rmdir' 1230 | 'rmf' '_mh' 1231 | 'rmic' '_java' 1232 | 'rmid' '_java' 1233 | 'rmiregistry' '_java' 1234 | 'rmlint' '_rmlint' 1235 | 'rmlint.sh' '_rmlint' 1236 | 'rmm' '_mh' 1237 | 'rmmod' '_modutils' 1238 | 'route' '_route' 1239 | 'rrdtool' '_rrdtool' 1240 | 'rsh' '_rlogin' 1241 | 'rslsync' '_rslsync' 1242 | 'rspec' '_rspec' 1243 | 'rsvm' '_rsvm' 1244 | 'rsync' '_rsync' 1245 | 'rtin' '_tin' 1246 | 'rubber' '_rubber' 1247 | 'rubber-info' '_rubber' 1248 | 'rubber-pipe' '_rubber' 1249 | 'rubocop' '_rubocop' 1250 | 'ruby' '_ruby' 1251 | 'ruby-mri' '_ruby' 1252 | 'run-help' '_run-help' 1253 | 'rup' '_hosts' 1254 | 'rusage' '_precommand' 1255 | 'rview' '_vim' 1256 | 'rvim' '_vim' 1257 | 'rwho' '_hosts' 1258 | 'rxvt' '_urxvt' 1259 | 's2p' '_sed' 1260 | 'sact' '_sccs' 1261 | 'sadf' '_sysstat' 1262 | 'sahara' '_openstack' 1263 | 'sar' '_sysstat' 1264 | 'sbt' '_sbt' 1265 | 'scala' '_scala' 1266 | 'scalac' '_scala' 1267 | 'scan' '_mh' 1268 | 'sccs' '_sccs' 1269 | 'sccsdiff' '_sccs' 1270 | 'sched' '_sched' 1271 | 'schedtool' '_schedtool' 1272 | 'scons' '_scons' 1273 | 'scp' '_ssh' 1274 | 'screen' '_screen' 1275 | 'screencapture' '_screencapture' 1276 | 'script' '_script' 1277 | 'scriptreplay' '_script' 1278 | 'scrub' '_scrub' 1279 | 'sdd' '_sdd' 1280 | 'sdkmanager' '_sdkmanager' 1281 | 'seaf-cli' '_seafile' 1282 | 'sed' '_sed' 1283 | 'senlin' '_openstack' 1284 | 'seq' '_seq' 1285 | 'serialver' '_java' 1286 | 'service' '_service' 1287 | 'set' '_set' 1288 | 'setcap' '_setcap' 1289 | 'setfacl' '_setfacl' 1290 | 'setfacl.exe' '_setfacl' 1291 | 'setfattr' '_attr' 1292 | 'setopt' '_setopt' 1293 | 'setpriv' '_setpriv' 1294 | 'setsid' '_setsid' 1295 | 'setup.py' '_setup.py' 1296 | 'setxkbmap' '_setxkbmap' 1297 | 'sfdx' '_sfdx' 1298 | 'sftp' '_ssh' 1299 | 'sh' '_sh' 1300 | 'sha1' '_cksum' 1301 | 'sha1sum' '_md5sum' 1302 | 'sha224sum' '_md5sum' 1303 | 'sha256' '_cksum' 1304 | 'sha256sum' '_md5sum' 1305 | 'sha384' '_cksum' 1306 | 'sha384sum' '_md5sum' 1307 | 'sha512' '_cksum' 1308 | 'sha512sum' '_md5sum' 1309 | 'sha512t256' '_cksum' 1310 | 'shasum' '_shasum' 1311 | 'shellcheck' '_shellcheck' 1312 | 'shift' '_arrays' 1313 | 'show' '_mh' 1314 | 'showchar' '_psutils' 1315 | 'showmount' '_showmount' 1316 | 'showoff' '_showoff' 1317 | 'shred' '_shred' 1318 | 'shuf' '_shuf' 1319 | 'shutdown' '_shutdown' 1320 | 'sisu' '_sisu' 1321 | 'skein1024' '_cksum' 1322 | 'skein256' '_cksum' 1323 | 'skein512' '_cksum' 1324 | 'skipstone' '_webbrowser' 1325 | 'slabtop' '_slabtop' 1326 | 'slitex' '_tex' 1327 | 'slocate' '_locate' 1328 | 'slogin' '_ssh' 1329 | 'slrn' '_slrn' 1330 | 'smartctl' '_smartmontools' 1331 | 'smbclient' '_samba' 1332 | 'smbcontrol' '_samba' 1333 | 'smbstatus' '_samba' 1334 | 'snapper' '_snapper' 1335 | 'soa' '_hosts' 1336 | 'socket' '_socket' 1337 | 'sort' '_sort' 1338 | 'sortm' '_mh' 1339 | 'source' '_source' 1340 | 'spamassassin' '_spamassassin' 1341 | 'split' '_split' 1342 | 'splitdiff' '_patchutils' 1343 | 'sqlite' '_sqlite' 1344 | 'sqlite3' '_sqlite' 1345 | 'sqsh' '_sqsh' 1346 | 'sr' '_surfraw' 1347 | 'srm' '_srm' 1348 | 'srptool' '_gnutls' 1349 | 'ss' '_ss' 1350 | 'ssh' '_ssh' 1351 | 'ssh-add' '_ssh' 1352 | 'ssh-agent' '_ssh' 1353 | 'ssh-copy-id' '_ssh' 1354 | 'sshfs' '_sshfs' 1355 | 'ssh-keygen' '_ssh' 1356 | 'ssh-keyscan' '_ssh' 1357 | 'stack' '_stack' 1358 | 'star' '_tar' 1359 | 'starship' '_starship' 1360 | 'start' '_initctl' 1361 | 'stat' '_stat' 1362 | 'status' '_initctl' 1363 | 'stdbuf' '_stdbuf' 1364 | 'stg' '_stgit' 1365 | 'stop' '_initctl' 1366 | 'stow' '_stow' 1367 | 'strace' '_strace' 1368 | 'strace64' '_strace' 1369 | 'streamlink' '_streamlink' 1370 | 'strftime' '_strftime' 1371 | 'strings' '_strings' 1372 | 'strip' '_strip' 1373 | 'strongswan' '_ipsec' 1374 | 'stty' '_stty' 1375 | 'su' '_su' 1376 | 'subl' '_sublimetext' 1377 | 'subliminal' '_subliminal' 1378 | '-subscript-' '_subscript' 1379 | 'sudo' '_sudo' 1380 | 'sudoedit' '_sudo' 1381 | 'sum' '_cksum' 1382 | 'supervisorctl' '_supervisorctl' 1383 | 'surfraw' '_surfraw' 1384 | 'sv' '_runit' 1385 | 'svm' '_svm' 1386 | 'svn' '_subversion' 1387 | 'svnadmin' '_subversion' 1388 | 'svnadmin-static' '_subversion' 1389 | 'svnlite' '_subversion' 1390 | 'svnliteadmin' '_subversion' 1391 | 'swaks' '_swaks' 1392 | 'swanctl' '_swanctl' 1393 | 'swayidle' '_swayidle' 1394 | 'swaylock' '_swaylock' 1395 | 'swaync' '_swaync' 1396 | 'swaync-client' '_swaync-client' 1397 | 'swift' '_swift' 1398 | 'swiftc' '_swift' 1399 | 'swww' '_swww' 1400 | 'sync' '_nothing' 1401 | 'sysctl' '_sysctl' 1402 | 'systemctl' '_systemctl' 1403 | 'systemd-analyze' '_systemd-analyze' 1404 | 'systemd-ask-password' '_systemd' 1405 | 'systemd-cat' '_systemd' 1406 | 'systemd-cgls' '_systemd' 1407 | 'systemd-cgtop' '_systemd' 1408 | 'systemd-delta' '_systemd-delta' 1409 | 'systemd-detect-virt' '_systemd' 1410 | 'systemd-inhibit' '_systemd-inhibit' 1411 | 'systemd-machine-id-setup' '_systemd' 1412 | 'systemd-notify' '_systemd' 1413 | 'systemd-nspawn' '_systemd-nspawn' 1414 | 'systemd-path' '_systemd-path' 1415 | 'systemd-resolve' '_resolvectl' 1416 | 'systemd-run' '_systemd-run' 1417 | 'systemd-tmpfiles' '_systemd-tmpfiles' 1418 | 'systemd-tty-ask-password-agent' '_systemd' 1419 | 'systemsettings' '_systemsettings' 1420 | 'tac' '_tac' 1421 | 'tacker' '_openstack' 1422 | 'tail' '_tail' 1423 | 'talk' '_other_accounts' 1424 | 'tar' '_tar' 1425 | 'tardy' '_tardy' 1426 | 'tcpdump' '_tcpdump' 1427 | 'tcp_open' '_tcpsys' 1428 | 'tcptraceroute' '_tcptraceroute' 1429 | 'tcsh' '_sh' 1430 | 'tda' '_devtodo' 1431 | 'tdd' '_devtodo' 1432 | 'tde' '_devtodo' 1433 | 'tdr' '_devtodo' 1434 | 'teamocil' '_teamocil' 1435 | 'tee' '_tee' 1436 | 'telnet' '_telnet' 1437 | 'tex' '_tex' 1438 | 'texi2any' '_texinfo' 1439 | 'texi2dvi' '_texinfo' 1440 | 'texi2pdf' '_texinfo' 1441 | 'texindex' '_texinfo' 1442 | 'tg' '_topgit' 1443 | 'thor' '_thor' 1444 | 'tidy' '_tidy' 1445 | 'tig' '_git' 1446 | '-tilde-' '_tilde' 1447 | 'time' '_precommand' 1448 | 'timedatectl' '_timedatectl' 1449 | 'timeout' '_timeout' 1450 | 'times' '_nothing' 1451 | 'tin' '_tin' 1452 | 'tkconch' '_twisted' 1453 | 'tkinfo' '_texinfo' 1454 | 'tla' '_tla' 1455 | 'tldr' '_tldr' 1456 | 'tload' '_tload' 1457 | 'tmux' '_tmux' 1458 | 'tmuxinator' '_tmuxinator' 1459 | 'todo' '_devtodo' 1460 | 'todo.sh' '_todo.sh' 1461 | 'toilet' '_toilet' 1462 | 'top' '_top' 1463 | 'totdconfig' '_totd' 1464 | 'touch' '_touch' 1465 | 'tox' '_tox' 1466 | 'tpb' '_tpb' 1467 | 'tput' '_tput' 1468 | 'tr' '_tr' 1469 | 'tracepath' '_tracepath' 1470 | 'tracepath6' '_tracepath' 1471 | 'traceroute' '_hosts' 1472 | 'transmission-remote' '_transmission' 1473 | 'trap' '_trap' 1474 | 'trash' '_trash' 1475 | 'trash-empty' '_trash-empty' 1476 | 'trash-list' '_trash-list' 1477 | 'trash-put' '_trash-put' 1478 | 'trash-restore' '_trash-restore' 1479 | 'tree' '_tree' 1480 | 'trial' '_twisted' 1481 | 'trove' '_openstack' 1482 | 'true' '_nothing' 1483 | 'truncate' '_truncate' 1484 | 'truss' '_truss' 1485 | 'tryaffix' '_ispell' 1486 | 'tsc' '_tsc' 1487 | 'ts-node' '_ts-node' 1488 | 'tty' '_tty' 1489 | 'ttyctl' '_ttyctl' 1490 | 'tunctl' '_uml' 1491 | 'tune2fs' '_tune2fs' 1492 | 'tunes2pod' '_gnupod' 1493 | 'tunes2pod.pl' '_gnupod' 1494 | 'twidge' '_twidge' 1495 | 'twist' '_twisted' 1496 | 'twistd' '_twisted' 1497 | 'txt' '_hosts' 1498 | 'type' '_which' 1499 | 'typeset' '_typeset' 1500 | 'udevadm' '_udevadm' 1501 | 'udiskie' '_udiskie' 1502 | 'udiskie-mount' '_udiskie-mount' 1503 | 'udiskie-umount' '_udiskie-umount' 1504 | 'udisksctl' '_udisks2' 1505 | 'ufw' '_ufw' 1506 | 'ug' '_ug' 1507 | 'ug+' '_ug+' 1508 | 'ugrep' '_ugrep' 1509 | 'ugrep+' '_ugrep+' 1510 | 'ulimit' '_ulimit' 1511 | 'uml_mconsole' '_uml' 1512 | 'uml_moo' '_uml' 1513 | 'uml_switch' '_uml' 1514 | 'umount' '_mount' 1515 | 'unace' '_unace' 1516 | 'unalias' '_aliases' 1517 | 'uname' '_uname' 1518 | 'uncompress' '_compress' 1519 | 'unexpand' '_unexpand' 1520 | 'unfunction' '_functions' 1521 | 'unget' '_sccs' 1522 | 'unhash' '_unhash' 1523 | 'uniq' '_uniq' 1524 | 'unison' '_unison' 1525 | 'units' '_units' 1526 | 'unix2dos' '_dos2unix' 1527 | 'unix2mac' '_dos2unix' 1528 | 'unlimit' '_limits' 1529 | 'unlz4' '_lz4' 1530 | 'unlzma' '_xz' 1531 | 'unpack' '_pack' 1532 | 'unpigz' '_gzip' 1533 | 'unrar' '_rar' 1534 | 'unset' '_vars' 1535 | 'unsetopt' '_setopt' 1536 | 'unshare' '_unshare' 1537 | 'unwrapdiff' '_patchutils' 1538 | 'unxz' '_xz' 1539 | 'unzip' '_zip' 1540 | 'updpkgsums' '_updpkgsums' 1541 | 'uptime' '_uptime' 1542 | 'urxvt' '_urxvt' 1543 | 'urxvt256c' '_urxvt' 1544 | 'urxvt256cc' '_urxvt' 1545 | 'urxvt256c-ml' '_urxvt' 1546 | 'urxvt256c-mlc' '_urxvt' 1547 | 'urxvtc' '_urxvt' 1548 | 'useradd' '_user_admin' 1549 | 'userdel' '_users' 1550 | 'usermod' '_user_admin' 1551 | 'vacuumdb' '_pgsql_utils' 1552 | 'val' '_sccs' 1553 | 'valgrind' '_valgrind' 1554 | '-value-' '_value' 1555 | '-value-,ADB_TRACE,-default-' '_adb' 1556 | '-value-,ANDROID_LOG_TAGS,-default-' '_adb' 1557 | '-value-,ANDROID_SERIAL,-default-' '_adb' 1558 | '-value-,ANSIBLE_INVENTORY_ENABLED,-default-' '_ansible' 1559 | '-value-,ANSIBLE_STDOUT_CALLBACK,-default-' '_ansible' 1560 | '-value-,ANT_ARGS,-default-' '_ant' 1561 | '-value-,CFLAGS,-default-' '_gcc' 1562 | '-value-,CMAKE_GENERATOR,-default-' '_cmake' 1563 | '-value-,CPPFLAGS,-default-' '_gcc' 1564 | '-value-,CXXFLAGS,-default-' '_gcc' 1565 | '-value-,-default-,-command-' '_zargs' 1566 | '-value-,-default-,-default-' '_value' 1567 | '-value-,DISPLAY,-default-' '_x_display' 1568 | '-value-,GREP_OPTIONS,-default-' '_grep' 1569 | '-value-,GZIP,-default-' '_gzip' 1570 | '-value-,LANG,-default-' '_locales' 1571 | '-value-,LANGUAGE,-default-' '_locales' 1572 | '-value-,LD_DEBUG,-default-' '_ld_debug' 1573 | '-value-,LDFLAGS,-default-' '_gcc' 1574 | '-value-,LESSCHARSET,-default-' '_less' 1575 | '-value-,LESS,-default-' '_less' 1576 | '-value-,LOOPDEV_DEBUG,-default-' '_losetup' 1577 | '-value-,LPDEST,-default-' '_printers' 1578 | '-value-,MPD_HOST,-default' '_mpc' 1579 | '-value-,P4CLIENT,-default-' '_perforce' 1580 | '-value-,P4MERGE,-default-' '_perforce' 1581 | '-value-,P4PORT,-default-' '_perforce' 1582 | '-value-,P4USER,-default-' '_perforce' 1583 | '-value-,PERLDOC,-default-' '_perldoc' 1584 | '-value-,PRINTER,-default-' '_printers' 1585 | '-value-,PROMPT2,-default-' '_ps1234' 1586 | '-value-,PROMPT3,-default-' '_ps1234' 1587 | '-value-,PROMPT4,-default-' '_ps1234' 1588 | '-value-,PROMPT,-default-' '_ps1234' 1589 | '-value-,PS1,-default-' '_ps1234' 1590 | '-value-,PS2,-default-' '_ps1234' 1591 | '-value-,PS3,-default-' '_ps1234' 1592 | '-value-,PS4,-default-' '_ps1234' 1593 | '-value-,RPROMPT2,-default-' '_ps1234' 1594 | '-value-,RPROMPT,-default-' '_ps1234' 1595 | '-value-,RPS1,-default-' '_ps1234' 1596 | '-value-,RPS2,-default-' '_ps1234' 1597 | '-value-,SPROMPT,-default-' '_ps1234' 1598 | '-value-,TERM,-default-' '_terminals' 1599 | '-value-,TERMINFO_DIRS,-default-' '_dir_list' 1600 | '-value-,TZ,-default-' '_time_zone' 1601 | '-value-,VALGRIND_OPTS,-default-' '_valgrind' 1602 | '-value-,WWW_HOME,-default-' '_urls' 1603 | '-value-,XML_CATALOG_FILES,-default-' '_xmlsoft' 1604 | '-value-,XZ_DEFAULTS,-default-' '_xz' 1605 | '-value-,XZ_OPT,-default-' '_xz' 1606 | '-vared-' '_in_vared' 1607 | 'vared' '_vared' 1608 | 'vboxheadless' '_virtualbox' 1609 | 'VBoxHeadless' '_virtualbox' 1610 | 'vboxmanage' '_virtualbox' 1611 | 'VBoxManage' '_virtualbox' 1612 | 'vcs_info_hookadd' '_vcs_info' 1613 | 'vcs_info_hookdel' '_vcs_info' 1614 | 'vi' '_vi' 1615 | 'view' '_vi' 1616 | 'vim' '_vim' 1617 | 'vimdiff' '_vim' 1618 | 'virsh' '_libvirt' 1619 | 'virt-admin' '_libvirt' 1620 | 'virt-host-validate' '_libvirt' 1621 | 'virt-pki-validate' '_libvirt' 1622 | 'virt-xml-validate' '_libvirt' 1623 | 'visudo' '_visudo' 1624 | 'vitrage' '_openstack' 1625 | 'vmstat' '_vmstat' 1626 | 'vncserver' '_vnc' 1627 | 'vncviewer' '_vnc' 1628 | 'vnstat' '_vnstat' 1629 | 'vorbiscomment' '_vorbis' 1630 | 'vpnc' '_vpnc' 1631 | 'vpnc-connect' '_vpnc' 1632 | 'vserver' '_vserver' 1633 | 'w' '_w' 1634 | 'w3m' '_w3m' 1635 | 'wait' '_wait' 1636 | 'watch' '_watch' 1637 | 'watcher' '_openstack' 1638 | 'wc' '_wc' 1639 | 'wemux' '_wemux' 1640 | 'wget' '_wget' 1641 | 'wg-quick' '_wg-quick' 1642 | 'what' '_sccs' 1643 | 'whatis' '_man' 1644 | 'whence' '_which' 1645 | 'where' '_which' 1646 | 'whereis' '_whereis' 1647 | 'which' '_which' 1648 | 'who' '_who' 1649 | 'whoami' '_nothing' 1650 | 'whois' '_whois' 1651 | 'whom' '_mh' 1652 | 'wiggle' '_wiggle' 1653 | 'wipefs' '_wipefs' 1654 | 'wl-copy' '_wl-copy' 1655 | 'wlogout' '_wlogout' 1656 | 'wl-paste' '_wl-paste' 1657 | 'wodim' '_cdrecord' 1658 | 'wpa_cli' '_wpa_cli' 1659 | 'wpctl' '_wpctl' 1660 | 'write' '_users_on' 1661 | 'www' '_webbrowser' 1662 | 'xargs' '_xargs' 1663 | 'xattr' '_attr' 1664 | 'xauth' '_xauth' 1665 | 'xautolock' '_xautolock' 1666 | 'xclip' '_xclip' 1667 | 'xdpyinfo' '_x_utils' 1668 | 'xdvi' '_xdvi' 1669 | 'xelatex' '_tex' 1670 | 'xetex' '_tex' 1671 | 'xev' '_x_utils' 1672 | 'xfd' '_x_utils' 1673 | 'xfig' '_xfig' 1674 | 'xfontsel' '_x_utils' 1675 | 'xfreerdp' '_rdesktop' 1676 | 'xhost' '_x_utils' 1677 | 'xinput' '_xinput' 1678 | 'xkill' '_x_utils' 1679 | 'xli' '_xloadimage' 1680 | 'xloadimage' '_xloadimage' 1681 | 'xlsatoms' '_x_utils' 1682 | 'xlsclients' '_x_utils' 1683 | 'xml' '_xmlstarlet' 1684 | 'xmllint' '_xmlsoft' 1685 | 'xmlstarlet' '_xmlstarlet' 1686 | 'xmms2' '_xmms2' 1687 | 'xmodmap' '_xmodmap' 1688 | 'xmosaic' '_webbrowser' 1689 | 'xon' '_x_utils' 1690 | 'xournal' '_xournal' 1691 | 'xpdf' '_xpdf' 1692 | 'xping' '_hosts' 1693 | 'xprop' '_x_utils' 1694 | 'xrandr' '_xrandr' 1695 | 'xrdb' '_x_utils' 1696 | 'xscreensaver-command' '_xscreensaver' 1697 | 'xsel' '_xsel' 1698 | 'xset' '_xset' 1699 | 'xsetbg' '_xloadimage' 1700 | 'xsetroot' '_x_utils' 1701 | 'xsltproc' '_xmlsoft' 1702 | 'xterm' '_xterm' 1703 | 'xtightvncviewer' '_vnc' 1704 | 'xtp' '_imagemagick' 1705 | 'xv' '_xv' 1706 | 'xview' '_xloadimage' 1707 | 'xvnc4viewer' '_vnc' 1708 | 'xvncviewer' '_vnc' 1709 | 'xwd' '_x_utils' 1710 | 'xwininfo' '_x_utils' 1711 | 'xwit' '_xwit' 1712 | 'xwud' '_x_utils' 1713 | 'xxd' '_xxd' 1714 | 'xz' '_xz' 1715 | 'xzcat' '_xz' 1716 | 'yafc' '_yafc' 1717 | 'yarn' '_yarn' 1718 | 'yash' '_sh' 1719 | 'yay' '_yay' 1720 | 'ypbind' '_yp' 1721 | 'ypcat' '_yp' 1722 | 'ypmatch' '_yp' 1723 | 'yppasswd' '_yp' 1724 | 'yppoll' '_yp' 1725 | 'yppush' '_yp' 1726 | 'ypserv' '_yp' 1727 | 'ypset' '_yp' 1728 | 'ypwhich' '_yp' 1729 | 'ypxfr' '_yp' 1730 | 'ytalk' '_other_accounts' 1731 | 'zargs' '_zargs' 1732 | 'zcalc' '_zcalc' 1733 | '-zcalc-line-' '_zcalc_line' 1734 | 'zcash-cli' '_zcash-cli' 1735 | 'zcat' '_zcat' 1736 | 'zcompile' '_zcompile' 1737 | 'zcp' '_zmv' 1738 | 'zdb' '_zfs' 1739 | 'zdelattr' '_zattr' 1740 | 'zdump' '_zdump' 1741 | 'zeal' '_zeal' 1742 | 'zed' '_zed' 1743 | 'zegrep' '_grep' 1744 | 'zen' '_webbrowser' 1745 | 'zf_chgrp' '_chown' 1746 | 'zf_chmod' '_chmod' 1747 | 'zf_chown' '_chown' 1748 | 'zfgrep' '_grep' 1749 | 'zf_ln' '_ln' 1750 | 'zf_mkdir' '_mkdir' 1751 | 'zf_mv' '_mv' 1752 | 'zf_rm' '_rm' 1753 | 'zf_rmdir' '_rmdir' 1754 | 'zfs' '_zfs' 1755 | 'zgetattr' '_zattr' 1756 | 'zgrep' '_grep' 1757 | 'zip' '_zip' 1758 | 'zipinfo' '_zip' 1759 | 'zle' '_zle' 1760 | 'zlistattr' '_zattr' 1761 | 'zln' '_zmv' 1762 | 'zmail' '_mail' 1763 | 'zmodload' '_zmodload' 1764 | 'zmv' '_zmv' 1765 | 'zone' '_hosts' 1766 | 'zparseopts' '_zparseopts' 1767 | 'zpool' '_zfs' 1768 | 'zpty' '_zpty' 1769 | 'zsetattr' '_zattr' 1770 | 'zsh' '_zsh' 1771 | 'zsh-mime-handler' '_zsh-mime-handler' 1772 | 'zsocket' '_zsocket' 1773 | 'zstat' '_stat' 1774 | 'zstyle' '_zstyle' 1775 | 'ztodo' '_ztodo' 1776 | 'zun' '_openstack' 1777 | 'zxpdf' '_xpdf' 1778 | ) 1779 | 1780 | _services=( 1781 | 'bzcat' 'bunzip2' 1782 | 'gchgrp' 'chgrp' 1783 | 'gchown' 'chown' 1784 | 'gnupod_addsong.pl' 'gnupod_addsong' 1785 | 'gnupod_check.pl' 'gnupod_check' 1786 | 'gnupod_INIT.pl' 'gnupod_INIT' 1787 | 'gnupod_search.pl' 'gnupod_search' 1788 | 'gpg2' 'gpg' 1789 | 'gzcat' 'gunzip' 1790 | 'https' 'http' 1791 | 'iceweasel' 'firefox' 1792 | 'lzcat' 'unxz' 1793 | 'lzma' 'xz' 1794 | 'Mail' 'mail' 1795 | 'mailx' 'mail' 1796 | 'mktunes.pl' 'mktunes' 1797 | 'nail' 'mail' 1798 | 'ncl' 'nc' 1799 | 'nedit-nc' 'nc' 1800 | 'pacman.static' 'pacman' 1801 | 'pcat' 'unpack' 1802 | '-redirect-,<,bunzip2' 'bunzip2' 1803 | '-redirect-,<,bzip2' 'bzip2' 1804 | '-redirect-,>,bzip2' 'bunzip2' 1805 | '-redirect-,<,compress' 'compress' 1806 | '-redirect-,>,compress' 'uncompress' 1807 | '-redirect-,<,gunzip' 'gunzip' 1808 | '-redirect-,<,gzip' 'gzip' 1809 | '-redirect-,>,gzip' 'gunzip' 1810 | '-redirect-,<,uncompress' 'uncompress' 1811 | '-redirect-,<,unxz' 'unxz' 1812 | '-redirect-,<,xz' 'xz' 1813 | '-redirect-,>,xz' 'unxz' 1814 | 'remsh' 'rsh' 1815 | 'slogin' 'ssh' 1816 | 'svnadmin-static' 'svnadmin' 1817 | 'svnlite' 'svn' 1818 | 'svnliteadmin' 'svnadmin' 1819 | 'tunes2pod.pl' 'tunes2pod' 1820 | 'unlzma' 'unxz' 1821 | 'vboxheadless' 'vboxheadless' 1822 | 'VBoxHeadless' 'vboxheadless' 1823 | 'vboxmanage' 'vboxmanage' 1824 | 'VBoxManage' 'vboxmanage' 1825 | 'xelatex' 'latex' 1826 | 'xetex' 'tex' 1827 | 'xzcat' 'unxz' 1828 | 'zf_chgrp' 'chgrp' 1829 | 'zf_chown' 'chown' 1830 | ) 1831 | 1832 | _patcomps=( 1833 | '*/(init|rc[0-9S]#).d/*' '_init_d' 1834 | ) 1835 | 1836 | _postpatcomps=( 1837 | '_*' '_compadd' 1838 | 'c++-*' '_gcc' 1839 | 'g++-*' '_gcc' 1840 | 'gcc-*' '_gcc' 1841 | 'gem[0-9.]#' '_gem' 1842 | 'lua[0-9.-]##' '_lua' 1843 | '(p[bgpn]m*|*top[bgpn]m)' '_pbm' 1844 | 'php[0-9.-]' '_php' 1845 | 'pip[0-9.]#' '_pip' 1846 | 'pydoc[0-9.]#' '_pydoc' 1847 | 'python[0-9.]#' '_python' 1848 | 'qemu(|-system-*)' '_qemu' 1849 | 'rmlint.*.sh' '_rmlint' 1850 | '(ruby|[ei]rb)[0-9.]#' '_ruby' 1851 | 'shasum(|5).*' '_shasum' 1852 | '(texi(2*|ndex))' '_texi' 1853 | '(tiff*|*2tiff|pal2rgb)' '_tiff' 1854 | '-value-,CCACHE_*,-default-' '_ccache' 1855 | '-value-,CGO*,-default-' '_golang' 1856 | '-value-,(ftp|http(|s))_proxy,-default-' '_urls' 1857 | '-value-,GO*,-default-' '_golang' 1858 | '-value-,LC_*,-default-' '_locales' 1859 | '-value-,*path,-default-' '_directories' 1860 | '-value-,*PATH,-default-' '_dir_list' 1861 | '-value-,RUBY(LIB|OPT|PATH),-default-' '_ruby' 1862 | '*/X11(|R<4->)/*' '_x_arguments' 1863 | 'yodl(|2*)' '_yodl' 1864 | 'zf*' '_zftp' 1865 | ) 1866 | 1867 | _compautos=( 1868 | '_call_program' '+X' 1869 | ) 1870 | 1871 | zle -C _bash_complete-word .complete-word _bash_completions 1872 | zle -C _bash_list-choices .list-choices _bash_completions 1873 | zle -C _complete_debug .complete-word _complete_debug 1874 | zle -C _complete_help .complete-word _complete_help 1875 | zle -C _complete_tag .complete-word _complete_tag 1876 | zle -C _correct_filename .complete-word _correct_filename 1877 | zle -C _correct_word .complete-word _correct_word 1878 | zle -C _expand_alias .complete-word _expand_alias 1879 | zle -C _expand_word .complete-word _expand_word 1880 | zle -C _history-complete-newer .complete-word _history_complete_word 1881 | zle -C _history-complete-older .complete-word _history_complete_word 1882 | zle -C _list_expansions .list-choices _expand_word 1883 | zle -C _most_recent_file .complete-word _most_recent_file 1884 | zle -C _next_tags .list-choices _next_tags 1885 | zle -C _read_comp .complete-word _read_comp 1886 | bindkey '^X^R' _read_comp 1887 | bindkey '^X?' _complete_debug 1888 | bindkey '^XC' _correct_filename 1889 | bindkey '^Xa' _expand_alias 1890 | bindkey '^Xc' _correct_word 1891 | bindkey '^Xd' _list_expansions 1892 | bindkey '^Xe' _expand_word 1893 | bindkey '^Xh' _complete_help 1894 | bindkey '^Xm' _most_recent_file 1895 | bindkey '^Xn' _next_tags 1896 | bindkey '^Xt' _complete_tag 1897 | bindkey '^X~' _bash_list-choices 1898 | bindkey '^[,' _history-complete-newer 1899 | bindkey '^[/' _history-complete-older 1900 | bindkey '^[~' _bash_complete-word 1901 | 1902 | autoload -Uz _afew _alacritty _android _archlinux-java _artisan \ 1903 | _atach _avdmanager _bat _bazel _bitcoin-cli \ 1904 | _bluetoothctl _bootctl _bower _bundle _busctl \ 1905 | _bwrap _cap _cargo _cask _ccache \ 1906 | _cf _checkupdates _choc _chromium _clang-check \ 1907 | _clang-format _clang-tidy _cmake _code _coffee \ 1908 | _conan _concourse _console _coredumpctl _cppcheck \ 1909 | _ctr _curl _dad _dart _dget \ 1910 | _dhcpcd _diana _direnv _docker _docpad \ 1911 | _dolphin _dotnet _downgrade _drush _dunst \ 1912 | _dunstctl _ecdsautil _eksctl _emacs _emacsclient \ 1913 | _emulator _envdir _exportfs _eza _fab \ 1914 | _fail2ban-client _ffind _flatpak _fleetctl _flutter \ 1915 | _foot _footclient _fvm _fwupdmgr _gas \ 1916 | _gh _ghc _gist _git-flow _git-pulls \ 1917 | _git-revise _git-wtf _glances _golang _google \ 1918 | _gpgconf _grpcurl _gtk-launch _hello _hg \ 1919 | _hledger _homestead _hostnamectl _httpie _hyprctl \ 1920 | _hyprpm _ibus _include-what-you-use _inxi _jmeter \ 1921 | _jmeter-plugins _jonas _journalctl _jrnl _kak \ 1922 | _kde-inhibit _kernel-install _kitchen _kitty _knife \ 1923 | _konsole _kqml _krunner _kscreen-doctor _kubectl \ 1924 | _language_codes _libinput _lilypond _localectl _loginctl \ 1925 | _lsd _lunchy _machinectl _mc _meson \ 1926 | _middleman _mina _mix _mkcert _mssh \ 1927 | _mussh _mvn _nano _nanoc _neofetch \ 1928 | _networkctl _networkQuality _nftables _ngrok _ninja \ 1929 | _node _nvm _oomctl _openssl _openvpn3 \ 1930 | _optirun _paccache _pacdiff _pacignore _paclist \ 1931 | _paclog-pkglist _pacman _pacscripts _pacsearch _pacsort \ 1932 | _pactree _parallel _paru _patool _periscope \ 1933 | _pgsql_utils _phing _pip _pixz _pkcon \ 1934 | _pkgfile _plasmashell _plasmoidviewer _play _playerctl \ 1935 | _pm2 _poetry _port _protoc _psd \ 1936 | _pulseaudio _pygmentize _qmk _rails _ralio \ 1937 | _rankmirrors _redis-cli _resolvectl _rfkill _rkt \ 1938 | _rmlint _rslsync _rspec _rsvm _rubocop \ 1939 | _sbt _scala _screencapture _scrub _sdd \ 1940 | _sd_hosts_or_user_at_host _sdkmanager _sd_machines _sd_outputmodes _sd_unit_files \ 1941 | _setcap _setup.py _sfdx _shellcheck _showoff \ 1942 | _snapper _srm _stack _starship _streamlink \ 1943 | _subliminal _supervisorctl _svm _swayidle _swaylock \ 1944 | _swaync _swaync-client _swww _systemctl _systemd \ 1945 | _systemd-analyze _systemd-delta _systemd-inhibit _systemd-nspawn _systemd-path \ 1946 | _systemd-run _systemd-tmpfiles _systemsettings _teamocil _thor \ 1947 | _timedatectl _tldr _tmuxinator _tox _trash \ 1948 | _trash-empty _trash-list _trash-put _trash-restore _tsc \ 1949 | _ts-node _udevadm _udiskie _udiskie-canonical_paths _udiskie-mount \ 1950 | _udiskie-umount _udisks2 _udisksctl _ufw _ug \ 1951 | _ug+ _ugrep _ugrep+ _updpkgsums _virtualbox \ 1952 | _vnstat _wemux _wg-quick _wl-copy _wlogout \ 1953 | _wl-paste _wpctl _xsel _yarn _yay \ 1954 | _zcash-cli _cdr _all_labels _all_matches _alternative \ 1955 | _approximate _arg_compile _arguments _bash_completions _cache_invalid \ 1956 | _call_function _combination _complete _complete_debug _complete_help \ 1957 | _complete_help_generic _complete_tag _comp_locale _correct _correct_filename \ 1958 | _correct_word _describe _description _dispatch _expand \ 1959 | _expand_alias _expand_word _extensions _external_pwds _generic \ 1960 | _guard _history _history_complete_word _ignored _list \ 1961 | _main_complete _match _menu _message _most_recent_file \ 1962 | _multi_parts _next_label _next_tags _normal _nothing \ 1963 | _numbers _oldlist _pick_variant _prefix _read_comp \ 1964 | _regex_arguments _regex_words _requested _retrieve_cache _sep_parts \ 1965 | _sequence _set_command _setup _store_cache _sub_commands \ 1966 | _tags _user_expand _values _wanted _acpi \ 1967 | _acpitool _alsa-utils _analyseplugin _basenc _brctl \ 1968 | _btrfs _capabilities _chattr _chcon _choom \ 1969 | _chrt _cpupower _cryptsetup _dkms _e2label \ 1970 | _ethtool _findmnt _free _fuse_arguments _fusermount \ 1971 | _fuse_values _gpasswd _htop _iconvconfig _ionice \ 1972 | _ipset _iptables _iwconfig _kpartx _losetup \ 1973 | _lsattr _lsblk _lsns _lsusb _ltrace \ 1974 | _mat _mat2 _mdadm _mii-tool _modutils \ 1975 | _mondo _networkmanager _nsenter _opkg _perf \ 1976 | _pidof _pmap _qdbus _schedtool _selinux_contexts \ 1977 | _selinux_roles _selinux_types _selinux_users _setpriv _setsid \ 1978 | _slabtop _ss _sshfs _strace _sysstat \ 1979 | _tload _tpb _tracepath _tune2fs _uml \ 1980 | _unshare _valgrind _vserver _wakeup_capable_devices _wipefs \ 1981 | _wpa_cli _a2ps _aap _abcde _absolute_command_paths \ 1982 | _ack _adb _ansible _ant _antiword \ 1983 | _apachectl _apm _arch_archives _arch_namespace _arp \ 1984 | _arping _asciidoctor _asciinema _at _attr \ 1985 | _augeas _avahi _awk _base64 _basename \ 1986 | _bash _baudrates _baz _beep _bibtex \ 1987 | _bind_addresses _bison _bittorrent _bogofilter _bpf_filters \ 1988 | _bpython _bzip2 _bzr _cabal _cal \ 1989 | _calendar _canonical_paths _cat _ccal _cdcd \ 1990 | _cdrdao _cdrecord _chkconfig _chmod _chown \ 1991 | _chroot _chsh _cksum _clay _cmdambivalent \ 1992 | _cmdstring _cmp _column _comm _composer \ 1993 | _compress _configure _cowsay _cp _cpio \ 1994 | _cplay _crontab _cscope _csplit _cssh \ 1995 | _ctags _ctags_tags _curl _cut _cvs \ 1996 | _darcs _date _date_formats _dates _dbus \ 1997 | _dconf _dd _devtodo _df _dhclient \ 1998 | _dict _dict_words _diff _diff3 _diff_options \ 1999 | _diffstat _dig _directories _dir_list _django \ 2000 | _dmesg _dmidecode _dns_types _doas _domains \ 2001 | _dos2unix _drill _dropbox _dsh _dtruss \ 2002 | _du _dvi _ecasound _ed _elfdump \ 2003 | _elinks _email_addresses _enscript _entr _env \ 2004 | _espeak _etags _fakeroot _feh _fetchmail \ 2005 | _ffmpeg _figlet _file_modes _files _file_systems \ 2006 | _find _find_net_interfaces _finger _flac _flex \ 2007 | _fmt _fold _fortune _fsh _fuser \ 2008 | _gcc _gcore _gdb _gem _genisoimage \ 2009 | _getconf _getent _getfacl _getmail _getopt \ 2010 | _ghostscript _git _global _global_tags _gnu_generic \ 2011 | _gnupod _gnutls _go _gpg _gphoto2 \ 2012 | _gprof _gradle _graphicsmagick _grep _groff \ 2013 | _groups _growisofs _gsettings _guilt _gzip \ 2014 | _have_glob_qual _head _hexdump _host _hostname \ 2015 | _hosts _iconv _id _ifconfig _iftop \ 2016 | _imagemagick _initctl _init_d _install _iostat \ 2017 | _ip _ipsec _irssi _ispell _java \ 2018 | _java_class _joe _join _jq _killall \ 2019 | _knock _kvno _last _ldconfig _ldd \ 2020 | _ld_debug _less _lha _libvirt _links \ 2021 | _list_files _lldb _ln _loadkeys _locale \ 2022 | _localedef _locales _locate _logger _look \ 2023 | _lp _ls _lsof _lua _luarocks \ 2024 | _lynx _lz4 _lzop _mail _mailboxes \ 2025 | _make _man _md5sum _mencal _mh \ 2026 | _mime_types _mkdir _mkfifo _mknod _mktemp \ 2027 | _module _monotone _moosic _mosh _mount \ 2028 | _mpc _mt _mtools _mtr _mutt \ 2029 | _mv _my_accounts _myrepos _mysqldiff _mysql_utils \ 2030 | _ncftp _netcat _net_interfaces _netstat _newsgroups \ 2031 | _nginx _ngrep _nice _nkf _nl \ 2032 | _nm _nmap _npm _nslookup _numfmt \ 2033 | _objdump _object_files _od _openstack _opustools \ 2034 | _other_accounts _pack _pandoc _paste _patch \ 2035 | _patchutils _path_commands _path_files _pax _pbm \ 2036 | _pdf _perforce _perl _perl_basepods _perldoc \ 2037 | _perl_modules _pgids _pgrep _php _picocom \ 2038 | _pids _pine _ping _pip _pkgadd \ 2039 | _pkg-config _pkginfo _pkg_instance _pkgrm _pon \ 2040 | _ports _postfix _postgresql _postscript _pr \ 2041 | _printenv _printers _process_names _prove _ps \ 2042 | _pspdf _psutils _ptx _pump _pv \ 2043 | _pwgen _pydoc _python _python_modules _qemu \ 2044 | _quilt _rake _ranlib _rar _rclone \ 2045 | _rcs _readelf _readlink _remote_files _renice \ 2046 | _ri _rlogin _rm _rmdir _route \ 2047 | _rrdtool _rsync _rubber _ruby _runit \ 2048 | _samba _sccs _scons _screen _script \ 2049 | _seafile _sed _seq _service _services \ 2050 | _setfacl _sh _shasum _showmount _shred \ 2051 | _shuf _shutdown _signals _sisu _slrn \ 2052 | _smartmontools _socket _sort _spamassassin _split \ 2053 | _sqlite _sqsh _ssh _ssh_hosts _stat \ 2054 | _stdbuf _stgit _stow _strings _strip \ 2055 | _stty _su _subversion _sudo _surfraw \ 2056 | _swaks _swanctl _swift _sys_calls _sysctl \ 2057 | _tac _tail _tar _tar_archive _tardy \ 2058 | _tcpdump _tcptraceroute _tee _telnet _terminals \ 2059 | _tex _texi _texinfo _tidy _tiff \ 2060 | _tilde_files _timeout _time_zone _tin _tla \ 2061 | _tmux _todo.sh _toilet _top _topgit \ 2062 | _totd _touch _tput _tr _transmission \ 2063 | _tree _truncate _truss _tty _ttys \ 2064 | _twidge _twisted _umountable _unace _uname \ 2065 | _unexpand _uniq _unison _units _uptime \ 2066 | _urls _user_admin _user_at_host _users _users_on \ 2067 | _vi _vim _visudo _vmstat _vorbis \ 2068 | _vpnc _w _w3m _watch _wc \ 2069 | _webbrowser _wget _whereis _who _whois \ 2070 | _wiggle _xargs _xmlsoft _xmlstarlet _xmms2 \ 2071 | _xxd _xz _yafc _yodl _yp \ 2072 | _zcat _zdump _zfs _zfs_dataset _zfs_pool \ 2073 | _zip _zsh _acroread _code _dcop \ 2074 | _eog _evince _geany _gnome-gv _gqview \ 2075 | _gv _kdeconnect _kfmclient _matlab _mozilla \ 2076 | _mplayer _mupdf _nautilus _nedit _netscape \ 2077 | _okular _pdftk _qiv _rdesktop _setxkbmap \ 2078 | _sublimetext _urxvt _vnc _x_arguments _xauth \ 2079 | _xautolock _x_borderwidth _xclip _x_color _x_colormapid \ 2080 | _x_cursor _x_display _xdvi _x_extension _xfig \ 2081 | _x_font _xft_fonts _x_geometry _xinput _x_keysym \ 2082 | _xloadimage _x_locale _x_modifier _xmodmap _x_name \ 2083 | _xournal _xpdf _xrandr _x_resource _xscreensaver \ 2084 | _x_selection_timeout _xset _xt_arguments _xterm _x_title \ 2085 | _xt_session_id _x_utils _xv _x_visual _x_window \ 2086 | _xwit _zeal _add-zle-hook-widget _add-zsh-hook _alias \ 2087 | _aliases __arguments _arrays _assign _autocd \ 2088 | _bindkey _brace_parameter _builtin _cd _command \ 2089 | _command_names _compadd _compdef _completers _condition \ 2090 | _default _delimiters _directory_stack _dirs _disable \ 2091 | _dynamic_directory_name _echotc _echoti _emulate _enable \ 2092 | _equal _exec _fc _file_descriptors _first \ 2093 | _functions _globflags _globqual_delims _globquals _hash \ 2094 | _history_modifiers _in_vared _jobs _jobs_bg _jobs_builtin \ 2095 | _jobs_fg _kill _limit _limits _math \ 2096 | _math_params _mere _module_math_func _options _options_set \ 2097 | _options_unset _parameter _parameters _precommand _print \ 2098 | _prompt _ps1234 _read _redirect _run-help \ 2099 | _sched _set _setopt _source _strftime \ 2100 | _subscript _suffix_alias_files _tcpsys _tilde _trap \ 2101 | _ttyctl _typeset _ulimit _unhash _user_math_func \ 2102 | _value _vared _vars _vcs_info _vcs_info_hooks \ 2103 | _wait _which _widgets _zargs _zattr \ 2104 | _zcalc _zcalc_line _zcompile _zed _zftp \ 2105 | _zle _zmodload _zmv _zparseopts _zpty \ 2106 | _zsh-mime-handler _zsocket _zstyle _ztodo 2107 | autoload -Uz +X _call_program 2108 | 2109 | typeset -gUa _comp_assocs 2110 | _comp_assocs=( '' ) 2111 | 2112 | #omz revision: 2113 | #omz fpath: /usr/share/oh-my-zsh//custom/plugins/zsh-syntax-highlighting /usr/share/oh-my-zsh//custom/plugins/zsh-autosuggestions /usr/share/oh-my-zsh//custom/plugins/zsh-256color /usr/share/oh-my-zsh//plugins/sudo /usr/share/oh-my-zsh//plugins/git /usr/share/oh-my-zsh//functions /usr/share/oh-my-zsh//completions /home/bots/.cache/oh-my-zsh/completions /usr/local/share/zsh/site-functions /usr/share/zsh/site-functions /usr/share/zsh/functions/Calendar /usr/share/zsh/functions/Chpwd /usr/share/zsh/functions/Completion /usr/share/zsh/functions/Completion/Base /usr/share/zsh/functions/Completion/Linux /usr/share/zsh/functions/Completion/Unix /usr/share/zsh/functions/Completion/X /usr/share/zsh/functions/Completion/Zsh /usr/share/zsh/functions/Exceptions /usr/share/zsh/functions/MIME /usr/share/zsh/functions/Math /usr/share/zsh/functions/Misc /usr/share/zsh/functions/Newuser /usr/share/zsh/functions/Prompts /usr/share/zsh/functions/TCP /usr/share/zsh/functions/VCS_Info /usr/share/zsh/functions/VCS_Info/Backends /usr/share/zsh/functions/Zftp /usr/share/zsh/functions/Zle 2114 | --------------------------------------------------------------------------------