__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

www-data@216.73.216.153: ~ $
#compdef systemsettings kcmshell5 kcmshell6 kinfocenter

# SPDX-FileCopyrightText: 2022 ivan tkachenko <me@ratijas.tk>
#
# SPDX-License-Identifier: GPL-2.0-or-later

# standard stuff for `_arguments -C`
local context state state_descr line
typeset -A opt_args

local ret=1 kcm_line kcm_name kcm_desc quantity
local -a lines kcm_list kcmshell
local -A kcm_assoc

if [[ "$service" == "kcmshell5" || "$service" == "kcmshell6" ]]; then
  kcmshell=(
    '--caption=[Use a specific caption for the window]:caption:'
    '--icon=[Use a specific icon for the window]:icon:'
  )
  quantity='*'
  if [[ "$service" == "kcmshell6" ]]; then
    kcmshell+=(
      '--highlight[Show an indicator when settings have changed from their default value]'
    )
  fi
else
  quantity='1'
fi

_arguments -C \
  $kcmshell \
  '(- *)--help[Displays help on commandline options.]' \
  '(- *)--list[List all possible modules]' \
  '--args=[Arguments for the module]:arguments:' \
  "$quantity:module:->kcm" \
  && ret=0

case $state in
  kcm)
    lines=( ${(f)"$(_call_program kcm-list $service --list)"} )
    lines[1]=()  # first line is header, drop it

    kcm_assoc=()
    for kcm_line in $lines ; do
      # split at hypen into name and description, and strip whitespace
      kcm_name=${kcm_line%% *}
      kcm_desc=${kcm_line##*- }
      # skip already specified KCMs except for current word
      if (( $words[(Ie)$kcm_name] && $words[(Ie)$kcm_name] != $CURRENT )); then
        continue
      fi
      # some kcm names may get duplicates e.g. because of development setup,
      # store them in hash to automatically deduplicate
      kcm_assoc[$kcm_name]=$kcm_desc
    done

    kcm_list=()
    for kcm_name kcm_desc in ${(@kv)kcm_assoc} ; do  # iterate over array (@) of keys (k) and values (v)
      kcm_desc=${kcm_desc//:/\\:}  # espace double colons for _describe
      kcm_list+=( "${kcm_name}:${kcm_desc}" )
    done

    _describe -t kcm 'settings module' kcm_list && ret=0
    ;;
esac

return $ret

Filemanager

Name Type Size Permission Actions
_bluetoothctl File 2.35 KB 0644
_fastfetch File 2.97 KB 0644
_insmod File 552 B 0644
_kdeconnect File 2.63 KB 0644
_libinput File 9.15 KB 0644
_lsmod File 397 B 0644
_rmmod File 699 B 0644
_systemsettings File 1.94 KB 0644
_udisks2 File 2.42 KB 0644
_upower File 698 B 0644
Filemanager