commit b74ec1cf8f64580b2470f257bfe0acf787576a0c Author: TheCynicalLiger Date: Sat Jan 9 17:30:42 2021 +0000 first commit diff --git a/.bash_aliases b/.bash_aliases new file mode 100755 index 000000000..d86a6514b --- /dev/null +++ b/.bash_aliases @@ -0,0 +1,456 @@ +#!/usr/bin/bash +EDITOR='code' + +## Reset Colors +Reset='\e[38;5;15m' +### Custom colors +Magenta='\e[38;5;90m' +Rrange='\e[38;5;214m' +Purple='\e[38;5;98m' +Yellow='\e[38;5;228m' +Green='\e[38;5;84m' +Blue='\e[38;5;75m' +Cyan='\e[38;5;50m' +Plum='\e[38;5;414m' +Red='\e[38;5;124m' +### Custom colors + +### Functions +function editalias () { + read -r "response?Are you sure you want to edit .bash_aliases? [Y/n] " + sudo echo -e "${Magenta}$(whoami) ${Reset}has used the ${Cyan}editalias ${Reset}alias." + response=${response:l} #tolower + if [[ $response =~ ^(yes|y| ) ]] || [[ -z $response ]]; then + ${EDITOR} ~/.bash_aliases + source ~/.zshrc + echo -e "${Green} ✔ ${Yellow}bash_aliases edited and reloaded.${Green} ✔ ${Reset}" + fi + return +} + +function trashput () { + if [[ $1 != '' ]]; then + read -r "response?Are you sure you want to trash $1? [Y/n] " + sudo echo -e "${Magenta}$(whoami) ${Reset}has used a ${Cyan}trash-cli ${Reset}alias." + response=${response:l} #tolower + if [[ $response =~ ^(yes|y| ) ]] || [[ -z $response ]]; then + trash-put $1 + echo -e "${Green} ✔ ${Yellow}$1 has been sent to the trash.${Green} ✔ ${Reset}" + fi + return + fi + echo -e "${Red} ❌ ${Rrange}Please state what file you wanted to delete.${Red} ❌ ${Reset}" +} + +function trashempty () { + read -r "response?Are you sure you want to empty the trash? [Y/n] " + sudo echo -e "${Magenta}$(whoami) ${Reset}has used a ${Cyan}trash-cli ${Reset}alias." + response=${response:l} #tolower + if [[ $response =~ ^(yes|y| ) ]] || [[ -z $response ]]; then + trash-empty + echo -e "${Green} ✔ ${Yellow}Trash has been emptied.${Green} ✔ ${Reset}" + fi + return +} + +function trashrestore () { + if [[ $1 != '' ]]; then + read -r "response?Are you sure you want to restore $1? [Y/n] " + sudo echo -e "${Magenta}$(whoami) ${Reset}has used a ${Cyan}trash-cli ${Reset}alias." + response=${response:l} #tolower + if [[ $response =~ ^(yes|y| ) ]] || [[ -z $response ]]; then + trash-restore $1 + echo -e "${Green} ✔ ${Yellow}$1 has been restored from the trash.${Green} ✔ ${Reset}" + fi + return + fi + echo -e "${Red} ❌ ${Rrange}Please state what file you wanted to restore.${Red} ❌ ${Reset}" +} + +function trashrm () { + if [[ $1 != '' ]]; then + read -r "response?Are you sure you want to remove $1? [Y/n] " + sudo echo -e "${Magenta}$(whoami) ${Reset}has used a ${Cyan}trash-cli ${Reset}alias." + response=${response:l} #tolower + if [[ $response =~ ^(yes|y| ) ]] || [[ -z $response ]]; then + trash-rm $1 + echo -e "${Green} ✔ ${Yellow}$1 has been removed from the trash.${Green} ✔ ${Reset}" + fi + return + fi + echo -e "${Red} ❌ ${Rrange}Please state what file you wanted to remove.${Red} ❌ ${Reset}" +} + +function updaterepo () { + read -r "response?Are you sure you want to update cynicalteam arch repo? [Y/n] " + sudo echo -e "${Magenta}$(whoami) ${Reset}has used the ${Cyan}updaterepo ${Reset}alias." + response=${response:l} #tolower + if [[ $response =~ ^(yes|y| ) ]] || [[ -z $response ]]; then + cd ~/.gitlabs/ArchRepo/x86_64/ + ./updaterepo.sh + cd "$OLDPWD" + echo -e "${Green} ✔ ${Yellow}cynicalteam arch repo has been updated.${Green} ✔ ${Reset}" + fi + return +} + +function updatereadme () { + read -r "response?Are you sure you want to update cynicalteam arch repo? [Y/n] " + sudo echo -e "${Magenta}$(whoami) ${Reset}has used the ${Cyan}updaterepo ${Reset}alias." + response=${response:l} #tolower + if [[ $response =~ ^(yes|y| ) ]] || [[ -z $response ]]; then + cd ~/.gitlabs/ArchRepo/docs/ + python updatereadme.py + cd "$OLDPWD" + cd ~/.gitlabs/ArchRepo/x86_64/ + python updatereadme.py + cd "$OLDPWD" + echo -e "${Green} ✔ ${Yellow}cynicalteam arch repo has been updated.${Green} ✔ ${Reset}" + fi + return +} + +### Functions + +## Commands +# Edit this file +alias ea='editalias' + +# Check ports for current user +alias ports='sudo netstat -tulanp' + +# Do a quick speedtest +alias speedtest='speedtest-cli --server 2406 --simple' + +# vim +alias vim='termite --title=vim --class=vim --name=vim -e vim' + +# Minecraft commands +alias runmc='~/Documents/minecraft/launch.sh' + +# Update Repo +alias updaterepo='updaterepo' +alias updatereadme='updatereadme' + +###Permissions +alias setperm='sudo chown dt:dt' + +###Trash +alias tp='trashput' +alias te='trashempty' +alias tl='trash-list' +alias trs='trashrestore' +alias trm='trashrm' + + +#list +alias l='lsd' +alias ls='lsd' +alias la='ls -a' +alias ll='ls -l' +alias lla='ls -la' +alias lt='ls --tree' +alias l.="ls -A | egrep '^\.'" + +#fix obvious typo's +alias cd..='cd ..' +alias pdw="pwd" +alias udpate='sudo pacman -Syyu' +alias upate='sudo pacman -Syyu' + +## Colorize the grep command output for ease of use (good for log files)## +alias grep='grep --color=auto' +alias egrep='egrep --color=auto' +alias fgrep='fgrep --color=auto' + +#readable output +alias df='df -h' + +#pacman unlock +alias unlock="sudo rm /var/lib/pacman/db.lck" + +#free +alias free="free -mt" + +#use all cores +alias uac="sh ~/.bin/main/000*" + +#continue download +alias wget="wget -c" + +#userlist +alias userlist="cut -d: -f1 /etc/passwd" + +#merge new settings +alias merge="xrdb -merge ~/.Xresources" + +# Aliases for software managment +# pacman or pm +alias pacman='sudo pacman --color auto' +alias update='sudo pacman -Syyu' + +# yay as aur helper - updates everything +alias pksyua="yay -Syu --noconfirm" +alias upall="yay -Syu --noconfirm" + +#ps +alias psa="ps auxf" +alias psgrep="ps aux | grep -v grep | grep -i -e VSZ -e" + +#grub update +alias update-grub="sudo grub-mkconfig -o /boot/grub/grub.cfg" + +#add new fonts +alias update-fc='sudo fc-cache -fv' + +#switch between bash and fish +alias tobash="sudo chsh $USER -s /bin/bash && echo 'Now log out.'" +alias tofish="sudo chsh $USER -s /bin/fish && echo 'Now log out.'" + +#quickly kill conkies +alias kc='killall conky' + +#hardware info --short +alias hw="hwinfo --short" + +#skip integrity check +alias yayskip='yay -S --mflags --skipinteg' + +#check vulnerabilities microcode +alias microcode='grep . /sys/devices/system/cpu/vulnerabilities/*' + + +#mounting the folder Public for exchange between host and guest on virtualbox +alias vbm="sudo mount -t vboxsf -o rw,uid=1000,gid=1000 Public /home/$USER/Public" + +#youtube-dl +alias yta-aac="youtube-dl --extract-audio --audio-format aac " +alias yta-best="youtube-dl --extract-audio --audio-format best " +alias yta-flac="youtube-dl --extract-audio --audio-format flac " +alias yta-m4a="youtube-dl --extract-audio --audio-format m4a " +alias yta-mp3="youtube-dl --extract-audio --audio-format mp3 " +alias yta-opus="youtube-dl --extract-audio --audio-format opus " +alias yta-vorbis="youtube-dl --extract-audio --audio-format vorbis " +alias yta-wav="youtube-dl --extract-audio --audio-format wav " + +alias ytv-best="youtube-dl -f bestvideo+bestaudio " + +#Recent Installed Packages +alias rip="expac --timefmt='%Y-%m-%d %T' '%l\t%n %v' | sort | tail -200 | nl" +alias riplong="expac --timefmt='%Y-%m-%d %T' '%l\t%n %v' | sort | tail -3000 | nl" + +#Cleanup orphaned packages +alias cleanup='sudo pacman -Rns $(pacman -Qtdq)' + +#get the error messages from journalctl +alias jctl="journalctl -p 3 -xb" + +#nano for important configration files +#know what you do in these files +alias npacman="sudo nano /etc/pacman.conf" +alias ngrub="sudo nano /etc/default/grub" +alias nmirrorlist="sudo nano /etc/pacman.d/mirrorlist" +alias nconfgrub="sudo nano /boot/grub/grub.cfg" + +#gpg +#verify signature for isos +alias gpg-check="gpg2 --keyserver-options auto-key-retrieve --verify" +#receive the key of a developer +alias gpg-retrieve="gpg2 --keyserver-options auto-key-retrieve --receive-keys" + +#shutdown or reboot +alias ssn="sudo shutdown now" +alias sr="sudo reboot" + +#clear then run cynfetch +alias clear="clear && bash" + +#check aur and arch packages +alias checkarch="pacman -Qqetn > package_list.txt" +alias checkaur="pacman -Qqetm > package_list_aur.txt" + +###Github +alias g='git' + +alias ga='git add' +alias gaa='git add --all' +alias gapa='git add --patch' +alias gau='git add --update' +alias gav='git add --verbose' +alias gap='git apply' +alias gapt='git apply --3way' + +alias gb='git branch' +alias gba='git branch -a' +alias gbd='git branch -d' +alias gbda='git branch --no-color --merged | command grep -vE "^(\+|\*|\s*($(git_main_branch)|development|develop|devel|dev)\s*$)" | command xargs -n 1 git branch -d' +alias gbD='git branch -D' +alias gbl='git blame -b -w' +alias gbnm='git branch --no-merged' +alias gbr='git branch --remote' +alias gbs='git bisect' +alias gbsb='git bisect bad' +alias gbsg='git bisect good' +alias gbsr='git bisect reset' +alias gbss='git bisect start' + +alias gc='git commit -v' +alias gc!='git commit -v --amend' +alias gcn!='git commit -v --no-edit --amend' +alias gca='git commit -v -a' +alias gca!='git commit -v -a --amend' +alias gcan!='git commit -v -a --no-edit --amend' +alias gcans!='git commit -v -a -s --no-edit --amend' +alias gcam='git commit -a -m' +alias gcsm='git commit -s -m' +alias gcb='git checkout -b' +alias gcf='git config --list' +alias gcl='git clone --recurse-submodules' +alias gclean='git clean -id' +alias gpristine='git reset --hard && git clean -dffx' +alias gcm='git checkout $(git_main_branch)' +alias gcd='git checkout develop' +alias gcmsg='git commit -m' +alias gco='git checkout' +alias gcount='git shortlog -sn' +alias gcp='git cherry-pick' +alias gcpa='git cherry-pick --abort' +alias gcpc='git cherry-pick --continue' +alias gcs='git commit -S' + +alias gd='git diff' +alias gdca='git diff --cached' +alias gdcw='git diff --cached --word-diff' +alias gdct='git describe --tags $(git rev-list --tags --max-count=1)' +alias gds='git diff --staged' +alias gdt='git diff-tree --no-commit-id --name-only -r' +alias gdw='git diff --word-diff' + +alias gf='git fetch' +alias gfa='git fetch --all --prune' +alias gfo='git fetch origin' +alias gfg='git ls-files | grep' + +alias gg='git gui citool' +alias gga='git gui citool --amend' + +alias ggpur='ggu' +alias ggpull='git pull origin "$(git_current_branch)"' +alias ggpush='git push origin "$(git_current_branch)"' + +alias ggsup='git branch --set-upstream-to=origin/$(git_current_branch)' +alias gpsup='git push --set-upstream origin $(git_current_branch)' + +alias ghh='git help' + +alias gignore='git update-index --assume-unchanged' +alias gignored='git ls-files -v | grep "^[[:lower:]]"' +alias git-svn-dcommit-push='git svn dcommit && git push github $(git_main_branch):svntrunk' + +alias gk='\gitk --all --branches' +alias gke='\gitk --all $(git log -g --pretty=%h)' + +alias gl='git pull' +alias glg='git log --stat' +alias glgp='git log --stat -p' +alias glgg='git log --graph' +alias glgga='git log --graph --decorate --all' +alias glgm='git log --graph --max-count=10' +alias glo='git log --oneline --decorate' +alias glol="git log --graph --pretty='%Cred%h%Creset -%C(auto)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset'" +alias glols="git log --graph --pretty='%Cred%h%Creset -%C(auto)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --stat" +alias glod="git log --graph --pretty='%Cred%h%Creset -%C(auto)%d%Creset %s %Cgreen(%ad) %C(bold blue)<%an>%Creset'" +alias glods="git log --graph --pretty='%Cred%h%Creset -%C(auto)%d%Creset %s %Cgreen(%ad) %C(bold blue)<%an>%Creset' --date=short" +alias glola="git log --graph --pretty='%Cred%h%Creset -%C(auto)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --all" +alias glog='git log --oneline --decorate --graph' +alias gloga='git log --oneline --decorate --graph --all' +alias glp="_git_log_prettily" + +alias gm='git merge' +alias gmom='git merge origin/$(git_main_branch)' +alias gmt='git mergetool --no-prompt' +alias gmtvim='git mergetool --no-prompt --tool=vimdiff' +alias gmum='git merge upstream/$(git_main_branch)' +alias gma='git merge --abort' + +alias gp='git push' +alias gpd='git push --dry-run' +alias gpf='git push --force-with-lease' +alias gpf!='git push --force' +alias gpoat='git push origin --all && git push origin --tags' +alias gpu='git push upstream' +alias gpv='git push -v' + +alias gr='git remote' +alias gra='git remote add' +alias grb='git rebase' +alias grba='git rebase --abort' +alias grbc='git rebase --continue' +alias grbd='git rebase develop' +alias grbi='git rebase -i' +alias grbm='git rebase $(git_main_branch)' +alias grbs='git rebase --skip' +alias grev='git revert' +alias grh='git reset' +alias grhh='git reset --hard' +alias groh='git reset origin/$(git_current_branch) --hard' +alias grm='git rm' +alias grmc='git rm --cached' +alias grmv='git remote rename' +alias grrm='git remote remove' +alias grs='git restore' +alias grset='git remote set-url' +alias grss='git restore --source' +alias grt='cd "$(git rev-parse --show-toplevel || echo .)"' +alias gru='git reset --' +alias grup='git remote update' +alias grv='git remote -v' + +alias gsb='git status -sb' +alias gsd='git svn dcommit' +alias gsh='git show' +alias gsi='git submodule init' +alias gsps='git show --pretty=short --show-signature' +alias gsr='git svn rebase' +alias gss='git status -s' +alias gst='git status' + +alias gsta='git stash push' +alias gstaa='git stash apply' +alias gstc='git stash clear' +alias gstd='git stash drop' +alias gstl='git stash list' +alias gstp='git stash pop' +alias gsts='git stash show --text' +alias gstu='git stash --include-untracked' +alias gstall='git stash --all' +alias gsu='git submodule update' +alias gsw='git switch' +alias gswc='git switch -c' + +alias gts='git tag -s' +alias gtv='git tag | sort -V' +alias gtl='gtl(){ git tag --sort=-v:refname -n -l "${1}*" }; noglob gtl' + +alias gunignore='git update-index --no-assume-unchanged' +alias gunwip='git log -n 1 | grep -q -c "\-\-wip\-\-" && git reset HEAD~1' +alias gup='git pull --rebase' +alias gupv='git pull --rebase -v' +alias gupa='git pull --rebase --autostash' +alias gupav='git pull --rebase --autostash -v' +alias glum='git pull upstream $(git_main_branch)' + +alias gwch='git whatchanged -p --abbrev-commit --pretty=medium' +alias gwip='git add -A; git rm $(git ls-files --deleted) 2> /dev/null; git commit --no-verify --no-gpg-sign -m "--wip-- [skip ci]"' + +alias gam='git am' +alias gamc='git am --continue' +alias gams='git am --skip' +alias gama='git am --abort' +alias gamscp='git am --show-current-patch' + +###Rsync +alias rsync-copy="rsync -avz --progress -h" +alias rsync-move="rsync -avz --progress -h --remove-source-files" +alias rsync-update="rsync -avzu --progress -h" +alias rsync-synchronize="rsync -avzu --delete --progress -h" \ No newline at end of file diff --git a/.config/GIMP/2.10/action-history b/.config/GIMP/2.10/action-history new file mode 100644 index 000000000..3865bde56 --- /dev/null +++ b/.config/GIMP/2.10/action-history @@ -0,0 +1,12 @@ +# GIMP action-history + +(history-item "file-quit" 1) +(history-item "layers-duplicate" 1) +(history-item "filters-hue-saturation" 0) +(history-item "layers-merge-layers" 0) +(history-item "edit-copy" 1) +(history-item "filters-colorize" 0) +(history-item "image-crop-to-selection" 0) +(history-item "select-all" 1) + +# end of action-history diff --git a/.config/GIMP/2.10/colorrc b/.config/GIMP/2.10/colorrc new file mode 100644 index 000000000..55bd1267e --- /dev/null +++ b/.config/GIMP/2.10/colorrc @@ -0,0 +1,7 @@ +# GIMP colorrc +# +# This file holds a list of recently used colors. + +(color-history) + +# end of colorrc diff --git a/.config/GIMP/2.10/contextrc b/.config/GIMP/2.10/contextrc new file mode 100644 index 000000000..6ed383646 --- /dev/null +++ b/.config/GIMP/2.10/contextrc @@ -0,0 +1,15 @@ +# GIMP user context + +(tool "gimp-rect-select-tool") +(paint-info "gimp-paintbrush") +(foreground (color-rgb 0.87843143939971924 0.32156863808631897 0.49411767721176147)) +(brush "2. Hardness 050") +(dynamics "Dynamics Off") +(mybrush "100% Opaque") +(pattern "Pine") +(gradient "FG to BG (RGB)") +(palette "Colour History") +(font "Sans-serif") +(tool-preset "Core Pointer") + +# end of user context diff --git a/.config/GIMP/2.10/controllerrc b/.config/GIMP/2.10/controllerrc new file mode 100644 index 000000000..d1e8c9fd8 --- /dev/null +++ b/.config/GIMP/2.10/controllerrc @@ -0,0 +1,40 @@ +# GIMP controllerrc +# +# This file will be entirely rewritten each time you exit. + +(GimpControllerInfo "Main Mouse Wheel" + (icon-name "gimp-controller-wheel") + (enabled yes) + (debug-events no) + (controller "GimpControllerWheel") + (mapping + (map "scroll-down-shift-primary" "tools-aspect-decrease") + (map "scroll-up-shift-alt" "tools-angle-increase") + (map "scroll-up-alt" "tools-opacity-increase") + (map "scroll-down-shift-alt" "tools-angle-decrease") + (map "scroll-down-primary-alt" "tools-size-decrease") + (map "scroll-up-shift-primary-alt" "tools-spacing-increase") + (map "scroll-down-alt" "tools-opacity-decrease") + (map "scroll-up-primary-alt" "tools-size-increase") + (map "scroll-up-shift-primary" "tools-aspect-increase") + (map "scroll-down-shift-primary-alt" "tools-spacing-decrease"))) +(GimpControllerInfo "Main Keyboard" + (icon-name "gimp-controller-keyboard") + (enabled yes) + (debug-events no) + (controller "GimpControllerKeyboard") + (mapping + (map "cursor-right-alt" "tools-size-increase") + (map "cursor-left-shift" "view-scroll-page-left") + (map "cursor-right-shift" "view-scroll-page-right") + (map "cursor-up-shift" "view-scroll-page-up") + (map "cursor-up-primary" "view-scroll-top-border") + (map "cursor-down-primary" "view-scroll-bottom-border") + (map "cursor-up-alt" "tools-size-increase-skip") + (map "cursor-left-alt" "tools-size-decrease") + (map "cursor-down-shift" "view-scroll-page-down") + (map "cursor-right-primary" "view-scroll-right-border") + (map "cursor-left-primary" "view-scroll-left-border") + (map "cursor-down-alt" "tools-size-decrease-skip"))) + +# end of controllerrc diff --git a/.config/GIMP/2.10/devicerc b/.config/GIMP/2.10/devicerc new file mode 100644 index 000000000..995f3e62b --- /dev/null +++ b/.config/GIMP/2.10/devicerc @@ -0,0 +1,233 @@ +# GIMP devicerc + +(GimpDeviceInfo "Core Pointer" + (icon-name "gimp-cursor") + (name "Core Pointer") + (tool-options "GimpRectangleSelectOptions" + (tool "gimp-rect-select-tool")) + (use-fg-bg no) + (use-opacity-paint-mode no) + (use-brush no) + (use-dynamics no) + (use-mypaint-brush no) + (use-gradient no) + (use-pattern no) + (use-palette no) + (use-font no) + (mode screen) + (axes 2 x y) + (keys 0) + (pressure-curve + (curve-type smooth) + (points 0) + (point-types 0) + (n-samples 256) + (samples 256 0 0.0039215686274509803 0.0078431372549019607 0.011764705882352941 0.015686274509803921 0.019607843137254902 0.023529411764705882 0.027450980392156862 0.031372549019607843 0.035294117647058823 0.039215686274509803 0.043137254901960784 0.047058823529411764 0.050980392156862744 0.054901960784313725 0.058823529411764705 0.062745098039215685 0.066666666666666666 0.070588235294117646 0.074509803921568626 0.078431372549019607 0.082352941176470587 0.086274509803921567 0.090196078431372548 0.094117647058823528 0.098039215686274508 0.10196078431372549 0.10588235294117647 0.10980392156862745 0.11372549019607843 0.11764705882352941 0.12156862745098039 0.12549019607843137 0.12941176470588237 0.13333333333333333 0.13725490196078433 0.14117647058823529 0.14509803921568629 0.14901960784313725 0.15294117647058825 0.15686274509803921 0.16078431372549021 0.16470588235294117 0.16862745098039217 0.17254901960784313 0.17647058823529413 0.1803921568627451 0.18431372549019609 0.18823529411764706 0.19215686274509805 0.19607843137254902 0.20000000000000001 0.20392156862745098 0.20784313725490197 0.21176470588235294 0.21568627450980393 0.2196078431372549 0.22352941176470589 0.22745098039215686 0.23137254901960785 0.23529411764705882 0.23921568627450981 0.24313725490196078 0.24705882352941178 0.25098039215686274 0.25490196078431371 0.25882352941176473 0.2627450980392157 0.26666666666666666 0.27058823529411763 0.27450980392156865 0.27843137254901962 0.28235294117647058 0.28627450980392155 0.29019607843137257 0.29411764705882354 0.29803921568627451 0.30196078431372547 0.30588235294117649 0.30980392156862746 0.31372549019607843 0.31764705882352939 0.32156862745098042 0.32549019607843138 0.32941176470588235 0.33333333333333331 0.33725490196078434 0.3411764705882353 0.34509803921568627 0.34901960784313724 0.35294117647058826 0.35686274509803922 0.36078431372549019 0.36470588235294116 0.36862745098039218 0.37254901960784315 0.37647058823529411 0.38039215686274508 0.3843137254901961 0.38823529411764707 0.39215686274509803 0.396078431372549 0.40000000000000002 0.40392156862745099 0.40784313725490196 0.41176470588235292 0.41568627450980394 0.41960784313725491 0.42352941176470588 0.42745098039215684 0.43137254901960786 0.43529411764705883 0.4392156862745098 0.44313725490196076 0.44705882352941179 0.45098039215686275 0.45490196078431372 0.45882352941176469 0.46274509803921571 0.46666666666666667 0.47058823529411764 0.47450980392156861 0.47843137254901963 0.4823529411764706 0.48627450980392156 0.49019607843137253 0.49411764705882355 0.49803921568627452 0.50196078431372548 0.50588235294117645 0.50980392156862742 0.51372549019607838 0.51764705882352946 0.52156862745098043 0.52549019607843139 0.52941176470588236 0.53333333333333333 0.53725490196078429 0.54117647058823526 0.54509803921568623 0.5490196078431373 0.55294117647058827 0.55686274509803924 0.5607843137254902 0.56470588235294117 0.56862745098039214 0.5725490196078431 0.57647058823529407 0.58039215686274515 0.58431372549019611 0.58823529411764708 0.59215686274509804 0.59607843137254901 0.59999999999999998 0.60392156862745094 0.60784313725490191 0.61176470588235299 0.61568627450980395 0.61960784313725492 0.62352941176470589 0.62745098039215685 0.63137254901960782 0.63529411764705879 0.63921568627450975 0.64313725490196083 0.6470588235294118 0.65098039215686276 0.65490196078431373 0.6588235294117647 0.66274509803921566 0.66666666666666663 0.6705882352941176 0.67450980392156867 0.67843137254901964 0.68235294117647061 0.68627450980392157 0.69019607843137254 0.69411764705882351 0.69803921568627447 0.70196078431372544 0.70588235294117652 0.70980392156862748 0.71372549019607845 0.71764705882352942 0.72156862745098038 0.72549019607843135 0.72941176470588232 0.73333333333333328 0.73725490196078436 0.74117647058823533 0.74509803921568629 0.74901960784313726 0.75294117647058822 0.75686274509803919 0.76078431372549016 0.76470588235294112 0.7686274509803922 0.77254901960784317 0.77647058823529413 0.7803921568627451 0.78431372549019607 0.78823529411764703 0.792156862745098 0.79607843137254897 0.80000000000000004 0.80392156862745101 0.80784313725490198 0.81176470588235294 0.81568627450980391 0.81960784313725488 0.82352941176470584 0.82745098039215681 0.83137254901960789 0.83529411764705885 0.83921568627450982 0.84313725490196079 0.84705882352941175 0.85098039215686272 0.85490196078431369 0.85882352941176465 0.86274509803921573 0.8666666666666667 0.87058823529411766 0.87450980392156863 0.8784313725490196 0.88235294117647056 0.88627450980392153 0.8901960784313725 0.89411764705882357 0.89803921568627454 0.90196078431372551 0.90588235294117647 0.90980392156862744 0.9137254901960784 0.91764705882352937 0.92156862745098034 0.92549019607843142 0.92941176470588238 0.93333333333333335 0.93725490196078431 0.94117647058823528 0.94509803921568625 0.94901960784313721 0.95294117647058818 0.95686274509803926 0.96078431372549022 0.96470588235294119 0.96862745098039216 0.97254901960784312 0.97647058823529409 0.98039215686274506 0.98431372549019602 0.9882352941176471 0.99215686274509807 0.99607843137254903 1))) +(GimpDeviceInfo "ckb1: CORSAIR K68 RGB Mechanical Gaming Keyboard vM" + (name "ckb1: CORSAIR K68 RGB Mechanical Gaming Keyboard vM") + (tool-options "GimpCropOptions" + (tool "gimp-crop-tool")) + (use-fg-bg no) + (use-opacity-paint-mode no) + (use-brush no) + (use-dynamics no) + (use-mypaint-brush no) + (use-gradient no) + (use-pattern no) + (use-palette no) + (use-font no) + (mode disabled) + (axes 4 x y pressure xtilt) + (keys 0) + (pressure-curve + (curve-type smooth) + (points 0) + (point-types 0) + (n-samples 256) + (samples 256 0 0.0039215686274509803 0.0078431372549019607 0.011764705882352941 0.015686274509803921 0.019607843137254902 0.023529411764705882 0.027450980392156862 0.031372549019607843 0.035294117647058823 0.039215686274509803 0.043137254901960784 0.047058823529411764 0.050980392156862744 0.054901960784313725 0.058823529411764705 0.062745098039215685 0.066666666666666666 0.070588235294117646 0.074509803921568626 0.078431372549019607 0.082352941176470587 0.086274509803921567 0.090196078431372548 0.094117647058823528 0.098039215686274508 0.10196078431372549 0.10588235294117647 0.10980392156862745 0.11372549019607843 0.11764705882352941 0.12156862745098039 0.12549019607843137 0.12941176470588237 0.13333333333333333 0.13725490196078433 0.14117647058823529 0.14509803921568629 0.14901960784313725 0.15294117647058825 0.15686274509803921 0.16078431372549021 0.16470588235294117 0.16862745098039217 0.17254901960784313 0.17647058823529413 0.1803921568627451 0.18431372549019609 0.18823529411764706 0.19215686274509805 0.19607843137254902 0.20000000000000001 0.20392156862745098 0.20784313725490197 0.21176470588235294 0.21568627450980393 0.2196078431372549 0.22352941176470589 0.22745098039215686 0.23137254901960785 0.23529411764705882 0.23921568627450981 0.24313725490196078 0.24705882352941178 0.25098039215686274 0.25490196078431371 0.25882352941176473 0.2627450980392157 0.26666666666666666 0.27058823529411763 0.27450980392156865 0.27843137254901962 0.28235294117647058 0.28627450980392155 0.29019607843137257 0.29411764705882354 0.29803921568627451 0.30196078431372547 0.30588235294117649 0.30980392156862746 0.31372549019607843 0.31764705882352939 0.32156862745098042 0.32549019607843138 0.32941176470588235 0.33333333333333331 0.33725490196078434 0.3411764705882353 0.34509803921568627 0.34901960784313724 0.35294117647058826 0.35686274509803922 0.36078431372549019 0.36470588235294116 0.36862745098039218 0.37254901960784315 0.37647058823529411 0.38039215686274508 0.3843137254901961 0.38823529411764707 0.39215686274509803 0.396078431372549 0.40000000000000002 0.40392156862745099 0.40784313725490196 0.41176470588235292 0.41568627450980394 0.41960784313725491 0.42352941176470588 0.42745098039215684 0.43137254901960786 0.43529411764705883 0.4392156862745098 0.44313725490196076 0.44705882352941179 0.45098039215686275 0.45490196078431372 0.45882352941176469 0.46274509803921571 0.46666666666666667 0.47058823529411764 0.47450980392156861 0.47843137254901963 0.4823529411764706 0.48627450980392156 0.49019607843137253 0.49411764705882355 0.49803921568627452 0.50196078431372548 0.50588235294117645 0.50980392156862742 0.51372549019607838 0.51764705882352946 0.52156862745098043 0.52549019607843139 0.52941176470588236 0.53333333333333333 0.53725490196078429 0.54117647058823526 0.54509803921568623 0.5490196078431373 0.55294117647058827 0.55686274509803924 0.5607843137254902 0.56470588235294117 0.56862745098039214 0.5725490196078431 0.57647058823529407 0.58039215686274515 0.58431372549019611 0.58823529411764708 0.59215686274509804 0.59607843137254901 0.59999999999999998 0.60392156862745094 0.60784313725490191 0.61176470588235299 0.61568627450980395 0.61960784313725492 0.62352941176470589 0.62745098039215685 0.63137254901960782 0.63529411764705879 0.63921568627450975 0.64313725490196083 0.6470588235294118 0.65098039215686276 0.65490196078431373 0.6588235294117647 0.66274509803921566 0.66666666666666663 0.6705882352941176 0.67450980392156867 0.67843137254901964 0.68235294117647061 0.68627450980392157 0.69019607843137254 0.69411764705882351 0.69803921568627447 0.70196078431372544 0.70588235294117652 0.70980392156862748 0.71372549019607845 0.71764705882352942 0.72156862745098038 0.72549019607843135 0.72941176470588232 0.73333333333333328 0.73725490196078436 0.74117647058823533 0.74509803921568629 0.74901960784313726 0.75294117647058822 0.75686274509803919 0.76078431372549016 0.76470588235294112 0.7686274509803922 0.77254901960784317 0.77647058823529413 0.7803921568627451 0.78431372549019607 0.78823529411764703 0.792156862745098 0.79607843137254897 0.80000000000000004 0.80392156862745101 0.80784313725490198 0.81176470588235294 0.81568627450980391 0.81960784313725488 0.82352941176470584 0.82745098039215681 0.83137254901960789 0.83529411764705885 0.83921568627450982 0.84313725490196079 0.84705882352941175 0.85098039215686272 0.85490196078431369 0.85882352941176465 0.86274509803921573 0.8666666666666667 0.87058823529411766 0.87450980392156863 0.8784313725490196 0.88235294117647056 0.88627450980392153 0.8901960784313725 0.89411764705882357 0.89803921568627454 0.90196078431372551 0.90588235294117647 0.90980392156862744 0.9137254901960784 0.91764705882352937 0.92156862745098034 0.92549019607843142 0.92941176470588238 0.93333333333333335 0.93725490196078431 0.94117647058823528 0.94509803921568625 0.94901960784313721 0.95294117647058818 0.95686274509803926 0.96078431372549022 0.96470588235294119 0.96862745098039216 0.97254901960784312 0.97647058823529409 0.98039215686274506 0.98431372549019602 0.9882352941176471 0.99215686274509807 0.99607843137254903 1))) +(GimpDeviceInfo "Logitech G502 HERO Gaming Mouse" + (icon-name "gimp-cursor") + (name "Logitech G502 HERO Gaming Mouse") + (tool-options "GimpColorPickerOptions" + (tool "gimp-color-picker-tool") + (foreground (color-rgb 0.87843143939971924 0.32156863808631897 0.49411767721176147))) + (use-fg-bg yes) + (use-opacity-paint-mode no) + (use-brush no) + (use-dynamics no) + (use-mypaint-brush no) + (use-gradient no) + (use-pattern no) + (use-palette no) + (use-font no) + (mode disabled) + (axes 4 x y pressure xtilt) + (keys 0) + (pressure-curve + (curve-type smooth) + (points 0) + (point-types 0) + (n-samples 256) + (samples 256 0 0.0039215686274509803 0.0078431372549019607 0.011764705882352941 0.015686274509803921 0.019607843137254902 0.023529411764705882 0.027450980392156862 0.031372549019607843 0.035294117647058823 0.039215686274509803 0.043137254901960784 0.047058823529411764 0.050980392156862744 0.054901960784313725 0.058823529411764705 0.062745098039215685 0.066666666666666666 0.070588235294117646 0.074509803921568626 0.078431372549019607 0.082352941176470587 0.086274509803921567 0.090196078431372548 0.094117647058823528 0.098039215686274508 0.10196078431372549 0.10588235294117647 0.10980392156862745 0.11372549019607843 0.11764705882352941 0.12156862745098039 0.12549019607843137 0.12941176470588237 0.13333333333333333 0.13725490196078433 0.14117647058823529 0.14509803921568629 0.14901960784313725 0.15294117647058825 0.15686274509803921 0.16078431372549021 0.16470588235294117 0.16862745098039217 0.17254901960784313 0.17647058823529413 0.1803921568627451 0.18431372549019609 0.18823529411764706 0.19215686274509805 0.19607843137254902 0.20000000000000001 0.20392156862745098 0.20784313725490197 0.21176470588235294 0.21568627450980393 0.2196078431372549 0.22352941176470589 0.22745098039215686 0.23137254901960785 0.23529411764705882 0.23921568627450981 0.24313725490196078 0.24705882352941178 0.25098039215686274 0.25490196078431371 0.25882352941176473 0.2627450980392157 0.26666666666666666 0.27058823529411763 0.27450980392156865 0.27843137254901962 0.28235294117647058 0.28627450980392155 0.29019607843137257 0.29411764705882354 0.29803921568627451 0.30196078431372547 0.30588235294117649 0.30980392156862746 0.31372549019607843 0.31764705882352939 0.32156862745098042 0.32549019607843138 0.32941176470588235 0.33333333333333331 0.33725490196078434 0.3411764705882353 0.34509803921568627 0.34901960784313724 0.35294117647058826 0.35686274509803922 0.36078431372549019 0.36470588235294116 0.36862745098039218 0.37254901960784315 0.37647058823529411 0.38039215686274508 0.3843137254901961 0.38823529411764707 0.39215686274509803 0.396078431372549 0.40000000000000002 0.40392156862745099 0.40784313725490196 0.41176470588235292 0.41568627450980394 0.41960784313725491 0.42352941176470588 0.42745098039215684 0.43137254901960786 0.43529411764705883 0.4392156862745098 0.44313725490196076 0.44705882352941179 0.45098039215686275 0.45490196078431372 0.45882352941176469 0.46274509803921571 0.46666666666666667 0.47058823529411764 0.47450980392156861 0.47843137254901963 0.4823529411764706 0.48627450980392156 0.49019607843137253 0.49411764705882355 0.49803921568627452 0.50196078431372548 0.50588235294117645 0.50980392156862742 0.51372549019607838 0.51764705882352946 0.52156862745098043 0.52549019607843139 0.52941176470588236 0.53333333333333333 0.53725490196078429 0.54117647058823526 0.54509803921568623 0.5490196078431373 0.55294117647058827 0.55686274509803924 0.5607843137254902 0.56470588235294117 0.56862745098039214 0.5725490196078431 0.57647058823529407 0.58039215686274515 0.58431372549019611 0.58823529411764708 0.59215686274509804 0.59607843137254901 0.59999999999999998 0.60392156862745094 0.60784313725490191 0.61176470588235299 0.61568627450980395 0.61960784313725492 0.62352941176470589 0.62745098039215685 0.63137254901960782 0.63529411764705879 0.63921568627450975 0.64313725490196083 0.6470588235294118 0.65098039215686276 0.65490196078431373 0.6588235294117647 0.66274509803921566 0.66666666666666663 0.6705882352941176 0.67450980392156867 0.67843137254901964 0.68235294117647061 0.68627450980392157 0.69019607843137254 0.69411764705882351 0.69803921568627447 0.70196078431372544 0.70588235294117652 0.70980392156862748 0.71372549019607845 0.71764705882352942 0.72156862745098038 0.72549019607843135 0.72941176470588232 0.73333333333333328 0.73725490196078436 0.74117647058823533 0.74509803921568629 0.74901960784313726 0.75294117647058822 0.75686274509803919 0.76078431372549016 0.76470588235294112 0.7686274509803922 0.77254901960784317 0.77647058823529413 0.7803921568627451 0.78431372549019607 0.78823529411764703 0.792156862745098 0.79607843137254897 0.80000000000000004 0.80392156862745101 0.80784313725490198 0.81176470588235294 0.81568627450980391 0.81960784313725488 0.82352941176470584 0.82745098039215681 0.83137254901960789 0.83529411764705885 0.83921568627450982 0.84313725490196079 0.84705882352941175 0.85098039215686272 0.85490196078431369 0.85882352941176465 0.86274509803921573 0.8666666666666667 0.87058823529411766 0.87450980392156863 0.8784313725490196 0.88235294117647056 0.88627450980392153 0.8901960784313725 0.89411764705882357 0.89803921568627454 0.90196078431372551 0.90588235294117647 0.90980392156862744 0.9137254901960784 0.91764705882352937 0.92156862745098034 0.92549019607843142 0.92941176470588238 0.93333333333333335 0.93725490196078431 0.94117647058823528 0.94509803921568625 0.94901960784313721 0.95294117647058818 0.95686274509803926 0.96078431372549022 0.96470588235294119 0.96862745098039216 0.97254901960784312 0.97647058823529409 0.98039215686274506 0.98431372549019602 0.9882352941176471 0.99215686274509807 0.99607843137254903 1))) +(GimpDeviceInfo "Logitech G502 HERO Gaming Mouse Consumer Control" + (icon-name "gimp-cursor") + (name "Logitech G502 HERO Gaming Mouse Consumer Control") + (tool-options "GimpColorPickerOptions" + (tool "gimp-color-picker-tool") + (foreground (color-rgb 0.87843143939971924 0.32156863808631897 0.49411767721176147))) + (use-fg-bg yes) + (use-opacity-paint-mode no) + (use-brush no) + (use-dynamics no) + (use-mypaint-brush no) + (use-gradient no) + (use-pattern no) + (use-palette no) + (use-font no) + (mode disabled) + (axes 4 x y pressure xtilt) + (keys 0) + (pressure-curve + (curve-type smooth) + (points 0) + (point-types 0) + (n-samples 256) + (samples 256 0 0.0039215686274509803 0.0078431372549019607 0.011764705882352941 0.015686274509803921 0.019607843137254902 0.023529411764705882 0.027450980392156862 0.031372549019607843 0.035294117647058823 0.039215686274509803 0.043137254901960784 0.047058823529411764 0.050980392156862744 0.054901960784313725 0.058823529411764705 0.062745098039215685 0.066666666666666666 0.070588235294117646 0.074509803921568626 0.078431372549019607 0.082352941176470587 0.086274509803921567 0.090196078431372548 0.094117647058823528 0.098039215686274508 0.10196078431372549 0.10588235294117647 0.10980392156862745 0.11372549019607843 0.11764705882352941 0.12156862745098039 0.12549019607843137 0.12941176470588237 0.13333333333333333 0.13725490196078433 0.14117647058823529 0.14509803921568629 0.14901960784313725 0.15294117647058825 0.15686274509803921 0.16078431372549021 0.16470588235294117 0.16862745098039217 0.17254901960784313 0.17647058823529413 0.1803921568627451 0.18431372549019609 0.18823529411764706 0.19215686274509805 0.19607843137254902 0.20000000000000001 0.20392156862745098 0.20784313725490197 0.21176470588235294 0.21568627450980393 0.2196078431372549 0.22352941176470589 0.22745098039215686 0.23137254901960785 0.23529411764705882 0.23921568627450981 0.24313725490196078 0.24705882352941178 0.25098039215686274 0.25490196078431371 0.25882352941176473 0.2627450980392157 0.26666666666666666 0.27058823529411763 0.27450980392156865 0.27843137254901962 0.28235294117647058 0.28627450980392155 0.29019607843137257 0.29411764705882354 0.29803921568627451 0.30196078431372547 0.30588235294117649 0.30980392156862746 0.31372549019607843 0.31764705882352939 0.32156862745098042 0.32549019607843138 0.32941176470588235 0.33333333333333331 0.33725490196078434 0.3411764705882353 0.34509803921568627 0.34901960784313724 0.35294117647058826 0.35686274509803922 0.36078431372549019 0.36470588235294116 0.36862745098039218 0.37254901960784315 0.37647058823529411 0.38039215686274508 0.3843137254901961 0.38823529411764707 0.39215686274509803 0.396078431372549 0.40000000000000002 0.40392156862745099 0.40784313725490196 0.41176470588235292 0.41568627450980394 0.41960784313725491 0.42352941176470588 0.42745098039215684 0.43137254901960786 0.43529411764705883 0.4392156862745098 0.44313725490196076 0.44705882352941179 0.45098039215686275 0.45490196078431372 0.45882352941176469 0.46274509803921571 0.46666666666666667 0.47058823529411764 0.47450980392156861 0.47843137254901963 0.4823529411764706 0.48627450980392156 0.49019607843137253 0.49411764705882355 0.49803921568627452 0.50196078431372548 0.50588235294117645 0.50980392156862742 0.51372549019607838 0.51764705882352946 0.52156862745098043 0.52549019607843139 0.52941176470588236 0.53333333333333333 0.53725490196078429 0.54117647058823526 0.54509803921568623 0.5490196078431373 0.55294117647058827 0.55686274509803924 0.5607843137254902 0.56470588235294117 0.56862745098039214 0.5725490196078431 0.57647058823529407 0.58039215686274515 0.58431372549019611 0.58823529411764708 0.59215686274509804 0.59607843137254901 0.59999999999999998 0.60392156862745094 0.60784313725490191 0.61176470588235299 0.61568627450980395 0.61960784313725492 0.62352941176470589 0.62745098039215685 0.63137254901960782 0.63529411764705879 0.63921568627450975 0.64313725490196083 0.6470588235294118 0.65098039215686276 0.65490196078431373 0.6588235294117647 0.66274509803921566 0.66666666666666663 0.6705882352941176 0.67450980392156867 0.67843137254901964 0.68235294117647061 0.68627450980392157 0.69019607843137254 0.69411764705882351 0.69803921568627447 0.70196078431372544 0.70588235294117652 0.70980392156862748 0.71372549019607845 0.71764705882352942 0.72156862745098038 0.72549019607843135 0.72941176470588232 0.73333333333333328 0.73725490196078436 0.74117647058823533 0.74509803921568629 0.74901960784313726 0.75294117647058822 0.75686274509803919 0.76078431372549016 0.76470588235294112 0.7686274509803922 0.77254901960784317 0.77647058823529413 0.7803921568627451 0.78431372549019607 0.78823529411764703 0.792156862745098 0.79607843137254897 0.80000000000000004 0.80392156862745101 0.80784313725490198 0.81176470588235294 0.81568627450980391 0.81960784313725488 0.82352941176470584 0.82745098039215681 0.83137254901960789 0.83529411764705885 0.83921568627450982 0.84313725490196079 0.84705882352941175 0.85098039215686272 0.85490196078431369 0.85882352941176465 0.86274509803921573 0.8666666666666667 0.87058823529411766 0.87450980392156863 0.8784313725490196 0.88235294117647056 0.88627450980392153 0.8901960784313725 0.89411764705882357 0.89803921568627454 0.90196078431372551 0.90588235294117647 0.90980392156862744 0.9137254901960784 0.91764705882352937 0.92156862745098034 0.92549019607843142 0.92941176470588238 0.93333333333333335 0.93725490196078431 0.94117647058823528 0.94509803921568625 0.94901960784313721 0.95294117647058818 0.95686274509803926 0.96078431372549022 0.96470588235294119 0.96862745098039216 0.97254901960784312 0.97647058823529409 0.98039215686274506 0.98431372549019602 0.9882352941176471 0.99215686274509807 0.99607843137254903 1))) +(GimpDeviceInfo "MSFT0001:01 04F3:3140 Mouse" + (icon-name "gimp-cursor") + (name "MSFT0001:01 04F3:3140 Mouse") + (tool-options "GimpCropOptions" + (tool "gimp-crop-tool")) + (use-fg-bg no) + (use-opacity-paint-mode no) + (use-brush no) + (use-dynamics no) + (use-mypaint-brush no) + (use-gradient no) + (use-pattern no) + (use-palette no) + (use-font no) + (mode disabled) + (axes 4 x y pressure xtilt) + (keys 0) + (pressure-curve + (curve-type smooth) + (points 0) + (point-types 0) + (n-samples 256) + (samples 256 0 0.0039215686274509803 0.0078431372549019607 0.011764705882352941 0.015686274509803921 0.019607843137254902 0.023529411764705882 0.027450980392156862 0.031372549019607843 0.035294117647058823 0.039215686274509803 0.043137254901960784 0.047058823529411764 0.050980392156862744 0.054901960784313725 0.058823529411764705 0.062745098039215685 0.066666666666666666 0.070588235294117646 0.074509803921568626 0.078431372549019607 0.082352941176470587 0.086274509803921567 0.090196078431372548 0.094117647058823528 0.098039215686274508 0.10196078431372549 0.10588235294117647 0.10980392156862745 0.11372549019607843 0.11764705882352941 0.12156862745098039 0.12549019607843137 0.12941176470588237 0.13333333333333333 0.13725490196078433 0.14117647058823529 0.14509803921568629 0.14901960784313725 0.15294117647058825 0.15686274509803921 0.16078431372549021 0.16470588235294117 0.16862745098039217 0.17254901960784313 0.17647058823529413 0.1803921568627451 0.18431372549019609 0.18823529411764706 0.19215686274509805 0.19607843137254902 0.20000000000000001 0.20392156862745098 0.20784313725490197 0.21176470588235294 0.21568627450980393 0.2196078431372549 0.22352941176470589 0.22745098039215686 0.23137254901960785 0.23529411764705882 0.23921568627450981 0.24313725490196078 0.24705882352941178 0.25098039215686274 0.25490196078431371 0.25882352941176473 0.2627450980392157 0.26666666666666666 0.27058823529411763 0.27450980392156865 0.27843137254901962 0.28235294117647058 0.28627450980392155 0.29019607843137257 0.29411764705882354 0.29803921568627451 0.30196078431372547 0.30588235294117649 0.30980392156862746 0.31372549019607843 0.31764705882352939 0.32156862745098042 0.32549019607843138 0.32941176470588235 0.33333333333333331 0.33725490196078434 0.3411764705882353 0.34509803921568627 0.34901960784313724 0.35294117647058826 0.35686274509803922 0.36078431372549019 0.36470588235294116 0.36862745098039218 0.37254901960784315 0.37647058823529411 0.38039215686274508 0.3843137254901961 0.38823529411764707 0.39215686274509803 0.396078431372549 0.40000000000000002 0.40392156862745099 0.40784313725490196 0.41176470588235292 0.41568627450980394 0.41960784313725491 0.42352941176470588 0.42745098039215684 0.43137254901960786 0.43529411764705883 0.4392156862745098 0.44313725490196076 0.44705882352941179 0.45098039215686275 0.45490196078431372 0.45882352941176469 0.46274509803921571 0.46666666666666667 0.47058823529411764 0.47450980392156861 0.47843137254901963 0.4823529411764706 0.48627450980392156 0.49019607843137253 0.49411764705882355 0.49803921568627452 0.50196078431372548 0.50588235294117645 0.50980392156862742 0.51372549019607838 0.51764705882352946 0.52156862745098043 0.52549019607843139 0.52941176470588236 0.53333333333333333 0.53725490196078429 0.54117647058823526 0.54509803921568623 0.5490196078431373 0.55294117647058827 0.55686274509803924 0.5607843137254902 0.56470588235294117 0.56862745098039214 0.5725490196078431 0.57647058823529407 0.58039215686274515 0.58431372549019611 0.58823529411764708 0.59215686274509804 0.59607843137254901 0.59999999999999998 0.60392156862745094 0.60784313725490191 0.61176470588235299 0.61568627450980395 0.61960784313725492 0.62352941176470589 0.62745098039215685 0.63137254901960782 0.63529411764705879 0.63921568627450975 0.64313725490196083 0.6470588235294118 0.65098039215686276 0.65490196078431373 0.6588235294117647 0.66274509803921566 0.66666666666666663 0.6705882352941176 0.67450980392156867 0.67843137254901964 0.68235294117647061 0.68627450980392157 0.69019607843137254 0.69411764705882351 0.69803921568627447 0.70196078431372544 0.70588235294117652 0.70980392156862748 0.71372549019607845 0.71764705882352942 0.72156862745098038 0.72549019607843135 0.72941176470588232 0.73333333333333328 0.73725490196078436 0.74117647058823533 0.74509803921568629 0.74901960784313726 0.75294117647058822 0.75686274509803919 0.76078431372549016 0.76470588235294112 0.7686274509803922 0.77254901960784317 0.77647058823529413 0.7803921568627451 0.78431372549019607 0.78823529411764703 0.792156862745098 0.79607843137254897 0.80000000000000004 0.80392156862745101 0.80784313725490198 0.81176470588235294 0.81568627450980391 0.81960784313725488 0.82352941176470584 0.82745098039215681 0.83137254901960789 0.83529411764705885 0.83921568627450982 0.84313725490196079 0.84705882352941175 0.85098039215686272 0.85490196078431369 0.85882352941176465 0.86274509803921573 0.8666666666666667 0.87058823529411766 0.87450980392156863 0.8784313725490196 0.88235294117647056 0.88627450980392153 0.8901960784313725 0.89411764705882357 0.89803921568627454 0.90196078431372551 0.90588235294117647 0.90980392156862744 0.9137254901960784 0.91764705882352937 0.92156862745098034 0.92549019607843142 0.92941176470588238 0.93333333333333335 0.93725490196078431 0.94117647058823528 0.94509803921568625 0.94901960784313721 0.95294117647058818 0.95686274509803926 0.96078431372549022 0.96470588235294119 0.96862745098039216 0.97254901960784312 0.97647058823529409 0.98039215686274506 0.98431372549019602 0.9882352941176471 0.99215686274509807 0.99607843137254903 1))) +(GimpDeviceInfo "MSFT0001:01 04F3:3140 Touchpad" + (icon-name "gimp-cursor") + (name "MSFT0001:01 04F3:3140 Touchpad") + (tool-options "GimpCropOptions" + (tool "gimp-crop-tool")) + (use-fg-bg no) + (use-opacity-paint-mode no) + (use-brush no) + (use-dynamics no) + (use-mypaint-brush no) + (use-gradient no) + (use-pattern no) + (use-palette no) + (use-font no) + (mode disabled) + (axes 4 x y pressure xtilt) + (keys 0) + (pressure-curve + (curve-type smooth) + (points 0) + (point-types 0) + (n-samples 256) + (samples 256 0 0.0039215686274509803 0.0078431372549019607 0.011764705882352941 0.015686274509803921 0.019607843137254902 0.023529411764705882 0.027450980392156862 0.031372549019607843 0.035294117647058823 0.039215686274509803 0.043137254901960784 0.047058823529411764 0.050980392156862744 0.054901960784313725 0.058823529411764705 0.062745098039215685 0.066666666666666666 0.070588235294117646 0.074509803921568626 0.078431372549019607 0.082352941176470587 0.086274509803921567 0.090196078431372548 0.094117647058823528 0.098039215686274508 0.10196078431372549 0.10588235294117647 0.10980392156862745 0.11372549019607843 0.11764705882352941 0.12156862745098039 0.12549019607843137 0.12941176470588237 0.13333333333333333 0.13725490196078433 0.14117647058823529 0.14509803921568629 0.14901960784313725 0.15294117647058825 0.15686274509803921 0.16078431372549021 0.16470588235294117 0.16862745098039217 0.17254901960784313 0.17647058823529413 0.1803921568627451 0.18431372549019609 0.18823529411764706 0.19215686274509805 0.19607843137254902 0.20000000000000001 0.20392156862745098 0.20784313725490197 0.21176470588235294 0.21568627450980393 0.2196078431372549 0.22352941176470589 0.22745098039215686 0.23137254901960785 0.23529411764705882 0.23921568627450981 0.24313725490196078 0.24705882352941178 0.25098039215686274 0.25490196078431371 0.25882352941176473 0.2627450980392157 0.26666666666666666 0.27058823529411763 0.27450980392156865 0.27843137254901962 0.28235294117647058 0.28627450980392155 0.29019607843137257 0.29411764705882354 0.29803921568627451 0.30196078431372547 0.30588235294117649 0.30980392156862746 0.31372549019607843 0.31764705882352939 0.32156862745098042 0.32549019607843138 0.32941176470588235 0.33333333333333331 0.33725490196078434 0.3411764705882353 0.34509803921568627 0.34901960784313724 0.35294117647058826 0.35686274509803922 0.36078431372549019 0.36470588235294116 0.36862745098039218 0.37254901960784315 0.37647058823529411 0.38039215686274508 0.3843137254901961 0.38823529411764707 0.39215686274509803 0.396078431372549 0.40000000000000002 0.40392156862745099 0.40784313725490196 0.41176470588235292 0.41568627450980394 0.41960784313725491 0.42352941176470588 0.42745098039215684 0.43137254901960786 0.43529411764705883 0.4392156862745098 0.44313725490196076 0.44705882352941179 0.45098039215686275 0.45490196078431372 0.45882352941176469 0.46274509803921571 0.46666666666666667 0.47058823529411764 0.47450980392156861 0.47843137254901963 0.4823529411764706 0.48627450980392156 0.49019607843137253 0.49411764705882355 0.49803921568627452 0.50196078431372548 0.50588235294117645 0.50980392156862742 0.51372549019607838 0.51764705882352946 0.52156862745098043 0.52549019607843139 0.52941176470588236 0.53333333333333333 0.53725490196078429 0.54117647058823526 0.54509803921568623 0.5490196078431373 0.55294117647058827 0.55686274509803924 0.5607843137254902 0.56470588235294117 0.56862745098039214 0.5725490196078431 0.57647058823529407 0.58039215686274515 0.58431372549019611 0.58823529411764708 0.59215686274509804 0.59607843137254901 0.59999999999999998 0.60392156862745094 0.60784313725490191 0.61176470588235299 0.61568627450980395 0.61960784313725492 0.62352941176470589 0.62745098039215685 0.63137254901960782 0.63529411764705879 0.63921568627450975 0.64313725490196083 0.6470588235294118 0.65098039215686276 0.65490196078431373 0.6588235294117647 0.66274509803921566 0.66666666666666663 0.6705882352941176 0.67450980392156867 0.67843137254901964 0.68235294117647061 0.68627450980392157 0.69019607843137254 0.69411764705882351 0.69803921568627447 0.70196078431372544 0.70588235294117652 0.70980392156862748 0.71372549019607845 0.71764705882352942 0.72156862745098038 0.72549019607843135 0.72941176470588232 0.73333333333333328 0.73725490196078436 0.74117647058823533 0.74509803921568629 0.74901960784313726 0.75294117647058822 0.75686274509803919 0.76078431372549016 0.76470588235294112 0.7686274509803922 0.77254901960784317 0.77647058823529413 0.7803921568627451 0.78431372549019607 0.78823529411764703 0.792156862745098 0.79607843137254897 0.80000000000000004 0.80392156862745101 0.80784313725490198 0.81176470588235294 0.81568627450980391 0.81960784313725488 0.82352941176470584 0.82745098039215681 0.83137254901960789 0.83529411764705885 0.83921568627450982 0.84313725490196079 0.84705882352941175 0.85098039215686272 0.85490196078431369 0.85882352941176465 0.86274509803921573 0.8666666666666667 0.87058823529411766 0.87450980392156863 0.8784313725490196 0.88235294117647056 0.88627450980392153 0.8901960784313725 0.89411764705882357 0.89803921568627454 0.90196078431372551 0.90588235294117647 0.90980392156862744 0.9137254901960784 0.91764705882352937 0.92156862745098034 0.92549019607843142 0.92941176470588238 0.93333333333333335 0.93725490196078431 0.94117647058823528 0.94509803921568625 0.94901960784313721 0.95294117647058818 0.95686274509803926 0.96078431372549022 0.96470588235294119 0.96862745098039216 0.97254901960784312 0.97647058823529409 0.98039215686274506 0.98431372549019602 0.9882352941176471 0.99215686274509807 0.99607843137254903 1))) +(GimpDeviceInfo "Virtual core XTEST pointer" + (icon-name "gimp-cursor") + (name "Virtual core XTEST pointer") + (tool-options "GimpCropOptions" + (tool "gimp-crop-tool")) + (use-fg-bg no) + (use-opacity-paint-mode no) + (use-brush no) + (use-dynamics no) + (use-mypaint-brush no) + (use-gradient no) + (use-pattern no) + (use-palette no) + (use-font no) + (mode disabled) + (axes 2 x y) + (keys 0) + (pressure-curve + (curve-type smooth) + (points 0) + (point-types 0) + (n-samples 256) + (samples 256 0 0.0039215686274509803 0.0078431372549019607 0.011764705882352941 0.015686274509803921 0.019607843137254902 0.023529411764705882 0.027450980392156862 0.031372549019607843 0.035294117647058823 0.039215686274509803 0.043137254901960784 0.047058823529411764 0.050980392156862744 0.054901960784313725 0.058823529411764705 0.062745098039215685 0.066666666666666666 0.070588235294117646 0.074509803921568626 0.078431372549019607 0.082352941176470587 0.086274509803921567 0.090196078431372548 0.094117647058823528 0.098039215686274508 0.10196078431372549 0.10588235294117647 0.10980392156862745 0.11372549019607843 0.11764705882352941 0.12156862745098039 0.12549019607843137 0.12941176470588237 0.13333333333333333 0.13725490196078433 0.14117647058823529 0.14509803921568629 0.14901960784313725 0.15294117647058825 0.15686274509803921 0.16078431372549021 0.16470588235294117 0.16862745098039217 0.17254901960784313 0.17647058823529413 0.1803921568627451 0.18431372549019609 0.18823529411764706 0.19215686274509805 0.19607843137254902 0.20000000000000001 0.20392156862745098 0.20784313725490197 0.21176470588235294 0.21568627450980393 0.2196078431372549 0.22352941176470589 0.22745098039215686 0.23137254901960785 0.23529411764705882 0.23921568627450981 0.24313725490196078 0.24705882352941178 0.25098039215686274 0.25490196078431371 0.25882352941176473 0.2627450980392157 0.26666666666666666 0.27058823529411763 0.27450980392156865 0.27843137254901962 0.28235294117647058 0.28627450980392155 0.29019607843137257 0.29411764705882354 0.29803921568627451 0.30196078431372547 0.30588235294117649 0.30980392156862746 0.31372549019607843 0.31764705882352939 0.32156862745098042 0.32549019607843138 0.32941176470588235 0.33333333333333331 0.33725490196078434 0.3411764705882353 0.34509803921568627 0.34901960784313724 0.35294117647058826 0.35686274509803922 0.36078431372549019 0.36470588235294116 0.36862745098039218 0.37254901960784315 0.37647058823529411 0.38039215686274508 0.3843137254901961 0.38823529411764707 0.39215686274509803 0.396078431372549 0.40000000000000002 0.40392156862745099 0.40784313725490196 0.41176470588235292 0.41568627450980394 0.41960784313725491 0.42352941176470588 0.42745098039215684 0.43137254901960786 0.43529411764705883 0.4392156862745098 0.44313725490196076 0.44705882352941179 0.45098039215686275 0.45490196078431372 0.45882352941176469 0.46274509803921571 0.46666666666666667 0.47058823529411764 0.47450980392156861 0.47843137254901963 0.4823529411764706 0.48627450980392156 0.49019607843137253 0.49411764705882355 0.49803921568627452 0.50196078431372548 0.50588235294117645 0.50980392156862742 0.51372549019607838 0.51764705882352946 0.52156862745098043 0.52549019607843139 0.52941176470588236 0.53333333333333333 0.53725490196078429 0.54117647058823526 0.54509803921568623 0.5490196078431373 0.55294117647058827 0.55686274509803924 0.5607843137254902 0.56470588235294117 0.56862745098039214 0.5725490196078431 0.57647058823529407 0.58039215686274515 0.58431372549019611 0.58823529411764708 0.59215686274509804 0.59607843137254901 0.59999999999999998 0.60392156862745094 0.60784313725490191 0.61176470588235299 0.61568627450980395 0.61960784313725492 0.62352941176470589 0.62745098039215685 0.63137254901960782 0.63529411764705879 0.63921568627450975 0.64313725490196083 0.6470588235294118 0.65098039215686276 0.65490196078431373 0.6588235294117647 0.66274509803921566 0.66666666666666663 0.6705882352941176 0.67450980392156867 0.67843137254901964 0.68235294117647061 0.68627450980392157 0.69019607843137254 0.69411764705882351 0.69803921568627447 0.70196078431372544 0.70588235294117652 0.70980392156862748 0.71372549019607845 0.71764705882352942 0.72156862745098038 0.72549019607843135 0.72941176470588232 0.73333333333333328 0.73725490196078436 0.74117647058823533 0.74509803921568629 0.74901960784313726 0.75294117647058822 0.75686274509803919 0.76078431372549016 0.76470588235294112 0.7686274509803922 0.77254901960784317 0.77647058823529413 0.7803921568627451 0.78431372549019607 0.78823529411764703 0.792156862745098 0.79607843137254897 0.80000000000000004 0.80392156862745101 0.80784313725490198 0.81176470588235294 0.81568627450980391 0.81960784313725488 0.82352941176470584 0.82745098039215681 0.83137254901960789 0.83529411764705885 0.83921568627450982 0.84313725490196079 0.84705882352941175 0.85098039215686272 0.85490196078431369 0.85882352941176465 0.86274509803921573 0.8666666666666667 0.87058823529411766 0.87450980392156863 0.8784313725490196 0.88235294117647056 0.88627450980392153 0.8901960784313725 0.89411764705882357 0.89803921568627454 0.90196078431372551 0.90588235294117647 0.90980392156862744 0.9137254901960784 0.91764705882352937 0.92156862745098034 0.92549019607843142 0.92941176470588238 0.93333333333333335 0.93725490196078431 0.94117647058823528 0.94509803921568625 0.94901960784313721 0.95294117647058818 0.95686274509803926 0.96078431372549022 0.96470588235294119 0.96862745098039216 0.97254901960784312 0.97647058823529409 0.98039215686274506 0.98431372549019602 0.9882352941176471 0.99215686274509807 0.99607843137254903 1))) +(GimpDeviceInfo "ckb1: CORSAIR K68 RGB Mechanical Gaming Keyboard vKB" + (name "ckb1: CORSAIR K68 RGB Mechanical Gaming Keyboard vKB") + (tool-options "GimpCropOptions" + (tool "gimp-crop-tool")) + (use-fg-bg no) + (use-opacity-paint-mode no) + (use-brush no) + (use-dynamics no) + (use-mypaint-brush no) + (use-gradient no) + (use-pattern no) + (use-palette no) + (use-font no) + (mode disabled) + (axes 4 x y pressure xtilt) + (keys 0) + (pressure-curve + (curve-type smooth) + (points 0) + (point-types 0) + (n-samples 256) + (samples 256 0 0.0039215686274509803 0.0078431372549019607 0.011764705882352941 0.015686274509803921 0.019607843137254902 0.023529411764705882 0.027450980392156862 0.031372549019607843 0.035294117647058823 0.039215686274509803 0.043137254901960784 0.047058823529411764 0.050980392156862744 0.054901960784313725 0.058823529411764705 0.062745098039215685 0.066666666666666666 0.070588235294117646 0.074509803921568626 0.078431372549019607 0.082352941176470587 0.086274509803921567 0.090196078431372548 0.094117647058823528 0.098039215686274508 0.10196078431372549 0.10588235294117647 0.10980392156862745 0.11372549019607843 0.11764705882352941 0.12156862745098039 0.12549019607843137 0.12941176470588237 0.13333333333333333 0.13725490196078433 0.14117647058823529 0.14509803921568629 0.14901960784313725 0.15294117647058825 0.15686274509803921 0.16078431372549021 0.16470588235294117 0.16862745098039217 0.17254901960784313 0.17647058823529413 0.1803921568627451 0.18431372549019609 0.18823529411764706 0.19215686274509805 0.19607843137254902 0.20000000000000001 0.20392156862745098 0.20784313725490197 0.21176470588235294 0.21568627450980393 0.2196078431372549 0.22352941176470589 0.22745098039215686 0.23137254901960785 0.23529411764705882 0.23921568627450981 0.24313725490196078 0.24705882352941178 0.25098039215686274 0.25490196078431371 0.25882352941176473 0.2627450980392157 0.26666666666666666 0.27058823529411763 0.27450980392156865 0.27843137254901962 0.28235294117647058 0.28627450980392155 0.29019607843137257 0.29411764705882354 0.29803921568627451 0.30196078431372547 0.30588235294117649 0.30980392156862746 0.31372549019607843 0.31764705882352939 0.32156862745098042 0.32549019607843138 0.32941176470588235 0.33333333333333331 0.33725490196078434 0.3411764705882353 0.34509803921568627 0.34901960784313724 0.35294117647058826 0.35686274509803922 0.36078431372549019 0.36470588235294116 0.36862745098039218 0.37254901960784315 0.37647058823529411 0.38039215686274508 0.3843137254901961 0.38823529411764707 0.39215686274509803 0.396078431372549 0.40000000000000002 0.40392156862745099 0.40784313725490196 0.41176470588235292 0.41568627450980394 0.41960784313725491 0.42352941176470588 0.42745098039215684 0.43137254901960786 0.43529411764705883 0.4392156862745098 0.44313725490196076 0.44705882352941179 0.45098039215686275 0.45490196078431372 0.45882352941176469 0.46274509803921571 0.46666666666666667 0.47058823529411764 0.47450980392156861 0.47843137254901963 0.4823529411764706 0.48627450980392156 0.49019607843137253 0.49411764705882355 0.49803921568627452 0.50196078431372548 0.50588235294117645 0.50980392156862742 0.51372549019607838 0.51764705882352946 0.52156862745098043 0.52549019607843139 0.52941176470588236 0.53333333333333333 0.53725490196078429 0.54117647058823526 0.54509803921568623 0.5490196078431373 0.55294117647058827 0.55686274509803924 0.5607843137254902 0.56470588235294117 0.56862745098039214 0.5725490196078431 0.57647058823529407 0.58039215686274515 0.58431372549019611 0.58823529411764708 0.59215686274509804 0.59607843137254901 0.59999999999999998 0.60392156862745094 0.60784313725490191 0.61176470588235299 0.61568627450980395 0.61960784313725492 0.62352941176470589 0.62745098039215685 0.63137254901960782 0.63529411764705879 0.63921568627450975 0.64313725490196083 0.6470588235294118 0.65098039215686276 0.65490196078431373 0.6588235294117647 0.66274509803921566 0.66666666666666663 0.6705882352941176 0.67450980392156867 0.67843137254901964 0.68235294117647061 0.68627450980392157 0.69019607843137254 0.69411764705882351 0.69803921568627447 0.70196078431372544 0.70588235294117652 0.70980392156862748 0.71372549019607845 0.71764705882352942 0.72156862745098038 0.72549019607843135 0.72941176470588232 0.73333333333333328 0.73725490196078436 0.74117647058823533 0.74509803921568629 0.74901960784313726 0.75294117647058822 0.75686274509803919 0.76078431372549016 0.76470588235294112 0.7686274509803922 0.77254901960784317 0.77647058823529413 0.7803921568627451 0.78431372549019607 0.78823529411764703 0.792156862745098 0.79607843137254897 0.80000000000000004 0.80392156862745101 0.80784313725490198 0.81176470588235294 0.81568627450980391 0.81960784313725488 0.82352941176470584 0.82745098039215681 0.83137254901960789 0.83529411764705885 0.83921568627450982 0.84313725490196079 0.84705882352941175 0.85098039215686272 0.85490196078431369 0.85882352941176465 0.86274509803921573 0.8666666666666667 0.87058823529411766 0.87450980392156863 0.8784313725490196 0.88235294117647056 0.88627450980392153 0.8901960784313725 0.89411764705882357 0.89803921568627454 0.90196078431372551 0.90588235294117647 0.90980392156862744 0.9137254901960784 0.91764705882352937 0.92156862745098034 0.92549019607843142 0.92941176470588238 0.93333333333333335 0.93725490196078431 0.94117647058823528 0.94509803921568625 0.94901960784313721 0.95294117647058818 0.95686274509803926 0.96078431372549022 0.96470588235294119 0.96862745098039216 0.97254901960784312 0.97647058823529409 0.98039215686274506 0.98431372549019602 0.9882352941176471 0.99215686274509807 0.99607843137254903 1))) +(GimpDeviceInfo "ROCCAT ROCCAT Nyth Consumer Control" + (name "ROCCAT ROCCAT Nyth Consumer Control") + (tool-options "GimpCropOptions" + (tool "gimp-crop-tool")) + (use-fg-bg no) + (use-opacity-paint-mode no) + (use-brush no) + (use-dynamics no) + (use-mypaint-brush no) + (use-gradient no) + (use-pattern no) + (use-palette no) + (use-font no) + (mode disabled) + (axes 4 x y pressure xtilt) + (keys 0) + (pressure-curve + (curve-type smooth) + (points 0) + (point-types 0) + (n-samples 256) + (samples 256 0 0.0039215686274509803 0.0078431372549019607 0.011764705882352941 0.015686274509803921 0.019607843137254902 0.023529411764705882 0.027450980392156862 0.031372549019607843 0.035294117647058823 0.039215686274509803 0.043137254901960784 0.047058823529411764 0.050980392156862744 0.054901960784313725 0.058823529411764705 0.062745098039215685 0.066666666666666666 0.070588235294117646 0.074509803921568626 0.078431372549019607 0.082352941176470587 0.086274509803921567 0.090196078431372548 0.094117647058823528 0.098039215686274508 0.10196078431372549 0.10588235294117647 0.10980392156862745 0.11372549019607843 0.11764705882352941 0.12156862745098039 0.12549019607843137 0.12941176470588237 0.13333333333333333 0.13725490196078433 0.14117647058823529 0.14509803921568629 0.14901960784313725 0.15294117647058825 0.15686274509803921 0.16078431372549021 0.16470588235294117 0.16862745098039217 0.17254901960784313 0.17647058823529413 0.1803921568627451 0.18431372549019609 0.18823529411764706 0.19215686274509805 0.19607843137254902 0.20000000000000001 0.20392156862745098 0.20784313725490197 0.21176470588235294 0.21568627450980393 0.2196078431372549 0.22352941176470589 0.22745098039215686 0.23137254901960785 0.23529411764705882 0.23921568627450981 0.24313725490196078 0.24705882352941178 0.25098039215686274 0.25490196078431371 0.25882352941176473 0.2627450980392157 0.26666666666666666 0.27058823529411763 0.27450980392156865 0.27843137254901962 0.28235294117647058 0.28627450980392155 0.29019607843137257 0.29411764705882354 0.29803921568627451 0.30196078431372547 0.30588235294117649 0.30980392156862746 0.31372549019607843 0.31764705882352939 0.32156862745098042 0.32549019607843138 0.32941176470588235 0.33333333333333331 0.33725490196078434 0.3411764705882353 0.34509803921568627 0.34901960784313724 0.35294117647058826 0.35686274509803922 0.36078431372549019 0.36470588235294116 0.36862745098039218 0.37254901960784315 0.37647058823529411 0.38039215686274508 0.3843137254901961 0.38823529411764707 0.39215686274509803 0.396078431372549 0.40000000000000002 0.40392156862745099 0.40784313725490196 0.41176470588235292 0.41568627450980394 0.41960784313725491 0.42352941176470588 0.42745098039215684 0.43137254901960786 0.43529411764705883 0.4392156862745098 0.44313725490196076 0.44705882352941179 0.45098039215686275 0.45490196078431372 0.45882352941176469 0.46274509803921571 0.46666666666666667 0.47058823529411764 0.47450980392156861 0.47843137254901963 0.4823529411764706 0.48627450980392156 0.49019607843137253 0.49411764705882355 0.49803921568627452 0.50196078431372548 0.50588235294117645 0.50980392156862742 0.51372549019607838 0.51764705882352946 0.52156862745098043 0.52549019607843139 0.52941176470588236 0.53333333333333333 0.53725490196078429 0.54117647058823526 0.54509803921568623 0.5490196078431373 0.55294117647058827 0.55686274509803924 0.5607843137254902 0.56470588235294117 0.56862745098039214 0.5725490196078431 0.57647058823529407 0.58039215686274515 0.58431372549019611 0.58823529411764708 0.59215686274509804 0.59607843137254901 0.59999999999999998 0.60392156862745094 0.60784313725490191 0.61176470588235299 0.61568627450980395 0.61960784313725492 0.62352941176470589 0.62745098039215685 0.63137254901960782 0.63529411764705879 0.63921568627450975 0.64313725490196083 0.6470588235294118 0.65098039215686276 0.65490196078431373 0.6588235294117647 0.66274509803921566 0.66666666666666663 0.6705882352941176 0.67450980392156867 0.67843137254901964 0.68235294117647061 0.68627450980392157 0.69019607843137254 0.69411764705882351 0.69803921568627447 0.70196078431372544 0.70588235294117652 0.70980392156862748 0.71372549019607845 0.71764705882352942 0.72156862745098038 0.72549019607843135 0.72941176470588232 0.73333333333333328 0.73725490196078436 0.74117647058823533 0.74509803921568629 0.74901960784313726 0.75294117647058822 0.75686274509803919 0.76078431372549016 0.76470588235294112 0.7686274509803922 0.77254901960784317 0.77647058823529413 0.7803921568627451 0.78431372549019607 0.78823529411764703 0.792156862745098 0.79607843137254897 0.80000000000000004 0.80392156862745101 0.80784313725490198 0.81176470588235294 0.81568627450980391 0.81960784313725488 0.82352941176470584 0.82745098039215681 0.83137254901960789 0.83529411764705885 0.83921568627450982 0.84313725490196079 0.84705882352941175 0.85098039215686272 0.85490196078431369 0.85882352941176465 0.86274509803921573 0.8666666666666667 0.87058823529411766 0.87450980392156863 0.8784313725490196 0.88235294117647056 0.88627450980392153 0.8901960784313725 0.89411764705882357 0.89803921568627454 0.90196078431372551 0.90588235294117647 0.90980392156862744 0.9137254901960784 0.91764705882352937 0.92156862745098034 0.92549019607843142 0.92941176470588238 0.93333333333333335 0.93725490196078431 0.94117647058823528 0.94509803921568625 0.94901960784313721 0.95294117647058818 0.95686274509803926 0.96078431372549022 0.96470588235294119 0.96862745098039216 0.97254901960784312 0.97647058823529409 0.98039215686274506 0.98431372549019602 0.9882352941176471 0.99215686274509807 0.99607843137254903 1))) +(GimpDeviceInfo "ROCCAT ROCCAT Nyth Mouse" + (icon-name "gimp-cursor") + (name "ROCCAT ROCCAT Nyth Mouse") + (tool-options "GimpCropOptions" + (tool "gimp-crop-tool")) + (use-fg-bg no) + (use-opacity-paint-mode no) + (use-brush no) + (use-dynamics no) + (use-mypaint-brush no) + (use-gradient no) + (use-pattern no) + (use-palette no) + (use-font no) + (mode disabled) + (axes 4 x y pressure xtilt) + (keys 0) + (pressure-curve + (curve-type smooth) + (points 0) + (point-types 0) + (n-samples 256) + (samples 256 0 0.0039215686274509803 0.0078431372549019607 0.011764705882352941 0.015686274509803921 0.019607843137254902 0.023529411764705882 0.027450980392156862 0.031372549019607843 0.035294117647058823 0.039215686274509803 0.043137254901960784 0.047058823529411764 0.050980392156862744 0.054901960784313725 0.058823529411764705 0.062745098039215685 0.066666666666666666 0.070588235294117646 0.074509803921568626 0.078431372549019607 0.082352941176470587 0.086274509803921567 0.090196078431372548 0.094117647058823528 0.098039215686274508 0.10196078431372549 0.10588235294117647 0.10980392156862745 0.11372549019607843 0.11764705882352941 0.12156862745098039 0.12549019607843137 0.12941176470588237 0.13333333333333333 0.13725490196078433 0.14117647058823529 0.14509803921568629 0.14901960784313725 0.15294117647058825 0.15686274509803921 0.16078431372549021 0.16470588235294117 0.16862745098039217 0.17254901960784313 0.17647058823529413 0.1803921568627451 0.18431372549019609 0.18823529411764706 0.19215686274509805 0.19607843137254902 0.20000000000000001 0.20392156862745098 0.20784313725490197 0.21176470588235294 0.21568627450980393 0.2196078431372549 0.22352941176470589 0.22745098039215686 0.23137254901960785 0.23529411764705882 0.23921568627450981 0.24313725490196078 0.24705882352941178 0.25098039215686274 0.25490196078431371 0.25882352941176473 0.2627450980392157 0.26666666666666666 0.27058823529411763 0.27450980392156865 0.27843137254901962 0.28235294117647058 0.28627450980392155 0.29019607843137257 0.29411764705882354 0.29803921568627451 0.30196078431372547 0.30588235294117649 0.30980392156862746 0.31372549019607843 0.31764705882352939 0.32156862745098042 0.32549019607843138 0.32941176470588235 0.33333333333333331 0.33725490196078434 0.3411764705882353 0.34509803921568627 0.34901960784313724 0.35294117647058826 0.35686274509803922 0.36078431372549019 0.36470588235294116 0.36862745098039218 0.37254901960784315 0.37647058823529411 0.38039215686274508 0.3843137254901961 0.38823529411764707 0.39215686274509803 0.396078431372549 0.40000000000000002 0.40392156862745099 0.40784313725490196 0.41176470588235292 0.41568627450980394 0.41960784313725491 0.42352941176470588 0.42745098039215684 0.43137254901960786 0.43529411764705883 0.4392156862745098 0.44313725490196076 0.44705882352941179 0.45098039215686275 0.45490196078431372 0.45882352941176469 0.46274509803921571 0.46666666666666667 0.47058823529411764 0.47450980392156861 0.47843137254901963 0.4823529411764706 0.48627450980392156 0.49019607843137253 0.49411764705882355 0.49803921568627452 0.50196078431372548 0.50588235294117645 0.50980392156862742 0.51372549019607838 0.51764705882352946 0.52156862745098043 0.52549019607843139 0.52941176470588236 0.53333333333333333 0.53725490196078429 0.54117647058823526 0.54509803921568623 0.5490196078431373 0.55294117647058827 0.55686274509803924 0.5607843137254902 0.56470588235294117 0.56862745098039214 0.5725490196078431 0.57647058823529407 0.58039215686274515 0.58431372549019611 0.58823529411764708 0.59215686274509804 0.59607843137254901 0.59999999999999998 0.60392156862745094 0.60784313725490191 0.61176470588235299 0.61568627450980395 0.61960784313725492 0.62352941176470589 0.62745098039215685 0.63137254901960782 0.63529411764705879 0.63921568627450975 0.64313725490196083 0.6470588235294118 0.65098039215686276 0.65490196078431373 0.6588235294117647 0.66274509803921566 0.66666666666666663 0.6705882352941176 0.67450980392156867 0.67843137254901964 0.68235294117647061 0.68627450980392157 0.69019607843137254 0.69411764705882351 0.69803921568627447 0.70196078431372544 0.70588235294117652 0.70980392156862748 0.71372549019607845 0.71764705882352942 0.72156862745098038 0.72549019607843135 0.72941176470588232 0.73333333333333328 0.73725490196078436 0.74117647058823533 0.74509803921568629 0.74901960784313726 0.75294117647058822 0.75686274509803919 0.76078431372549016 0.76470588235294112 0.7686274509803922 0.77254901960784317 0.77647058823529413 0.7803921568627451 0.78431372549019607 0.78823529411764703 0.792156862745098 0.79607843137254897 0.80000000000000004 0.80392156862745101 0.80784313725490198 0.81176470588235294 0.81568627450980391 0.81960784313725488 0.82352941176470584 0.82745098039215681 0.83137254901960789 0.83529411764705885 0.83921568627450982 0.84313725490196079 0.84705882352941175 0.85098039215686272 0.85490196078431369 0.85882352941176465 0.86274509803921573 0.8666666666666667 0.87058823529411766 0.87450980392156863 0.8784313725490196 0.88235294117647056 0.88627450980392153 0.8901960784313725 0.89411764705882357 0.89803921568627454 0.90196078431372551 0.90588235294117647 0.90980392156862744 0.9137254901960784 0.91764705882352937 0.92156862745098034 0.92549019607843142 0.92941176470588238 0.93333333333333335 0.93725490196078431 0.94117647058823528 0.94509803921568625 0.94901960784313721 0.95294117647058818 0.95686274509803926 0.96078431372549022 0.96470588235294119 0.96862745098039216 0.97254901960784312 0.97647058823529409 0.98039215686274506 0.98431372549019602 0.9882352941176471 0.99215686274509807 0.99607843137254903 1))) + +# end of devicerc diff --git a/.config/GIMP/2.10/dockrc b/.config/GIMP/2.10/dockrc new file mode 100644 index 000000000..bb1944be3 --- /dev/null +++ b/.config/GIMP/2.10/dockrc @@ -0,0 +1,4 @@ +# recently closed docks + + +# end of recently closed docks diff --git a/.config/GIMP/2.10/internal-data/custom.ggr b/.config/GIMP/2.10/internal-data/custom.ggr new file mode 100644 index 000000000..cb0e1d43e --- /dev/null +++ b/.config/GIMP/2.10/internal-data/custom.ggr @@ -0,0 +1,4 @@ +GIMP Gradient +Name: Custom +1 +0 0.5 1 0 0 0 1 1 1 1 1 0 0 1 3 diff --git a/.config/GIMP/2.10/menurc b/.config/GIMP/2.10/menurc new file mode 100644 index 000000000..a895a50e0 --- /dev/null +++ b/.config/GIMP/2.10/menurc @@ -0,0 +1,1311 @@ +; gimp-2.10 GtkAccelMap rc-file -*- scheme -*- +; this file is an automated accelerator map dump +; +; (gtk_accel_path "/tools/tools-rotate-image-arbitrary" "") +; (gtk_accel_path "/file/file-menu" "") +; (gtk_accel_path "/view/view-show-canvas-boundary" "") +; (gtk_accel_path "/tools/tools-opacity-set-to-default" "") +; (gtk_accel_path "/context/context-background-value-decrease" "") +; (gtk_accel_path "/vectors/vectors-color-tag-brown" "") +; (gtk_accel_path "/tools/tools-opacity-increase-skip" "greater") +; (gtk_accel_path "/tools/tools-vector" "b") +; (gtk_accel_path "/view/view-scroll-left" "") +; (gtk_accel_path "/image/image-convert-u8" "") +; (gtk_accel_path "/tools/tools-airbrush-rate-increase" "") +; (gtk_accel_path "/tools/tools-spacing-set-to-default" "") +; (gtk_accel_path "/view/view-show-statusbar" "") +; (gtk_accel_path "/layers/layers-opacity-transparent" "") +; (gtk_accel_path "/vectors/vectors-color-tag-orange" "") +; (gtk_accel_path "/view/view-zoom-8-1-accel" "KP_4") +; (gtk_accel_path "/context/context-background-value-set" "") +; (gtk_accel_path "/context/context-paint-mode-menu" "") +; (gtk_accel_path "/filters/filters-motion-blur-linear" "") +; (gtk_accel_path "/filters/filters-gegl-graph" "") +; (gtk_accel_path "/context/context-brush-select-set" "") +; (gtk_accel_path "/edit/edit-copy" "c") +; (gtk_accel_path "/context/context-brush-shape-circle" "") +; (gtk_accel_path "/windows/windows-display-0001" "") +; (gtk_accel_path "/vectors/vectors-lock-content" "") +; (gtk_accel_path "/context/context-opacity-opaque" "") +; (gtk_accel_path "/view/view-color-management-menu" "") +; (gtk_accel_path "/filters/filters-spherize" "") +; (gtk_accel_path "/channels/channels-new-last-values" "") +; (gtk_accel_path "/vectors/vectors-merge-visible" "") +; (gtk_accel_path "/plug-in/script-fu-slide" "") +; (gtk_accel_path "/plug-in/plug-in-spheredesigner" "") +; (gtk_accel_path "/filters/filters-curves" "") +; (gtk_accel_path "/channels/channels-lock-position" "") +; (gtk_accel_path "/context/context-brush-menu" "") +; (gtk_accel_path "/context/context-foreground-blue-decrease" "") +; (gtk_accel_path "/context/context-colors-menu" "") +; (gtk_accel_path "/edit/edit-undo-clear" "") +; (gtk_accel_path "/context/context-gradient-select-first" "") +; (gtk_accel_path "/layers/layers-color-tag-brown" "") +; (gtk_accel_path "/plug-in/plug-in-imagemap" "") +; (gtk_accel_path "/filters/filters-recent-menu" "") +; (gtk_accel_path "/plug-in/plug-in-map-object" "") +; (gtk_accel_path "/layers/layers-text-along-vectors" "") +; (gtk_accel_path "/view/view-zoom-revert" "grave") +; (gtk_accel_path "/dialogs/dialogs-symmetry" "") +; (gtk_accel_path "/plug-in/plug-in-script-fu-console" "") +; (gtk_accel_path "/filters/filters-plasma" "") +; (gtk_accel_path "/view/view-color-management-enable" "") +; (gtk_accel_path "/dialogs/dialogs-undo-history" "") +; (gtk_accel_path "/edit/edit-cut" "x") +; (gtk_accel_path "/context/context-foreground-value-increase-skip" "") +; (gtk_accel_path "/plug-in/script-fu-addborder" "") +; (gtk_accel_path "/view/view-display-intent-absolute-colorimetric" "") +; (gtk_accel_path "/context/context-background-red-decrease" "") +; (gtk_accel_path "/tools/tools-airbrush-rate-maximum" "") +; (gtk_accel_path "/vectors/vectors-color-tag-menu" "") +; (gtk_accel_path "/filters/filters-focus-blur" "") +; (gtk_accel_path "/view/view-fullscreen" "F11") +; (gtk_accel_path "/context/context-brush-radius-decrease-skip" "") +; (gtk_accel_path "/dialogs/dialogs-brushes" "b") +; (gtk_accel_path "/tools/tools-spacing-minimum" "") +; (gtk_accel_path "/context/context-foreground-blue-maximum" "") +; (gtk_accel_path "/view/view-zoom-2-1" "2") +; (gtk_accel_path "/view/view-snap-to-vectors" "") +; (gtk_accel_path "/context/context-foreground-red-increase" "") +; (gtk_accel_path "/image/image-properties" "Return") +; (gtk_accel_path "/drawable/drawable-rotate-270" "") +; (gtk_accel_path "/plug-in/script-fu-predator" "") +; (gtk_accel_path "/tools/tools-hardness-increase-percent" "") +; (gtk_accel_path "/plug-in/plug-in-colorify" "") +; (gtk_accel_path "/view/view-show-grid" "") +; (gtk_accel_path "/image/image-color-management-enabled" "") +; (gtk_accel_path "/tools/tools-angle-increase" "") +; (gtk_accel_path "/vectors/vectors-color-tag-violet" "") +; (gtk_accel_path "/context/context-background-saturation-decrease-skip" "") +; (gtk_accel_path "/layers/layers-composite-mode-union" "") +; (gtk_accel_path "/channels/channels-color-tag-blue" "") +; (gtk_accel_path "/windows/windows-dialogs-menu" "") +; (gtk_accel_path "/tools/tools-gegl" "") +; (gtk_accel_path "/tool-options/tool-options-reset" "") +; (gtk_accel_path "/layers/layers-delete" "") +; (gtk_accel_path "/view/view-display-intent-menu" "") +; (gtk_accel_path "/vectors/vectors-edit" "") +; (gtk_accel_path "/filters/filters-illusion" "") +; (gtk_accel_path "/context/context-colormap-foreground-previous" "") +; (gtk_accel_path "/layers/layers-lock-content" "") +; (gtk_accel_path "/file/file-create-menu" "") +; (gtk_accel_path "/tools/tools-spacing-decrease-skip" "") +; (gtk_accel_path "/filters/filters-dropshadow" "") +; (gtk_accel_path "/context/context-background-green-increase" "") +; (gtk_accel_path "/layers/layers-alpha-selection-add" "") +; (gtk_accel_path "/plug-in/script-fu-make-brush-rectangular-feathered" "") +; (gtk_accel_path "/patterns/patterns-delete" "") +; (gtk_accel_path "/context/context-brush-radius-menu" "") +; (gtk_accel_path "/view/view-scroll-page-right" "") +; (gtk_accel_path "/layers/layers-blend-space-menu" "") +; (gtk_accel_path "/dockable/dialogs-histogram" "") +; (gtk_accel_path "/layers/layers-opacity-opaque" "") +; (gtk_accel_path "/context/context-background-saturation-increase" "") +; (gtk_accel_path "/dialogs/dialogs-dynamics-editor" "") +; (gtk_accel_path "/layers/layers-composite-space-menu" "") +; (gtk_accel_path "/file/file-revert" "") +; (gtk_accel_path "/filters/filters-fattal-2002" "") +; (gtk_accel_path "/tools/tools-color-average-radius-set" "") +; (gtk_accel_path "/filters/filters-distorts-menu" "") +; (gtk_accel_path "/tools/tools-fuzzy-select" "u") +; (gtk_accel_path "/documents/documents-reload-previews" "") +; (gtk_accel_path "/debug/debug-show-image-graph" "") +; (gtk_accel_path "/brushes/brushes-show-in-file-manager" "") +; (gtk_accel_path "/context/context-brush-angle-maximum" "") +; (gtk_accel_path "/view/view-zoom-selection" "") +; (gtk_accel_path "/tools/tools-cage" "g") +; (gtk_accel_path "/file/file-open-location" "") +; (gtk_accel_path "/plug-in/plug-in-blur" "") +; (gtk_accel_path "/layers/layers-opacity-decrease" "") +; (gtk_accel_path "/context/context-foreground-hue-decrease-skip" "") +; (gtk_accel_path "/layers/layers-mask-add" "") +; (gtk_accel_path "/filters/filters-diffraction-patterns" "") +; (gtk_accel_path "/image/image-convert-rgb" "") +; (gtk_accel_path "/tools/tools-spacing-decrease-percent" "") +; (gtk_accel_path "/context/context-gradient-select-last" "") +; (gtk_accel_path "/file/file-create-template" "") +; (gtk_accel_path "/vectors/vectors-color-tag-yellow" "") +; (gtk_accel_path "/plug-in/plug-in-emboss" "") +; (gtk_accel_path "/dockable/dockable-view-type-grid" "") +; (gtk_accel_path "/view/view-navigation-window" "") +; (gtk_accel_path "/windows/windows-tabs-position-bottom" "") +; (gtk_accel_path "/context/context-brush-angle-set" "") +; (gtk_accel_path "/documents/documents-raise-or-open" "") +; (gtk_accel_path "/context/context-background-blue-decrease" "") +; (gtk_accel_path "/filters/filters-linear-sinusoid" "") +; (gtk_accel_path "/context/context-foreground-green-set" "") +; (gtk_accel_path "/tools/tools-levels" "") +; (gtk_accel_path "/plug-in/plug-in-script-fu-server" "") +; (gtk_accel_path "/dock/dock-move-to-screen-menu" "") +; (gtk_accel_path "/windows/windows-tabs-position-right" "") +; (gtk_accel_path "/plug-in/script-fu-line-nova" "") +; (gtk_accel_path "/layers/layers-color-tag-blue" "") +; (gtk_accel_path "/dialogs/dialogs-indexed-palette" "") +; (gtk_accel_path "/tools/tools-object-1-set" "") +; (gtk_accel_path "/channels/channels-new" "") +; (gtk_accel_path "/edit/edit-named-paste" "") +; (gtk_accel_path "/tools/tools-hardness-minimum" "") +; (gtk_accel_path "/filters/filters-menu" "") +; (gtk_accel_path "/tools/tools-opacity-set" "") +; (gtk_accel_path "/dockable/dialogs-toolbox" "b") +; (gtk_accel_path "/plug-in/gimp-help-using-fileformats" "") +; (gtk_accel_path "/edit/edit-strong-redo" "y") +; (gtk_accel_path "/filters/filters-alien-map" "") +; (gtk_accel_path "/plug-in/gimp-online-bugs-features" "") +; (gtk_accel_path "/tools/tools-object-2-last" "") +; (gtk_accel_path "/tools/tools-paintbrush-force-set" "") +; (gtk_accel_path "/vectors/vectors-linked" "") +; (gtk_accel_path "/filters/filters-gaussian-blur-selective" "") +; (gtk_accel_path "/filters/filters-unsharp-mask" "") +; (gtk_accel_path "/fonts/fonts-refresh" "") +; (gtk_accel_path "/file/file-open-recent-menu" "") +; (gtk_accel_path "/tools/tools-hardness-decrease" "") +; (gtk_accel_path "/layers/layers-mask-show" "") +; (gtk_accel_path "/view/view-softproof-intent-absolute-colorimetric" "") +; (gtk_accel_path "/brushes/brushes-open-as-image" "") +; (gtk_accel_path "/tools/tools-angle-decrease" "") +; (gtk_accel_path "/layers/layers-merge-layers-last-values" "") +; (gtk_accel_path "/context/context-background-blue-set" "") +; (gtk_accel_path "/tools/tools-opacity-increase-percent" "") +; (gtk_accel_path "/context/context-background-value-decrease-skip" "") +; (gtk_accel_path "/patterns/patterns-new" "") +; (gtk_accel_path "/plug-in/script-fu-spinning-globe" "") +; (gtk_accel_path "/windows/windows-menu" "") +; (gtk_accel_path "/tools/tools-object-1-first" "") +; (gtk_accel_path "/image/image-flip-horizontal" "") +; (gtk_accel_path "/plug-in/plug-in-sharpen" "") +; (gtk_accel_path "/tools/tools-force-decrease-percent" "") +; (gtk_accel_path "/context/context-brush-hardness-set" "") +; (gtk_accel_path "/select/select-stroke-last-values" "") +; (gtk_accel_path "/filters/filters-long-shadow" "") +; (gtk_accel_path "/context/context-brush-radius-increase-percent" "") +; (gtk_accel_path "/plug-in/plug-in-animationoptimize-diff" "") +; (gtk_accel_path "/tools/tools-perspective-clone" "") +; (gtk_accel_path "/image/colors-auto-menu" "") +; (gtk_accel_path "/vectors/vectors-selection-to-vectors-advanced" "") +; (gtk_accel_path "/context/context-background-saturation-decrease" "") +; (gtk_accel_path "/plug-in/script-fu-unsharp-mask" "") +; (gtk_accel_path "/tools/tools-rect-select" "r") +; (gtk_accel_path "/tools/tools-angle-set-to-default" "") +; (gtk_accel_path "/filters/filters-semi-flatten" "") +; (gtk_accel_path "/tools/tools-opacity-maximum" "") +; (gtk_accel_path "/dockable/dockable-tab-style-preview-name" "") +; (gtk_accel_path "/view/view-zoom-in-skip" "") +; (gtk_accel_path "/tools/tools-airbrush-flow-decrease" "") +; (gtk_accel_path "/plug-in/plug-in-dog" "") +; (gtk_accel_path "/debug/debug-mem-profile" "") +; (gtk_accel_path "/channels/channels-visible" "") +; (gtk_accel_path "/edit/edit-paste-as-new-layer" "") +; (gtk_accel_path "/context/context-foreground-hue-maximum" "") +; (gtk_accel_path "/tool-options/tool-options-restore-preset-menu" "") +; (gtk_accel_path "/dockable/dialogs-undo-history" "") +; (gtk_accel_path "/tools/tools-paintbrush-hardness-set" "") +; (gtk_accel_path "/filters/filters-stretch-contrast" "") +; (gtk_accel_path "/filters/filters-color-to-alpha" "") +; (gtk_accel_path "/dockable/dialogs-cursor" "") +; (gtk_accel_path "/context/context-brush-aspect-maximum" "") +; (gtk_accel_path "/dockable/dialogs-templates" "") +; (gtk_accel_path "/plug-in/script-fu-ripply-anim" "") +; (gtk_accel_path "/view/view-show-menubar" "") +; (gtk_accel_path "/filters/filters-web-menu" "") +; (gtk_accel_path "/filters/filters-bloom" "") +; (gtk_accel_path "/filters/filters-exposure" "") +; (gtk_accel_path "/tools/tools-foreground-select-brush-size-set" "") +; (gtk_accel_path "/tools/tools-spacing-increase" "") +; (gtk_accel_path "/context/context-background-hue-decrease-skip" "") +; (gtk_accel_path "/select/select-shrink" "") +; (gtk_accel_path "/view/view-scroll-horizontal" "") +; (gtk_accel_path "/select/select-fill-last-values" "") +; (gtk_accel_path "/image/image-resize-to-selection" "") +; (gtk_accel_path "/plug-in/script-fu-tile-blur" "") +; (gtk_accel_path "/filters/filters-color-temperature" "") +; (gtk_accel_path "/plug-in/script-fu-paste-as-pattern" "") +; (gtk_accel_path "/tools/tools-paintbrush-aspect-ratio-set" "") +; (gtk_accel_path "/plug-in/plug-in-gfig" "") +; (gtk_accel_path "/context/context-foreground-hue-set" "") +; (gtk_accel_path "/tools/tools-gradient" "g") +; (gtk_accel_path "/select/select-none" "a") +; (gtk_accel_path "/edit/edit-named-cut" "") +; (gtk_accel_path "/context/context-palette-select-set" "") +; (gtk_accel_path "/channels/channels-select-next" "") +; (gtk_accel_path "/image/image-precision-menu" "") +; (gtk_accel_path "/layers/layers-mask-menu" "") +; (gtk_accel_path "/layers/layers-alpha-selection-replace" "") +; (gtk_accel_path "/plug-in/gimp-palette-export-php" "") +; (gtk_accel_path "/filters/filters-noise-hsv" "") +; (gtk_accel_path "/filters/filters-noise-simplex" "") +; (gtk_accel_path "/help/help-help" "F1") +; (gtk_accel_path "/context/context-opacity-increase-skip" "") +; (gtk_accel_path "/view/view-padding-color-light-check" "") +; (gtk_accel_path "/context/context-brush-spikes-minimum" "") +; (gtk_accel_path "/plug-in/plug-in-gflare" "") +; (gtk_accel_path "/context/context-brush-aspect-set" "") +; (gtk_accel_path "/plug-in/plug-in-zealouscrop" "") +; (gtk_accel_path "/dockable/dialogs-gradient-editor" "") +; (gtk_accel_path "/tools/tools-color-menu" "") +; (gtk_accel_path "/tools/tools-airbrush-flow-maximum" "") +; (gtk_accel_path "/view/view-flip-horizontally" "") +; (gtk_accel_path "/layers/layers-composite-mode-auto" "") +; (gtk_accel_path "/plug-in/gimp-online-developer-web-site" "") +; (gtk_accel_path "/dockable/dockable-tab-style-name" "") +; (gtk_accel_path "/vectors/vectors-raise-to-top" "") +; (gtk_accel_path "/view/view-scroll-page-left" "") +; (gtk_accel_path "/tools/tools-threshold" "") +; (gtk_accel_path "/filters/filters-threshold" "") +; (gtk_accel_path "/tools/tools-airbrush-flow-set" "") +; (gtk_accel_path "/context/context-brush-spacing-minimum" "") +; (gtk_accel_path "/layers/layers-select-bottom" "End") +; (gtk_accel_path "/dockable/dockable-tab-style-preview" "") +; (gtk_accel_path "/dockable/dialogs-channels" "") +; (gtk_accel_path "/channels/channels-color-tag-none" "") +; (gtk_accel_path "/tools/tools-paintbrush" "p") +; (gtk_accel_path "/vectors/vectors-color-tag-gray" "") +; (gtk_accel_path "/context/context-brush-spacing-increase-skip" "") +; (gtk_accel_path "/vectors/vectors-stroke-last-values" "") +; (gtk_accel_path "/view/view-show-sample-points" "") +; (gtk_accel_path "/documents/documents-remove" "") +; (gtk_accel_path "/filters/filters-antialias" "") +; (gtk_accel_path "/dockable/dockable-preview-size-medium" "") +; (gtk_accel_path "/dockable/dialogs-colors" "") +; (gtk_accel_path "/view/view-show-all" "") +; (gtk_accel_path "/debug/debug-benchmark-projection" "") +; (gtk_accel_path "/context/context-brush-spikes-decrease" "") +; (gtk_accel_path "/filters/filters-noise-hurl" "") +; (gtk_accel_path "/file/file-save-and-close" "") +; (gtk_accel_path "/dialogs/dialogs-document-history" "") +; (gtk_accel_path "/context/context-opacity-set" "") +; (gtk_accel_path "/plug-in/script-fu-blend-anim" "") +; (gtk_accel_path "/view/view-zoom-in" "plus") +; (gtk_accel_path "/plug-in/plug-in-smooth-palette" "") +; (gtk_accel_path "/context/context-swatch-background-set" "") +; (gtk_accel_path "/windows/windows-tab-position" "") +; (gtk_accel_path "/dialogs/dialogs-error-console" "") +; (gtk_accel_path "/view/view-rotate-15" "") +; (gtk_accel_path "/view/view-zoom" "") +; (gtk_accel_path "/view/view-scroll-top-border" "") +; (gtk_accel_path "/layers/layers-new" "n") +; (gtk_accel_path "/plug-in/gimp-palette-export-java" "") +; (gtk_accel_path "/context/context-foreground-blue-increase-skip" "") +; (gtk_accel_path "/plug-in/script-fu-burn-in-anim" "") +; (gtk_accel_path "/tools/tools-paint-menu" "") +; (gtk_accel_path "/plug-in/plug-in-colormap-swap" "") +; (gtk_accel_path "/dockable/dialogs-mypaint-brushes" "") +; (gtk_accel_path "/dockable/dockable-preview-size-menu" "") +; (gtk_accel_path "/image/colors-menu" "") +; (gtk_accel_path "/vectors/vectors-lock-position" "") +; (gtk_accel_path "/vectors/vectors-visible" "") +; (gtk_accel_path "/image/image-flatten" "") +; (gtk_accel_path "/tools/tools-spacing-decrease" "") +; (gtk_accel_path "/filters/filters-dither" "") +; (gtk_accel_path "/plug-in/plug-in-decompose-registered" "") +; (gtk_accel_path "/channels/channels-selection-intersect" "") +; (gtk_accel_path "/plug-in/plug-in-cartoon" "") +; (gtk_accel_path "/view/view-softproof-intent-perceptual" "") +; (gtk_accel_path "/tools/tools-offset" "") +; (gtk_accel_path "/image/image-convert-float" "") +; (gtk_accel_path "/edit/edit-clear" "Delete") +; (gtk_accel_path "/view/view-scroll-down" "") +; (gtk_accel_path "/context/context-foreground-green-increase" "") +; (gtk_accel_path "/image/image-scale" "") +; (gtk_accel_path "/tools/tools-aspect-increase-skip" "") +; (gtk_accel_path "/context/context-colormap-background-previous" "") +; (gtk_accel_path "/image/colors-info-menu" "") +; (gtk_accel_path "/plug-in/plug-in-lic" "") +; (gtk_accel_path "/context/context-background-value-increase" "") +; (gtk_accel_path "/dialogs/dialogs-channels" "") +; (gtk_accel_path "/filters/filters-component-extract" "") +; (gtk_accel_path "/tools/tools-size-maximum" "") +; (gtk_accel_path "/dockable/dialogs-dashboard" "") +; (gtk_accel_path "/vectors/vectors-select-previous" "") +; (gtk_accel_path "/layers/layers-mode-menu" "") +; (gtk_accel_path "/filters/filters-render-nature-menu" "") +; (gtk_accel_path "/layers/layers-color-tag-none" "") +; (gtk_accel_path "/dockable/dialogs-gradients" "g") +; (gtk_accel_path "/tools/tools-heal" "h") +; (gtk_accel_path "/view/view-scroll-right" "") +; (gtk_accel_path "/dialogs/dialogs-cursor" "") +; (gtk_accel_path "/context/context-foreground-saturation-minimum" "") +; (gtk_accel_path "/context/context-background-red-maximum" "") +; (gtk_accel_path "/context/context-brush-spikes-menu" "") +; (gtk_accel_path "/filters/filters-recent-10" "") +; (gtk_accel_path "/plug-in/file-gif-save2" "") +; (gtk_accel_path "/drawable/drawable-flip-horizontal" "") +; (gtk_accel_path "/layers/layers-merge-group" "") +; (gtk_accel_path "/file/file-open" "o") +; (gtk_accel_path "/plug-in/script-fu-font-map" "") +; (gtk_accel_path "/tools/tools-transform-preview-opacity-set" "") +; (gtk_accel_path "/dialogs/dialogs-histogram" "") +; (gtk_accel_path "/filters/filters-lens-blur" "") +; (gtk_accel_path "/view/view-rotate-set-absolute" "") +; (gtk_accel_path "/layers/layers-mask-apply" "") +; (gtk_accel_path "/context/context-brush-radius-increase-less" "") +; (gtk_accel_path "/dialogs/dialogs-brush-editor" "") +; (gtk_accel_path "/context/context-background-saturation-maximum" "") +; (gtk_accel_path "/context/context-foreground-blue-increase" "") +; (gtk_accel_path "/layers/layers-duplicate" "d") +; (gtk_accel_path "/context/context-palette-select-next" "") +; (gtk_accel_path "/context/context-palette-foreground-next-skip" "") +; (gtk_accel_path "/layers/layers-mask-selection-add" "") +; (gtk_accel_path "/tools/tools-dodge-burn" "d") +; (gtk_accel_path "/edit/edit-copy-visible" "c") +; (gtk_accel_path "/brushes/brushes-duplicate" "") +; (gtk_accel_path "/layers/layers-select-previous" "Page_Up") +; (gtk_accel_path "/tools/tools-angle-maximum" "") +; (gtk_accel_path "/dockable/dockable-lock-tab" "") +; (gtk_accel_path "/context/context-foreground-value-minimum" "") +; (gtk_accel_path "/file/file-close-all" "w") +; (gtk_accel_path "/dialogs/dialogs-sample-points" "") +; (gtk_accel_path "/layers/layers-opacity-menu" "") +; (gtk_accel_path "/plug-in/plug-in-metadata-editor" "") +; (gtk_accel_path "/tools/tools-angle-increase-percent" "") +; (gtk_accel_path "/plug-in/script-fu-drop-shadow" "") +; (gtk_accel_path "/filters/filters-render-menu" "") +; (gtk_accel_path "/plug-in/plug-in-jigsaw" "") +; (gtk_accel_path "/dockable/dockable-tab-style-menu" "") +; (gtk_accel_path "/context/context-brush-hardness-decrease-skip" "") +; (gtk_accel_path "/plug-in/file-pdf-load" "") +; (gtk_accel_path "/plug-in/script-fu-guides-from-selection" "") +; (gtk_accel_path "/plug-in/script-fu-selection-to-brush" "") +; (gtk_accel_path "/layers/layers-blend-space-rgb-linear" "") +; (gtk_accel_path "/context/context-background-blue-maximum" "") +; (gtk_accel_path "/tools/tools-zoom" "z") +; (gtk_accel_path "/context/context-swatch-foreground-previous-skip" "") +; (gtk_accel_path "/context/context-background-red-increase" "") +; (gtk_accel_path "/plug-in/plug-in-checkerboard" "") +; (gtk_accel_path "/dockable/dockable-popup" "") +; (gtk_accel_path "/dockable/dockable-preview-size-extra-small" "") +; (gtk_accel_path "/filters/filters-render-clouds-menu" "") +; (gtk_accel_path "/context/context-palette-foreground-first" "") +; (gtk_accel_path "/view/view-zoom-4-1" "3") +; (gtk_accel_path "/channels/channels-duplicate" "") +; (gtk_accel_path "/context/context-brush-aspect-menu" "") +; (gtk_accel_path "/tools/tools-object-2-set" "") +; (gtk_accel_path "/context/context-brush-radius-increase" "") +; (gtk_accel_path "/context/context-swatch-background-next" "") +; (gtk_accel_path "/view/view-display-black-point-compensation" "") +; (gtk_accel_path "/tools/tools-size-decrease" "bracketleft") +; (gtk_accel_path "/dialogs/dialogs-colors" "") +; (gtk_accel_path "/filters/filters-edge" "") +; (gtk_accel_path "/image/image-rotate-180" "") +; (gtk_accel_path "/image/image-new" "n") +; (gtk_accel_path "/tool-options/tool-options-delete-preset-menu" "") +; (gtk_accel_path "/tools/tools-ink-blob-size-set" "") +; (gtk_accel_path "/filters/filters-value-propagate" "") +; (gtk_accel_path "/image/image-color-profile-assign" "") +; (gtk_accel_path "/layers/layers-composite-space-rgb-perceptual" "") +; (gtk_accel_path "/context/context-foreground-green-decrease" "") +; (gtk_accel_path "/layers/layers-scale" "") +; (gtk_accel_path "/layers/layers-transparency-menu" "") +; (gtk_accel_path "/layers/layers-alpha-remove" "") +; (gtk_accel_path "/context/context-pattern-select-set" "") +; (gtk_accel_path "/filters/filters-image-gradient" "") +; (gtk_accel_path "/select/select-all" "a") +; (gtk_accel_path "/plug-in/plug-in-filter-pack" "") +; (gtk_accel_path "/context/context-brush-hardness-maximum" "") +; (gtk_accel_path "/plug-in/plug-in-recompose" "") +; (gtk_accel_path "/view/view-zoom-menu" "") +; (gtk_accel_path "/image/image-convert-u16" "") +; (gtk_accel_path "/filters/filters-kaleidoscope" "") +; (gtk_accel_path "/context/context-colormap-foreground-previous-skip" "") +; (gtk_accel_path "/view/view-snap-to-grid" "") +; (gtk_accel_path "/vectors/vectors-fill" "") +; (gtk_accel_path "/view/view-color-management-reset" "") +; (gtk_accel_path "/context/context-background-green-set" "") +; (gtk_accel_path "/tools/tools-force-maximum" "") +; (gtk_accel_path "/context/context-foreground-saturation-increase" "") +; (gtk_accel_path "/dockable/dialogs-device-status" "") +; (gtk_accel_path "/edit/edit-named-copy" "") +; (gtk_accel_path "/filters/filters-video-degradation" "") +; (gtk_accel_path "/edit/edit-paste-as-new-layer-in-place" "") +; (gtk_accel_path "/layers/layers-resize" "") +; (gtk_accel_path "/layers/layers-blend-space-rgb-perceptual" "") +; (gtk_accel_path "/layers/layers-stack-menu" "") +; (gtk_accel_path "/dockable/dockable-show-button-bar" "") +; (gtk_accel_path "/view/view-zoom-fill" "") +; (gtk_accel_path "/filters/filters-stretch-contrast-hsv" "") +; (gtk_accel_path "/view/view-padding-color-prefs" "") +; (gtk_accel_path "/plug-in/plug-in-depth-merge" "") +; (gtk_accel_path "/tools/tools-opacity-decrease-skip" "less") +; (gtk_accel_path "/plug-in/plug-in-guillotine" "") +; (gtk_accel_path "/windows/windows-tabs-position-left" "") +; (gtk_accel_path "/documents/documents-recreate-preview" "") +; (gtk_accel_path "/layers/layers-opacity-increase" "") +; (gtk_accel_path "/view/view-padding-color-in-show-all" "") +; (gtk_accel_path "/image/colors-tone-mapping-menu" "") +; (gtk_accel_path "/tools/tools-size-set" "") +; (gtk_accel_path "/context/context-brush-angle-increase-skip" "") +; (gtk_accel_path "/dialogs/dialogs-fonts" "") +; (gtk_accel_path "/channels/channels-linked" "") +; (gtk_accel_path "/dockable/dockable-preview-size-gigantic" "") +; (gtk_accel_path "/plug-in/script-fu-difference-clouds" "") +; (gtk_accel_path "/plug-in/plug-in-dbbrowser" "") +; (gtk_accel_path "/context/context-background-hue-set" "") +; (gtk_accel_path "/plug-in/plug-in-align-layers" "") +; (gtk_accel_path "/context/context-background-blue-increase" "") +; (gtk_accel_path "/dockable/dialogs-palettes" "") +; (gtk_accel_path "/filters/filters-hue-chroma" "") +; (gtk_accel_path "/plug-in/plug-in-blinds" "") +; (gtk_accel_path "/dockable/dockable-preview-size-enormous" "") +; (gtk_accel_path "/filters/filters-edge-detect-menu" "") +; (gtk_accel_path "/channels/channels-lock-content" "") +; (gtk_accel_path "/context/context-paint-mode-next" "") +; (gtk_accel_path "/tools/tools-clone" "c") +; (gtk_accel_path "/plug-in/script-fu-make-brush-elliptical-feathered" "") +; (gtk_accel_path "/tools/tools-color-picker" "o") +; (gtk_accel_path "/context/context-background-value-minimum" "") +; (gtk_accel_path "/drawable/drawable-linked" "") +; (gtk_accel_path "/select/select-sharpen" "") +; (gtk_accel_path "/context/context-colormap-foreground-next" "") +; (gtk_accel_path "/view/view-zoom-4-1-accel" "KP_3") +; (gtk_accel_path "/edit/edit-undo" "z") +; (gtk_accel_path "/plug-in/script-fu-paste-as-brush" "") +; (gtk_accel_path "/filters/filters-noise-cie-lch" "") +; (gtk_accel_path "/filters/filters-invert-perceptual" "") +; (gtk_accel_path "/vectors/vectors-selection-replace" "") +; (gtk_accel_path "/file/file-save-a-copy" "") +; (gtk_accel_path "/vectors/vectors-delete" "") +; (gtk_accel_path "/vectors/vectors-color-tag-blue" "") +; (gtk_accel_path "/channels/channels-edit-attributes" "") +; (gtk_accel_path "/tools/tools-transform-3d" "w") +; (gtk_accel_path "/file/file-show-in-file-manager" "f") +; (gtk_accel_path "/context/context-swatch-background-previous-skip" "") +; (gtk_accel_path "/windows/windows-tabs-position-top" "") +; (gtk_accel_path "/context/context-brush-radius-decrease" "") +; (gtk_accel_path "/filters/filters-light-shadow-menu" "") +; (gtk_accel_path "/layers/layers-mode-previous" "") +; (gtk_accel_path "/vectors/vectors-export" "") +; (gtk_accel_path "/tools/tools-hardness-increase" "") +; (gtk_accel_path "/tools/tools-size-increase-percent" "") +; (gtk_accel_path "/view/view-zoom-16-1-accel" "KP_5") +; (gtk_accel_path "/filters/filters-deinterlace" "") +; (gtk_accel_path "/plug-in/plug-in-compose" "") +; (gtk_accel_path "/context/context-colors-swap" "x") +; (gtk_accel_path "/context/context-foreground-value-decrease-skip" "") +; (gtk_accel_path "/drawable/drawable-lock-position" "") +; (gtk_accel_path "/context/context-palette-background-first" "") +; (gtk_accel_path "/select/select-grow" "") +; (gtk_accel_path "/dockable/dockable-tab-style-icon" "") +; (gtk_accel_path "/documents/documents-remove-dangling" "") +; (gtk_accel_path "/filters/filters-recent-09" "") +; (gtk_accel_path "/help/help-context-help" "F1") +; (gtk_accel_path "/dockable/dialogs-images" "") +; (gtk_accel_path "/tools/tools-opacity-decrease-percent" "") +; (gtk_accel_path "/plug-in/plug-in-gimpressionist" "") +; (gtk_accel_path "/filters/filters-recent-08" "") +; (gtk_accel_path "/plug-in/script-fu-selection-rounded-rectangle" "") +; (gtk_accel_path "/plug-in/script-fu-grid-system" "") +; (gtk_accel_path "/dialogs/dialogs-tool-options" "") +; (gtk_accel_path "/context/context-colormap-background-previous-skip" "") +; (gtk_accel_path "/dockable/dialogs-vectors" "") +; (gtk_accel_path "/dockable/dialogs-navigation" "") +; (gtk_accel_path "/context/context-colormap-foreground-first" "") +; (gtk_accel_path "/tools/tools-unified-transform" "t") +; (gtk_accel_path "/view/view-zoom-in-accel" "KP_Add") +; (gtk_accel_path "/dialogs/dialogs-palettes" "") +; (gtk_accel_path "/file/file-quit" "q") +; (gtk_accel_path "/context/context-foreground-saturation-decrease" "") +; (gtk_accel_path "/image/image-menubar" "") +; (gtk_accel_path "/filters/filters-recent-07" "") +; (gtk_accel_path "/plug-in/script-fu-circuit" "") +; (gtk_accel_path "/tools/tools-ellipse-select" "e") +; (gtk_accel_path "/plug-in/script-fu-make-brush-rectangular" "") +; (gtk_accel_path "/filters/filters-invert-linear" "") +; (gtk_accel_path "/plug-in/script-fu-erase-rows" "") +; (gtk_accel_path "/filters/filters-noise-pick" "") +; (gtk_accel_path "/tools/tools-curves" "") +; (gtk_accel_path "/file/file-export-as" "e") +; (gtk_accel_path "/layers/layers-color-tag-red" "") +; (gtk_accel_path "/view/view-scroll-center" "j") +; (gtk_accel_path "/image/image-popup" "") +; (gtk_accel_path "/filters/filters-recent-06" "") +; (gtk_accel_path "/tools/tools-airbrush-flow-increase" "") +; (gtk_accel_path "/dialogs/dialogs-toolbox" "b") +; (gtk_accel_path "/view/view-scroll-bottom-border" "") +; (gtk_accel_path "/plug-in/plug-in-palettemap" "") +; (gtk_accel_path "/plug-in/plug-in-softglow" "") +; (gtk_accel_path "/context/context-pattern-select-previous" "") +; (gtk_accel_path "/edit/edit-menu" "") +; (gtk_accel_path "/filters/filters-recent-05" "") +; (gtk_accel_path "/image/image-color-profile-convert" "") +; (gtk_accel_path "/plug-in/plug-in-wavelet-decompose" "") +; (gtk_accel_path "/context/context-palette-select-last" "") +; (gtk_accel_path "/view/view-scroll-page-down" "") +; (gtk_accel_path "/filters/filters-recent-04" "") +; (gtk_accel_path "/image/image-convert-linear" "") +; (gtk_accel_path "/context/context-foreground-value-increase" "") +; (gtk_accel_path "/view/view-zoom-out-accel" "KP_Subtract") +; (gtk_accel_path "/brushes/brushes-edit" "") +; (gtk_accel_path "/image/image-crop-to-selection" "") +; (gtk_accel_path "/context/context-brush-radius-maximum" "") +; (gtk_accel_path "/filters/filters-oilify" "") +; (gtk_accel_path "/layers/layers-opacity-increase-skip" "") +; (gtk_accel_path "/windows/windows-docks-menu" "") +; (gtk_accel_path "/filters/filters-emboss" "") +; (gtk_accel_path "/dockable/dockable-menu" "") +; (gtk_accel_path "/filters/filters-recent-03" "") +; (gtk_accel_path "/plug-in/plug-in-qbist" "") +; (gtk_accel_path "/layers/layers-lower" "") +; (gtk_accel_path "/tools/tools-align" "q") +; (gtk_accel_path "/context/context-brush-aspect-increase-skip" "") +; (gtk_accel_path "/tools/tools-handle-transform" "l") +; (gtk_accel_path "/layers/layers-new-group" "") +; (gtk_accel_path "/filters/filters-waves" "") +; (gtk_accel_path "/context/context-opacity-menu" "") +; (gtk_accel_path "/filters/filters-recent-02" "") +; (gtk_accel_path "/layers/layers-crop-to-content" "") +; (gtk_accel_path "/filters/filters-whirl-pinch" "") +; (gtk_accel_path "/filters/filters-render-pattern-menu" "") +; (gtk_accel_path "/tools/tools-measure" "m") +; (gtk_accel_path "/dockable/dialogs-tool-presets" "") +; (gtk_accel_path "/tools/tools-aspect-maximum" "") +; (gtk_accel_path "/tools/tools-flip" "f") +; (gtk_accel_path "/tools/tools-airbrush-rate-minimum" "") +; (gtk_accel_path "/help/help-menu" "") +; (gtk_accel_path "/filters/filters-recent-01" "") +; (gtk_accel_path "/image/image-color-profile-save" "") +; (gtk_accel_path "/filters/filters-median-blur" "") +; (gtk_accel_path "/vectors/vectors-paste" "") +; (gtk_accel_path "/context/context-foreground-blue-minimum" "") +; (gtk_accel_path "/filters/filters-apply-canvas" "") +; (gtk_accel_path "/plug-in/file-png-save2" "") +; (gtk_accel_path "/drawable/drawable-levels-stretch" "") +; (gtk_accel_path "/filters/filters-difference-of-gaussians" "") +; (gtk_accel_path "/tools/tools-angle-increase-skip" "") +; (gtk_accel_path "/context/context-swatch-background-last" "") +; (gtk_accel_path "/tools/tools-move" "m") +; (gtk_accel_path "/tools/tools-convolve" "u") +; (gtk_accel_path "/tools/tools-airbrush-flow-increase-skip" "") +; (gtk_accel_path "/context/context-foreground-saturation-increase-skip" "") +; (gtk_accel_path "/channels/channels-color-tag-green" "") +; (gtk_accel_path "/tools/tools-aspect-decrease-percent" "") +; (gtk_accel_path "/plug-in/gimp-help-using-photography" "") +; (gtk_accel_path "/dialogs/dialogs-dashboard" "") +; (gtk_accel_path "/layers/layers-crop-to-selection" "") +; (gtk_accel_path "/layers/layers-mask-selection-subtract" "") +; (gtk_accel_path "/plug-in/script-fu-guides-remove" "") +; (gtk_accel_path "/dialogs/dialogs-palette-editor" "") +; (gtk_accel_path "/filters/filters-channel-mixer" "") +; (gtk_accel_path "/images/images-raise-views" "") +; (gtk_accel_path "/plug-in/script-fu-waves-anim" "") +; (gtk_accel_path "/context/context-foreground-green-maximum" "") +; (gtk_accel_path "/view/view-menu" "") +; (gtk_accel_path "/view/view-dot-for-dot" "") +; (gtk_accel_path "/context/context-gradient-select-set" "") +; (gtk_accel_path "/dockable/dockable-close-tab" "") +; (gtk_accel_path "/dockable/dialogs-dynamics-editor" "") +; (gtk_accel_path "/vectors/vectors-selection-intersect" "") +; (gtk_accel_path "/vectors/vectors-stroke" "") +; (gtk_accel_path "/filters/filters-little-planet" "") +; (gtk_accel_path "/context/context-pattern-menu" "") +; (gtk_accel_path "/view/view-show-rulers" "r") +; (gtk_accel_path "/context/context-brush-spikes-increase" "") +; (gtk_accel_path "/view/view-snap-to-guides" "") +; (gtk_accel_path "/layers/layers-alpha-selection-subtract" "") +; (gtk_accel_path "/channels/channels-select-top" "") +; (gtk_accel_path "/plug-in/script-fu-sota-chrome-it" "") +; (gtk_accel_path "/view/view-move-to-screen-:0.0" "") +; (gtk_accel_path "/plug-in/gimp-palette-export-python" "") +; (gtk_accel_path "/context/context-swatch-foreground-next" "0") +; (gtk_accel_path "/select/selection-popup" "") +; (gtk_accel_path "/brushes/brushes-refresh" "") +; (gtk_accel_path "/edit/edit-paste-into" "") +; (gtk_accel_path "/tools/tools-opacity-decrease" "less") +; (gtk_accel_path "/filters/filters-bayer-matrix" "") +; (gtk_accel_path "/context/context-brush-angle-minimum" "") +; (gtk_accel_path "/tools/tools-aspect-increase" "") +; (gtk_accel_path "/vectors/vectors-selection-to-vectors-short" "") +; (gtk_accel_path "/context/context-brush-spikes-maximum" "") +; (gtk_accel_path "/tools/tools-aspect-set" "") +; (gtk_accel_path "/fonts/fonts-popup" "") +; (gtk_accel_path "/layers/layers-popup" "") +; (gtk_accel_path "/context/context-foreground-green-increase-skip" "") +; (gtk_accel_path "/filters/filters-generic-menu" "") +; (gtk_accel_path "/image/image-resize-to-layers" "") +; (gtk_accel_path "/windows/windows-use-single-window-mode" "") +; (gtk_accel_path "/channels/channels-lower-to-bottom" "") +; (gtk_accel_path "/context/context-colormap-background-first" "") +; (gtk_accel_path "/edit/edit-fill-pattern" "semicolon") +; (gtk_accel_path "/context/context-paint-mode-first" "") +; (gtk_accel_path "/plug-in/script-fu-reverse-layers" "") +; (gtk_accel_path "/dockable/dockable-preview-size-extra-large" "") +; (gtk_accel_path "/dockable/dialogs-indexed-palette" "") +; (gtk_accel_path "/context/context-brush-spikes-set" "") +; (gtk_accel_path "/vectors/vectors-new-last-values" "") +; (gtk_accel_path "/tools/tools-object-2-previous" "") +; (gtk_accel_path "/plug-in/plug-in-retinex" "") +; (gtk_accel_path "/context/context-swatch-foreground-previous" "9") +; (gtk_accel_path "/context/context-foreground-value-decrease" "") +; (gtk_accel_path "/context/context-brush-select-first" "") +; (gtk_accel_path "/context/context-swatch-foreground-next-skip" "") +; (gtk_accel_path "/tools/tools-force-increase-skip" "") +; (gtk_accel_path "/dockable/dockable-detach-tab" "") +; (gtk_accel_path "/image/image-print-size" "") +; (gtk_accel_path "/filters/filters-fractal-trace" "") +; (gtk_accel_path "/filters/filters-panorama-projection" "") +; (gtk_accel_path "/context/context-paint-mode-last" "") +; (gtk_accel_path "/image/colors-components-menu" "") +; (gtk_accel_path "/context/context-colormap-foreground-last" "") +; (gtk_accel_path "/view/view-zoom-out" "minus") +; (gtk_accel_path "/plug-in/plug-in-colormap-remap" "") +; (gtk_accel_path "/context/context-palette-background-next-skip" "") +; (gtk_accel_path "/tools/tools-force-decrease" "") +; (gtk_accel_path "/context/context-background-hue-maximum" "") +; (gtk_accel_path "/plug-in/plug-in-mail-image" "") +; (gtk_accel_path "/filters/filters-mantiuk-2006" "") +; (gtk_accel_path "/plug-in/plug-in-small-tiles" "") +; (gtk_accel_path "/layers/layers-composite-mode-clip-to-layer" "") +; (gtk_accel_path "/filters/filters-noise-menu" "") +; (gtk_accel_path "/layers/layers-mask-disable" "") +; (gtk_accel_path "/tools/tools-brightness-contrast" "") +; (gtk_accel_path "/filters/filters-erode" "") +; (gtk_accel_path "/context/context-brush-spikes-increase-skip" "") +; (gtk_accel_path "/context/context-palette-select-previous" "") +; (gtk_accel_path "/vectors/vectors-color-tag-none" "") +; (gtk_accel_path "/layers/layers-transform-menu" "") +; (gtk_accel_path "/context/context-pattern-select-first" "") +; (gtk_accel_path "/tools/tools-spacing-increase-percent" "") +; (gtk_accel_path "/select/select-border" "") +; (gtk_accel_path "/plug-in/script-fu-clothify" "") +; (gtk_accel_path "/edit/edit-paste-into-in-place" "") +; (gtk_accel_path "/layers/layers-new-last-values" "") +; (gtk_accel_path "/context/context-opacity-transparent" "") +; (gtk_accel_path "/plug-in/plug-in-animationoptimize" "") +; (gtk_accel_path "/context/context-colormap-background-next" "") +; (gtk_accel_path "/layers/layers-blend-space-auto" "") +; (gtk_accel_path "/plug-in/file-pdf-save-multi" "") +; (gtk_accel_path "/layers/layers-merge-layers" "") +; (gtk_accel_path "/layers/layers-composite-space-auto" "") +; (gtk_accel_path "/context/context-opacity-decrease-skip" "") +; (gtk_accel_path "/dockable/dialogs-buffers" "") +; (gtk_accel_path "/tools/tools-perspective" "p") +; (gtk_accel_path "/context/context-foreground-red-increase-skip" "") +; (gtk_accel_path "/context/context-colormap-foreground-set" "") +; (gtk_accel_path "/plug-in/script-fu-copy-visible" "") +; (gtk_accel_path "/filters/filters-high-pass" "") +; (gtk_accel_path "/layers/layers-composite-mode-clip-to-backdrop" "") +; (gtk_accel_path "/tools/tools-menu" "") +; (gtk_accel_path "/context/context-background-green-maximum" "") +; (gtk_accel_path "/filters/filters-brightness-contrast" "") +; (gtk_accel_path "/filters/filters-shadows-highlights" "") +; (gtk_accel_path "/channels/channels-color-tag-brown" "") +; (gtk_accel_path "/filters/filters-desaturate" "") +; (gtk_accel_path "/context/context-palette-foreground-previous" "") +; (gtk_accel_path "/plug-in/plug-in-nlfilt" "") +; (gtk_accel_path "/plug-in/gimp-palette-export-text" "") +; (gtk_accel_path "/context/context-palette-foreground-set" "") +; (gtk_accel_path "/tools/tools-paintbrush-spacing-set" "") +; (gtk_accel_path "/filters/filters-offset" "o") +; (gtk_accel_path "/filters/filters-softglow" "") +; (gtk_accel_path "/context/context-brush-shape-square" "") +; (gtk_accel_path "/vectors/vectors-select-top" "") +; (gtk_accel_path "/patterns/patterns-popup" "") +; (gtk_accel_path "/tools/tools-opacity-minimum" "") +; (gtk_accel_path "/channels/channels-raise-to-top" "") +; (gtk_accel_path "/filters/filters-reinhard-2005" "") +; (gtk_accel_path "/filters/filters-threshold-alpha" "") +; (gtk_accel_path "/view/view-zoom-2-1-accel" "KP_2") +; (gtk_accel_path "/context/context-foreground-hue-minimum" "") +; (gtk_accel_path "/tools/tools-aspect-decrease" "") +; (gtk_accel_path "/context/context-brush-spacing-decrease-skip" "") +; (gtk_accel_path "/plug-in/plug-in-fractal-trace" "") +; (gtk_accel_path "/tools/tools-mypaint-brush-radius-set" "") +; (gtk_accel_path "/context/context-tool-select-first" "") +; (gtk_accel_path "/vectors/vectors-lower" "") +; (gtk_accel_path "/context/context-brush-aspect-minimum" "") +; (gtk_accel_path "/layers/layers-mask-delete" "") +; (gtk_accel_path "/tools/tools-angle-decrease-percent" "") +; (gtk_accel_path "/context/context-background-green-increase-skip" "") +; (gtk_accel_path "/plug-in/plug-in-ccanalyze" "") +; (gtk_accel_path "/filters/filters-artistic-menu" "") +; (gtk_accel_path "/select/select-flood" "") +; (gtk_accel_path "/tools/tools-hardness-set-to-default" "") +; (gtk_accel_path "/tools/tools-bucket-fill" "b") +; (gtk_accel_path "/tools/tools-angle-set" "") +; (gtk_accel_path "/tools/tools-ink-blob-aspect-set" "") +; (gtk_accel_path "/tools/tools-size-increase" "bracketright") +; (gtk_accel_path "/tools/tools-force-increase-percent" "") +; (gtk_accel_path "/image/image-color-management-menu" "") +; (gtk_accel_path "/channels/channels-selection-replace" "") +; (gtk_accel_path "/dockable/dialogs-layers" "l") +; (gtk_accel_path "/view/view-zoom-fit-in" "j") +; (gtk_accel_path "/brushes/brushes-delete" "") +; (gtk_accel_path "/filters/filters-repeat" "f") +; (gtk_accel_path "/filters/filters-maze" "") +; (gtk_accel_path "/context/context-brush-shape-menu" "") +; (gtk_accel_path "/dockable/dialogs-palette-editor" "") +; (gtk_accel_path "/filters/filters-color-balance" "") +; (gtk_accel_path "/drawable/drawable-flip-vertical" "") +; (gtk_accel_path "/tools/tools-size-set-to-default" "backslash") +; (gtk_accel_path "/context/context-foreground-blue-decrease-skip" "") +; (gtk_accel_path "/context/context-colors-default" "d") +; (gtk_accel_path "/layers/layers-raise-to-top" "") +; (gtk_accel_path "/plug-in/plug-in-gradmap" "") +; (gtk_accel_path "/filters/filters-checkerboard" "") +; (gtk_accel_path "/image/image-convert-grayscale" "") +; (gtk_accel_path "/plug-in/script-fu-fuzzy-border" "") +; (gtk_accel_path "/filters/filters-tile-paper" "") +; (gtk_accel_path "/dialogs/dialogs-selection-editor" "") +; (gtk_accel_path "/layers/layers-edit" "") +; (gtk_accel_path "/image/colors-desaturate-menu" "") +; (gtk_accel_path "/layers/layers-flatten-image" "") +; (gtk_accel_path "/tools/tools-airbrush-rate-increase-skip" "") +; (gtk_accel_path "/channels/channels-select-bottom" "") +; (gtk_accel_path "/dialogs/dialogs-preferences" "") +; (gtk_accel_path "/plug-in/plug-in-animationplay" "") +; (gtk_accel_path "/context/context-brush-angle-menu" "") +; (gtk_accel_path "/tools/tools-airbrush-flow-minimum" "") +; (gtk_accel_path "/view/view-rotate-menu" "") +; (gtk_accel_path "/vectors/vectors-import" "") +; (gtk_accel_path "/plug-in/script-fu-xach-effect" "") +; (gtk_accel_path "/view/view-rotate-345" "") +; (gtk_accel_path "/plug-in/plug-in-decompose" "") +; (gtk_accel_path "/plug-in/gimp-palette-export-css" "") +; (gtk_accel_path "/filters/filters-color-exchange" "") +; (gtk_accel_path "/tools/tools-warp-effect-size-set" "") +; (gtk_accel_path "/view/view-display-intent-perceptual" "") +; (gtk_accel_path "/dialogs/dialogs-navigation" "") +; (gtk_accel_path "/dock/dock-open-display" "") +; (gtk_accel_path "/context/context-paint-mode-previous" "") +; (gtk_accel_path "/plug-in/plug-in-hot" "") +; (gtk_accel_path "/tools/tools-aspect-decrease-skip" "") +; (gtk_accel_path "/view/view-zoom-out-skip" "") +; (gtk_accel_path "/dialogs/dialogs-keyboard-shortcuts" "") +; (gtk_accel_path "/view/view-zoom-maximum" "") +; (gtk_accel_path "/dialogs/dialogs-input-devices" "") +; (gtk_accel_path "/dockable/dialogs-document-history" "") +; (gtk_accel_path "/quick-mask/quick-mask-invert-on" "") +; (gtk_accel_path "/context/context-swatch-foreground-first" "") +; (gtk_accel_path "/file/file-export" "e") +; (gtk_accel_path "/plug-in/script-fu-set-cmap" "") +; (gtk_accel_path "/layers/layers-text-discard" "") +; (gtk_accel_path "/context/context-foreground-red-maximum" "") +; (gtk_accel_path "/filters/filters-edge-sobel" "") +; (gtk_accel_path "/dockable/dockable-preview-size-tiny" "") +; (gtk_accel_path "/plug-in/script-fu-guide-new-percent" "") +; (gtk_accel_path "/view/view-show-scrollbars" "") +; (gtk_accel_path "/filters/filters-render-noise-menu" "") +; (gtk_accel_path "/channels/channels-delete" "") +; (gtk_accel_path "/image/image-flip-vertical" "") +; (gtk_accel_path "/layers/layers-opacity-set" "") +; (gtk_accel_path "/context/context-font-select-next" "") +; (gtk_accel_path "/context/context-menu" "") +; (gtk_accel_path "/image/image-convert-half" "") +; (gtk_accel_path "/tools/tools-size-increase-skip" "bracketright") +; (gtk_accel_path "/file/file-overwrite" "") +; (gtk_accel_path "/context/context-background-red-increase-skip" "") +; (gtk_accel_path "/vectors/vectors-popup" "") +; (gtk_accel_path "/image/image-rotate-90" "") +; (gtk_accel_path "/edit/edit-fill-bg" "period") +; (gtk_accel_path "/tools/tools-iscissors" "i") +; (gtk_accel_path "/context/context-palette-menu" "") +; (gtk_accel_path "/layers/layers-properties-menu" "") +; (gtk_accel_path "/view/view-flip-vertically" "") +; (gtk_accel_path "/context/context-foreground-hue-increase" "") +; (gtk_accel_path "/select/select-invert" "i") +; (gtk_accel_path "/layers/layers-mode-next" "") +; (gtk_accel_path "/file/file-save-as" "s") +; (gtk_accel_path "/context/context-swatch-foreground-last" "") +; (gtk_accel_path "/context/context-palette-background-next" "") +; (gtk_accel_path "/image/image-rotate-270" "") +; (gtk_accel_path "/tools/tools-warp" "w") +; (gtk_accel_path "/context/context-brush-hardness-menu" "") +; (gtk_accel_path "/plug-in/script-fu-erase-nth-rows" "") +; (gtk_accel_path "/context/context-brush-radius-decrease-less" "") +; (gtk_accel_path "/quick-mask/quick-mask-popup" "") +; (gtk_accel_path "/plug-in/plug-in-sparkle" "") +; (gtk_accel_path "/vectors/vectors-selection-subtract" "") +; (gtk_accel_path "/filters/filters-combine-menu" "") +; (gtk_accel_path "/layers/layers-raise" "") +; (gtk_accel_path "/edit/edit-strong-undo" "z") +; (gtk_accel_path "/context/context-colormap-foreground-next-skip" "") +; (gtk_accel_path "/context/context-brush-aspect-increase" "") +; (gtk_accel_path "/filters/filters-invert-value" "") +; (gtk_accel_path "/context/context-foreground-blue-set" "") +; (gtk_accel_path "/filters/filters-bump-map" "") +; (gtk_accel_path "/plug-in/file-gih-save-internal" "") +; (gtk_accel_path "/context/context-background-blue-increase-skip" "") +; (gtk_accel_path "/plug-in/script-fu-old-photo" "") +; (gtk_accel_path "/patterns/patterns-edit" "") +; (gtk_accel_path "/dialogs/dialogs-module-dialog" "") +; (gtk_accel_path "/image/image-configure-grid" "") +; (gtk_accel_path "/context/context-tool-menu" "") +; (gtk_accel_path "/view/view-zoom-1-1-accel" "KP_1") +; (gtk_accel_path "/filters/filters-noise-spread" "") +; (gtk_accel_path "/plug-in/script-fu-round-corners" "") +; (gtk_accel_path "/tools/tools-hardness-increase-skip" "") +; (gtk_accel_path "/select/select-save" "") +; (gtk_accel_path "/context/context-background-saturation-set" "") +; (gtk_accel_path "/plug-in/script-fu-guide-new" "") +; (gtk_accel_path "/tools/tools-hardness-decrease-percent" "") +; (gtk_accel_path "/tools/tools-size-minimum" "") +; (gtk_accel_path "/plug-in/gimp-help-concepts-paths" "") +; (gtk_accel_path "/vectors/vectors-select-next" "") +; (gtk_accel_path "/filters/filters-noise-cell" "") +; (gtk_accel_path "/quick-mask/quick-mask-toggle" "q") +; (gtk_accel_path "/filters/filters-gaussian-blur" "") +; (gtk_accel_path "/plug-in/plug-in-screenshot" "") +; (gtk_accel_path "/view/view-rotate-180" "") +; (gtk_accel_path "/tools/tools-text" "t") +; (gtk_accel_path "/filters/filters-newsprint" "") +; (gtk_accel_path "/filters/filters-noise-solid" "") +; (gtk_accel_path "/file/file-open-as-layers" "o") +; (gtk_accel_path "/context/context-background-red-minimum" "") +; (gtk_accel_path "/plug-in/gimp-online-wiki" "") +; (gtk_accel_path "/layers/layers-merge-down-button" "") +; (gtk_accel_path "/plug-in/script-fu-refresh" "") +; (gtk_accel_path "/layers/layers-text-to-vectors" "") +; (gtk_accel_path "/vectors/vectors-fill-last-values" "") +; (gtk_accel_path "/documents/documents-popup" "") +; (gtk_accel_path "/view/view-padding-color-menu" "") +; (gtk_accel_path "/tools/tools-smudge" "s") +; (gtk_accel_path "/context/context-font-menu" "") +; (gtk_accel_path "/tools/tools-mypaint-brush-hardness-set" "") +; (gtk_accel_path "/plug-in/plug-in-pagecurl" "") +; (gtk_accel_path "/dialogs/dialogs-layers" "l") +; (gtk_accel_path "/context/context-colormap-background-last" "") +; (gtk_accel_path "/plug-in/script-fu-selection-to-image" "") +; (gtk_accel_path "/channels/channels-selection-add" "") +; (gtk_accel_path "/context/context-palette-select-first" "") +; (gtk_accel_path "/layers/layers-lock-position" "") +; (gtk_accel_path "/tools/tools-object-1-next" "") +; (gtk_accel_path "/dialogs/dialogs-device-status" "") +; (gtk_accel_path "/view/view-scroll-vertical" "") +; (gtk_accel_path "/view/view-show-selection" "t") +; (gtk_accel_path "/tools/tools-spacing-maximum" "") +; (gtk_accel_path "/filters/filters-photocopy" "") +; (gtk_accel_path "/channels/channels-color-tag-orange" "") +; (gtk_accel_path "/tools/tools-ink-blob-angle-set" "") +; (gtk_accel_path "/context/context-background-saturation-minimum" "") +; (gtk_accel_path "/layers/layers-lock-alpha" "") +; (gtk_accel_path "/tools/tools-transform-menu" "") +; (gtk_accel_path "/plug-in/plug-in-borderaverage" "") +; (gtk_accel_path "/view/view-padding-color-theme" "") +; (gtk_accel_path "/plug-in/script-fu-gradient-example" "") +; (gtk_accel_path "/filters/filters-color-rotate" "") +; (gtk_accel_path "/dockable/dialogs-dynamics" "") +; (gtk_accel_path "/plug-in/gimp-online-roadmap" "") +; (gtk_accel_path "/filters/filters-vignette" "") +; (gtk_accel_path "/patterns/patterns-copy-location" "") +; (gtk_accel_path "/filters/filters-apply-lens" "") +; (gtk_accel_path "/tools/tools-angle-minimum" "") +; (gtk_accel_path "/tools/tools-ink" "k") +; (gtk_accel_path "/tools/tools-airbrush-rate-set" "") +; (gtk_accel_path "/layers/layers-mask-add-button" "") +; (gtk_accel_path "/layers/layers-color-tag-orange" "") +; (gtk_accel_path "/plug-in/script-fu-coffee-stain" "") +; (gtk_accel_path "/view/view-display-filters" "") +; (gtk_accel_path "/context/context-swatch-background-first" "") +; (gtk_accel_path "/plug-in/plug-in-tile" "") +; (gtk_accel_path "/filters/filters-noise-rgb" "") +; (gtk_accel_path "/layers/layers-composite-mode-intersection" "") +; (gtk_accel_path "/context/context-foreground-hue-decrease" "") +; (gtk_accel_path "/filters/filters-edge-neon" "") +; (gtk_accel_path "/dialogs/dialogs-about" "") +; (gtk_accel_path "/plug-in/plug-in-despeckle" "") +; (gtk_accel_path "/tools/tools-spacing-set" "") +; (gtk_accel_path "/dialogs/dialogs-templates" "") +; (gtk_accel_path "/tools/tools-object-2-first" "") +; (gtk_accel_path "/context/context-background-blue-minimum" "") +; (gtk_accel_path "/documents/documents-file-open-dialog" "") +; (gtk_accel_path "/quick-mask/quick-mask-invert-off" "") +; (gtk_accel_path "/filters/filters-tile-seamless" "") +; (gtk_accel_path "/filters/filters-red-eye-removal" "") +; (gtk_accel_path "/layers/layers-resize-to-image" "") +; (gtk_accel_path "/filters/filters-lens-flare" "") +; (gtk_accel_path "/filters/filters-render-fractals-menu" "") +; (gtk_accel_path "/context/context-brush-angle-decrease-skip" "") +; (gtk_accel_path "/plug-in/gimp-help-using-web" "") +; (gtk_accel_path "/view/view-color-management-softproof" "") +; (gtk_accel_path "/dialogs/dialogs-vectors" "") +; (gtk_accel_path "/edit/edit-buffer-menu" "") +; (gtk_accel_path "/plug-in/script-fu-make-brush-elliptical" "") +; (gtk_accel_path "/plug-in/plug-in-grid" "") +; (gtk_accel_path "/plug-in/file-pdf-save" "") +; (gtk_accel_path "/filters/filters-color-enhance" "") +; (gtk_accel_path "/plug-in/file-png-save" "") +; (gtk_accel_path "/view/view-padding-color-custom" "") +; (gtk_accel_path "/plug-in/script-fu-weave" "") +; (gtk_accel_path "/filters/filters-blur-menu" "") +; (gtk_accel_path "/context/context-brush-aspect-decrease" "") +; (gtk_accel_path "/tools/tools-paintbrush-angle-set" "") +; (gtk_accel_path "/context/context-pattern-select-next" "") +; (gtk_accel_path "/channels/channels-lower" "") +; (gtk_accel_path "/view/view-rotate-other" "") +; (gtk_accel_path "/context/context-brush-hardness-minimum" "") +; (gtk_accel_path "/filters/filters-mosaic" "") +; (gtk_accel_path "/patterns/patterns-show-in-file-manager" "") +; (gtk_accel_path "/debug/debug-menu" "") +; (gtk_accel_path "/context/context-brush-radius-increase-skip" "") +; (gtk_accel_path "/view/view-softproof-black-point-compensation" "") +; (gtk_accel_path "/select/select-menu" "") +; (gtk_accel_path "/plug-in/plug-in-sample-colorize" "") +; (gtk_accel_path "/file/file-open-recent-10" "0") +; (gtk_accel_path "/tools/tools-by-color-select" "o") +; (gtk_accel_path "/context/context-palette-background-previous" "") +; (gtk_accel_path "/tools/tools-force-minimum" "") +; (gtk_accel_path "/channels/channels-color-tag-violet" "") +; (gtk_accel_path "/context/context-swatch-background-next-skip" "") +; (gtk_accel_path "/dockable/dialogs-brush-editor" "") +; (gtk_accel_path "/plug-in/gimp-help-using-simpleobjects" "") +; (gtk_accel_path "/filters/filters-recursive-transform" "") +; (gtk_accel_path "/plug-in/script-fu-add-bevel" "") +; (gtk_accel_path "/dialogs/dialogs-dynamics" "") +; (gtk_accel_path "/plug-in/plug-in-curve-bend" "") +; (gtk_accel_path "/context/context-background-saturation-increase-skip" "") +; (gtk_accel_path "/view/view-scroll-page-up" "") +; (gtk_accel_path "/filters/filters-convolution-matrix" "") +; (gtk_accel_path "/tools/tools-pencil" "n") +; (gtk_accel_path "/filters/filters-levels" "") +; (gtk_accel_path "/layers/layers-color-tag-violet" "") +; (gtk_accel_path "/tools/tools-opacity-increase" "greater") +; (gtk_accel_path "/context/context-brush-radius-decrease-percent" "") +; (gtk_accel_path "/context/context-foreground-red-set" "") +; (gtk_accel_path "/select/select-fill" "") +; (gtk_accel_path "/filters/filters-colorize" "") +; (gtk_accel_path "/view/view-padding-color-dark-check" "") +; (gtk_accel_path "/tools/tools-hardness-maximum" "") +; (gtk_accel_path "/tool-options/tool-options-save-new-preset" "") +; (gtk_accel_path "/tools/tools-spacing-increase-skip" "") +; (gtk_accel_path "/context/context-gradient-select-previous" "") +; (gtk_accel_path "/layers/layers-new-from-visible" "") +; (gtk_accel_path "/filters/filters-saturation" "") +; (gtk_accel_path "/tools/tools-crop" "c") +; (gtk_accel_path "/plug-in/plug-in-flame" "") +; (gtk_accel_path "/images/images-popup" "") +; (gtk_accel_path "/context/context-font-select-last" "") +; (gtk_accel_path "/vectors/vectors-new" "") +; (gtk_accel_path "/tool-options/tool-options-popup" "") +; (gtk_accel_path "/filters/filters-posterize" "") +; (gtk_accel_path "/dockable/dockable-view-type-list" "") +; (gtk_accel_path "/filters/filters-slic" "") +; (gtk_accel_path "/view/view-rotate-reset" "exclam") +; (gtk_accel_path "/filters/filters-shift" "") +; (gtk_accel_path "/drawable/drawable-rotate-90" "") +; (gtk_accel_path "/plug-in/plug-in-lighting" "") +; (gtk_accel_path "/tools/tools-mypaint-brush" "y") +; (gtk_accel_path "/channels/channels-color-tag-menu" "") +; (gtk_accel_path "/layers/layers-merge-down" "") +; (gtk_accel_path "/dialogs/dialogs-tips" "") +; (gtk_accel_path "/layers/layers-mode-last" "") +; (gtk_accel_path "/tools/tools-warp-effect-hardness-set" "") +; (gtk_accel_path "/layers/layers-alpha-add" "") +; (gtk_accel_path "/filters/filters-map-menu" "") +; (gtk_accel_path "/context/context-palette-foreground-previous-skip" "") +; (gtk_accel_path "/context/context-tool-select-set" "") +; (gtk_accel_path "/plug-in/plug-in-color-enhance" "") +; (gtk_accel_path "/filters/filters-dilate" "") +; (gtk_accel_path "/context/context-palette-background-last" "") +; (gtk_accel_path "/image/image-mode-menu" "") +; (gtk_accel_path "/vectors/vectors-raise" "") +; (gtk_accel_path "/vectors/vectors-selection-to-vectors" "") +; (gtk_accel_path "/edit/edit-named-copy-visible" "") +; (gtk_accel_path "/dockable/dialogs-brushes" "b") +; (gtk_accel_path "/drawable/drawable-rotate-180" "") +; (gtk_accel_path "/filters/filters-decor-menu" "") +; (gtk_accel_path "/layers/layers-composite-mode-menu" "") +; (gtk_accel_path "/tools/tools-airbrush-rate-decrease" "") +; (gtk_accel_path "/image/image-convert-gamma" "") +; (gtk_accel_path "/context/context-foreground-hue-increase-skip" "") +; (gtk_accel_path "/channels/channels-popup" "") +; (gtk_accel_path "/channels/channels-color-tag-yellow" "") +; (gtk_accel_path "/dockable/dockable-preview-size-small" "") +; (gtk_accel_path "/image/image-guides-menu" "") +; (gtk_accel_path "/tools/tools-force-increase" "") +; (gtk_accel_path "/layers/layers-alpha-selection-intersect" "") +; (gtk_accel_path "/context/context-brush-select-next" "") +; (gtk_accel_path "/filters/filters-waterpixels" "") +; (gtk_accel_path "/context/context-brush-spacing-increase" "") +; (gtk_accel_path "/dialogs/dialogs-action-search" "slash") +; (gtk_accel_path "/layers/layers-select-next" "Page_Down") +; (gtk_accel_path "/tools/tools-rotate-arbitrary" "") +; (gtk_accel_path "/layers/layers-opacity-decrease-skip" "") +; (gtk_accel_path "/view/view-zoom-16-1" "5") +; (gtk_accel_path "/plug-in/gimp-help-concepts-usage" "") +; (gtk_accel_path "/debug/debug-dump-keyboard-shortcuts" "") +; (gtk_accel_path "/image/image-color-profile-discard" "") +; (gtk_accel_path "/filters/filters-mean-curvature-blur" "") +; (gtk_accel_path "/layers/layers-color-tag-yellow" "") +; (gtk_accel_path "/context/context-brush-aspect-decrease-skip" "") +; (gtk_accel_path "/dock/dock-move-to-screen-:0.0" "") +; (gtk_accel_path "/filters/filters-animation-menu" "") +; (gtk_accel_path "/filters/filters-noise-reduction" "") +; (gtk_accel_path "/dialogs/dialogs-gradients" "g") +; (gtk_accel_path "/tools/tools-object-1-previous" "") +; (gtk_accel_path "/image/image-duplicate" "d") +; (gtk_accel_path "/documents/documents-show-in-file-manager" "") +; (gtk_accel_path "/dockable/dialogs-patterns" "p") +; (gtk_accel_path "/view/view-scroll-right-border" "") +; (gtk_accel_path "/edit/edit-paste" "v") +; (gtk_accel_path "/context/context-palette-foreground-next" "") +; (gtk_accel_path "/channels/channels-color-tag-red" "") +; (gtk_accel_path "/filters/filters-mono-mixer" "") +; (gtk_accel_path "/context/context-font-select-set" "") +; (gtk_accel_path "/patterns/patterns-duplicate" "") +; (gtk_accel_path "/filters/filters-spiral" "") +; (gtk_accel_path "/plug-in/plug-in-unit-editor" "") +; (gtk_accel_path "/tools/tools-angle-decrease-skip" "") +; (gtk_accel_path "/tools/tools-airbrush-flow-decrease-skip" "") +; (gtk_accel_path "/vectors/vectors-select-bottom" "") +; (gtk_accel_path "/context/context-foreground-value-set" "") +; (gtk_accel_path "/debug/debug-dump-items" "") +; (gtk_accel_path "/view/view-scroll-up" "") +; (gtk_accel_path "/plug-in/gimp-help-using-selections" "") +; (gtk_accel_path "/plug-in/plug-in-cml-explorer" "") +; (gtk_accel_path "/select/select-stroke" "") +; (gtk_accel_path "/context/context-foreground-saturation-decrease-skip" "") +; (gtk_accel_path "/tool-options/tool-options-reset-all" "") +; (gtk_accel_path "/drawable/drawable-visible" "") +; (gtk_accel_path "/image/image-metadata-menu" "") +; (gtk_accel_path "/channels/channels-select-previous" "") +; (gtk_accel_path "/context/context-brush-angle-increase" "") +; (gtk_accel_path "/filters/filters-snn-mean" "") +; (gtk_accel_path "/tools/tools-hardness-set" "") +; (gtk_accel_path "/tools/tools-object-1-last" "") +; (gtk_accel_path "/layers/layers-color-tag-menu" "") +; (gtk_accel_path "/context/context-background-value-increase-skip" "") +; (gtk_accel_path "/view/view-display-intent-relative-colorimetric" "") +; (gtk_accel_path "/tools/tools-aspect-set-to-default" "") +; (gtk_accel_path "/filters/filters-supernova" "") +; (gtk_accel_path "/image/image-transform-menu" "") +; (gtk_accel_path "/view/view-shrink-wrap" "j") +; (gtk_accel_path "/context/context-swatch-foreground-set" "") +; (gtk_accel_path "/plug-in/file-pat-save-internal" "") +; (gtk_accel_path "/context/context-foreground-red-decrease" "") +; (gtk_accel_path "/view/view-zoom-8-1" "4") +; (gtk_accel_path "/context/context-brush-radius-minimum" "") +; (gtk_accel_path "/filters/filters-sepia" "") +; (gtk_accel_path "/debug/debug-dump-attached-data" "") +; (gtk_accel_path "/context/context-brush-hardness-increase" "") +; (gtk_accel_path "/context/context-foreground-saturation-set" "") +; (gtk_accel_path "/view/view-softproof-gamut-check" "") +; (gtk_accel_path "/dialogs/dialogs-images" "") +; (gtk_accel_path "/layers/layers-mask-selection-intersect" "") +(gtk_accel_path "/plug-in/file-print-gtk" "p") +; (gtk_accel_path "/filters/filters-reshow" "f") +; (gtk_accel_path "/dialogs/dialogs-gradient-editor" "") +; (gtk_accel_path "/view/view-move-to-screen-menu" "") +; (gtk_accel_path "/documents/documents-copy-location" "") +; (gtk_accel_path "/view/view-open-display" "") +; (gtk_accel_path "/layers/layers-linked" "") +; (gtk_accel_path "/plug-in/file-tiff-save2" "") +; (gtk_accel_path "/tool-options/tool-options-save-preset-menu" "") +; (gtk_accel_path "/context/context-brush-spacing-maximum" "") +; (gtk_accel_path "/images/images-delete" "") +; (gtk_accel_path "/file/file-copy-location" "") +; (gtk_accel_path "/dialogs/dialogs-buffers" "") +; (gtk_accel_path "/layers/layers-menu" "") +; (gtk_accel_path "/tools/tools-aspect-minimum" "") +; (gtk_accel_path "/context/context-foreground-green-decrease-skip" "") +; (gtk_accel_path "/context/context-palette-background-previous-skip" "") +; (gtk_accel_path "/edit/edit-paste-as-new-image" "v") +; (gtk_accel_path "/filters/filters-stress" "") +; (gtk_accel_path "/dialogs/dialogs-patterns" "p") +; (gtk_accel_path "/filters/filters-edge-laplace" "") +; (gtk_accel_path "/context/context-background-green-decrease" "") +; (gtk_accel_path "/view/view-rotate-90" "") +; (gtk_accel_path "/filters/filters-ripple" "") +; (gtk_accel_path "/filters/filters-variable-blur" "") +; (gtk_accel_path "/plug-in/plug-in-ifscompose" "") +; (gtk_accel_path "/context/context-brush-spacing-decrease" "") +; (gtk_accel_path "/tools/tools-airbrush" "a") +; (gtk_accel_path "/context/context-background-hue-increase-skip" "") +; (gtk_accel_path "/view/view-softproof-intent-menu" "") +; (gtk_accel_path "/filters/filters-sinus" "") +; (gtk_accel_path "/filters/filters-c2g" "") +; (gtk_accel_path "/plug-in/plug-in-metadata-viewer" "") +; (gtk_accel_path "/tool-options/tool-options-edit-preset-menu" "") +; (gtk_accel_path "/view/view-close" "w") +; (gtk_accel_path "/layers/layers-edit-text" "") +; (gtk_accel_path "/context/context-brush-shape-diamond" "") +; (gtk_accel_path "/tools/tools-force-decrease-skip" "") +; (gtk_accel_path "/plug-in/gimp-online-main-web-site" "") +; (gtk_accel_path "/vectors/vectors-edit-attributes" "") +; (gtk_accel_path "/context/context-opacity-increase" "") +; (gtk_accel_path "/dockable/dialogs-tool-options" "") +; (gtk_accel_path "/context/context-brush-spacing-set" "") +; (gtk_accel_path "/context/context-pattern-select-last" "") +; (gtk_accel_path "/filters/filters-distance-map" "") +; (gtk_accel_path "/tools/tools-free-select" "f") +; (gtk_accel_path "/context/context-foreground-green-minimum" "") +; (gtk_accel_path "/file/file-open-recent-09" "9") +; (gtk_accel_path "/dockable/dialogs-fonts" "") +; (gtk_accel_path "/context/context-tool-select-next" "") +; (gtk_accel_path "/layers/layers-select-top" "Home") +; (gtk_accel_path "/channels/channels-selection-subtract" "") +; (gtk_accel_path "/file/file-open-recent-08" "8") +; (gtk_accel_path "/context/context-background-hue-increase" "") +; (gtk_accel_path "/context/context-colormap-background-next-skip" "") +; (gtk_accel_path "/context/context-brush-spikes-decrease-skip" "") +; (gtk_accel_path "/dialogs/dialogs-mypaint-brushes" "") +; (gtk_accel_path "/context/context-font-select-previous" "") +; (gtk_accel_path "/file/file-open-recent-07" "7") +; (gtk_accel_path "/plug-in/plug-in-film" "") +; (gtk_accel_path "/layers/layers-anchor" "h") +; (gtk_accel_path "/view/view-new" "") +; (gtk_accel_path "/edit/edit-redo" "y") +; (gtk_accel_path "/context/context-brush-angle-decrease" "") +; (gtk_accel_path "/file/file-open-recent-06" "6") +; (gtk_accel_path "/images/images-new-view" "") +; (gtk_accel_path "/plug-in/plug-in-goat-exercise" "") +; (gtk_accel_path "/plug-in/file-gbr-save-internal" "") +; (gtk_accel_path "/file/file-open-recent-05" "5") +; (gtk_accel_path "/edit/edit-paste-in-place" "v") +; (gtk_accel_path "/vectors/vectors-selection-add" "") +; (gtk_accel_path "/tools/tools-aspect-increase-percent" "") +; (gtk_accel_path "/plug-in/plug-in-reset-all" "") +; (gtk_accel_path "/layers/layers-edit-attributes" "") +; (gtk_accel_path "/drawable/drawable-lock-content" "") +; (gtk_accel_path "/plug-in/gimp-help-using-docks" "") +; (gtk_accel_path "/filters/filters-hue-saturation" "") +; (gtk_accel_path "/context/context-foreground-red-decrease-skip" "") +; (gtk_accel_path "/filters/filters-lens-distortion" "") +; (gtk_accel_path "/image/image-convert-indexed" "") +; (gtk_accel_path "/filters/filters-tile-glass" "") +; (gtk_accel_path "/plug-in/script-fu-lava" "") +; (gtk_accel_path "/file/file-open-recent-04" "4") +; (gtk_accel_path "/dock/dock-auto-follow-active" "") +; (gtk_accel_path "/plug-in/script-fu-spyrogimp" "") +; (gtk_accel_path "/patterns/patterns-open-as-image" "") +; (gtk_accel_path "/context/context-foreground-saturation-maximum" "") +; (gtk_accel_path "/image/colors-map-menu" "") +; (gtk_accel_path "/context/context-brush-radius-set" "") +; (gtk_accel_path "/file/file-open-recent-03" "3") +; (gtk_accel_path "/context/context-brush-hardness-decrease" "") +; (gtk_accel_path "/windows/windows-show-display-previous" "Tab") +; (gtk_accel_path "/view/view-softproof-intent-relative-colorimetric" "") +; (gtk_accel_path "/tools/tools-force-set-to-default" "") +; (gtk_accel_path "/file/file-open-recent-02" "2") +; (gtk_accel_path "/drawable/drawable-equalize" "") +; (gtk_accel_path "/context/context-font-select-first" "") +; (gtk_accel_path "/plug-in/plug-in-animationunoptimize" "") +; (gtk_accel_path "/layers/layers-mask-selection-replace" "") +; (gtk_accel_path "/patterns/patterns-refresh" "") +; (gtk_accel_path "/file/file-open-recent-01" "1") +; (gtk_accel_path "/image/image-crop-to-content" "") +; (gtk_accel_path "/filters/filters-polar-coordinates" "") +; (gtk_accel_path "/brushes/brushes-new" "") +; (gtk_accel_path "/context/context-background-hue-minimum" "") +; (gtk_accel_path "/tools/tools-rotate" "r") +; (gtk_accel_path "/image/image-convert-double" "") +; (gtk_accel_path "/view/view-zoom-1-8" "4") +; (gtk_accel_path "/context/context-background-green-decrease-skip" "") +; (gtk_accel_path "/edit/edit-fill-fg" "comma") +; (gtk_accel_path "/tools/tools-scale" "s") +; (gtk_accel_path "/context/context-brush-select-last" "") +; (gtk_accel_path "/plug-in/script-fu-distress-selection" "") +; (gtk_accel_path "/edit/undo-popup" "") +; (gtk_accel_path "/layers/layers-mode-first" "") +; (gtk_accel_path "/view/view-zoom-1-16" "5") +; (gtk_accel_path "/dockable/dockable-add-tab-menu" "") +; (gtk_accel_path "/context/context-tool-select-previous" "") +; (gtk_accel_path "/channels/channels-color-tag-gray" "") +; (gtk_accel_path "/dockable/dialogs-error-console" "") +; (gtk_accel_path "/context/context-foreground-value-maximum" "") +; (gtk_accel_path "/channels/channels-raise" "") +; (gtk_accel_path "/context/context-background-red-set" "") +; (gtk_accel_path "/plug-in/script-fu-perspective-shadow" "") +; (gtk_accel_path "/context/context-opacity-decrease" "") +; (gtk_accel_path "/filters/filters-cubism" "") +; (gtk_accel_path "/filters/filters-motion-blur-circular" "") +; (gtk_accel_path "/context/context-gradient-menu" "") +; (gtk_accel_path "/plug-in/plug-in-max-rgb" "") +; (gtk_accel_path "/image/image-resize" "") +; (gtk_accel_path "/filters/filters-normal-map" "") +; (gtk_accel_path "/vectors/vectors-color-tag-green" "") +; (gtk_accel_path "/plug-in/gimp-online-docs-web-site" "") +; (gtk_accel_path "/view/view-zoom-1-4" "3") +; (gtk_accel_path "/vectors/vectors-copy" "") +; (gtk_accel_path "/context/context-palette-foreground-last" "") +; (gtk_accel_path "/tools/tools-airbrush-rate-decrease-skip" "") +; (gtk_accel_path "/tools/tools-shear" "h") +; (gtk_accel_path "/context/context-background-green-minimum" "") +; (gtk_accel_path "/view/view-snap-to-canvas" "") +; (gtk_accel_path "/view/view-scroll-left-border" "") +; (gtk_accel_path "/filters/filters-pixelize" "") +; (gtk_accel_path "/dock/dock-close" "") +; (gtk_accel_path "/windows/windows-hide-docks" "Tab") +; (gtk_accel_path "/view/view-show-layer-boundary" "") +; (gtk_accel_path "/file/file-save" "s") +; (gtk_accel_path "/layers/layers-composite-space-rgb-linear" "") +; (gtk_accel_path "/context/context-background-hue-decrease" "") +; (gtk_accel_path "/windows/windows-show-display-next" "Tab") +; (gtk_accel_path "/brushes/brushes-copy-location" "") +; (gtk_accel_path "/filters/filters-noise-slur" "") +; (gtk_accel_path "/view/view-zoom-1-2" "2") +; (gtk_accel_path "/image/image-menu" "") +; (gtk_accel_path "/plug-in/plug-in-photocopy" "") +; (gtk_accel_path "/edit/edit-paste-as-menu" "") +; (gtk_accel_path "/tools/tools-select-menu" "") +; (gtk_accel_path "/view/view-zoom-1-1" "1") +; (gtk_accel_path "/plug-in/plug-in-warp" "") +; (gtk_accel_path "/dockable/dockable-preview-size-huge" "") +; (gtk_accel_path "/dockable/dockable-tab-style-automatic" "") +; (gtk_accel_path "/layers/layers-mask-edit" "") +; (gtk_accel_path "/windows/windows-show-tabs" "") +; (gtk_accel_path "/plug-in/file-print-gutenprint" "") +; (gtk_accel_path "/layers/layers-mask-add-last-values" "") +; (gtk_accel_path "/plug-in/file-raw-save" "") +; (gtk_accel_path "/image/image-merge-layers" "m") +; (gtk_accel_path "/filters/filters-noise-perlin" "") +; (gtk_accel_path "/plug-in/plug-in-destripe" "") +; (gtk_accel_path "/dockable/dockable-tab-style-icon-name" "") +; (gtk_accel_path "/dockable/dockable-preview-size-large" "") +; (gtk_accel_path "/layers/layers-color-tag-green" "") +; (gtk_accel_path "/context/context-background-red-decrease-skip" "") +; (gtk_accel_path "/tools/tools-size-decrease-skip" "bracketleft") +; (gtk_accel_path "/dockable/dialogs-selection-editor" "") +; (gtk_accel_path "/quick-mask/quick-mask-configure" "") +; (gtk_accel_path "/filters/filters-cartoon" "") +; (gtk_accel_path "/plug-in/plug-in-fractalexplorer" "") +; (gtk_accel_path "/view/view-softproof-profile" "") +; (gtk_accel_path "/view/view-rotate-270" "") +; (gtk_accel_path "/vectors/vectors-lower-to-bottom" "") +; (gtk_accel_path "/context/context-colormap-background-set" "") +; (gtk_accel_path "/layers/layers-color-tag-gray" "") +; (gtk_accel_path "/tools/tools-paintbrush-size-set" "") +; (gtk_accel_path "/brushes/brushes-popup" "") +; (gtk_accel_path "/dock/dock-show-image-menu" "") +; (gtk_accel_path "/context/context-brush-hardness-increase-skip" "") +; (gtk_accel_path "/plug-in/script-fu-selection-to-pattern" "") +; (gtk_accel_path "/documents/documents-clear" "") +; (gtk_accel_path "/plug-in/script-fu-carve-it" "") +; (gtk_accel_path "/plug-in/plug-in-plug-in-details" "") +; (gtk_accel_path "/context/context-brush-select-previous" "") +; (gtk_accel_path "/context/context-palette-background-set" "") +; (gtk_accel_path "/tools/tools-eraser" "e") +; (gtk_accel_path "/select/select-float" "l") +; (gtk_accel_path "/context/context-gradient-select-next" "") +; (gtk_accel_path "/filters/filters-grid" "") +; (gtk_accel_path "/tools/tools-size-decrease-percent" "") +; (gtk_accel_path "/layers/layers-visible" "") +; (gtk_accel_path "/documents/documents-open" "") +; (gtk_accel_path "/dockable/dialogs-sample-points" "") +; (gtk_accel_path "/context/context-background-blue-decrease-skip" "") +; (gtk_accel_path "/view/view-softproof-intent-saturation" "") +; (gtk_accel_path "/view/view-zoom-minimum" "") +; (gtk_accel_path "/tools/tools-hardness-decrease-skip" "") +; (gtk_accel_path "/filters/filters-rgb-clip" "") +; (gtk_accel_path "/context/context-background-value-maximum" "") +; (gtk_accel_path "/layers/layers-lower-to-bottom" "") +; (gtk_accel_path "/tools/tools-force-set" "") +; (gtk_accel_path "/filters/filters-wind" "") +; (gtk_accel_path "/context/context-foreground-red-minimum" "") +; (gtk_accel_path "/debug/debug-dump-managers" "") +; (gtk_accel_path "/context/context-tool-select-last" "") +; (gtk_accel_path "/filters/filters-displace" "") +; (gtk_accel_path "/filters/filters-enhance-menu" "") +; (gtk_accel_path "/filters/filters-engrave" "") +; (gtk_accel_path "/tools/tools-object-2-next" "") +; (gtk_accel_path "/view/view-show-guides" "t") +; (gtk_accel_path "/vectors/vectors-color-tag-red" "") +; (gtk_accel_path "/vectors/vectors-selection-from-vectors" "v") +; (gtk_accel_path "/view/view-zoom-other" "") +; (gtk_accel_path "/image/image-convert-u32" "") +; (gtk_accel_path "/dockable/dialogs-symmetry" "") +; (gtk_accel_path "/context/context-swatch-background-previous" "") +; (gtk_accel_path "/select/select-feather" "") +; (gtk_accel_path "/filters/filters-motion-blur-zoom" "") +; (gtk_accel_path "/dialogs/dialogs-tool-presets" "") +; (gtk_accel_path "/vectors/vectors-duplicate" "") +; (gtk_accel_path "/view/view-display-intent-saturation" "") +; (gtk_accel_path "/tools/tools-foreground-select" "") diff --git a/.config/GIMP/2.10/parasiterc b/.config/GIMP/2.10/parasiterc new file mode 100644 index 000000000..6cfb1bec8 --- /dev/null +++ b/.config/GIMP/2.10/parasiterc @@ -0,0 +1,6 @@ +# GIMP parasiterc +# +# This file will be entirely rewritten each time you exit. + + +# end of parasiterc diff --git a/.config/GIMP/2.10/pluginrc b/.config/GIMP/2.10/pluginrc new file mode 100644 index 000000000..2451fa586 --- /dev/null +++ b/.config/GIMP/2.10/pluginrc @@ -0,0 +1,4403 @@ +# GIMP pluginrc +# +# This file can safely be removed and will be automatically regenerated by +# querying the installed plug-ins. + +(protocol-version 26) +(file-version 5) + +(plug-in-def "${gimp_plug_in_dir}/plug-ins/web-browser/web-browser" 1601838911 + (proc-def "plug-in-web-browser" 1 + "Open an URL in the user specified web browser" + "Opens the given URL in the user specified web browser." + "Henrik Brix Andersen " + "2003" + "2003/09/16" + "" + 0 + (icon icon-name -1 "") + "" + 1 0 + (proc-arg 4 "url" "URL to open"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/wavelet-decompose/wavelet-decompose" 1601838911 + (proc-def "plug-in-wavelet-decompose" 1 + "Wavelet decompose" + "Compute and render wavelet scales" + "Miroslav Talasek " + "Miroslav Talasek " + "19january 2017" + "_Wavelet-decompose..." + 1 + (menu-path "/Filters/Enhance") + (icon icon-name -1 "") + "RGB*, GRAY*" + 6 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image (unused)") + (proc-arg 16 "drawable" "Input drawable") + (proc-arg 0 "scales" "Number of scales (1-7)") + (proc-arg 0 "create-group" "Create a layer group to store the decomposition") + (proc-arg 0 "create-masks" "Add a layer mask to each scales layers"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/warp/warp" 1601838911 + (proc-def "plug-in-warp" 1 + "Twist or smear image in many different ways" + "Smears an image along vector paths calculated as the gradient of a separate control matrix. The effect can look like brushstrokes of acrylic or watercolor paint, in some cases." + "John P. Beale" + "John P. Beale" + "1997" + "_Warp..." + 1 + (menu-path "/Filters/Map") + (icon icon-name -1 "") + "RGB*, GRAY*" + 17 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image (unused)") + (proc-arg 16 "drawable" "Input drawable") + (proc-arg 3 "amount" "Pixel displacement multiplier") + (proc-arg 16 "warp-map" "Displacement control map") + (proc-arg 0 "iter" "Iteration count (last required argument)") + (proc-arg 3 "dither" "Random dither amount (first optional argument)") + (proc-arg 3 "angle" "Angle of gradient vector rotation") + (proc-arg 0 "wrap-type" "Edge behavior: { WRAP (0), SMEAR (1), BLACK (2), COLOR (3) }") + (proc-arg 16 "mag-map" "Magnitude control map") + (proc-arg 0 "mag-use" "Use magnitude map: { FALSE (0), TRUE (1) }") + (proc-arg 0 "substeps" "Substeps between image updates") + (proc-arg 0 "grad-map" "Gradient control map") + (proc-arg 3 "grad-scale" "Scaling factor for gradient map (0=don't use)") + (proc-arg 0 "vector-map" "Fixed vector control map") + (proc-arg 3 "vector-scale" "Scaling factor for fixed vector map (0=don't use)") + (proc-arg 3 "vector-angle" "Angle for fixed vector map"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/van-gogh-lic/van-gogh-lic" 1601838911 + (proc-def "plug-in-lic" 1 + "Special effects that nobody understands" + "No help yet" + "Tom Bech & Federico Mena Quintero" + "Tom Bech & Federico Mena Quintero" + "Version 0.14, September 24 1997" + "_Van Gogh (LIC)..." + 1 + (menu-path "/Filters/Artistic") + (icon icon-name -1 "") + "RGB*" + 3 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Input drawable"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/unit-editor/unit-editor" 1601838911 + (proc-def "plug-in-unit-editor" 1 + "Create or alter units used in GIMP" + "The GIMP unit editor" + "Michael Natterer " + "Michael Natterer " + "2000" + "U_nits" + 1 + (menu-path "/Edit/Preferences") + (icon icon-name -1 "gimp-tool-measure") + "" + 1 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0) }"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/tile-small/tile-small" 1601838911 + (proc-def "plug-in-small-tiles" 1 + "Tile image into smaller versions of the original" + "More here later" + "Andy Thomas" + "Andy Thomas" + "1997" + "_Small Tiles..." + 0 + (icon icon-name -1 "") + "RGB*, GRAY*" + 4 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image (unused)") + (proc-arg 16 "drawable" "Input drawable") + (proc-arg 0 "num-tiles" "Number of tiles to make"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/tile/tile" 1601838911 + (proc-def "plug-in-tile" 1 + "Create an array of copies of the image" + "This function creates a new image with a single layer sized to the specified 'new_width' and 'new_height' parameters. The specified drawable is tiled into this layer. The new layer will have the same type as the specified drawable and the new image will have a corresponding base type." + "Spencer Kimball & Peter Mattis" + "Spencer Kimball & Peter Mattis" + "1996-1997" + "_Tile..." + 1 + (menu-path "/Filters/Map") + (icon icon-name -1 "") + "RGB*, GRAY*, INDEXED*" + 6 2 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image (unused)") + (proc-arg 16 "drawable" "Input drawable") + (proc-arg 0 "new-width" "New (tiled) image width") + (proc-arg 0 "new-height" "New (tiled) image height") + (proc-arg 0 "new-image" "Create a new image?") + (proc-arg 13 "new-image" "Output image (-1 if new-image == FALSE)") + (proc-arg 14 "new-layer" "Output layer (-1 if new-image == FALSE)"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/sphere-designer/sphere-designer" 1601838911 + (proc-def "plug-in-spheredesigner" 1 + "Create an image of a textured sphere" + "This plug-in can be used to create textured and/or bumpmapped spheres, and uses a small lightweight raytracer to perform the task with good quality" + "Vidar Madsen" + "Vidar Madsen" + "1999" + "Sphere _Designer..." + 1 + (menu-path "/Filters/Render") + (icon icon-name -1 "") + "RGB*, GRAY*" + 3 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image (unused)") + (proc-arg 16 "drawable" "Input drawable"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/sparkle/sparkle" 1601838911 + (proc-def "plug-in-sparkle" 1 + "Turn bright spots into starry sparkles" + "Uses a percentage based luminoisty threhsold to find candidate pixels for adding some sparkles (spikes). " + "John Beale, & (ported to GIMP v0.54) Michael J. Hammel & ted to GIMP v1.0) & Seth Burgess & Spencer Kimball" + "John Beale" + "Version 1.27, September 2003" + "_Sparkle..." + 1 + (menu-path "/Filters/Light and Shadow/Light") + (icon icon-name -1 "") + "RGB*, GRAY*" + 16 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image (unused)") + (proc-arg 16 "drawable" "Input drawable") + (proc-arg 3 "lum-threshold" "Luminosity threshold (0.0 - 1.0)") + (proc-arg 3 "flare-inten" "Flare intensity (0.0 - 1.0)") + (proc-arg 0 "spike-len" "Spike length (in pixels)") + (proc-arg 0 "spike-pts" "# of spike points") + (proc-arg 0 "spike-angle" "Spike angle (0-360 degrees, -1: random)") + (proc-arg 3 "density" "Spike density (0.0 - 1.0)") + (proc-arg 3 "transparency" "Transparency (0.0 - 1.0)") + (proc-arg 3 "random-hue" "Random hue (0.0 - 1.0)") + (proc-arg 3 "random-saturation" "Random saturation (0.0 - 1.0)") + (proc-arg 0 "preserve-luminosity" "Preserve luminosity (TRUE/FALSE)") + (proc-arg 0 "inverse" "Inverse (TRUE/FALSE)") + (proc-arg 0 "border" "Add border (TRUE/FALSE)") + (proc-arg 0 "color-type" "Color of sparkles: { NATURAL (0), FOREGROUND (1), BACKGROUND (2) }"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/softglow/softglow" 1601838911 + (proc-def "plug-in-softglow" 1 + "Simulate glow by making highlights intense and fuzzy" + "Gives an image a softglow effect by intensifying the highlights in the image. This is done by screening a modified version of the drawable with itself. The modified version is desaturated and then a sigmoidal transfer function is applied to force the distribution of intensities into very small and very large only. This desaturated version is then blurred to give it a fuzzy 'vaseline-on-the-lens' effect. The glow radius parameter controls the sharpness of the glow effect. The brightness parameter controls the degree of intensification applied to image highlights. The sharpness parameter controls how defined or alternatively, diffuse, the glow effect should be." + "Spencer Kimball" + "Bit Specialists, Inc." + "2001" + "_Softglow (legacy)..." + 1 + (menu-path "/Filters/Artistic") + (icon icon-name -1 "") + "RGB*, GRAY*" + 6 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image (unused)") + (proc-arg 16 "drawable" "Input drawable") + (proc-arg 3 "glow-radius" "Glow radius (radius in pixels)") + (proc-arg 3 "brightness" "Glow brightness (0.0 - 1.0)") + (proc-arg 3 "sharpness" "Glow sharpness (0.0 - 1.0)"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/smooth-palette/smooth-palette" 1601838911 + (proc-def "plug-in-smooth-palette" 1 + "Derive a smooth color palette from the image" + "help!" + "Scott Draves" + "Scott Draves" + "1997" + "Smoo_th Palette..." + 1 + (menu-path "/Colors/Info") + (icon icon-name -1 "") + "RGB*" + 7 2 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image (unused)") + (proc-arg 16 "drawable" "Input drawable") + (proc-arg 0 "width" "Width") + (proc-arg 0 "height" "Height") + (proc-arg 0 "ntries" "Search Depth") + (proc-arg 0 "show-image" "Show Image?") + (proc-arg 13 "new-image" "Output image") + (proc-arg 14 "new-layer" "Output layer"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/sharpen/sharpen" 1601838911 + (proc-def "plug-in-sharpen" 1 + "Make image sharper (less powerful than Unsharp Mask)" + "This plug-in selectively performs a convolution filter on an image." + "Michael Sweet " + "Copyright 1997-1998 by Michael Sweet" + "1.4.2 - 3 June 1998" + "_Sharpen..." + 0 + (icon icon-name -1 "") + "RGB*, GRAY*" + 4 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Input drawable") + (proc-arg 0 "percent" "Percent sharpening (default = 10)"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/selection-to-path/selection-to-path" 1601838911 + (proc-def "plug-in-sel2path" 1 + "Converts a selection to a path" + "Converts a selection to a path" + "Andy Thomas" + "Andy Thomas" + "1999" + "" + 0 + (icon icon-name -1 "") + "RGB*, INDEXED*, GRAY*" + 3 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Input drawable (unused)")) + (proc-def "plug-in-sel2path-advanced" 1 + "Converts a selection to a path (with advanced user menu)" + "Converts a selection to a path (with advanced user menu)" + "Andy Thomas" + "Andy Thomas" + "1999" + "" + 0 + (icon icon-name -1 "") + "RGB*, INDEXED*, GRAY*" + 23 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Input drawable (unused)") + (proc-arg 3 "align-threshold" "align_threshold") + (proc-arg 3 "corner-always-threshold" "corner_always_threshold") + (proc-arg 2 "corner-surround" "corner_surround") + (proc-arg 3 "corner-threshold" "corner_threshold") + (proc-arg 3 "error-threshold" "error_threshold") + (proc-arg 2 "filter-alternative-surround" "filter_alternative_surround") + (proc-arg 3 "filter-epsilon" "filter_epsilon") + (proc-arg 2 "filter-iteration-count" "filter_iteration_count") + (proc-arg 3 "filter-percent" "filter_percent") + (proc-arg 2 "filter-secondary-surround" "filter_secondary_surround") + (proc-arg 2 "filter-surround" "filter_surround") + (proc-arg 2 "keep-knees" "{1-Yes, 0-No}") + (proc-arg 3 "line-reversion-threshold" "line_reversion_threshold") + (proc-arg 3 "line-threshold" "line_threshold") + (proc-arg 3 "reparameterize-improvement" "reparameterize_improvement") + (proc-arg 3 "reparameterize-threshold" "reparameterize_threshold") + (proc-arg 3 "subdivide-search" "subdivide_search") + (proc-arg 2 "subdivide-surround" "subdivide_surround") + (proc-arg 3 "subdivide-threshold" "subdivide_threshold") + (proc-arg 2 "tangent-surround" "tangent_surround"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/script-fu/script-fu" 1601838911 + (proc-def "extension-script-fu" 2 + "A scheme interpreter for scripting GIMP operations" + "More help here later" + "Spencer Kimball & Peter Mattis" + "Spencer Kimball & Peter Mattis" + "1997" + "" + 0 + (icon icon-name -1 "") + "" + 0 0) + (proc-def "plug-in-script-fu-console" 1 + "Interactive console for Script-Fu development" + "Provides an interface which allows interactive scheme development." + "Spencer Kimball & Peter Mattis" + "Spencer Kimball & Peter Mattis" + "1997" + "_Console" + 1 + (menu-path "/Filters/Languages/Script-Fu") + (icon icon-name -1 "") + "" + 1 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0) }")) + (proc-def "plug-in-script-fu-text-console" 1 + "Provides a text console mode for script-fu development" + "Provides an interface which allows interactive scheme development." + "Spencer Kimball & Peter Mattis" + "Spencer Kimball & Peter Mattis" + "1997" + "" + 0 + (icon icon-name -1 "") + "" + 1 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0) }")) + (proc-def "plug-in-script-fu-server" 1 + "Server for remote Script-Fu operation" + "Provides a server for remote script-fu operation. NOTE that for security reasons this procedure's API was changed in an incompatible way since GIMP 2.8.12. You now have to pass the IP to listen on as first parameter. Calling this procedure with the old API will fail on purpose." + "Spencer Kimball & Peter Mattis" + "Spencer Kimball & Peter Mattis" + "1997" + "_Start Server..." + 1 + (menu-path "/Filters/Languages/Script-Fu") + (icon icon-name -1 "") + "" + 4 0 + (proc-arg 0 "run-mode" "The run mode { RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "ip" "The ip on which to listen for requests") + (proc-arg 0 "port" "The port on which to listen for requests") + (proc-arg 4 "logfile" "The file to log server activity to")) + (proc-def "plug-in-script-fu-eval" 1 + "Evaluate scheme code" + "Evaluate the code under the scheme interpreter (primarily for batch mode)" + "Manish Singh" + "Manish Singh" + "1998" + "" + 0 + (icon icon-name -1 "") + "" + 2 0 + (proc-arg 0 "run-mode" "The run mode { RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "code" "The code to evaluate")) + (locale-def "gimp20-script-fu")) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/screenshot/screenshot" 1601838911 + (proc-def "plug-in-screenshot" 1 + "Create an image from an area of the screen" + "The plug-in takes screenshots of an interactively selected window or of the desktop, either the whole desktop or an interactively selected region. When called non-interactively, it may grab the root window or use the window-id passed as a parameter. The last four parameters are optional and can be used to specify the corners of the region to be grabbed.On Mac OS X or on gnome-shell, when called non-interactively, the plug-inonly can take screenshots of the entire root window.Grabbing a window or a region is not supportednon-interactively. To grab a region or a particularwindow, you need to use the interactive mode." + "Sven Neumann , Henrik Brix Andersen ,Simone Karin Lehmann" + "1998 - 2008" + "v1.1 (2008/04)" + "_Screenshot..." + 1 + (menu-path "/File/Create/Acquire") + (icon inline-pixbuf 1606 "GdkP\0\0\6F\2\1\0\2\0\0\0X\0\0\0\26\0\0\0\26\213\0\0\0\0\1\242\242\242\5\203\242\242\242\31\221\0\0\0\0\2\27\27\26D\40\40\40\372\203\51\51\51\375\2\32\32\32\362\26\26\25\60\217\0\0\0\0\2\2\2\2\322\307\310\307\377\203\377\377\377\377\2\263\263\262\363\0\0\0\314\217\0\0\0\0\2\6\6\6\334\206\207\205\377\202\252\253\251\377\3\252\252\251\377ghe\376\1\1\1\320\217\0\0\0\0\2\11\11\11\346\56\57\55\345\202GHE\25\3JKH\32\60\61\57\364\5\5\5\333\212\0\0\0\0\17\26\26\25\31\26\26\25\60\26\26\25g\0\0\0\314\53\54\53\331LMK\375EFD\362ffe\347iig\346lmk\346RSQ\362\13\13\13\360\0\0\0\314\2\2\2\321\26\26\25V\203\0\0\0\0\43\26\26\25\31\26\26\25\60\26\26\25n\3\3\3\331\2\2\2\332JJI\355\215\215\215\372\246\246\246\347\267\270\266\362\177\202\176\377BC\77\377TUR\377\134\135Y\377gid\377\133\135X\377\204\206\204\374wxw\276\224\225\224\314LLK\343\26\26\25D\0\0\0\0\26\26\25D\3\3\3\341\17\17\17\373ghg\377\237\240\236\377\273\274\272\377\302\303\300\377\272\273\270\377\200\201\177\377zzz\377tws\377\220\223\217\377\221\225\221\377\224\227\223\377\202\226\232\226\377K\177\202\175\377xyu\377\217\221\215\377\226\227\226\365\0\0\0\371\0\0\0\0\2\2\2\330\257\261\257\377\275\276\273\377\262\263\260\377UWT\377QSP\377suq\377\135\136\133\377\304\304\304\377\303\303\303\377kmi\377MNJ\377WZX\377\133\140\137\377aeb\377gid\377\175\200\173\377SUQ\377FGE\377\200\201\200\377\12\12\12\357\0\0\0\0\4\4\4\345xyv\377\241\242\236\377\210\212\205\377vxt\377\220\222\217\377GIF\377\53\54\51\377\140\140\140\377jji\377UXV\377y\204\210\377\203\215\220\377\176\204\207\377flo\377PW\134\377SWU\377JLI\377\64\65\62\377tut\377\12\12\12\357\0\0\0\0\4\4\4\344opm\377\221\223\217\377\175\177\173\377\215\217\213\377\140b\137\377\50\51\47\377\52\53\51\377\67\70\65\377VXV\377u\176\202\377nsu\377VYZ\377OST\377OQS\377JOP\377\136cd\377\66\71\70\377\41\42\41\377llk\377\12\12\12\357\0\0\0\0\3\3\3\345npl\377\220\221\216\377\202UWS\377\24GIF\377\40\41\37\377\52\53\51\377\71\72\67\377\136ce\377NRT\377UXY\377\50\54\56\377\22\24\25\377\41\44\46\377ILM\377\70\75\77\377RVX\377\47\47\46\377klk\377\12\12\12\357\0\0\0\1\3\3\3\345nol\377\220\221\216\377\202UWS\377\24GIF\377\40\41\37\377\52\53\51\377\70\72\70\377TXY\377\62\70\71\377\23\25\26\377\16\16\16\377\1\1\1\377\2\2\2\377\24\25\25\377\56\63\64\377\62\70\71\377\60\61\61\377aa\140\377\11\11\11\360\0\0\0\3\3\3\3\345nol\377\204\205\202\377\202UWS\377\24GIF\377\40\41\37\377\52\53\51\377\77BA\377\62\70\72\377\34\40\41\377\31\32\32\377\377\377\377\377hhh\377\40\40\40\377\22\22\22\377\56\60\60\377\56\64\66\377\72\76\77\377\140a\140\377\11\11\10\361\0\0\0\7\3\3\3\345mok\377z\173x\377\202UWS\377\24GIF\377\40\41\37\377\52\53\51\377HJI\377\56\64\66\377\25\27\30\377\40\40\40\377hhh\377\232\232\232\377\175\175\175\377\47\47\47\377\71\73\73\377\57\65\67\377\65\71\71\377\140\140\137\377\11\11\10\362\0\0\0\15\3\3\3\345lnk\377rsp\377\202UWS\377\24GIF\377\40\41\37\377\54\55\52\377\76\100\76\377\56\64\66\377\35\37\40\377\1\1\1\377\70\70\70\377\214\214\214\377\213\213\213\377AAA\377JKK\377\57\65\67\377\66\72\73\377WXV\377\6\6\6\364\0\0\0\21\0\0\0\371\201\202\177\377mok\377\202UWS\377iGIF\377MNM\377RRR\372ghg\364\133\140b\377\53\57\60\377\17\17\17\377\42\42\42\377\47\47\47\377HHH\377\263\263\263\377SUU\377W\134\136\377CFF\374\74\74\74\376\20\20\17\317\0\0\0\20\24\24\23\135\4\4\4\353\177\177\176\375\174\175z\373\175\176\174\374hih\376\71\72\71\371\0\0\0\347\0\0\0\351\7\7\7\367\56\64\66\377\62\65\66\377\40\40\40\377\50\50\50\377\72\72\72\377\140ab\377\71\76\77\377\11\13\13\376\0\0\0\353\0\0\0\300\14\14\13H\0\0\0\15\0\0\0\4\23\23\22L\0\0\0\332\0\0\0\341\0\0\0\346\0\0\0\341\14\14\13\173\0\0\0V\0\0\0a\0\0\0l\10\11\11\371\134\136\137\377LOP\377ILL\377LOQ\377QUV\377\16\17\17\377\34\37\40\244\0\0\0\140\0\0\0\64\0\0\0\27\0\0\0\7\0\0\0\1\0\0\0\3\0\0\0\10\0\0\0\21\0\0\0\34\0\0\0\47\0\0\0\60\0\0\0\66\0\0\0\75\0\0\0A\0\0\0F\4\5\5\355\12\13\13\371\17\20\20\376\15\16\16\375\10\10\11\365\7\10\11j\0\0\0G\0\0\0\55\0\0\0\30\0\0\0\13\0\0\0\4\0\0\0\0\0\0\0\1\0\0\0\2\0\0\0\4\0\0\0\11\0\0\0\16\0\0\0\23\0\0\0\31\0\0\0\35\0\0\0\41\0\0\0\43\0\0\0\44\0\0\0\45\0\0\0\44\0\0\0\46\0\0\0\45\0\0\0\36\0\0\0\27\0\0\0\20\0\0\0\10\0\0\0\3\0\0\0\1\204\0\0\0\0\5\0\0\0\1\0\0\0\2\0\0\0\4\0\0\0\5\0\0\0\6\202\0\0\0\10\11\0\0\0\11\0\0\0\7\0\0\0\10\0\0\0\5\0\0\0\7\0\0\0\6\0\0\0\5\0\0\0\3\0\0\0\1\202\0\0\0\0") + "" + 7 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 0 "shoot-type" "The Shoot type { SHOOT-WINDOW (0), SHOOT-ROOT (1), SHOOT-REGION (2) }") + (proc-arg 0 "window-id" "Window id for SHOOT-WINDOW") + (proc-arg 0 "x1" "Region left x coord for SHOOT-REGION") + (proc-arg 0 "y1" "Region top y coord for SHOOT-REGION") + (proc-arg 0 "x2" "Region right x coord for SHOOT-REGION") + (proc-arg 0 "y2" "Region bottom y coord for SHOOT-REGION") + (proc-arg 13 "image" "Output image"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/sample-colorize/sample-colorize" 1601838911 + (proc-def "plug-in-sample-colorize" 1 + "Colorize image using a sample image as a guide" + "This plug-in colorizes the contents of the specified (gray) layer with the help of a sample (color) layer. It analyzes all colors in the sample layer. The sample colors are sorted by brightness (== intentisty) and amount and stored in a sample colortable (where brightness is the index) The pixels of the destination layer are remapped with the help of the sample colortable. If use_subcolors is TRUE, the remapping process uses all sample colors of the corresponding brightness-intensity and distributes the subcolors according to their amount in the sample (If the sample has 5 green, 3 yellow, and 1 red pixel of the intensity value 105, the destination pixels at intensity value 105 are randomly painted in green, yellow and red in a relation of 5:3:1 If use_subcolors is FALSE only one sample color per intensity is used. (green will be used in this example) The brightness intensity value is transformed at the remapping process according to the levels: out_lo, out_hi, in_lo, in_high and gamma The in_low / in_high levels specify an initial mapping of the intensity. The gamma value determines how intensities are interpolated between the in_lo and in_high levels. A gamma value of 1.0 results in linear interpolation. Higher gamma values results in more high-level intensities Lower gamma values results in more low-level intensities The out_low/out_high levels constrain the resulting intensity index The intensity index is used to pick the corresponding color in the sample colortable. If hold_inten is FALSE the picked color is used 1:1 as resulting remap_color. If hold_inten is TRUE The brightness of the picked color is adjusted back to the origial intensity value (only hue and saturation are taken from the picked sample color) (or to the input level, if orig_inten is set FALSE) Works on both Grayscale and RGB image with/without alpha channel. (the image with the dst_drawable is converted to RGB if necessary) The sample_drawable should be of type RGB or RGBA" + "Wolfgang Hofer" + "hof@hotbot.com" + "02/2000" + "_Sample Colorize..." + 1 + (menu-path "/Colors/Map") + (icon icon-name -1 "") + "RGB*, GRAY*" + 13 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image (unused)") + (proc-arg 16 "dst-drawable" "The drawable to be colorized (Type GRAY* or RGB*)") + (proc-arg 16 "sample-drawable" "Sample drawable (should be of Type RGB or RGBA)") + (proc-arg 0 "hold-inten" "hold brightness intensity levels (TRUE, FALSE)") + (proc-arg 0 "orig-inten" "TRUE: hold brightness of original intensity levels. FALSE: Hold Intensity of input levels") + (proc-arg 0 "rnd-subcolors" "TRUE: Use all subcolors of same intensity, FALSE: use only one color per intensity") + (proc-arg 0 "guess-missing" "TRUE: guess samplecolors for the missing intensity values FALSE: use only colors found in the sample") + (proc-arg 0 "in-low" "intensity of lowest input (0 <= in_low <= 254)") + (proc-arg 0 "in-high" "intensity of highest input (1 <= in_high <= 255)") + (proc-arg 3 "gamma" "gamma adjustment factor (0.1 <= gamma <= 10) where 1.0 is linear") + (proc-arg 0 "out-low" "lowest sample color intensity (0 <= out_low <= 254)") + (proc-arg 0 "out-high" "highest sample color intensity (1 <= out_high <= 255)"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/qbist/qbist" 1601838911 + (proc-def "plug-in-qbist" 1 + "Generate a huge variety of abstract patterns" + "This Plug-in is based on an article by Jörn Loviscach (appeared in c't 10/95, page 326). It generates modern art pictures from a random genetic formula." + "Jörn Loviscach, Jens Ch. Restemeier" + "Jörn Loviscach, Jens Ch. Restemeier" + "January 2001, 1.12" + "_Qbist..." + 1 + (menu-path "/Filters/Render/Pattern") + (icon icon-name -1 "") + "RGB*" + 3 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image (unused)") + (proc-arg 16 "drawable" "Input drawable"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/procedure-browser/procedure-browser" 1601838911 + (proc-def "plug-in-dbbrowser" 1 + "List available procedures in the PDB" + "" + "Thomas Noel" + "Thomas Noel" + "23th june 1997" + "Procedure _Browser" + 1 + (menu-path "/Help/Programming") + (icon icon-name -1 "") + "" + 1 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0) }"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/print/print" 1601838911 + (proc-def "file-print-gtk" 1 + "Print the image" + "Print the image using the GTK+ Print API." + "Bill Skaggs, Sven Neumann, Stefan Röllin" + "Bill Skaggs " + "2006 - 2008" + "_Print..." + 1 + (menu-path "/File/Send") + (icon icon-name -1 "document-print") + "*" + 2 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0) }") + (proc-arg 13 "image" "Image to print"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/plugin-browser/plugin-browser" 1601838911 + (proc-def "plug-in-plug-in-details" 1 + "Display information about plug-ins" + "Allows one to browse the plug-in menus system. You can search for plug-in names, sort by name or menu location and you can view a tree representation of the plug-in menus. Can also be of help to find where new plug-ins have installed themselves in the menus." + "Andy Thomas" + "Andy Thomas" + "1999" + "_Plug-in Browser" + 1 + (menu-path "/Help/Programming") + (icon icon-name -1 "gimp-plugin") + "" + 1 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0) }"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/photocopy/photocopy" 1601838911 + (proc-def "plug-in-photocopy" 1 + "Simulate color distortion produced by a copy machine" + "Propagates dark values in an image based on each pixel's relative darkness to a neighboring average. The idea behind this filter is to give the look of a photocopied version of the image, with toner transferred based on the relative darkness of a particular region. This is achieved by darkening areas of the image which are measured to be darker than a neighborhood average and setting other pixels to white. In this way, sufficiently large shifts in intensity are darkened to black. The rate at which they are darkened to black is determined by the second pct_black parameter. The mask_radius parameter controls the size of the pixel neighborhood over which the average intensity is computed and then compared to each pixel in the neighborhood to decide whether or not to darken it to black. Large values for mask_radius result in very thick black areas bordering the regions of white and much less detail for black areas everywhere including inside regions of color. Small values result in less toner overall and more detail everywhere. Small values for the pct_black make the blend from the white regions to the black border lines smoother and the toner regions themselves thinner and less noticeable; larger values achieve the opposite effect." + "Spencer Kimball" + "Bit Specialists, Inc." + "2001" + "_Photocopy (legacy)..." + 1 + (menu-path "/Filters/Artistic") + (icon icon-name -1 "") + "RGB*, GRAY*" + 7 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image (unused)") + (proc-arg 16 "drawable" "Input drawable") + (proc-arg 3 "mask-radius" "Photocopy mask radius (radius of pixel neighborhood)") + (proc-arg 3 "sharpness" "Sharpness (detail level) (0.0 - 1.0)") + (proc-arg 3 "pct-black" "Percentage of darkened pixels to set to black (0.0 - 1.0)") + (proc-arg 3 "pct-white" "Percentage of non-darkened pixels left white (0.0 - 1.0)"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/pagecurl/pagecurl" 1601838911 + (proc-def "plug-in-pagecurl" 1 + "Curl up one of the image corners" + "This plug-in creates a pagecurl-effect." + "Federico Mena Quintero and Simon Budig" + "Federico Mena Quintero and Simon Budig" + "July 2004, 1.0" + "_Pagecurl..." + 1 + (menu-path "/Filters/Distorts") + (icon icon-name -1 "") + "RGB*, GRAY*" + 7 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Input drawable") + (proc-arg 0 "colors" "FG- and BG-Color (0), Current gradient (1), Current gradient reversed (2)") + (proc-arg 0 "edge" "Edge to curl (1-4, clockwise, starting in the lower right edge)") + (proc-arg 0 "orientation" "Vertical (0), Horizontal (1)") + (proc-arg 0 "shade" "Shade the region under the curl (1) or not (0)") + (proc-arg 14 "curl-layer" "The new layer with the curl."))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/nl-filter/nl-filter" 1601838911 + (proc-def "plug-in-nlfilt" 1 + "Nonlinear swiss army knife filter" + "This is the pnmnlfilt, in gimp's clothing. See the pnmnlfilt manpage for details." + "Graeme W. Gill, gimp 0.99 plug-in by Eric L. Hernes" + "Graeme W. Gill, Eric L. Hernes" + "1997" + "_NL Filter..." + 1 + (menu-path "/Filters/Enhance") + (icon icon-name -1 "") + "RGB,GRAY" + 6 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "img" "The Image to Filter") + (proc-arg 16 "drw" "The Drawable") + (proc-arg 3 "alpha" "The amount of the filter to apply") + (proc-arg 3 "radius" "The filter radius") + (proc-arg 0 "filter" "The Filter to Run, 0 - alpha trimmed mean; 1 - optimal estimation (alpha controls noise variance); 2 - edge enhancement"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/metadata-viewer/metadata-viewer" 1601838911 + (proc-def "plug-in-metadata-viewer" 1 + "View metadata (Exif, IPTC, XMP)" + "View metadata information attached to the current image. This can include Exif, IPTC and/or XMP information." + "Hartmut Kuhse, Michael Natterer, Ben Touchette" + "Hartmut Kuhse, Michael Natterer, Ben Touchette" + "2013, 2017" + "_View Metadata" + 1 + (menu-path "/Image/Metadata") + (icon icon-name -1 "") + "*" + 2 0 + (proc-arg 0 "run-mode" "Run mode { RUN-INTERACTIVE (0) }") + (proc-arg 13 "image" "Input image"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/metadata-editor/metadata-editor" 1601838911 + (proc-def "plug-in-metadata-editor" 1 + "Edit metadata (IPTC, EXIF, XMP)" + "Edit metadata information attached to the current image. Some or all of this metadata will be saved in the file, depending on the output file format." + "Ben Touchette" + "Ben Touchette" + "2017" + "_Edit Metadata" + 1 + (menu-path "/Image/Metadata") + (icon icon-name -1 "") + "*" + 2 0 + (proc-arg 0 "run-mode" "Run mode { RUN-INTERACTIVE (0) }") + (proc-arg 13 "image" "Input image"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/max-rgb/max-rgb" 1601838911 + (proc-def "plug-in-max-rgb" 1 + "Reduce image to pure red, green, and blue" + "There's no help yet." + "Shuji Narazaki (narazaki@InetQ.or.jp)" + "Shuji Narazaki" + "May 2000" + "Maxim_um RGB..." + 0 + (icon icon-name -1 "") + "RGB*" + 4 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image (not used)") + (proc-arg 16 "drawable" "Input drawable") + (proc-arg 0 "max-p" "{ MINIMIZE (0), MAXIMIZE (1) }"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/map-object/map-object" 1601838911 + (proc-def "plug-in-map-object" 1 + "Map the image to an object (plane, sphere, box or cylinder)" + "No help yet" + "Tom Bech & Federico Mena Quintero" + "Tom Bech & Federico Mena Quintero" + "Version 1.2.0, July 16 1998" + "Map _Object..." + 1 + (menu-path "/Filters/Map") + (icon icon-name -1 "") + "RGB*" + 49 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Input drawable") + (proc-arg 0 "maptype" "Type of mapping (0=plane,1=sphere,2=box,3=cylinder)") + (proc-arg 3 "viewpoint-x" "Position of viewpoint (x,y,z)") + (proc-arg 3 "viewpoint-y" "Position of viewpoint (x,y,z)") + (proc-arg 3 "viewpoint-z" "Position of viewpoint (x,y,z)") + (proc-arg 3 "position-x" "Object position (x,y,z)") + (proc-arg 3 "position-y" "Object position (x,y,z)") + (proc-arg 3 "position-z" "Object position (x,y,z)") + (proc-arg 3 "firstaxis-x" "First axis of object [x,y,z]") + (proc-arg 3 "firstaxis-y" "First axis of object [x,y,z]") + (proc-arg 3 "firstaxis-z" "First axis of object [x,y,z]") + (proc-arg 3 "secondaxis-x" "Second axis of object [x,y,z]") + (proc-arg 3 "secondaxis-y" "Second axis of object [x,y,z]") + (proc-arg 3 "secondaxis-z" "Second axis of object [x,y,z]") + (proc-arg 3 "rotationangle-x" "Rotation about X axis in degrees") + (proc-arg 3 "rotationangle-y" "Rotation about Y axis in degrees") + (proc-arg 3 "rotationangle-z" "Rotation about Z axis in degrees") + (proc-arg 0 "lighttype" "Type of lightsource (0=point,1=directional,2=none)") + (proc-arg 10 "lightcolor" "Lightsource color (r,g,b)") + (proc-arg 3 "lightposition-x" "Lightsource position (x,y,z)") + (proc-arg 3 "lightposition-y" "Lightsource position (x,y,z)") + (proc-arg 3 "lightposition-z" "Lightsource position (x,y,z)") + (proc-arg 3 "lightdirection-x" "Lightsource direction [x,y,z]") + (proc-arg 3 "lightdirection-y" "Lightsource direction [x,y,z]") + (proc-arg 3 "lightdirection-z" "Lightsource direction [x,y,z]") + (proc-arg 3 "ambient-intensity" "Material ambient intensity (0..1)") + (proc-arg 3 "diffuse-intensity" "Material diffuse intensity (0..1)") + (proc-arg 3 "diffuse-reflectivity" "Material diffuse reflectivity (0..1)") + (proc-arg 3 "specular-reflectivity" "Material specular reflectivity (0..1)") + (proc-arg 3 "highlight" "Material highlight (0..->), note: it's exponential") + (proc-arg 0 "antialiasing" "Apply antialiasing (TRUE/FALSE)") + (proc-arg 0 "tiled" "Tile source image (TRUE/FALSE)") + (proc-arg 0 "newimage" "Create a new image (TRUE/FALSE)") + (proc-arg 0 "transparentbackground" "Make background transparent (TRUE/FALSE)") + (proc-arg 3 "radius" "Sphere/cylinder radius (only used when maptype=1 or 3)") + (proc-arg 3 "x-scale" "Box x size (0..->)") + (proc-arg 3 "y-scale" "Box y size (0..->)") + (proc-arg 3 "z-scale" "Box z size (0..->)") + (proc-arg 3 "cylinder-length" "Cylinder length (0..->)") + (proc-arg 16 "box-front-drawable" "Box front face (set these to -1 if not used)") + (proc-arg 16 "box-back-drawable" "Box back face") + (proc-arg 16 "box-top-drawable" "Box top face") + (proc-arg 16 "box-bottom-drawable" "Box bottom face") + (proc-arg 16 "box-left-drawable" "Box left face") + (proc-arg 16 "box-right-drawable" "Box right face") + (proc-arg 16 "cyl-top-drawable" "Cylinder top face (set these to -1 if not used)") + (proc-arg 16 "cyl-bottom-drawable" "Cylinder bottom face"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/mail/mail" 1601838911 + (proc-def "plug-in-mail-image" 1 + "Send the image by email" + "The preferred email composer is used to send emails and must be properly configured." + "Adrian Likins, Reagan Blundell" + "Adrian Likins, Reagan Blundell, Daniel Risacher, Spencer Kimball and Peter Mattis" + "1995-1997" + "Send by E_mail..." + 1 + (menu-path "/File/Send") + (icon icon-name -1 "gtk-edit") + "*" + 9 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to save") + (proc-arg 4 "filename" "The name of the file to save the image in") + (proc-arg 4 "to-address" "The email address to send to") + (proc-arg 4 "from-address" "The email address for the From: field") + (proc-arg 4 "subject" "The subject") + (proc-arg 4 "comment" "The Comment") + (proc-arg 0 "encapsulation" "ignored"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/lighting/lighting" 1601838911 + (proc-def "plug-in-lighting" 1 + "Apply various lighting effects to an image" + "No help yet" + "Tom Bech & Federico Mena Quintero" + "Tom Bech & Federico Mena Quintero" + "Version 0.2.0, March 15 1998" + "_Lighting Effects..." + 1 + (menu-path "/Filters/Light and Shadow/Light") + (icon icon-name -1 "") + "RGB*" + 24 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Input drawable") + (proc-arg 16 "bumpdrawable" "Bumpmap drawable (set to 0 if disabled)") + (proc-arg 16 "envdrawable" "Environmentmap drawable (set to 0 if disabled)") + (proc-arg 0 "dobumpmap" "Enable bumpmapping (TRUE/FALSE)") + (proc-arg 0 "doenvmap" "Enable envmapping (TRUE/FALSE)") + (proc-arg 0 "bumpmaptype" "Type of mapping (0=linear,1=log, 2=sinusoidal, 3=spherical)") + (proc-arg 0 "lighttype" "Type of lightsource (0=point,1=directional,3=spot,4=none)") + (proc-arg 10 "lightcolor" "Lightsource color (r,g,b)") + (proc-arg 3 "lightposition-x" "Lightsource position (x,y,z)") + (proc-arg 3 "lightposition-y" "Lightsource position (x,y,z)") + (proc-arg 3 "lightposition-z" "Lightsource position (x,y,z)") + (proc-arg 3 "lightdirection-x" "Lightsource direction [x,y,z]") + (proc-arg 3 "lightdirection-y" "Lightsource direction [x,y,z]") + (proc-arg 3 "lightdirection-z" "Lightsource direction [x,y,z]") + (proc-arg 3 "ambient-intensity" "Material ambient intensity (0..1)") + (proc-arg 3 "diffuse-intensity" "Material diffuse intensity (0..1)") + (proc-arg 3 "diffuse-reflectivity" "Material diffuse reflectivity (0..1)") + (proc-arg 3 "specular-reflectivity" "Material specular reflectivity (0..1)") + (proc-arg 3 "highlight" "Material highlight (0..->), note: it's exponential") + (proc-arg 0 "antialiasing" "Apply antialiasing (TRUE/FALSE)") + (proc-arg 0 "newimage" "Create a new image (TRUE/FALSE)") + (proc-arg 0 "transparentbackground" "Make background transparent (TRUE/FALSE)"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/jigsaw/jigsaw" 1601838911 + (proc-def "plug-in-jigsaw" 1 + "Add a jigsaw-puzzle pattern to the image" + "Jigsaw puzzle look" + "Nigel Wetten" + "Nigel Wetten" + "May 2000" + "_Jigsaw..." + 1 + (menu-path "/Filters/Render/Pattern") + (icon icon-name -1 "") + "RGB*" + 8 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Input drawable") + (proc-arg 0 "x" "Number of tiles across > 0") + (proc-arg 0 "y" "Number of tiles down > 0") + (proc-arg 0 "style" "The style/shape of the jigsaw puzzle { 0, 1 }") + (proc-arg 0 "blend-lines" "Number of lines for shading bevels >= 0") + (proc-arg 3 "blend-amount" "The power of the light highlights 0 =< 5"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/imagemap/imagemap" 1601838911 + (proc-def "plug-in-imagemap" 1 + "Create a clickable imagemap" + "" + "Maurits Rijk" + "Maurits Rijk" + "1998-2005" + "_Image Map..." + 1 + (menu-path "/Filters/Web") + (icon icon-name -1 "") + "RGB*, GRAY*, INDEXED*" + 3 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0) }") + (proc-arg 13 "image" "Input image (unused)") + (proc-arg 16 "drawable" "Input drawable"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/ifs-compose/ifs-compose" 1601838911 + (proc-def "plug-in-ifscompose" 1 + "Create an Iterated Function System (IFS) fractal" + "Interactively create an Iterated Function System fractal. Use the window on the upper left to adjust the component transformations of the fractal. The operation that is performed is selected by the buttons underneath the window, or from a menu popped up by the right mouse button. The fractal will be rendered with a transparent background if the current image has an alpha channel." + "Owen Taylor" + "Owen Taylor" + "1997" + "_IFS Fractal..." + 1 + (menu-path "/Filters/Render/Fractals") + (icon icon-name -1 "") + "*" + 3 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Input drawable"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/hot/hot" 1601838911 + (proc-def "plug-in-hot" 1 + "Find and fix pixels that may be unsafely bright" + "hot scans an image for pixels that will give unsave values of chrominance or composite signale amplitude when encoded into an NTSC or PAL signal. Three actions can be performed on these ``hot'' pixels. (0) reduce luminance, (1) reduce saturation, or (2) Blacken." + "Eric L. Hernes, Alan Wm Paeth" + "Eric L. Hernes" + "1997" + "_Hot..." + 1 + (menu-path "/Colors/Modify") + (icon icon-name -1 "") + "RGB" + 6 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "The Image") + (proc-arg 16 "drawable" "The Drawable") + (proc-arg 0 "mode" "Mode { NTSC (0), PAL (1) }") + (proc-arg 0 "action" "The action to perform") + (proc-arg 0 "new-layer" "Create a new layer { TRUE, FALSE }"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/help/help" 1601838911 + (proc-def "extension-gimp-help" 2 + "" + "" + "Sven Neumann , Michael Natterer , Henrik Brix Andersen " + "Sven Neumann, Michael Natterer & Henrik Brix Andersen" + "1999-2008" + "" + 0 + (icon icon-name -1 "") + "" + 4 0 + (proc-arg 0 "num-domain-names" "") + (proc-arg 9 "domain-names" "") + (proc-arg 0 "num-domain-uris" "") + (proc-arg 9 "domain-uris" ""))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/guillotine/guillotine" 1601838911 + (proc-def "plug-in-guillotine" 1 + "Slice the image into subimages using guides" + "This function takes an image and slices it along its guides, creating new images. The original image is not modified." + "Adam D. Moss (adam@foxbox.org)" + "Adam D. Moss (adam@foxbox.org)" + "1998" + "Slice Using G_uides" + 1 + (menu-path "/Image/Crop") + (icon icon-name -1 "") + "RGB*, INDEXED*, GRAY*" + 3 2 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Input drawable (unused)") + (proc-arg 0 "image-count" "Number of images created") + (proc-arg 5 "image-ids" "Output images"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/grid/grid" 1601838911 + (proc-def "plug-in-grid" 1 + "Draw a grid on the image" + "Draws a grid using the specified colors. The grid origin is the upper left corner." + "Tim Newsome" + "Tim Newsome, Sven Neumann, Tom Rathborne, TC" + "1997 - 2000" + "_Grid (legacy)..." + 1 + (menu-path "/Filters/Render/Pattern") + (icon icon-name -1 "") + "RGB*, GRAY*, INDEXED*" + 18 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Input drawable") + (proc-arg 0 "hwidth" "Horizontal Width (>= 0)") + (proc-arg 0 "hspace" "Horizontal Spacing (>= 1)") + (proc-arg 0 "hoffset" "Horizontal Offset (>= 0)") + (proc-arg 10 "hcolor" "Horizontal Colour") + (proc-arg 2 "hopacity" "Horizontal Opacity (0...255)") + (proc-arg 0 "vwidth" "Vertical Width (>= 0)") + (proc-arg 0 "vspace" "Vertical Spacing (>= 1)") + (proc-arg 0 "voffset" "Vertical Offset (>= 0)") + (proc-arg 10 "vcolor" "Vertical Colour") + (proc-arg 2 "vopacity" "Vertical Opacity (0...255)") + (proc-arg 0 "iwidth" "Intersection Width (>= 0)") + (proc-arg 0 "ispace" "Intersection Spacing (>= 0)") + (proc-arg 0 "ioffset" "Intersection Offset (>= 0)") + (proc-arg 10 "icolor" "Intersection Colour") + (proc-arg 2 "iopacity" "Intersection Opacity (0...255)"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/gradient-map/gradient-map" 1601838911 + (proc-def "plug-in-gradmap" 1 + "Recolor the image using colors from the active gradient" + "This plug-in maps the contents of the specified drawable with active gradient. It calculates luminosity of each pixel and replaces the pixel by the sample of active gradient at the position proportional to that luminosity. Complete black pixel becomes the leftmost color of the gradient, and complete white becomes the rightmost. Works on both Grayscale and RGB image with/without alpha channel." + "Eiichi Takamori" + "Eiichi Takamori" + "1997" + "_Gradient Map" + 1 + (menu-path "/Colors/Map") + (icon icon-name -1 "") + "RGB*, GRAY*" + 3 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image (unused)") + (proc-arg 16 "drawable" "Input drawable")) + (proc-def "plug-in-palettemap" 1 + "Recolor the image using colors from the active palette" + "This plug-in maps the contents of the specified drawable with the active palette. It calculates luminosity of each pixel and replaces the pixel by the palette sample at the corresponding index. A complete black pixel becomes the lowest palette entry, and complete white becomes the highest. Works on both Grayscale and RGB image with/without alpha channel." + "Bill Skaggs" + "Bill Skaggs" + "2004" + "_Palette Map" + 1 + (menu-path "/Colors/Map") + (icon icon-name -1 "") + "RGB*, GRAY*" + 3 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image (unused)") + (proc-arg 16 "drawable" "Input drawable"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/gradient-flare/gradient-flare" 1601838911 + (proc-def "plug-in-gflare" 1 + "Produce a lense flare effect using gradients" + "This plug-in produces a lense flare effect using custom gradients. In interactive call, the user can edit his/her own favorite lense flare (GFlare) and render it. Edited gflare is saved automatically to the folder in gflare-path, if it is defined in gimprc. In non-interactive call, the user can only render one of GFlare which has been stored in gflare-path already." + "Eiichi Takamori" + "Eiichi Takamori, and a lot of GIMP people" + "1997" + "_Gradient Flare..." + 1 + (menu-path "/Filters/Light and Shadow/Light") + (icon icon-name -1 "") + "RGB*, GRAY*" + 14 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image (unused)") + (proc-arg 16 "drawable" "Input drawable") + (proc-arg 4 "gflare-name" "The name of GFlare") + (proc-arg 0 "xcenter" "X coordinate of center of GFlare") + (proc-arg 0 "ycenter" "Y coordinate of center of GFlare") + (proc-arg 3 "radius" "Radius of GFlare (pixel)") + (proc-arg 3 "rotation" "Rotation of GFlare (degree)") + (proc-arg 3 "hue" "Hue rotation of GFlare (degree)") + (proc-arg 3 "vangle" "Vector angle for second flares (degree)") + (proc-arg 3 "vlength" "Vector length for second flares (percentage to Radius)") + (proc-arg 0 "use-asupsample" "Whether it uses or not adaptive supersampling while rendering (boolean)") + (proc-arg 0 "asupsample-max-depth" "Max depth for adaptive supersampling") + (proc-arg 3 "asupsample-threshold" "Threshold for adaptive supersampling"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/goat-exercise/goat-exercise" 1601838911 + (proc-def "plug-in-goat-exercise" 1 + "Exercise a goat" + "takes a goat for a walk" + "Øyvind Kolås " + "Øyvind Kolås " + "21march 2012" + "Goat-e_xercise" + 1 + (menu-path "/Filters") + (icon icon-name -1 "") + "RGB*, INDEXED*, GRAY*" + 3 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image (unused)") + (proc-arg 16 "drawable" "Input drawable"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimpressionist/gimpressionist" 1601838911 + (proc-def "plug-in-gimpressionist" 1 + "Performs various artistic operations" + "Performs various artistic operations on an image" + "Vidar Madsen " + "Vidar Madsen" + "v1.0, November 2003" + "_GIMPressionist..." + 1 + (menu-path "/Filters/Artistic") + (icon icon-name -1 "") + "RGB*, GRAY*" + 4 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Input drawable") + (proc-arg 4 "preset" "Preset Name"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/gfig/gfig" 1601838911 + (proc-def "plug-in-gfig" 1 + "Create geometric shapes" + "Draw Vector Graphics and paint them onto your images. Gfig allows you to draw many types of objects including Lines, Circles, Ellipses, Curves, Polygons, pointed stars, Bezier curves, and Spirals. Objects can be painted using Brushes or other toolsor filled using colors or patterns. Gfig objects can also be used to create selections. " + "Andy Thomas" + "Andy Thomas" + "1997" + "_Gfig..." + 1 + (menu-path "/Filters/Render") + (icon icon-name -1 "") + "RGB*, GRAY*" + 4 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image (unused)") + (proc-arg 16 "drawable" "Input drawable") + (proc-arg 0 "dummy" "dummy"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/fractal-trace/fractal-trace" 1601838911 + (proc-def "plug-in-fractal-trace" 1 + "Transform image with the Mandelbrot Fractal" + "transform image with the Mandelbrot Fractal" + "Hirotsuna Mizuno " + "Copyright (C) 1997 Hirotsuna Mizuno" + "v0.4 test version (Dec. 25 1997)" + "_Fractal Trace (legacy)..." + 1 + (menu-path "/Filters/Map") + (icon icon-name -1 "") + "RGB*, GRAY*" + 9 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image (unused)") + (proc-arg 16 "drawable" "Input drawable") + (proc-arg 3 "xmin" "xmin fractal image delimiter") + (proc-arg 3 "xmax" "xmax fractal image delimiter") + (proc-arg 3 "ymin" "ymin fractal image delimiter") + (proc-arg 3 "ymax" "ymax fractal image delimiter") + (proc-arg 0 "depth" "Trace depth") + (proc-arg 0 "outside-type" "Outside type { WRAP (0), TRANS (1), BLACK (2), WHITE (3) }"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/fractal-explorer/fractal-explorer" 1601838911 + (proc-def "plug-in-fractalexplorer" 1 + "Render fractal art" + "No help yet." + "Daniel Cotting (cotting@multimania.com, www.multimania.com/cotting)" + "Daniel Cotting (cotting@multimania.com, www.multimania.com/cotting)" + "December, 1998" + "_Fractal Explorer..." + 1 + (menu-path "/Filters/Render/Fractals") + (icon icon-name -1 "") + "RGB*, GRAY*" + 22 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Input drawable") + (proc-arg 2 "fractaltype" "0: Mandelbrot; 1: Julia; 2: Barnsley 1; 3: Barnsley 2; 4: Barnsley 3; 5: Spider; 6: ManOWar; 7: Lambda; 8: Sierpinski") + (proc-arg 3 "xmin" "xmin fractal image delimiter") + (proc-arg 3 "xmax" "xmax fractal image delimiter") + (proc-arg 3 "ymin" "ymin fractal image delimiter") + (proc-arg 3 "ymax" "ymax fractal image delimiter") + (proc-arg 3 "iter" "Iteration value") + (proc-arg 3 "cx" "cx value ( only Julia)") + (proc-arg 3 "cy" "cy value ( only Julia)") + (proc-arg 2 "colormode" "0: Apply colormap as specified by the parameters below; 1: Apply active gradient to final image") + (proc-arg 3 "redstretch" "Red stretching factor") + (proc-arg 3 "greenstretch" "Green stretching factor") + (proc-arg 3 "bluestretch" "Blue stretching factor") + (proc-arg 2 "redmode" "Red application mode (0:SIN;1:COS;2:NONE)") + (proc-arg 2 "greenmode" "Green application mode (0:SIN;1:COS;2:NONE)") + (proc-arg 2 "bluemode" "Blue application mode (0:SIN;1:COS;2:NONE)") + (proc-arg 2 "redinvert" "Red inversion mode (1: enabled; 0: disabled)") + (proc-arg 2 "greeninvert" "Green inversion mode (1: enabled; 0: disabled)") + (proc-arg 2 "blueinvert" "Green inversion mode (1: enabled; 0: disabled)") + (proc-arg 0 "ncolors" "Number of Colors for mapping (2<=ncolors<=8192)"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/flame/flame" 1601838911 + (proc-def "plug-in-flame" 1 + "Create cosmic recursive fractal flames" + "Create cosmic recursive fractal flames" + "Scott Draves" + "Scott Draves" + "1997" + "_Flame..." + 1 + (menu-path "/Filters/Render/Fractals") + (icon icon-name -1 "") + "RGB*" + 3 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image (unused)") + (proc-arg 16 "drawable" "Input drawable"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/filter-pack/filter-pack" 1601838911 + (proc-def "plug-in-filter-pack" 1 + "Interactively modify the image colors" + "Interactively modify the image colors." + "Pavel Grinfeld (pavel@ml.com)" + "Pavel Grinfeld (pavel@ml.com)" + "27th March 1997" + "_Filter Pack..." + 0 + (icon icon-name -1 "") + "RGB*" + 3 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image (used for indexed images)") + (proc-arg 16 "drawable" "Input drawable"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/film/film" 1601838911 + (proc-def "plug-in-film" 1 + "Combine several images on a film strip" + "Compose several images to a roll film" + "Peter Kirchgessner" + "Peter Kirchgessner (peter@kirchgessner.net)" + "1997" + "_Filmstrip..." + 1 + (menu-path "/Filters/Combine") + (icon icon-name -1 "") + "INDEXED*, GRAY*, RGB*" + 12 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image (only used as default image in interactive mode)") + (proc-arg 16 "drawable" "Input drawable (not used)") + (proc-arg 0 "film-height" "Height of film (0: fit to images)") + (proc-arg 10 "film-color" "Color of the film") + (proc-arg 0 "number-start" "Start index for numbering") + (proc-arg 4 "number-font" "Font for drawing numbers") + (proc-arg 10 "number-color" "Color for numbers") + (proc-arg 0 "at-top" "Flag for drawing numbers at top of film") + (proc-arg 0 "at-bottom" "Flag for drawing numbers at bottom of film") + (proc-arg 0 "num-images" "Number of images to be used for film") + (proc-arg 5 "image-ids" "num-images image IDs to be used for film") + (proc-arg 13 "new-image" "Output image"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-xwd/file-xwd" 1601838911 + (proc-def "file-xwd-load" 1 + "Loads files in the XWD (X Window Dump) format" + "Loads files in the XWD (X Window Dump) format. XWD image files are produced by the program xwd. Xwd is an X Window System window dumping utility." + "Peter Kirchgessner" + "Peter Kirchgessner" + "1996" + "X window dump" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "xwd") + (magics "4,long,0x00000007") + (mime-types "image/x-xwindowdump")) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 4 "raw-filename" "The name of the file to load") + (proc-arg 13 "image" "Output image")) + (proc-def "file-xwd-save" 1 + "Exports files in the XWD (X Window Dump) format" + "XWD exporting handles all image types except those with alpha channels." + "Peter Kirchgessner" + "Peter Kirchgessner" + "1996" + "X window dump" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "xwd") + (mime-types "image/x-xwindowdump") + (handles-uri)) + "RGB, GRAY, INDEXED" + 5 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to export") + (proc-arg 4 "filename" "The name of the file to export the image in") + (proc-arg 4 "raw-filename" "The name of the file to export the image in"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-xpm/file-xpm" 1601838911 + (proc-def "file-xpm-load" 1 + "Load files in XPM (X11 Pixmap) format." + "Load files in XPM (X11 Pixmap) format. XPM is a portable image format designed to be included in C source code. XLib provides utility functions to read this format. Newer code should however be using gdk-pixbuf-csource instead. XPM supports colored images, unlike the XBM format which XPM was designed to replace." + "Spencer Kimball & Peter Mattis & Ray Lehtiniemi" + "Spencer Kimball & Peter Mattis" + "1997" + "X PixMap image" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "xpm") + (magics "0, string,/*\\040XPM\\040*/") + (mime-types "image/x-xpixmap")) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 13 "image" "Output image")) + (proc-def "file-xpm-save" 1 + "Export files in XPM (X11 Pixmap) format." + "Export files in XPM (X11 Pixmap) format. XPM is a portable image format designed to be included in C source code. XLib provides utility functions to read this format. Newer code should however be using gdk-pixbuf-csource instead. XPM supports colored images, unlike the XBM format which XPM was designed to replace." + "Spencer Kimball & Peter Mattis & Ray Lehtiniemi & Nathan Summers" + "Spencer Kimball & Peter Mattis" + "1997" + "X PixMap image" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "xpm") + (mime-types "image/x-xpixmap")) + "RGB*, GRAY*, INDEXED*" + 6 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to export") + (proc-arg 4 "filename" "The name of the file to export the image in") + (proc-arg 4 "raw-filename" "The name of the file to export the image in") + (proc-arg 0 "threshold" "Alpha threshold (0-255)"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-xmc/file-xmc" 1601838911 + (proc-def "file-xmc-load" 1 + "Loads files of X11 Mouse Cursor file format" + "This plug-in loads X11 Mouse Cursor (XMC) files." + "Takeshi Matsuyama " + "Takeshi Matsuyama" + "26 May 2009" + "X11 Mouse Cursor" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "xmc") + (magics "0,string,Xcur") + (mime-types "image/x-xcursor") + (thumb-loader "file-xmc-load-thumb")) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 4 "raw-filename" "The name of the file to load") + (proc-arg 13 "image" "Output image")) + (proc-def "file-xmc-load-thumb" 1 + "Loads only first frame of X11 Mouse Cursor's animation sequence which nominal size is the closest of thumb-size to be used as a thumbnail" + "" + "Takeshi Matsuyama " + "Takeshi Matsuyama" + "26 May 2009" + "" + 0 + (icon icon-name -1 "") + "" + 2 5 + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 0 "thumb-size" "Preferred thumbnail size") + (proc-arg 13 "image" "Thumbnail image") + (proc-arg 0 "image-width" "The width of image") + (proc-arg 0 "image-height" "The height of image") + (proc-arg 0 "image-type" "The color type of image") + (proc-arg 0 "image-num-layers" "The number of layeres")) + (proc-def "file-xmc-save" 1 + "Exports files of X11 cursor file" + "This plug-in exports X11 Mouse Cursor (XMC) files" + "Takeshi Matsuyama " + "Takeshi Matsuyama" + "26 May 2009" + "X11 Mouse Cursor" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "xmc") + (mime-types "image/x-xcursor")) + "RGBA" + 15 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to export") + (proc-arg 4 "filename" "The name of the file to export the image in") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 0 "x-hot" "X-coordinate of hot spot") + (proc-arg 0 "y-hot" "Y-coordinate of hot spot\nUse (-1, -1) to keep original hot spot.") + (proc-arg 0 "crop" "Auto-crop or not") + (proc-arg 0 "size" "Default nominal size") + (proc-arg 0 "size-replace" "Replace existent size or not.") + (proc-arg 0 "delay" "Default delay") + (proc-arg 0 "delay-replace" "Replace existent delay or not.") + (proc-arg 4 "copyright" "Copyright information.") + (proc-arg 4 "license" "License information.") + (proc-arg 4 "other" "Other comment.(taken from \"gimp-comment\" parasite)"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-xbm/file-xbm" 1601838911 + (proc-def "file-xbm-load" 1 + "Load a file in X10 or X11 bitmap (XBM) file format" + "Load a file in X10 or X11 bitmap (XBM) file format. XBM is a lossless format for flat black-and-white (two color indexed) images." + "Gordon Matzigkeit" + "Gordon Matzigkeit" + "1998" + "X BitMap image" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "xbm,icon,bitmap") + (mime-types "image/x-xbitmap")) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 13 "image" "Output image")) + (proc-def "file-xbm-save" 1 + "Export a file in X10 or X11 bitmap (XBM) file format" + "Export a file in X10 or X11 bitmap (XBM) file format. XBM is a lossless format for flat black-and-white (two color indexed) images." + "Gordon Matzigkeit" + "Gordon Matzigkeit" + "1998" + "X BitMap image" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "xbm,icon,bitmap") + (mime-types "image/x-xbitmap") + (handles-uri)) + "INDEXED" + 12 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to export") + (proc-arg 4 "filename" "The name of the file to export") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 4 "comment" "Image description (maximum 72 bytes)") + (proc-arg 0 "x10" "Export in X10 format") + (proc-arg 0 "x-hot" "X coordinate of hotspot") + (proc-arg 0 "y-hot" "Y coordinate of hotspot") + (proc-arg 4 "prefix" "Identifier prefix [determined from filename]") + (proc-arg 0 "write-mask" "(0 = ignore, 1 = save as extra file)") + (proc-arg 4 "mask-extension" "Extension of the mask file"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-wmf/file-wmf" 1601838911 + (proc-def "file-wmf-load" 1 + "Loads files in the WMF file format" + "Loads files in the WMF file format" + "Dom Lachowicz " + "Dom Lachowicz " + "(c) 2003 - Version 0.3.0" + "Microsoft WMF file" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "wmf,apm") + (magics "0,string,\\327\\315\\306\\232,0,string,\\1\\0\\11\\0") + (mime-types "image/x-wmf") + (thumb-loader "file-wmf-load-thumb")) + "" + 6 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 4 "raw-filename" "The name of the file to load") + (proc-arg 3 "resolution" "Resolution to use for rendering the WMF (defaults to 72 dpi") + (proc-arg 0 "width" "Width (in pixels) to load the WMF in, 0 for original width") + (proc-arg 0 "height" "Height (in pixels) to load the WMF in, 0 for original height") + (proc-arg 13 "image" "Output image")) + (proc-def "file-wmf-load-thumb" 1 + "Loads a small preview from a WMF image" + "" + "Dom Lachowicz " + "Dom Lachowicz " + "(c) 2003 - Version 0.3.0" + "" + 0 + (icon icon-name -1 "") + "" + 2 3 + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 0 "thumb-size" "Preferred thumbnail size") + (proc-arg 13 "image" "Thumbnail image") + (proc-arg 0 "image-width" "Width of full-sized image") + (proc-arg 0 "image-height" "Height of full-sized image"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-webp/file-webp" 1601838911 + (proc-def "file-webp-load" 1 + "Loads images in the WebP file format" + "Loads images in the WebP file format" + "Nathan Osman, Ben Touchette" + "(C) 2015-2016 Nathan Osman, (C) 2016 Ben Touchette" + "2015,2016" + "WebP image" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "webp") + (magics "8,string,WEBP") + (mime-types "image/webp")) + "" + 3 1 + (proc-arg 0 "run-mode" "Interactive, non-interactive") + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 13 "image" "Output image")) + (proc-def "file-webp-save" 1 + "Saves files in the WebP image format" + "Saves files in the WebP image format" + "Nathan Osman, Ben Touchette" + "(C) 2015-2016 Nathan Osman, (C) 2016 Ben Touchette" + "2015,2016" + "WebP image" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "webp") + (mime-types "image/webp")) + "RGB*, GRAY*, INDEXED*" + 18 0 + (proc-arg 0 "run-mode" "Interactive, non-interactive") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to save") + (proc-arg 4 "filename" "The name of the file to save the image to") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 0 "preset" "preset (Default=0, Picture=1, Photo=2, Drawing=3, Icon=4, Text=5)") + (proc-arg 0 "lossless" "Use lossless encoding (0/1)") + (proc-arg 3 "quality" "Quality of the image (0 <= quality <= 100)") + (proc-arg 3 "alpha-quality" "Quality of the image's alpha channel (0 <= alpha-quality <= 100)") + (proc-arg 0 "animation" "Use layers for animation (0/1)") + (proc-arg 0 "anim-loop" "Loop animation infinitely (0/1)") + (proc-arg 0 "minimize-size" "Minimize animation size (0/1)") + (proc-arg 0 "kf-distance" "Maximum distance between key-frames (>=0)") + (proc-arg 0 "exif" "Toggle saving exif data (0/1)") + (proc-arg 0 "iptc" "Toggle saving iptc data (0/1)") + (proc-arg 0 "xmp" "Toggle saving xmp data (0/1)") + (proc-arg 0 "delay" "Delay to use when timestamps are not available or forced") + (proc-arg 0 "force-delay" "Force delay on all frames"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-tiff/file-tiff" 1601838911 + (proc-def "file-tiff-load" 1 + "loads files of the tiff file format" + "FIXME: write help for tiff_load" + "Spencer Kimball, Peter Mattis & Nick Lamb" + "Nick Lamb " + "1995-1996,1998-2003" + "TIFF image" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "tif,tiff") + (magics "0,string,II*\\0,0,string,MM\\0*") + (mime-types "image/tiff") + (handles-uri)) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 4 "raw-filename" "The name of the file to load") + (proc-arg 13 "image" "Output image")) + (proc-def "file-tiff-save" 1 + "saves files in the tiff file format" + "Saves files in the Tagged Image File Format. The value for the saved comment is taken from the 'gimp-comment' parasite." + "Spencer Kimball & Peter Mattis" + "Spencer Kimball & Peter Mattis" + "1995-1996,2000-2003" + "TIFF image" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "tif,tiff") + (mime-types "image/tiff") + (handles-uri)) + "RGB*, GRAY*, INDEXED*" + 6 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to save") + (proc-arg 4 "filename" "The name of the file to save the image in") + (proc-arg 4 "raw-filename" "The name of the file to save the image in") + (proc-arg 0 "compression" "Compression type: { NONE (0), LZW (1), PACKBITS (2), DEFLATE (3), JPEG (4), CCITT G3 Fax (5), CCITT G4 Fax (6) }")) + (proc-def "file-tiff-save2" 1 + "saves files in the tiff file format" + "Saves files in the Tagged Image File Format. The value for the saved comment is taken from the 'gimp-comment' parasite." + "Spencer Kimball & Peter Mattis" + "Spencer Kimball & Peter Mattis" + "1995-1996,2000-2003" + "TIFF image" + 0 + (icon icon-name -1 "") + "RGB*, GRAY*, INDEXED*" + 7 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to save") + (proc-arg 4 "filename" "The name of the file to save the image in") + (proc-arg 4 "raw-filename" "The name of the file to save the image in") + (proc-arg 0 "compression" "Compression type: { NONE (0), LZW (1), PACKBITS (2), DEFLATE (3), JPEG (4), CCITT G3 Fax (5), CCITT G4 Fax (6) }") + (proc-arg 0 "save-transp-pixels" "Keep the color data masked by an alpha channel intact (do not store premultiplied components)"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-tga/file-tga" 1601838911 + (proc-def "file-tga-load" 1 + "Loads files of Targa file format" + "FIXME: write help for tga_load" + "Raphael FRANCOIS, Gordon Matzigkeit" + "Raphael FRANCOIS, Gordon Matzigkeit" + "1997,2000,2007" + "TarGA image" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "tga,vda,icb,vst") + (magics "-18&,string,TRUEVISION-XFILE.,-1,byte,0") + (mime-types "image/x-tga")) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 13 "image" "Output image")) + (proc-def "file-tga-save" 1 + "exports files in the Targa file format" + "FIXME: write help for tga_save" + "Raphael FRANCOIS, Gordon Matzigkeit" + "Raphael FRANCOIS, Gordon Matzigkeit" + "1997,2000" + "TarGA image" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "tga") + (mime-types "image/x-tga")) + "RGB*, GRAY*, INDEXED*" + 7 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to export") + (proc-arg 4 "filename" "The name of the file to export the image in") + (proc-arg 4 "raw-filename" "The name of the file to export the image in") + (proc-arg 0 "rle" "Use RLE compression") + (proc-arg 0 "origin" "Image origin (0 = top-left, 1 = bottom-left)"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-svg/file-svg" 1601838911 + (proc-def "file-svg-load" 1 + "Loads files in the SVG file format" + "Renders SVG files to raster graphics using librsvg." + "Dom Lachowicz, Sven Neumann" + "Dom Lachowicz " + "2.5.0" + "SVG image" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "svg") + (magics "0,string," + "2.5.0" + "" + 0 + (icon icon-name -1 "") + "" + 2 3 + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 0 "thumb-size" "Preferred thumbnail size") + (proc-arg 13 "image" "Thumbnail image") + (proc-arg 0 "image-width" "Width of full-sized image") + (proc-arg 0 "image-height" "Height of full-sized image"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-sunras/file-sunras" 1601838911 + (proc-def "file-sunras-load" 1 + "load file of the SunRaster file format" + "load file of the SunRaster file format" + "Peter Kirchgessner" + "Peter Kirchgessner" + "1996" + "SUN Rasterfile image" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "im1,im8,im24,im32,rs,ras") + (magics "0,long,0x59a66a95") + (mime-types "image/x-sun-raster")) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 4 "raw-filename" "The name of the file to load") + (proc-arg 13 "image" "Output image")) + (proc-def "file-sunras-save" 1 + "export file in the SunRaster file format" + "SUNRAS exporting handles all image types except those with alpha channels." + "Peter Kirchgessner" + "Peter Kirchgessner" + "1996" + "SUN Rasterfile image" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "im1,im8,im24,im32,rs,ras") + (mime-types "image/x-sun-raster")) + "RGB, GRAY, INDEXED" + 6 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to export") + (proc-arg 4 "filename" "The name of the file to export the image in") + (proc-arg 4 "raw-filename" "The name of the file to export the image in") + (proc-arg 0 "rle" "Specify non-zero for rle output, zero for standard output"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-sgi/file-sgi" 1601838911 + (proc-def "file-sgi-load" 1 + "Loads files in SGI image file format" + "This plug-in loads SGI image files." + "Michael Sweet " + "Copyright 1997-1998 by Michael Sweet" + "1.1.1 - 17 May 1998" + "Silicon Graphics IRIS image" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "sgi,rgb,rgba,bw,icon") + (magics "0,short,474") + (mime-types "image/x-sgi")) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 4 "raw-filename" "The name of the file to load") + (proc-arg 13 "image" "Output image")) + (proc-def "file-sgi-save" 1 + "Exports files in SGI image file format" + "This plug-in exports SGI image files." + "Michael Sweet " + "Copyright 1997-1998 by Michael Sweet" + "1.1.1 - 17 May 1998" + "Silicon Graphics IRIS image" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "sgi,rgb,rgba,bw,icon") + (mime-types "image/x-sgi")) + "RGB*, GRAY*, INDEXED*" + 6 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to export") + (proc-arg 4 "filename" "The name of the file to export the image in") + (proc-arg 4 "raw-filename" "The name of the file to export the image in") + (proc-arg 0 "compression" "Compression level (0 = none, 1 = RLE, 2 = ARLE)"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-raw-placeholder/file-raw-placeholder" 1601838911 + (proc-def "file-raw-placeholder-canon-load" 1 + "Load files in the Canon raw formats via raw-placeholder" + "This plug-in loads files in Canon's raw formats by calling raw-placeholder." + "Tobias Ellinghaus" + "Tobias Ellinghaus" + "2016" + "Raw Canon" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "cr2,crw,cr3") + (magics "0,string,II*\\0\\020\\0\\0\\0CR,0,string,II\\024\\0\\0\\0HEAPCCDR,4,string,ftypcrx ") + (mime-types "image/x-canon-cr2,image/x-canon-crw,image/x-canon-cr3") + (handles-raw)) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load.") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 13 "image" "Output image")) + (proc-def "file-raw-placeholder-nikon-load" 1 + "Load files in the Nikon raw formats via raw-placeholder" + "This plug-in loads files in Nikon's raw formats by calling raw-placeholder." + "Tobias Ellinghaus" + "Tobias Ellinghaus" + "2016" + "Raw Nikon" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "nef,nrw") + (mime-types "image/x-nikon-nef,image/x-nikon-nrw") + (handles-raw)) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load.") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 13 "image" "Output image")) + (proc-def "file-raw-placeholder-hasselblad-load" 1 + "Load files in the Hasselblad raw formats via raw-placeholder" + "This plug-in loads files in Hasselblad's raw formats by calling raw-placeholder." + "Tobias Ellinghaus" + "Tobias Ellinghaus" + "2016" + "Raw Hasselblad" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "3fr,fff") + (mime-types "image/x-hasselblad-3fr,image/x-hasselblad-fff") + (handles-raw)) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load.") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 13 "image" "Output image")) + (proc-def "file-raw-placeholder-sony-load" 1 + "Load files in the Sony raw formats via raw-placeholder" + "This plug-in loads files in Sony's raw formats by calling raw-placeholder." + "Tobias Ellinghaus" + "Tobias Ellinghaus" + "2016" + "Raw Sony" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "arw,srf,sr2") + (mime-types "image/x-sony-arw,image/x-sony-srf,image/x-sony-sr2") + (handles-raw)) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load.") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 13 "image" "Output image")) + (proc-def "file-raw-placeholder-bay-load" 1 + "Load files in the BAY raw format via raw-placeholder" + "This plug-in loads files in Casio's raw BAY format by calling raw-placeholder." + "Tobias Ellinghaus" + "Tobias Ellinghaus" + "2016" + "Raw Casio BAY" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "bay") + (mime-types "image/x-casio-bay") + (handles-raw)) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load.") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 13 "image" "Output image")) + (proc-def "file-raw-placeholder-cine-load" 1 + "Load files in the CINE raw format via raw-placeholder" + "This plug-in loads files in Phantom Software's raw CINE format by calling raw-placeholder." + "Tobias Ellinghaus" + "Tobias Ellinghaus" + "2016" + "Raw Phantom Software CINE" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "cine,cin") + (handles-raw)) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load.") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 13 "image" "Output image")) + (proc-def "file-raw-placeholder-sinar-load" 1 + "Load files in the Sinar raw formats via raw-placeholder" + "This plug-in loads files in Sinar's raw formats by calling raw-placeholder." + "Tobias Ellinghaus" + "Tobias Ellinghaus" + "2016" + "Raw Sinar" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "cs1,ia,sti") + (handles-raw)) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load.") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 13 "image" "Output image")) + (proc-def "file-raw-placeholder-kodak-load" 1 + "Load files in the Kodak raw formats via raw-placeholder" + "This plug-in loads files in Kodak's raw formats by calling raw-placeholder." + "Tobias Ellinghaus" + "Tobias Ellinghaus" + "2016" + "Raw Kodak" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "dc2,dcr,kdc,k25,kc2") + (mime-types "image/x-kodak-dc2,image/x-kodak-dcr,image/x-kodak-kdc,image/x-kodak-k25,image/x-kodak-kc2") + (handles-raw)) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load.") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 13 "image" "Output image")) + (proc-def "file-raw-placeholder-dng-load" 1 + "Load files in the DNG raw format via raw-placeholder" + "This plug-in loads files in the Adobe Digital Negative DNG format by calling raw-placeholder." + "Tobias Ellinghaus" + "Tobias Ellinghaus" + "2016" + "Raw Adobe DNG Digital Negative" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "dng") + (mime-types "image/x-adobe-dng") + (handles-raw)) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load.") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 13 "image" "Output image")) + (proc-def "file-raw-placeholder-erf-load" 1 + "Load files in the ERF raw format via raw-placeholder" + "This plug-in loads files in Epson's raw ERF format by calling raw-placeholder." + "Tobias Ellinghaus" + "Tobias Ellinghaus" + "2016" + "Raw Epson ERF" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "erf") + (mime-types "image/x-epson-erf") + (handles-raw)) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load.") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 13 "image" "Output image")) + (proc-def "file-raw-placeholder-phaseone-load" 1 + "Load files in the Phase One raw formats via raw-placeholder" + "This plug-in loads files in Phase One's raw formats by calling raw-placeholder." + "Tobias Ellinghaus" + "Tobias Ellinghaus" + "2016" + "Raw Phase One" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "cap,iiq") + (mime-types "image/x-phaseone-cap,image/x-phaseone-iiq") + (handles-raw)) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load.") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 13 "image" "Output image")) + (proc-def "file-raw-placeholder-minolta-load" 1 + "Load files in the Minolta raw formats via raw-placeholder" + "This plug-in loads files in Minolta's raw formats by calling raw-placeholder." + "Tobias Ellinghaus" + "Tobias Ellinghaus" + "2016" + "Raw Minolta" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "mdc,mrw") + (mime-types "image/x-minolta-mdc,image/x-minolta-mrw") + (handles-raw)) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load.") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 13 "image" "Output image")) + (proc-def "file-raw-placeholder-mef-load" 1 + "Load files in the MEF raw format via raw-placeholder" + "This plug-in loads files in Mamiya's raw MEF format by calling raw-placeholder." + "Tobias Ellinghaus" + "Tobias Ellinghaus" + "2016" + "Raw Mamiya MEF" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "mef") + (mime-types "image/x-mamiya-mef") + (handles-raw)) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load.") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 13 "image" "Output image")) + (proc-def "file-raw-placeholder-mos-load" 1 + "Load files in the MOS raw format via raw-placeholder" + "This plug-in loads files in Leaf's raw MOS format by calling raw-placeholder." + "Tobias Ellinghaus" + "Tobias Ellinghaus" + "2016" + "Raw Leaf MOS" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "mos") + (mime-types "image/x-leaf-mos") + (handles-raw)) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load.") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 13 "image" "Output image")) + (proc-def "file-raw-placeholder-orf-load" 1 + "Load files in the ORF raw format via raw-placeholder" + "This plug-in loads files in Olympus' raw ORF format by calling raw-placeholder." + "Tobias Ellinghaus" + "Tobias Ellinghaus" + "2016" + "Raw Olympus ORF" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "orf") + (magics "0,string,IIRO,0,string,MMOR,0,string,IIRS") + (mime-types "image/x-olympus-orf") + (handles-raw)) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load.") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 13 "image" "Output image")) + (proc-def "file-raw-placeholder-pef-load" 1 + "Load files in the PEF raw format via raw-placeholder" + "This plug-in loads files in Pentax' raw PEF format by calling raw-placeholder." + "Tobias Ellinghaus" + "Tobias Ellinghaus" + "2016" + "Raw Pentax PEF" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "pef,raw") + (mime-types "image/x-pentax-pef,image/x-pentax-raw") + (handles-raw)) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load.") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 13 "image" "Output image")) + (proc-def "file-raw-placeholder-pxn-load" 1 + "Load files in the PXN raw format via raw-placeholder" + "This plug-in loads files in Logitech's raw PXN format by calling raw-placeholder." + "Tobias Ellinghaus" + "Tobias Ellinghaus" + "2016" + "Raw Logitech PXN" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "pxn") + (mime-types "image/x-pxn") + (handles-raw)) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load.") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 13 "image" "Output image")) + (proc-def "file-raw-placeholder-qtk-load" 1 + "Load files in the QTK raw format via raw-placeholder" + "This plug-in loads files in Apple's QuickTake QTK raw format by calling raw-placeholder." + "Tobias Ellinghaus" + "Tobias Ellinghaus" + "2016" + "Raw Apple QuickTake QTK" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "qtk") + (handles-raw)) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load.") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 13 "image" "Output image")) + (proc-def "file-raw-placeholder-raf-load" 1 + "Load files in the RAF raw format via raw-placeholder" + "This plug-in loads files in Fujifilm's raw RAF format by calling raw-placeholder." + "Tobias Ellinghaus" + "Tobias Ellinghaus" + "2016" + "Raw Fujifilm RAF" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "raf") + (magics "0,string,FUJIFILMCCD-RAW") + (mime-types "image/x-fuji-raf") + (handles-raw)) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load.") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 13 "image" "Output image")) + (proc-def "file-raw-placeholder-panasonic-load" 1 + "Load files in the Panasonic raw formats via raw-placeholder" + "This plug-in loads files in Panasonic's raw formats by calling raw-placeholder." + "Tobias Ellinghaus" + "Tobias Ellinghaus" + "2016" + "Raw Panasonic" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "raw,rw2") + (magics "0,string,IIU\\0") + (mime-types "image/x-panasonic-raw,image/x-panasonic-rw2") + (handles-raw)) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load.") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 13 "image" "Output image")) + (proc-def "file-raw-placeholder-rdc-load" 1 + "Load files in the RDC raw format via raw-placeholder" + "This plug-in loads files in Digital Foto Maker's raw RDC format by calling raw-placeholder." + "Tobias Ellinghaus" + "Tobias Ellinghaus" + "2016" + "Raw Digital Foto Maker RDC" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "rdc") + (handles-raw)) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load.") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 13 "image" "Output image")) + (proc-def "file-raw-placeholder-rwl-load" 1 + "Load files in the RWL raw format via raw-placeholder" + "This plug-in loads files in Leica's raw RWL format by calling raw-placeholder." + "Tobias Ellinghaus" + "Tobias Ellinghaus" + "2016" + "Raw Leica RWL" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "rwl") + (mime-types "image/x-leica-rwl") + (handles-raw)) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load.") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 13 "image" "Output image")) + (proc-def "file-raw-placeholder-srw-load" 1 + "Load files in the SRW raw format via raw-placeholder" + "This plug-in loads files in Samsung's raw SRW format by calling raw-placeholder." + "Tobias Ellinghaus" + "Tobias Ellinghaus" + "2016" + "Raw Samsung SRW" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "srw") + (mime-types "image/x-samsung-srw") + (handles-raw)) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load.") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 13 "image" "Output image")) + (proc-def "file-raw-placeholder-x3f-load" 1 + "Load files in the X3F raw format via raw-placeholder" + "This plug-in loads files in Sigma's raw X3F format by calling raw-placeholder." + "Tobias Ellinghaus" + "Tobias Ellinghaus" + "2016" + "Raw Sigma X3F" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "x3f") + (magics "0,string,FOVb") + (mime-types "image/x-sigma-x3f") + (handles-raw)) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load.") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 13 "image" "Output image")) + (proc-def "file-raw-placeholder-ari-load" 1 + "Load files in the ARI raw format via raw-placeholder" + "This plug-in loads files in Arriflex' raw ARI format by calling raw-placeholder." + "Tobias Ellinghaus" + "Tobias Ellinghaus" + "2016" + "Raw Arriflex ARI" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "ari") + (handles-raw)) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load.") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 13 "image" "Output image"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-raw-data/file-raw-data" 1601838911 + (proc-def "file-raw-load" 1 + "Load raw images, specifying image information" + "Load raw images, specifying image information" + "timecop, pg@futureware.at" + "timecop, pg@futureware.at" + "Aug 2004" + "Raw image data" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "data")) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0) }") + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 13 "image" "Output image")) + (proc-def "file-hgt-load" 1 + "Load HGT data as images" + "Load Digital Elevation Model data in HGT format from the Shuttle Radar Topography Mission as images. Though the output image will be RGB, all colors are grayscale by default and the contrast will be quite low on most earth relief. Therefore You will likely want to remap elevation to colors as a second step, for instance with the \"Gradient Map\" plug-in." + "" + "" + "2017-12-09" + "Digital Elevation Model data" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "hgt")) + "" + 4 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0) }") + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 0 "samplespacing" "The sample spacing of the data. Only supported values are 0, 1 and 3 (respectively auto-detect, SRTM-1 and SRTM-3 data)") + (proc-arg 13 "image" "Output image")) + (proc-def "file-raw-save" 1 + "Dump images to disk in raw format" + "This plug-in dumps images to disk in raw format, using the default settings stored as a parasite." + "timecop, pg@futureware.at" + "timecop, pg@futureware.at" + "Aug 2004" + "Raw image data" + 0 + (icon icon-name -1 "") + "INDEXED, GRAY, RGB, RGBA" + 5 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to save") + (proc-arg 4 "filename" "The name of the file to save the image in") + (proc-arg 4 "raw-filename" "The name entered")) + (proc-def "file-raw-save2" 1 + "Dump images to disk in raw format" + "Dump images to disk in raw format" + "Björn Kautler, Bjoern@Kautler.net" + "Björn Kautler, Bjoern@Kautler.net" + "April 2014" + "Raw image data" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "data,raw")) + "INDEXED, GRAY, RGB, RGBA" + 7 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to save") + (proc-arg 4 "filename" "The name of the file to save the image in") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 0 "image-type" "The image type { RAW_RGB (0), RAW_PLANAR (3) }") + (proc-arg 0 "palette-type" "The palette type { RAW_PALETTE_RGB (0), RAW_PALETTE_BGR (1) }")) + (proc-def "file-raw-get-defaults" 1 + "Get the current set of defaults used by the raw image data dump plug-in" + "This procedure returns the current set of defaults stored as a parasite for the raw image data dump plug-in. These defaults are used to seed the UI, by the file_raw_save_defaults procedure, and by gimp_file_save when it detects to use RAW." + "Björn Kautler, Bjoern@Kautler.net" + "Björn Kautler, Bjoern@Kautler.net" + "April 2014" + "" + 0 + (icon icon-name -1 "") + "" + 0 2 + (proc-arg 0 "image-type" "The image type { RAW_RGB (0), RAW_PLANAR (3) }") + (proc-arg 0 "palette-type" "The palette type { RAW_PALETTE_RGB (0), RAW_PALETTE_BGR (1) }")) + (proc-def "file-raw-set-defaults" 1 + "Set the current set of defaults used by the raw image dump plug-in" + "This procedure sets the current set of defaults stored as a parasite for the raw image data dump plug-in. These defaults are used to seed the UI, by the file_raw_save_defaults procedure, and by gimp_file_save when it detects to use RAW." + "Björn Kautler, Bjoern@Kautler.net" + "Björn Kautler, Bjoern@Kautler.net" + "April 2014" + "" + 0 + (icon icon-name -1 "") + "" + 2 0 + (proc-arg 0 "image-type" "The image type { RAW_RGB (0), RAW_PLANAR (3) }") + (proc-arg 0 "palette-type" "The palette type { RAW_PALETTE_RGB (0), RAW_PALETTE_BGR (1) }"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-psp/file-psp" 1601838911 + (proc-def "file-psp-load" 1 + "loads images from the Paint Shop Pro PSP file format" + "This plug-in loads and exports images in Paint Shop Pro's native PSP format. Vector layers aren't handled. Exporting isn't yet implemented." + "Tor Lillqvist" + "Tor Lillqvist" + "1999" + "Paint Shop Pro image" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "psp,tub,pspimage") + (magics "0,string,Paint\\040Shop\\040Pro\\040Image\\040File\n\032") + (mime-types "image/x-psp")) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 4 "raw-filename" "The name of the file to load") + (proc-arg 13 "image" "Output image"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-psd/file-psd" 1601838911 + (proc-def "file-psd-load" 1 + "Loads images from the Photoshop PSD file format" + "This plug-in loads images in Adobe Photoshop (TM) native PSD format." + "John Marshall" + "John Marshall" + "2007" + "Photoshop image" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "psd") + (magics "0,string,8BPS") + (mime-types "image/x-psd") + (thumb-loader "file-psd-load-thumb")) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 4 "raw-filename" "The name of the file to load") + (proc-arg 13 "image" "Output image")) + (proc-def "file-psd-load-merged" 1 + "Loads merged images from the Photoshop PSD file format" + "This plug-in loads the merged image data in Adobe Photoshop (TM) native PSD format." + "Ell" + "Ell" + "2018" + "Photoshop image (merged)" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "psd") + (magics "0,string,8BPS") + (priority 1) + (mime-types "image/x-psd") + (priority 1)) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 4 "raw-filename" "The name of the file to load") + (proc-arg 13 "image" "Output image")) + (proc-def "file-psd-load-thumb" 1 + "Loads thumbnails from the Photoshop PSD file format" + "This plug-in loads thumbnail images from Adobe Photoshop (TM) native PSD format files." + "John Marshall" + "John Marshall" + "2007" + "" + 0 + (icon icon-name -1 "") + "" + 2 3 + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 0 "thumb-size" "Preferred thumbnail size") + (proc-arg 13 "image" "Thumbnail image") + (proc-arg 0 "image-width" "Width of full-sized image") + (proc-arg 0 "image-height" "Height of full-sized image")) + (proc-def "file-psd-save" 1 + "saves files in the Photoshop(tm) PSD file format" + "This filter saves files of Adobe Photoshop(tm) native PSD format. These files may be of any image type supported by GIMP, with or without layers, layer masks, aux channels and guides." + "Monigotes" + "Monigotes" + "2000" + "Photoshop image" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "psd") + (mime-types "image/x-psd")) + "RGB*, GRAY*, INDEXED*" + 7 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to save") + (proc-arg 4 "filename" "The name of the file to save the image in") + (proc-arg 4 "raw-filename" "The name of the file to save the image in") + (proc-arg 0 "compression" "Compression type: { NONE (0), LZW (1), PACKBITS (2)") + (proc-arg 0 "fill-order" "Fill Order: { MSB to LSB (0), LSB to MSB (1)"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-ps/file-ps" 1601838911 + (proc-def "file-ps-load" 1 + "load PostScript documents" + "load PostScript documents" + "Peter Kirchgessner " + "Peter Kirchgessner" + "v1.17 19-Sep-2004" + "PostScript document" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "ps") + (magics "0,string,%!,0,long,0xc5d0d3c6") + (mime-types "application/postscript") + (thumb-loader "file-ps-load-thumb")) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 4 "raw-filename" "The name of the file to load") + (proc-arg 13 "image" "Output image")) + (proc-def "file-eps-load" 1 + "load Encapsulated PostScript images" + "load Encapsulated PostScript images" + "Peter Kirchgessner " + "Peter Kirchgessner" + "v1.17 19-Sep-2004" + "Encapsulated PostScript image" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "eps") + (magics "0,string,%!,0,long,0xc5d0d3c6") + (mime-types "image/x-eps") + (thumb-loader "file-ps-load-thumb")) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 4 "raw-filename" "The name of the file to load") + (proc-arg 13 "image" "Output image")) + (proc-def "file-ps-load-setargs" 1 + "set additional parameters for procedure file-ps-load" + "set additional parameters for procedure file-ps-load" + "Peter Kirchgessner " + "Peter Kirchgessner" + "v1.17 19-Sep-2004" + "" + 0 + (icon icon-name -1 "") + "" + 8 0 + (proc-arg 0 "resolution" "Resolution to interpret image (dpi)") + (proc-arg 0 "width" "Desired width") + (proc-arg 0 "height" "Desired height") + (proc-arg 0 "check-bbox" "0: Use width/height, 1: Use BoundingBox") + (proc-arg 4 "pages" "Pages to load (e.g.: 1,3,5-7)") + (proc-arg 0 "coloring" "4: b/w, 5: grey, 6: color image, 7: automatic") + (proc-arg 0 "text-alpha-bits" "1, 2, or 4") + (proc-arg 0 "graphic-alpha-bits" "1, 2, or 4")) + (proc-def "file-ps-load-thumb" 1 + "Loads a small preview from a PostScript or PDF document" + "" + "Peter Kirchgessner " + "Peter Kirchgessner" + "v1.17 19-Sep-2004" + "" + 0 + (icon icon-name -1 "") + "" + 2 1 + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 0 "thumb-size" "Preferred thumbnail size") + (proc-arg 13 "image" "Output image")) + (proc-def "file-ps-save" 1 + "export image as PostScript document" + "PostScript exporting handles all image types except those with alpha channels." + "Peter Kirchgessner " + "Peter Kirchgessner" + "v1.17 19-Sep-2004" + "PostScript document" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "ps") + (mime-types "application/postscript") + (handles-uri)) + "RGB, GRAY, INDEXED" + 15 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to export") + (proc-arg 4 "filename" "The name of the file to export the image in") + (proc-arg 4 "raw-filename" "The name of the file to export the image in") + (proc-arg 3 "width" "Width of the image in PostScript file (0: use input image size)") + (proc-arg 3 "height" "Height of image in PostScript file (0: use input image size)") + (proc-arg 3 "x-offset" "X-offset to image from lower left corner") + (proc-arg 3 "y-offset" "Y-offset to image from lower left corner") + (proc-arg 0 "unit" "Unit for width/height/offset. 0: inches, 1: millimeters") + (proc-arg 0 "keep-ratio" "0: use width/height, 1: keep aspect ratio") + (proc-arg 0 "rotation" "0, 90, 180, 270") + (proc-arg 0 "eps-flag" "0: PostScript, 1: Encapsulated PostScript") + (proc-arg 0 "preview" "0: no preview, >0: max. size of preview") + (proc-arg 0 "level" "1: PostScript Level 1, 2: PostScript Level 2")) + (proc-def "file-eps-save" 1 + "export image as Encapsulated PostScript image" + "PostScript exporting handles all image types except those with alpha channels." + "Peter Kirchgessner " + "Peter Kirchgessner" + "v1.17 19-Sep-2004" + "Encapsulated PostScript image" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "eps") + (mime-types "application/x-eps") + (handles-uri)) + "RGB, GRAY, INDEXED" + 15 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to export") + (proc-arg 4 "filename" "The name of the file to export the image in") + (proc-arg 4 "raw-filename" "The name of the file to export the image in") + (proc-arg 3 "width" "Width of the image in PostScript file (0: use input image size)") + (proc-arg 3 "height" "Height of image in PostScript file (0: use input image size)") + (proc-arg 3 "x-offset" "X-offset to image from lower left corner") + (proc-arg 3 "y-offset" "Y-offset to image from lower left corner") + (proc-arg 0 "unit" "Unit for width/height/offset. 0: inches, 1: millimeters") + (proc-arg 0 "keep-ratio" "0: use width/height, 1: keep aspect ratio") + (proc-arg 0 "rotation" "0, 90, 180, 270") + (proc-arg 0 "eps-flag" "0: PostScript, 1: Encapsulated PostScript") + (proc-arg 0 "preview" "0: no preview, >0: max. size of preview") + (proc-arg 0 "level" "1: PostScript Level 1, 2: PostScript Level 2"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-pnm/file-pnm" 1601838911 + (proc-def "file-pnm-load" 1 + "Loads files in the PNM file format" + "This plug-in loads files in the various Netpbm portable file formats." + "Erik Nygren" + "Erik Nygren" + "1996" + "PNM Image" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "pnm,ppm,pgm,pbm,pfm") + (magics "0,string,P1,0,string,P2,0,string,P3,0,string,P4,0,string,P5,0,string,P6,0,string,PF,0,string,Pf") + (mime-types "image/x-portable-anymap") + (handles-uri)) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 4 "raw-filename" "The name of the file to load") + (proc-arg 13 "image" "Output image")) + (proc-def "file-pnm-save" 1 + "Exports files in the PNM file format" + "PNM exporting handles all image types without transparency." + "Erik Nygren" + "Erik Nygren" + "1996" + "PNM image" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "pnm") + (mime-types "image/x-portable-anymap") + (handles-uri)) + "RGB, GRAY, INDEXED" + 6 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to export") + (proc-arg 4 "filename" "The name of the file to export the image in") + (proc-arg 4 "raw-filename" "The name of the file to export the image in") + (proc-arg 0 "raw" "TRUE for raw output, FALSE for ascii output")) + (proc-def "file-pbm-save" 1 + "Exports files in the PBM file format" + "PBM exporting produces mono images without transparency." + "Martin K Collins" + "Erik Nygren" + "2006" + "PBM image" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "pbm") + (mime-types "image/x-portable-bitmap") + (handles-uri)) + "RGB, GRAY, INDEXED" + 6 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to export") + (proc-arg 4 "filename" "The name of the file to export the image in") + (proc-arg 4 "raw-filename" "The name of the file to export the image in") + (proc-arg 0 "raw" "TRUE for raw output, FALSE for ascii output")) + (proc-def "file-pgm-save" 1 + "Exports files in the PGM file format" + "PGM exporting produces grayscale images without transparency." + "Erik Nygren" + "Erik Nygren" + "1996" + "PGM image" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "pgm") + (mime-types "image/x-portable-graymap") + (handles-uri)) + "RGB, GRAY, INDEXED" + 6 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to export") + (proc-arg 4 "filename" "The name of the file to export the image in") + (proc-arg 4 "raw-filename" "The name of the file to export the image in") + (proc-arg 0 "raw" "TRUE for raw output, FALSE for ascii output")) + (proc-def "file-ppm-save" 1 + "Exports files in the PPM file format" + "PPM exporting handles RGB images without transparency." + "Erik Nygren" + "Erik Nygren" + "1996" + "PPM image" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "ppm") + (mime-types "image/x-portable-floatmap") + (handles-uri)) + "RGB, GRAY, INDEXED" + 6 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to export") + (proc-arg 4 "filename" "The name of the file to export the image in") + (proc-arg 4 "raw-filename" "The name of the file to export the image in") + (proc-arg 0 "raw" "TRUE for raw output, FALSE for ascii output")) + (proc-def "file-pfm-save" 1 + "Exports files in the PFM file format" + "PFM exporting handles all images without transparency." + "Mukund Sivaraman" + "Mukund Sivaraman" + "2015" + "PFM image" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "pfm") + (handles-uri)) + "RGB, GRAY, INDEXED" + 5 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to export") + (proc-arg 4 "filename" "The name of the file to export the image in") + (proc-arg 4 "raw-filename" "The name of the file to export the image in"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-png/file-png" 1601838911 + (proc-def "file-png-load" 1 + "Loads files in PNG file format" + "This plug-in loads Portable Network Graphics (PNG) files." + "Michael Sweet , Daniel Skarda <0rfelyus@atrey.karlin.mff.cuni.cz>" + "Michael Sweet , Daniel Skarda <0rfelyus@atrey.karlin.mff.cuni.cz>, Nick Lamb " + "1.3.4 - 03 September 2002" + "PNG image" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "png") + (magics "0,string,PNG\r\n\032\n") + (mime-types "image/png")) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 4 "raw-filename" "The name of the file to load") + (proc-arg 13 "image" "Output image")) + (proc-def "file-png-save" 1 + "Exports files in PNG file format" + "This plug-in exports Portable Network Graphics (PNG) files." + "Michael Sweet , Daniel Skarda <0rfelyus@atrey.karlin.mff.cuni.cz>" + "Michael Sweet , Daniel Skarda <0rfelyus@atrey.karlin.mff.cuni.cz>, Nick Lamb " + "1.3.4 - 03 September 2002" + "PNG image" + 0 + (icon icon-name -1 "") + "RGB*,GRAY*,INDEXED*" + 12 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to export") + (proc-arg 4 "filename" "The name of the file to export the image in") + (proc-arg 4 "raw-filename" "The name of the file to export the image in") + (proc-arg 0 "interlace" "Use Adam7 interlacing?") + (proc-arg 0 "compression" "Deflate Compression factor (0--9)") + (proc-arg 0 "bkgd" "Write bKGD chunk?") + (proc-arg 0 "gama" "Write gAMA chunk?") + (proc-arg 0 "offs" "Write oFFs chunk?") + (proc-arg 0 "phys" "Write pHYs chunk?") + (proc-arg 0 "time" "Write tIME chunk?")) + (proc-def "file-png-save2" 1 + "Exports files in PNG file format" + "This plug-in exports Portable Network Graphics (PNG) files. This procedure adds 2 extra parameters to file-png-save that control whether image comments are saved and whether transparent pixels are saved or nullified." + "Michael Sweet , Daniel Skarda <0rfelyus@atrey.karlin.mff.cuni.cz>" + "Michael Sweet , Daniel Skarda <0rfelyus@atrey.karlin.mff.cuni.cz>, Nick Lamb " + "1.3.4 - 03 September 2002" + "PNG image" + 0 + (icon icon-name -1 "") + "RGB*,GRAY*,INDEXED*" + 14 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to export") + (proc-arg 4 "filename" "The name of the file to export the image in") + (proc-arg 4 "raw-filename" "The name of the file to export the image in") + (proc-arg 0 "interlace" "Use Adam7 interlacing?") + (proc-arg 0 "compression" "Deflate Compression factor (0--9)") + (proc-arg 0 "bkgd" "Write bKGD chunk?") + (proc-arg 0 "gama" "Write gAMA chunk?") + (proc-arg 0 "offs" "Write oFFs chunk?") + (proc-arg 0 "phys" "Write pHYs chunk?") + (proc-arg 0 "time" "Write tIME chunk?") + (proc-arg 0 "comment" "Write comment?") + (proc-arg 0 "svtrans" "Preserve color of transparent pixels?")) + (proc-def "file-png-save-defaults" 1 + "Exports files in PNG file format" + "This plug-in exports Portable Network Graphics (PNG) files, using the default settings stored as a parasite." + "Michael Sweet , Daniel Skarda <0rfelyus@atrey.karlin.mff.cuni.cz>" + "Michael Sweet , Daniel Skarda <0rfelyus@atrey.karlin.mff.cuni.cz>, Nick Lamb " + "1.3.4 - 03 September 2002" + "PNG image" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "png") + (mime-types "image/png")) + "RGB*,GRAY*,INDEXED*" + 5 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to export") + (proc-arg 4 "filename" "The name of the file to export the image in") + (proc-arg 4 "raw-filename" "The name of the file to export the image in")) + (proc-def "file-png-get-defaults" 1 + "Get the current set of defaults used by the PNG file export plug-in" + "This procedure returns the current set of defaults stored as a parasite for the PNG export plug-in. These defaults are used to seed the UI, by the file_png_save_defaults procedure, and by gimp_file_save when it detects to use PNG." + "Michael Sweet , Daniel Skarda <0rfelyus@atrey.karlin.mff.cuni.cz>" + "Michael Sweet , Daniel Skarda <0rfelyus@atrey.karlin.mff.cuni.cz>, Nick Lamb " + "1.3.4 - 03 September 2002" + "" + 0 + (icon icon-name -1 "") + "" + 0 9 + (proc-arg 0 "interlace" "Use Adam7 interlacing?") + (proc-arg 0 "compression" "Deflate Compression factor (0--9)") + (proc-arg 0 "bkgd" "Write bKGD chunk?") + (proc-arg 0 "gama" "Write gAMA chunk?") + (proc-arg 0 "offs" "Write oFFs chunk?") + (proc-arg 0 "phys" "Write pHYs chunk?") + (proc-arg 0 "time" "Write tIME chunk?") + (proc-arg 0 "comment" "Write comment?") + (proc-arg 0 "svtrans" "Preserve color of transparent pixels?")) + (proc-def "file-png-set-defaults" 1 + "Set the current set of defaults used by the PNG file export plug-in" + "This procedure set the current set of defaults stored as a parasite for the PNG export plug-in. These defaults are used to seed the UI, by the file_png_save_defaults procedure, and by gimp_file_save when it detects to use PNG." + "Michael Sweet , Daniel Skarda <0rfelyus@atrey.karlin.mff.cuni.cz>" + "Michael Sweet , Daniel Skarda <0rfelyus@atrey.karlin.mff.cuni.cz>, Nick Lamb " + "1.3.4 - 03 September 2002" + "" + 0 + (icon icon-name -1 "") + "" + 9 0 + (proc-arg 0 "interlace" "Use Adam7 interlacing?") + (proc-arg 0 "compression" "Deflate Compression factor (0--9)") + (proc-arg 0 "bkgd" "Write bKGD chunk?") + (proc-arg 0 "gama" "Write gAMA chunk?") + (proc-arg 0 "offs" "Write oFFs chunk?") + (proc-arg 0 "phys" "Write pHYs chunk?") + (proc-arg 0 "time" "Write tIME chunk?") + (proc-arg 0 "comment" "Write comment?") + (proc-arg 0 "svtrans" "Preserve color of transparent pixels?"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-pix/file-pix" 1601838911 + (proc-def "file-pix-load" 1 + "loads files of the Alias|Wavefront Pix file format" + "loads files of the Alias|Wavefront Pix file format" + "Michael Taylor" + "Michael Taylor" + "1997" + "Alias Pix image" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "pix,matte,mask,alpha,als") + (handles-uri)) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 13 "image" "Output image")) + (proc-def "file-pix-save" 1 + "export file in the Alias|Wavefront pix/matte file format" + "export file in the Alias|Wavefront pix/matte file format" + "Michael Taylor" + "Michael Taylor" + "1997" + "Alias Pix image" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "pix,matte,mask,alpha,als") + (handles-uri)) + "RGB*, GRAY*, INDEXED*" + 5 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to export") + (proc-arg 4 "filename" "The name of the file to export the image in") + (proc-arg 4 "raw-filename" "The name of the file to export the image in"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-pdf-save/file-pdf-save" 1601838911 + (proc-def "file-pdf-save" 1 + "Save files in PDF format" + "Saves files in Adobe's Portable Document Format. PDF is designed to be easily processed by a variety of different platforms, and is a distant cousin of PostScript." + "Barak Itkin" + "Copyright Barak Itkin" + "August 2009" + "Portable Document Format" + 0 + (icon icon-name -1 "") + "RGB*, GRAY*, INDEXED*" + 8 0 + (proc-arg 0 "run-mode" "Run mode") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Input drawable") + (proc-arg 4 "filename" "The name of the file to save the image in") + (proc-arg 4 "raw-filename" "The name of the file to save the image in") + (proc-arg 0 "vectorize" "Convert bitmaps to vector graphics where possible. TRUE or FALSE") + (proc-arg 0 "ignore-hidden" "Omit hidden layers and layers with zero opacity. TRUE or FALSE") + (proc-arg 0 "apply-masks" "Apply layer masks before saving. TRUE or FALSE (Keeping them will not change the output)")) + (proc-def "file-pdf-save2" 1 + "Save files in PDF format" + "Saves files in Adobe's Portable Document Format. PDF is designed to be easily processed by a variety of different platforms, and is a distant cousin of PostScript.\nThis procedure adds an extra parameter to file-pdf-save to save layers as pages." + "Barak Itkin, Lionel N., Jehan" + "Copyright Barak Itkin, Lionel N., Jehan" + "August 2009, 2017" + "Portable Document Format" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "pdf") + (mime-types "application/pdf")) + "RGB*, GRAY*, INDEXED*" + 10 0 + (proc-arg 0 "run-mode" "Run mode") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Input drawable") + (proc-arg 4 "filename" "The name of the file to save the image in") + (proc-arg 4 "raw-filename" "The name of the file to save the image in") + (proc-arg 0 "vectorize" "Convert bitmaps to vector graphics where possible. TRUE or FALSE") + (proc-arg 0 "ignore-hidden" "Omit hidden layers and layers with zero opacity. TRUE or FALSE") + (proc-arg 0 "apply-masks" "Apply layer masks before saving. TRUE or FALSE (Keeping them will not change the output)") + (proc-arg 0 "layers-as-pages" "Layers as pages (bottom layers first). TRUE or FALSE") + (proc-arg 0 "reverse-order" "Reverse the pages order (top layers first). TRUE or FALSE")) + (proc-def "file-pdf-save-multi" 1 + "Save files in PDF format" + "Saves files in Adobe's Portable Document Format. PDF is designed to be easily processed by a variety of different platforms, and is a distant cousin of PostScript." + "Barak Itkin" + "Copyright Barak Itkin" + "August 2009" + "_Create multipage PDF..." + 0 + (icon icon-name -1 "") + "RGB*, GRAY*, INDEXED*" + 8 0 + (proc-arg 0 "run-mode" "Run mode") + (proc-arg 0 "count" "The amount of images entered (This will be the amount of pages). 1 <= count <= MAX_PAGE_COUNT") + (proc-arg 5 "images" "Input image for each page (An image can appear more than once)") + (proc-arg 0 "vectorize" "Convert bitmaps to vector graphics where possible. TRUE or FALSE") + (proc-arg 0 "ignore-hidden" "Omit hidden layers and layers with zero opacity. TRUE or FALSE") + (proc-arg 0 "apply-masks" "Apply layer masks before saving. TRUE or FALSE (Keeping them will not change the output)") + (proc-arg 4 "filename" "The name of the file to save the image in") + (proc-arg 4 "raw-filename" "The name of the file to save the image in"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-pdf-load/file-pdf-load" 1601838911 + (proc-def "file-pdf-load" 1 + "Load file in PDF format" + "Loads files in Adobe's Portable Document Format. PDF is designed to be easily processed by a variety of different platforms, and is a distant cousin of PostScript.\nIf the PDF document has multiple pages, only the first page will be loaded. Call file_pdf_load2() to load several pages as layers." + "Nathan Summers" + "Nathan Summers" + "2005" + "Portable Document Format" + 0 + (icon icon-name -1 "") + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 13 "image" "Output image")) + (proc-def "file-pdf-load2" 1 + "Load file in PDF format" + "Loads files in Adobe's Portable Document Format. PDF is designed to be easily processed by a variety of different platforms, and is a distant cousin of PostScript.\nThis procedure adds extra parameters to file-pdf-load to open encrypted PDF and to allow multiple page loading." + "Nathan Summers, Lionel N." + "Nathan Summers, Lionel N." + "2005, 2017" + "Portable Document Format" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "pdf") + (magics "0, string,%PDF-") + (mime-types "application/pdf") + (thumb-loader "file-pdf-load-thumb")) + "" + 6 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 4 "pdf-password" "The password to decrypt the encrypted PDF file") + (proc-arg 0 "n-pages" "Number of pages to load (0 for all)") + (proc-arg 5 "pages" "The pages to load in the expected order") + (proc-arg 13 "image" "Output image")) + (proc-def "file-pdf-load-thumb" 1 + "Loads a preview from a PDF file." + "Loads a small preview of the first page of the PDF format file. Uses the embedded thumbnail if present." + "Nathan Summers" + "Nathan Summers" + "2005" + "" + 0 + (icon icon-name -1 "") + "" + 2 5 + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 0 "thumb-size" "Preferred thumbnail size") + (proc-arg 13 "image" "Thumbnail image") + (proc-arg 0 "image-width" "Width of full-sized image") + (proc-arg 0 "image-height" "Height of full-sized image") + (proc-arg 0 "image-type" "Image type") + (proc-arg 0 "num-layers" "Number of pages"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-pcx/file-pcx" 1601838911 + (proc-def "file-pcx-load" 1 + "Loads files in Zsoft PCX file format" + "FIXME: write help for pcx_load" + "Francisco Bustamante & Nick Lamb" + "Nick Lamb " + "January 1997" + "ZSoft PCX image" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "pcx,pcc") + (magics "0&,byte,10,2&,byte,1,3&,byte,>0,3,byte,<9") + (mime-types "image/x-pcx")) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 13 "image" "Output image")) + (proc-def "file-pcx-save" 1 + "Exports files in ZSoft PCX file format" + "FIXME: write help for pcx_save" + "Francisco Bustamante & Nick Lamb" + "Nick Lamb " + "January 1997" + "ZSoft PCX image" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "pcx,pcc") + (mime-types "image/x-pcx")) + "INDEXED, RGB, GRAY" + 5 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to export") + (proc-arg 4 "filename" "The name of the file to export the image in") + (proc-arg 4 "raw-filename" "The name entered"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-pat/file-pat" 1601838911 + (proc-def "file-pat-save" 1 + "Exports Gimp pattern file (.PAT)" + "New Gimp patterns can be created by exporting them in the appropriate place with this plug-in." + "Tim Newsome" + "Tim Newsome" + "1997" + "GIMP pattern" + 0 + (icon icon-name -1 "gimp-pattern") + (save-proc + (extensions "pat") + (mime-types "image/x-gimp-pat") + (handles-uri)) + "RGB*, GRAY*, INDEXED*" + 6 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to export") + (proc-arg 4 "uri" "The URI of the file to export the image in") + (proc-arg 4 "raw-uri" "The URI of the file to export the image in") + (proc-arg 4 "description" "Short description of the pattern"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-mng/file-mng" 1601838911 + (proc-def "file-mng-save" 1 + "Saves images in the MNG file format" + "This plug-in saves images in the Multiple-image Network Graphics (MNG) format which can be used as a replacement for animated GIFs, and more." + "Mukund Sivaraman " + "Mukund Sivaraman " + "November 19, 2002" + "MNG animation" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "mng") + (mime-types "image/x-mng")) + "RGB*,GRAY*,INDEXED*" + 17 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to save") + (proc-arg 4 "filename" "The name of the file to save the image in") + (proc-arg 4 "raw-filename" "The name of the file to save the image in") + (proc-arg 0 "interlace" "Use interlacing") + (proc-arg 0 "compression" "PNG deflate compression level (0 - 9)") + (proc-arg 3 "quality" "JPEG quality factor (0.00 - 1.00)") + (proc-arg 3 "smoothing" "JPEG smoothing factor (0.00 - 1.00)") + (proc-arg 0 "loop" "(ANIMATED MNG) Loop infinitely") + (proc-arg 0 "default-delay" "(ANIMATED MNG) Default delay between frames in milliseconds") + (proc-arg 0 "default-chunks" "(ANIMATED MNG) Default chunks type (0 = PNG + Delta PNG; 1 = JNG + Delta PNG; 2 = All PNG; 3 = All JNG)") + (proc-arg 0 "default-dispose" "(ANIMATED MNG) Default dispose type (0 = combine; 1 = replace)") + (proc-arg 0 "bkgd" "Write bKGD (background color) chunk") + (proc-arg 0 "gama" "Write gAMA (gamma) chunk") + (proc-arg 0 "phys" "Write pHYs (image resolution) chunk") + (proc-arg 0 "time" "Write tIME (creation time) chunk"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-jpeg/file-jpeg" 1601838911 + (proc-def "file-jpeg-load" 1 + "loads files in the JPEG file format" + "loads files in the JPEG file format" + "Spencer Kimball, Peter Mattis & others" + "Spencer Kimball & Peter Mattis" + "1995-2007" + "JPEG image" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "jpg,jpeg,jpe") + (magics "0,string,") + (mime-types "image/jpeg") + (thumb-loader "file-jpeg-load-thumb")) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 4 "raw-filename" "The name of the file to load") + (proc-arg 13 "image" "Output image")) + (proc-def "file-jpeg-load-thumb" 1 + "Loads a thumbnail from a JPEG image" + "Loads a thumbnail from a JPEG image (only if it exists)" + "Mukund Sivaraman , Sven Neumann " + "Mukund Sivaraman , Sven Neumann " + "November 15, 2004" + "" + 0 + (icon icon-name -1 "") + "" + 2 3 + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 0 "thumb-size" "Preferred thumbnail size") + (proc-arg 13 "image" "Thumbnail image") + (proc-arg 0 "image-width" "Width of full-sized image") + (proc-arg 0 "image-height" "Height of full-sized image")) + (proc-def "file-jpeg-save" 1 + "saves files in the JPEG file format" + "saves files in the lossy, widely supported JPEG format" + "Spencer Kimball, Peter Mattis & others" + "Spencer Kimball & Peter Mattis" + "1995-2007" + "JPEG image" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "jpg,jpeg,jpe") + (mime-types "image/jpeg")) + "RGB*, GRAY*" + 14 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to save") + (proc-arg 4 "filename" "The name of the file to save the image in") + (proc-arg 4 "raw-filename" "The name of the file to save the image in") + (proc-arg 3 "quality" "Quality of saved image (0 <= quality <= 1)") + (proc-arg 3 "smoothing" "Smoothing factor for saved image (0 <= smoothing <= 1)") + (proc-arg 0 "optimize" "Use optimized tables during Huffman coding (0/1)") + (proc-arg 0 "progressive" "Create progressive JPEG images (0/1)") + (proc-arg 4 "comment" "Image comment") + (proc-arg 0 "subsmp" "Sub-sampling type { 0, 1, 2, 3 } 0 == 4:2:0 (chroma quartered), 1 == 4:2:2 Horizontal (chroma halved), 2 == 4:4:4 (best quality), 3 == 4:2:2 Vertical (chroma halved)") + (proc-arg 0 "baseline" "Force creation of a baseline JPEG (non-baseline JPEGs can't be read by all decoders) (0/1)") + (proc-arg 0 "restart" "Interval of restart markers (in MCU rows, 0 = no restart markers)") + (proc-arg 0 "dct" "DCT method to use { INTEGER (0), FIXED (1), FLOAT (2) }"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-jp2-load/file-jp2-load" 1601838911 + (proc-def "file-jp2-load" 1 + "Loads JPEG 2000 images." + "The JPEG 2000 image loader." + "Mukund Sivaraman" + "Mukund Sivaraman" + "2009" + "JPEG 2000 image" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "jp2") + (magics "3,string,\fjP") + (mime-types "image/jp2")) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load.") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 13 "image" "Output image")) + (proc-def "file-j2k-load" 1 + "Loads JPEG 2000 codestream." + "Loads JPEG 2000 codestream. If the color space is set to UNKNOWN (0), we will try to guess, which is only possible for few spaces (such as grayscale). Most such calls will fail. You are rather expected to know the color space of your data." + "Jehan" + "Jehan" + "2009" + "JPEG 2000 codestream" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "j2k,j2c,jpc") + (magics "0,string,OQ") + (mime-types "image/x-jp2-codestream")) + "" + 4 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load.") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 0 "colorspace" "Color space { UNKNOWN (0), GRAYSCALE (1), RGB (2), CMYK (3), YCbCr (4), xvYCC (5) }") + (proc-arg 13 "image" "Output image"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-ico/file-ico" 1601838911 + (proc-def "file-ico-load" 1 + "Loads files of Windows ICO file format" + "Loads files of Windows ICO file format" + "Christian Kreibich " + "Christian Kreibich " + "2002" + "Microsoft Windows icon" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "ico") + (magics "0,string,\\000\\001\\000\\000,0,string,\\000\\002\\000\\000") + (mime-types "image/x-ico") + (thumb-loader "file-ico-load-thumb")) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 13 "image" "Output image")) + (proc-def "file-ico-load-thumb" 1 + "Loads a preview from an Windows ICO file" + "" + "Dom Lachowicz, Sven Neumann" + "Sven Neumann " + "2005" + "" + 0 + (icon icon-name -1 "") + "" + 2 3 + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 0 "thumb-size" "Preferred thumbnail size") + (proc-arg 13 "image" "Thumbnail image") + (proc-arg 0 "image-width" "Width of full-sized image") + (proc-arg 0 "image-height" "Height of full-sized image")) + (proc-def "file-ico-save" 1 + "Saves files in Windows ICO file format" + "Saves files in Windows ICO file format" + "Christian Kreibich " + "Christian Kreibich " + "2002" + "Microsoft Windows icon" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "ico") + (mime-types "image/x-ico")) + "*" + 5 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to save") + (proc-arg 4 "filename" "The name of the file to save the image in") + (proc-arg 4 "raw-filename" "The name entered"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-html-table/file-html-table" 1601838911 + (proc-def "file-gtm-save" 1 + "GIMP Table Magic" + "Allows you to draw an HTML table in GIMP. See help for more info." + "Daniel Dunbar" + "Daniel Dunbar" + "1998" + "HTML table" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "html,htm") + (mime-types "text/html") + (handles-uri)) + "RGB*, GRAY*, INDEXED*" + 5 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to export") + (proc-arg 4 "filename" "The name of the file to export the image in") + (proc-arg 4 "raw-filename" "The name of the file to export the image in"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-heif/file-heif" 1601838911 + (proc-def "file-heif-load" 1 + "Loads HEIF images" + "Load image stored in HEIF format (High Efficiency Image File Format). Typical suffices for HEIF files are .heif, .heic." + "Dirk Farin " + "Dirk Farin " + "2018" + "HEIF/HEIC" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "heif,heic,avif") + (magics "4,string,ftypheic,4,string,ftypheix,4,string,ftyphevc,4,string,ftypheim,4,string,ftypheis,4,string,ftyphevm,4,string,ftyphevs,4,string,ftypmif1,4,string,ftypmsf1,4,string,ftypavif") + (mime-types "image/heif,image/avif") + (handles-uri)) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "uri" "The URI of the file to load") + (proc-arg 4 "raw-uri" "The URI of the file to load") + (proc-arg 13 "image" "Output image")) + (proc-def "file-heif-save" 1 + "Exports HEIF images" + "Save image in HEIF format (High Efficiency Image File Format)." + "Dirk Farin " + "Dirk Farin " + "2018" + "HEIF/HEIC" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "heic,heif") + (mime-types "image/heif") + (handles-uri)) + "RGB*" + 7 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to export") + (proc-arg 4 "uri" "The URI of the file to export the image to") + (proc-arg 4 "raw-uri" "The UTI of the file to export the image to") + (proc-arg 0 "quality" "Quality factor (range: 0-100. 0 = worst, 100 = best)") + (proc-arg 0 "lossless" "Use lossless compression (0 = lossy, 1 = lossless)")) + (proc-def "file-heif-av1-save" 1 + "Exports AVIF images" + "Save image in AV1 Image File Format (AVIF)" + "Daniel Novomesky " + "Daniel Novomesky " + "2020" + "HEIF/AVIF" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "avif") + (mime-types "image/avif") + (handles-uri)) + "RGB*" + 7 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to export") + (proc-arg 4 "uri" "The URI of the file to export the image to") + (proc-arg 4 "raw-uri" "The UTI of the file to export the image to") + (proc-arg 0 "quality" "Quality factor (range: 0-100. 0 = worst, 100 = best)") + (proc-arg 0 "lossless" "Use lossless compression (0 = lossy, 1 = lossless)"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-header/file-header" 1601838911 + (proc-def "file-header-save" 1 + "saves files as C unsigned character array" + "FIXME: write help" + "Spencer Kimball & Peter Mattis" + "Spencer Kimball & Peter Mattis" + "1997" + "C source code header" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "h") + (mime-types "text/x-chdr") + (handles-uri)) + "INDEXED, RGB" + 5 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to save") + (proc-arg 4 "filename" "The name of the file to save the image in") + (proc-arg 4 "raw-filename" "The name of the file to save the image in"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-glob/file-glob" 1601838911 + (proc-def "file-glob" 1 + "Returns a list of matching filenames" + "This can be useful in scripts and other plug-ins (e.g., batch-conversion). See the glob(7) manpage for more info. Note however that this isn't a full-featured glob implementation. It only handles simple patterns like \"/home/foo/bar/*.jpg\"." + "Sven Neumann" + "Sven Neumann" + "2004" + "" + 0 + (icon icon-name -1 "") + "" + 2 2 + (proc-arg 4 "pattern" "The glob pattern (in UTF-8 encoding)") + (proc-arg 0 "encoding" "Encoding of the returned names: { UTF-8 (0), filename encoding (1) }") + (proc-arg 0 "num-files" "The number of returned names") + (proc-arg 9 "files" "The list of matching names"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-gih/file-gih" 1601838911 + (proc-def "file-gih-save" 1 + "exports images in GIMP brush pipe format" + "This plug-in exports an image in the GIMP brush pipe format. For a colored brush pipe, RGBA layers are used, otherwise the layers should be grayscale masks. The image can be multi-layered, and additionally the layers can be divided into a rectangular array of brushes." + "Tor Lillqvist" + "Tor Lillqvist" + "1999" + "GIMP brush (animated)" + 0 + (icon icon-name -1 "gimp-tool-paintbrush") + (save-proc + (extensions "gih") + (mime-types "image/x-gimp-gih") + (handles-uri)) + "RGB*, GRAY*" + 15 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to export") + (proc-arg 4 "uri" "The URI of the file to export the brush pipe in") + (proc-arg 4 "raw-uri" "The URI of the file to export the brush pipe in") + (proc-arg 0 "spacing" "Spacing of the brush") + (proc-arg 4 "description" "Short description of the brush pipe") + (proc-arg 0 "cell-width" "Width of the brush cells") + (proc-arg 0 "cell-height" "Width of the brush cells") + (proc-arg 2 "display-cols" "Display column number") + (proc-arg 2 "display-rows" "Display row number") + (proc-arg 0 "dimension" "Dimension of the brush pipe") + (proc-arg 7 "rank" "Ranks of the dimensions") + (proc-arg 0 "dimension" "Dimension (again)") + (proc-arg 9 "sel" "Selection modes"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-gif-save/file-gif-save" 1601838911 + (proc-def "file-gif-save" 1 + "exports files in Compuserve GIF file format" + "Export a file in Compuserve GIF format, with possible animation, transparency, and comment. To export an animation, operate on a multi-layer file. The plug-in will interpret <50% alpha as transparent. When run non-interactively, the value for the comment is taken from the 'gimp-comment' parasite. " + "Spencer Kimball, Peter Mattis, Adam Moss, David Koblas" + "Spencer Kimball, Peter Mattis, Adam Moss, David Koblas" + "1995-1997" + "GIF image" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "gif") + (mime-types "image/gif") + (handles-uri)) + "INDEXED*, GRAY*" + 9 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Image to export") + (proc-arg 16 "drawable" "Drawable to export") + (proc-arg 4 "uri" "The name of the URI to export the image in") + (proc-arg 4 "raw-uri" "The name of the URI to export the image in") + (proc-arg 0 "interlace" "Try to export as interlaced") + (proc-arg 0 "loop" "(animated gif) loop infinitely") + (proc-arg 0 "default-delay" "(animated gif) Default delay between frames in milliseconds") + (proc-arg 0 "default-dispose" "(animated gif) Default disposal type (0=`don't care`, 1=combine, 2=replace)")) + (proc-def "file-gif-save2" 1 + "exports files in Compuserve GIF file format" + "Export a file in Compuserve GIF format, with possible animation, transparency, and comment. To export an animation, operate on a multi-layer file and give the 'as-animation' parameter as TRUE. The plug-in will interpret <50% alpha as transparent. When run non-interactively, the value for the comment is taken from the 'gimp-comment' parasite. " + "Spencer Kimball, Peter Mattis, Adam Moss, David Koblas" + "Spencer Kimball, Peter Mattis, Adam Moss, David Koblas" + "1995-1997" + "GIF image" + 0 + (icon icon-name -1 "") + "INDEXED*, GRAY*" + 12 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Image to export") + (proc-arg 16 "drawable" "Drawable to export") + (proc-arg 4 "uri" "The name of the URI to export the image in") + (proc-arg 4 "raw-uri" "The name of the URI to export the image in") + (proc-arg 0 "interlace" "Try to export as interlaced") + (proc-arg 0 "loop" "(animated gif) loop infinitely") + (proc-arg 0 "default-delay" "(animated gif) Default delay between frames in milliseconds") + (proc-arg 0 "default-dispose" "(animated gif) Default disposal type (0=`don't care`, 1=combine, 2=replace)") + (proc-arg 0 "as-animation" "Export GIF as animation?") + (proc-arg 0 "force-delay" "(animated gif) Use specified delay for all frames?") + (proc-arg 0 "force-dispose" "(animated gif) Use specified disposal for all frames?"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-gif-load/file-gif-load" 1601838911 + (proc-def "file-gif-load" 1 + "Loads files of Compuserve GIF file format" + "FIXME: write help for gif_load" + "Spencer Kimball, Peter Mattis, Adam Moss, David Koblas" + "Spencer Kimball, Peter Mattis, Adam Moss, David Koblas" + "1995-2006" + "GIF image" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "gif") + (magics "0,string,GIF8") + (mime-types "image/gif") + (thumb-loader "file-gif-load-thumb")) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 13 "image" "Output image")) + (proc-def "file-gif-load-thumb" 1 + "Loads only the first frame of a GIF image, to be used as a thumbnail" + "" + "Sven Neumann" + "Sven Neumann" + "2006" + "" + 0 + (icon icon-name -1 "") + "" + 2 3 + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 0 "thumb-size" "Preferred thumbnail size") + (proc-arg 13 "image" "Output image") + (proc-arg 0 "image-width" "Width of full-sized image") + (proc-arg 0 "image-height" "Height of full-sized image"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-gegl/file-gegl" 1601838911 + (proc-def "file-load-rgbe" 1 + "Load files in the RGBE file format" + "This procedure loads images in the RGBE format, using gegl:load" + "Simon Budig" + "Simon Budig" + "2012" + "Radiance RGBE" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "hdr") + (magics "0,string,?#") + (mime-types "image/vnd.radiance")) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load.") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 13 "image" "Output image")) + (proc-def "file-save-rgbe" 1 + "Saves files in the RGBE file format" + "This procedure exports images in the RGBE format, using gegl:save" + "Simon Budig" + "Simon Budig" + "2012" + "Radiance RGBE" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "hdr") + (mime-types "image/vnd.radiance")) + "*" + 5 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to save") + (proc-arg 4 "filename" "The name of the file to save the image in") + (proc-arg 4 "raw-filename" "The name of the file to save the image in")) + (proc-def "file-exr-save" 1 + "Saves files in the OpenEXR file format" + "This procedure saves images in the OpenEXR format, using gegl:save" + "Simon Budig" + "Simon Budig" + "2012" + "OpenEXR image" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "exr") + (mime-types "image/x-exr")) + "*" + 5 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to save") + (proc-arg 4 "filename" "The name of the file to save the image in") + (proc-arg 4 "raw-filename" "The name of the file to save the image in"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-gbr/file-gbr" 1601838911 + (proc-def "file-gbr-save" 1 + "Exports files in the GIMP brush file format" + "Exports files in the GIMP brush file format" + "Tim Newsome, Jens Lautenbacher, Sven Neumann" + "Tim Newsome, Jens Lautenbacher, Sven Neumann" + "1997-2000" + "GIMP brush" + 0 + (icon icon-name -1 "gimp-tool-paintbrush") + (save-proc + (extensions "gbr") + (mime-types "image/x-gimp-gbr") + (handles-uri)) + "RGB*, GRAY*, INDEXED*" + 7 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to export") + (proc-arg 4 "uri" "The URI of the file to export the image in") + (proc-arg 4 "raw-uri" "The URI of the file to export the image in") + (proc-arg 0 "spacing" "Spacing of the brush") + (proc-arg 4 "description" "Short description of the brush"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-fli/file-fli" 1601838911 + (proc-def "file-fli-load" 1 + "load FLI-movies" + "This is an experimantal plug-in to handle FLI movies" + "Jens Ch. Restemeier" + "Jens Ch. Restemeier" + "1997" + "AutoDesk FLIC animation" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "fli,flc") + (mime-types "image/x-flic")) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 13 "image" "Output image")) + (proc-def "file-fli-save" 1 + "export FLI-movies" + "This is an experimantal plug-in to handle FLI movies" + "Jens Ch. Restemeier" + "Jens Ch. Restemeier" + "1997" + "AutoDesk FLIC animation" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "fli,flc") + (mime-types "image/x-flic")) + "INDEXED,GRAY" + 7 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Input drawable (unused)") + (proc-arg 4 "filename" "The name of the file to export") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 0 "from-frame" "Export beginning from this frame") + (proc-arg 0 "to-frame" "End exporting with this frame")) + (proc-def "file-fli-info" 1 + "Get information about a Fli movie" + "This is a experimantal plug-in to handle FLI movies" + "Jens Ch. Restemeier" + "Jens Ch. Restemeier" + "1997" + "" + 0 + (icon icon-name -1 "") + "" + 1 3 + (proc-arg 4 "filename" "The name of the file to get info") + (proc-arg 0 "width" "Width of one frame") + (proc-arg 0 "height" "Height of one frame") + (proc-arg 0 "frames" "Number of Frames"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-fits/file-fits" 1601838911 + (proc-def "file-fits-load" 1 + "load file of the FITS file format" + "load file of the FITS file format (Flexible Image Transport System)" + "Peter Kirchgessner" + "Peter Kirchgessner (peter@kirchgessner.net)" + "1997" + "Flexible Image Transport System" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "fit,fits") + (magics "0,string,SIMPLE") + (mime-types "image/x-fits")) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 4 "raw-filename" "The name of the file to load") + (proc-arg 13 "image" "Output image")) + (proc-def "file-fits-save" 1 + "export file in the FITS file format" + "FITS exporting handles all image types except those with alpha channels." + "Peter Kirchgessner" + "Peter Kirchgessner (peter@kirchgessner.net)" + "1997" + "Flexible Image Transport System" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "fit,fits") + (mime-types "image/x-fits")) + "RGB, GRAY, INDEXED" + 5 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to export") + (proc-arg 4 "filename" "The name of the file to export the image in") + (proc-arg 4 "raw-filename" "The name of the file to export the image in"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-faxg3/file-faxg3" 1601838911 + (proc-def "file-faxg3-load" 1 + "loads g3 fax files" + "This plug-in loads Fax G3 Image files." + "Jochen Friedrich" + "Jochen Friedrich, Gert Doering, Spencer Kimball & Peter Mattis" + "0.6" + "G3 fax image" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "g3") + (magics "4,string,Research") + (mime-types "image/g3-fax")) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 4 "raw-filename" "The name of the file to load") + (proc-arg 13 "image" "Output image"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-exr/file-exr" 1601838911 + (proc-def "file-exr-load" 1 + "Loads files in the OpenEXR file format" + "This plug-in loads OpenEXR files. " + "Dominik Ernst , Mukund Sivaraman " + "Dominik Ernst , Mukund Sivaraman " + "0.0.0" + "OpenEXR image" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "exr") + (magics "0,long,0x762f3101") + (mime-types "image/x-exr")) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 4 "raw-filename" "The name of the file to load") + (proc-arg 13 "image" "Output image"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-dicom/file-dicom" 1601838911 + (proc-def "file-dicom-load" 1 + "loads files of the dicom file format" + "Load a file in the DICOM standard format.The standard is defined at http://medical.nema.org/. The plug-in currently only supports reading images with uncompressed pixel sections." + "Dov Grobgeld" + "Dov Grobgeld " + "2003" + "DICOM image" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "dcm,dicom") + (magics "128,string,DICM") + (mime-types "image/x-dcm")) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 4 "raw-filename" "The name of the file to load") + (proc-arg 13 "image" "Output image")) + (proc-def "file-dicom-save" 1 + "Save file in the DICOM file format" + "Save an image in the medical standard DICOM image formats. The standard is defined at http://medical.nema.org/. The file format is defined in section 10 of the standard. The files are saved uncompressed and the compulsory DICOM tags are filled with default dummy values." + "Dov Grobgeld" + "Dov Grobgeld " + "2003" + "Digital Imaging and Communications in Medicine image" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "dcm,dicom") + (mime-types "image/x-dcm")) + "RGB, GRAY" + 5 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to save") + (proc-arg 4 "filename" "The name of the file to save") + (proc-arg 4 "raw-filename" "The name of the file to save"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-desktop-link/file-desktop-link" 1601838911 + (proc-def "file-desktop-link-load" 1 + "Follows a link to an image in a .desktop file" + "Opens a .desktop file and if it is a link, it asks GIMP to open the file the link points to." + "Sven Neumann" + "Sven Neumann" + "2006" + "Desktop Link" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "desktop")) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 13 "image" "Output image"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-dds/file-dds" 1601838911 + (proc-def "file-dds-load" 1 + "Loads files in DDS image format" + "Loads files in DDS image format" + "Shawn Kirst" + "Shawn Kirst" + "2008" + "DDS image" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "dds") + (magics "0,string,DDS") + (mime-types "image/dds")) + "" + 5 1 + (proc-arg 0 "run-mode" "Interactive, non-interactive") + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 0 "load-mipmaps" "Load mipmaps if present") + (proc-arg 0 "decode-images" "Decode YCoCg/AExp images when detected") + (proc-arg 13 "image" "Output image")) + (proc-def "file-dds-save" 1 + "Saves files in DDS image format" + "Saves files in DDS image format" + "Shawn Kirst" + "Shawn Kirst" + "2008" + "DDS image" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "dds") + (mime-types "image/dds")) + "INDEXED, GRAY, RGB" + 18 0 + (proc-arg 0 "run-mode" "Interactive, non-interactive") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to save") + (proc-arg 4 "filename" "The name of the file to save the image as") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 0 "compression-format" "Compression format (0 = None, 1 = BC1/DXT1, 2 = BC2/DXT3, 3 = BC3/DXT5, 4 = BC3n/DXT5nm, 5 = BC4/ATI1N, 6 = BC5/ATI2N, 7 = RXGB (DXT5), 8 = Alpha Exponent (DXT5), 9 = YCoCg (DXT5), 10 = YCoCg scaled (DXT5))") + (proc-arg 0 "mipmaps" "How to handle mipmaps (0 = No mipmaps, 1 = Generate mipmaps, 2 = Use existing mipmaps (layers)") + (proc-arg 0 "savetype" "How to save the image (0 = selected layer, 1 = cube map, 2 = volume map, 3 = texture array") + (proc-arg 0 "format" "Custom pixel format (0 = default, 1 = R5G6B5, 2 = RGBA4, 3 = RGB5A1, 4 = RGB10A2)") + (proc-arg 0 "transparent-index" "Index of transparent color or -1 to disable (for indexed images only).") + (proc-arg 0 "mipmap-filter" "Filtering to use when generating mipmaps (0 = default, 1 = nearest, 2 = box, 3 = triangle, 4 = quadratic, 5 = bspline, 6 = mitchell, 7 = lanczos, 8 = kaiser)") + (proc-arg 0 "mipmap-wrap" "Wrap mode to use when generating mipmaps (0 = default, 1 = mirror, 2 = repeat, 3 = clamp)") + (proc-arg 0 "gamma-correct" "Use gamma correct mipmap filtering") + (proc-arg 0 "srgb" "Use sRGB colorspace for gamma correction") + (proc-arg 3 "gamma" "Gamma value to use for gamma correction (i.e. 2.2)") + (proc-arg 0 "perceptual-metric" "Use a perceptual error metric during compression") + (proc-arg 0 "preserve-alpha-coverage" "Preserve alpha test converage for alpha channel maps") + (proc-arg 3 "alpha-test-threshold" "Alpha test threshold value for which alpha test converage should be preserved"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-csource/file-csource" 1601838911 + (proc-def "file-csource-save" 1 + "Dump image data in RGB(A) format for C source" + "CSource cannot be run non-interactively." + "Tim Janik" + "Tim Janik" + "1999" + "C source code" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "c") + (mime-types "text/x-csrc") + (handles-uri)) + "*" + 5 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to save") + (proc-arg 4 "filename" "The name of the file to save the image in") + (proc-arg 4 "raw-filename" "The name of the file to save the image in"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-compressor/file-compressor" 1601838911 + (proc-def "file-gz-load" 1 + "loads files compressed with gzip" + "This procedure loads files in the gzip compressed format." + "Daniel Risacher" + "Daniel Risacher, Spencer Kimball and Peter Mattis" + "1995-1997" + "gzip archive" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "xcf.gz,xcfgz") + (magics "0,string,\037") + (mime-types "application/x-gzip")) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 13 "image" "Output image")) + (proc-def "file-gz-save" 1 + "saves files compressed with gzip" + "This procedure saves files in the gzip compressed format." + "Daniel Risacher" + "Daniel Risacher, Spencer Kimball and Peter Mattis" + "1995-1997" + "gzip archive" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "xcf.gz,xcfgz") + (mime-types "application/x-gzip")) + "RGB*, GRAY*, INDEXED*" + 5 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to save") + (proc-arg 4 "filename" "The name of the file to save the image in") + (proc-arg 4 "raw-filename" "The name entered")) + (proc-def "file-bz2-load" 1 + "loads files compressed with bzip2" + "This procedure loads files in the bzip2 compressed format." + "Daniel Risacher" + "Daniel Risacher, Spencer Kimball and Peter Mattis" + "1995-1997" + "bzip archive" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "xcf.bz2,xcfbz2") + (magics "0,string,BZh") + (mime-types "application/x-bzip")) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 13 "image" "Output image")) + (proc-def "file-bz2-save" 1 + "saves files compressed with bzip2" + "This procedure saves files in the bzip2 compressed format." + "Daniel Risacher" + "Daniel Risacher, Spencer Kimball and Peter Mattis" + "1995-1997" + "bzip archive" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "xcf.bz2,xcfbz2") + (mime-types "application/x-bzip")) + "RGB*, GRAY*, INDEXED*" + 5 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to save") + (proc-arg 4 "filename" "The name of the file to save the image in") + (proc-arg 4 "raw-filename" "The name entered")) + (proc-def "file-xz-load" 1 + "loads files compressed with xz" + "This procedure loads files in the xz compressed format." + "Daniel Risacher" + "Daniel Risacher, Spencer Kimball and Peter Mattis" + "1995-1997" + "xz archive" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "xcf.xz,xcfxz") + (magics "0,string,7zXZ") + (mime-types "application/x-xz")) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 13 "image" "Output image")) + (proc-def "file-xz-save" 1 + "saves files compressed with xz" + "This procedure saves files in the xz compressed format." + "Daniel Risacher" + "Daniel Risacher, Spencer Kimball and Peter Mattis" + "1995-1997" + "xz archive" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "xcf.xz,xcfxz") + (mime-types "application/x-xz")) + "RGB*, GRAY*, INDEXED*" + 5 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to save") + (proc-arg 4 "filename" "The name of the file to save the image in") + (proc-arg 4 "raw-filename" "The name entered"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-cel/file-cel" 1601838911 + (proc-def "file-cel-load" 1 + "Loads files in KISS CEL file format" + "This plug-in loads individual KISS cell files." + "Nick Lamb" + "Nick Lamb " + "May 1998" + "KISS CEL" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "cel") + (magics "0,string,KiSS\\040")) + "" + 4 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "Filename to load image from") + (proc-arg 4 "raw-filename" "Name entered") + (proc-arg 4 "palette-filename" "Filename to load palette from") + (proc-arg 13 "image" "Output image")) + (proc-def "file-cel-save" 1 + "Exports files in KISS CEL file format" + "This plug-in exports individual KISS cell files." + "Nick Lamb" + "Nick Lamb " + "May 1998" + "KISS CEL" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "cel") + (handles-uri)) + "RGB*, INDEXED*" + 6 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to export") + (proc-arg 4 "filename" "Filename to export image to") + (proc-arg 4 "raw-filename" "Name entered") + (proc-arg 4 "palette-filename" "Filename to save palette to"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-bmp/file-bmp" 1601838911 + (proc-def "file-bmp-load" 1 + "Loads files of Windows BMP file format" + "Loads files of Windows BMP file format" + "Alexander Schulz" + "Alexander Schulz" + "1997" + "Windows BMP image" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "bmp") + (magics "0,string,BM") + (mime-types "image/bmp")) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 13 "image" "Output image")) + (proc-def "file-bmp-save" 1 + "Saves files in Windows BMP file format" + "Saves files in Windows BMP file format" + "Alexander Schulz" + "Alexander Schulz" + "1997" + "Windows BMP image" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "bmp") + (mime-types "image/bmp")) + "INDEXED, GRAY, RGB*" + 5 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to save") + (proc-arg 4 "filename" "The name of the file to save the image in") + (proc-arg 4 "raw-filename" "The name entered"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/emboss/emboss" 1601838911 + (proc-def "plug-in-emboss" 1 + "Simulate an image created by embossing" + "Emboss or Bumpmap the given drawable, specifying the angle and elevation for the light source." + "Eric L. Hernes, John Schlag" + "Eric L. Hernes" + "1997" + "_Emboss (legacy)..." + 1 + (menu-path "/Filters/Distorts") + (icon icon-name -1 "") + "RGB*" + 7 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "The Image") + (proc-arg 16 "drawable" "The Drawable") + (proc-arg 3 "azimuth" "The Light Angle (degrees)") + (proc-arg 3 "elevation" "The Elevation Angle (degrees)") + (proc-arg 0 "depth" "The Filter Width") + (proc-arg 0 "emboss" "Emboss or Bumpmap"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/edge-dog/edge-dog" 1601838911 + (proc-def "plug-in-dog" 1 + "Edge detection with control of edge thickness" + "Applies two Gaussian blurs to the drawable, and subtracts the results. This is robust and widely used method for detecting edges." + "Spencer Kimball, Peter Mattis, Sven Neumann, William Skaggs" + "Spencer Kimball, Peter Mattis, Sven Neumann, William Skaggs" + "1995-2004" + "_Difference of Gaussians (legacy)..." + 1 + (menu-path "/Filters/Edge-Detect") + (icon icon-name -1 "") + "RGB*, GRAY*" + 7 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Input drawable") + (proc-arg 3 "inner" "Radius of inner gaussian blur (in pixels, > 0.0)") + (proc-arg 3 "outer" "Radius of outer gaussian blur (in pixels, > 0.0)") + (proc-arg 0 "normalize" "Normalize { TRUE, FALSE }") + (proc-arg 0 "invert" "Invert { TRUE, FALSE }"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/destripe/destripe" 1601838911 + (proc-def "plug-in-destripe" 1 + "Remove vertical stripe artifacts from the image" + "This plug-in tries to remove vertical stripes from an image." + "Marc Lehmann " + "Marc Lehmann " + "0.2" + "Des_tripe..." + 1 + (menu-path "/Filters/Enhance") + (icon icon-name -1 "") + "RGB*, GRAY*" + 4 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Input drawable") + (proc-arg 0 "avg-width" "Averaging filter width (default = 36)"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/despeckle/despeckle" 1601838911 + (proc-def "plug-in-despeckle" 1 + "Remove speckle noise from the image" + "This plug-in selectively performs a median or adaptive box filter on an image." + "Michael Sweet " + "Copyright 1997-1998 by Michael Sweet" + "May 2010" + "Des_peckle..." + 1 + (menu-path "/Filters/Enhance") + (icon icon-name -1 "") + "RGB*, GRAY*" + 7 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Input drawable") + (proc-arg 0 "radius" "Filter box radius (default = 3)") + (proc-arg 0 "type" "Filter type { MEDIAN (0), ADAPTIVE (1), RECURSIVE-MEDIAN (2), RECURSIVE-ADAPTIVE (3) }") + (proc-arg 0 "black" "Black level (-1 to 255)") + (proc-arg 0 "white" "White level (0 to 256)"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/depth-merge/depth-merge" 1601838911 + (proc-def "plug-in-depth-merge" 1 + "Combine two images using depth maps (z-buffers)" + "Taking as input two full-color, full-alpha images and two corresponding grayscale depth maps, this plug-in combines the images based on which is closer (has a lower depth map value) at each point." + "Sean Cier" + "Sean Cier" + "August 1998" + "_Depth Merge..." + 1 + (menu-path "/Filters/Combine") + (icon icon-name -1 "") + "RGB*, GRAY*" + 11 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image (unused)") + (proc-arg 16 "result" "Result") + (proc-arg 16 "source1" "Source 1") + (proc-arg 16 "source2" "Source 2") + (proc-arg 16 "depthMap1" "Depth map 1") + (proc-arg 16 "depthMap2" "Depth map 2") + (proc-arg 3 "overlap" "Overlap") + (proc-arg 3 "offset" "Depth relative offset") + (proc-arg 3 "scale1" "Depth relative scale 1") + (proc-arg 3 "scale2" "Depth relative scale 2"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/decompose/decompose" 1601838911 + (proc-def "plug-in-decompose" 1 + "Decompose an image into separate colorspace components" + "This function creates new gray images with different channel information in each of them" + "Peter Kirchgessner" + "Peter Kirchgessner" + "1997" + "_Decompose..." + 0 + (icon icon-name -1 "") + "RGB*" + 5 4 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image (unused)") + (proc-arg 16 "drawable" "Input drawable") + (proc-arg 4 "decompose-type" "What to decompose: \"RGB\", \"RGBA\", \"Red\", \"Green\", \"Blue\", \"Alpha\", \"HSV\", \"Hue\", \"Saturation\", \"Value\", \"HSL\", \"Hue (HSL)\", \"Saturation (HSL)\", \"Lightness\", \"CMYK\", \"Cyan\", \"Magenta\", \"Yellow\", \"Black\", \"LAB\", \"LCH\", \"YCbCr_ITU_R470\", \"YCbCr_ITU_R470_256\", \"YCbCr_ITU_R709\", \"YCbCr_ITU_R709_256\"") + (proc-arg 0 "layers-mode" "Create channels as layers in a single image") + (proc-arg 13 "new-image" "Output gray image") + (proc-arg 13 "new-image" "Output gray image (N/A for single channel extract)") + (proc-arg 13 "new-image" "Output gray image (N/A for single channel extract)") + (proc-arg 13 "new-image" "Output gray image (N/A for single channel extract)")) + (proc-def "plug-in-decompose-registered" 1 + "Decompose an image into separate colorspace components" + "This function creates new gray images with different channel information in each of them. Pixels in the foreground color will appear black in all output images. This can be used for things like crop marks that have to show up on all channels." + "Peter Kirchgessner" + "Peter Kirchgessner, Clarence Risher" + "1997" + "_Decompose..." + 1 + (menu-path "/Colors/Components") + (icon icon-name -1 "") + "RGB*" + 5 4 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image (unused)") + (proc-arg 16 "drawable" "Input drawable") + (proc-arg 4 "decompose-type" "What to decompose: \"RGB\", \"RGBA\", \"Red\", \"Green\", \"Blue\", \"Alpha\", \"HSV\", \"Hue\", \"Saturation\", \"Value\", \"HSL\", \"Hue (HSL)\", \"Saturation (HSL)\", \"Lightness\", \"CMYK\", \"Cyan\", \"Magenta\", \"Yellow\", \"Black\", \"LAB\", \"LCH\", \"YCbCr_ITU_R470\", \"YCbCr_ITU_R470_256\", \"YCbCr_ITU_R709\", \"YCbCr_ITU_R709_256\"") + (proc-arg 0 "layers-mode" "Create channels as layers in a single image") + (proc-arg 13 "new-image" "Output gray image") + (proc-arg 13 "new-image" "Output gray image (N/A for single channel extract)") + (proc-arg 13 "new-image" "Output gray image (N/A for single channel extract)") + (proc-arg 13 "new-image" "Output gray image (N/A for single channel extract)"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/curve-bend/curve-bend" 1601838911 + (proc-def "plug-in-curve-bend" 1 + "Bend the image using two control curves" + "This plug-in does bend the active layer If there is a current selection it is copied to floating selection and the curve_bend distortion is done on the floating selection. If work_on_copy parameter is TRUE, the curve_bend distortion is done on a copy of the active layer (or floating selection). The upper and lower edges are bent in shape of 2 spline curves. both (upper and lower) curves are determined by upto 17 points or by 256 Y-Values if curve_type == 1 (freehand mode) If rotation is not 0, the layer is rotated before and rotated back after the bend operation. This enables bending in other directions than vertical. bending usually changes the size of the handled layer. this plug-in sets the offsets of the handled layer to keep its center at the same position" + "Wolfgang Hofer (hof@hotbot.com)" + "Wolfgang Hofer" + "v1.3.18 (2003/08/26)" + "_Curve Bend..." + 1 + (menu-path "/Filters/Distorts") + (icon icon-name -1 "") + "RGB*, GRAY*" + 20 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Input drawable (must be a layer without layermask)") + (proc-arg 3 "rotation" "Direction {angle 0 to 360 degree } of the bend effect") + (proc-arg 0 "smoothing" "Smoothing { TRUE, FALSE }") + (proc-arg 0 "antialias" "Antialias { TRUE, FALSE }") + (proc-arg 0 "work-on-copy" "{ TRUE, FALSE } TRUE: copy the drawable and bend the copy") + (proc-arg 0 "curve-type" " { 0, 1 } 0 == smooth (use 17 points), 1 == freehand (use 256 val_y) ") + (proc-arg 0 "argc-upper-point-x" "{2 <= argc <= 17} ") + (proc-arg 8 "upper-point-x" "array of 17 x point_koords { 0.0 <= x <= 1.0 or -1 for unused point }") + (proc-arg 0 "argc-upper-point-y" "{2 <= argc <= 17} ") + (proc-arg 8 "upper-point-y" "array of 17 y point_koords { 0.0 <= y <= 1.0 or -1 for unused point }") + (proc-arg 0 "argc-lower-point-x" "{2 <= argc <= 17} ") + (proc-arg 8 "lower-point-x" "array of 17 x point_koords { 0.0 <= x <= 1.0 or -1 for unused point }") + (proc-arg 0 "argc-lower-point-y" "{2 <= argc <= 17} ") + (proc-arg 8 "lower-point-y" "array of 17 y point_koords { 0.0 <= y <= 1.0 or -1 for unused point }") + (proc-arg 0 "argc-upper-val-y" "{ 256 } ") + (proc-arg 7 "upper-val-y" "array of 256 y freehand koord { 0 <= y <= 255 }") + (proc-arg 0 "argc-lower-val-y" "{ 256 } ") + (proc-arg 7 "lower-val-y" "array of 256 y freehand koord { 0 <= y <= 255 }") + (proc-arg 14 "bent-layer" "the handled layer")) + (proc-def "plug_in_curve_bend_Iterator" 1 + "This procedure calculates the modified values for one iterationstep for the call of plug_in_curve_bend" + "" + "Wolfgang Hofer (hof@hotbot.com)" + "Wolfgang Hofer" + "v1.3.18 (2003/08/26)" + "" + 0 + (icon icon-name -1 "") + "" + 4 0 + (proc-arg 0 "run-mode" "The run mode { RUN-NONINTERACTIVE (1) }") + (proc-arg 0 "total-steps" "total number of steps (# of layers-1 to apply the related plug-in)") + (proc-arg 3 "current-step" "current (for linear iterations this is the layerstack position, otherwise some value in between)") + (proc-arg 0 "len-struct" "length of stored data structure with id is equal to the plug_in proc_name"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/crop-zealous/crop-zealous" 1601838911 + (proc-def "plug-in-zealouscrop" 1 + "Autocrop unused space from edges and middle" + "" + "Adam D. Moss" + "Adam D. Moss" + "1997" + "_Zealous Crop" + 1 + (menu-path "/Image/Crop") + (icon icon-name -1 "") + "RGB*, GRAY*, INDEXED*" + 3 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Input drawable"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/contrast-retinex/contrast-retinex" 1601838911 + (proc-def "plug-in-retinex" 1 + "Enhance contrast using the Retinex method" + "The Retinex Image Enhancement Algorithm is an automatic image enhancement method that enhances a digital image in terms of dynamic range compression, color independence from the spectral distribution of the scene illuminant, and color/lightness rendition." + "Fabien Pelisson" + "Fabien Pelisson" + "2003" + "Retine_x..." + 1 + (menu-path "/Colors/Tone Mapping") + (icon icon-name -1 "") + "RGB*" + 7 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image (unused)") + (proc-arg 16 "drawable" "Input drawable") + (proc-arg 0 "scale" "Biggest scale value") + (proc-arg 0 "nscales" "Number of scales") + (proc-arg 0 "scales-mode" "Retinex distribution through scales") + (proc-arg 3 "cvar" "Variance value"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/compose/compose" 1601838911 + (proc-def "plug-in-compose" 1 + "Create an image using multiple gray images as color channels" + "This function creates a new image from multiple gray images" + "Peter Kirchgessner" + "Peter Kirchgessner (peter@kirchgessner.net)" + "1997" + "C_ompose..." + 1 + (menu-path "/Colors/Components") + (icon icon-name -1 "") + "GRAY*" + 7 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image1" "First input image") + (proc-arg 16 "drawable" "Input drawable (not used)") + (proc-arg 13 "image2" "Second input image") + (proc-arg 13 "image3" "Third input image") + (proc-arg 13 "image4" "Fourth input image") + (proc-arg 4 "compose-type" "What to compose: \"RGB\", \"RGBA\", \"HSV\", \"HSL\", \"CMYK\", \"LAB\", \"LCH\", \"YCbCr_ITU_R470\", \"YCbCr_ITU_R709\", \"YCbCr_ITU_R470_256\", \"YCbCr_ITU_R709_256\"") + (proc-arg 13 "new-image" "Output image")) + (proc-def "plug-in-drawable-compose" 1 + "Compose an image from multiple drawables of gray images" + "This function creates a new image from multiple drawables of gray images" + "Peter Kirchgessner" + "Peter Kirchgessner (peter@kirchgessner.net)" + "1998" + "" + 0 + (icon icon-name -1 "") + "GRAY*" + 7 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image1" "First input image (not used)") + (proc-arg 16 "drawable1" "First input drawable") + (proc-arg 16 "drawable2" "Second input drawable") + (proc-arg 16 "drawable3" "Third input drawable") + (proc-arg 16 "drawable4" "Fourth input drawable") + (proc-arg 4 "compose-type" "What to compose: \"RGB\", \"RGBA\", \"HSV\", \"HSL\", \"CMYK\", \"LAB\", \"LCH\", \"YCbCr_ITU_R470\", \"YCbCr_ITU_R709\", \"YCbCr_ITU_R470_256\", \"YCbCr_ITU_R709_256\"") + (proc-arg 13 "new-image" "Output image")) + (proc-def "plug-in-recompose" 1 + "Recompose an image that was previously decomposed" + "This function recombines the grayscale layers produced by Decompose into a single RGB or RGBA layer, and replaces the originally decomposed layer with the result." + "Bill Skaggs" + "Bill Skaggs" + "2004" + "R_ecompose" + 1 + (menu-path "/Colors/Components") + (icon icon-name -1 "") + "GRAY*" + 3 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Image to recompose from") + (proc-arg 16 "drawable" "Not used"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/colormap-remap/colormap-remap" 1601838911 + (proc-def "plug-in-colormap-remap" 1 + "Rearrange the colormap" + "This procedure takes an indexed image and lets you alter the positions of colors in the colormap without visually changing the image." + "Mukund Sivaraman " + "Mukund Sivaraman " + "June 2006" + "R_earrange Colormap..." + 2 + (menu-path "/Colors/Map/Colormap") + (menu-path "") + (icon icon-name -1 "gimp-colormap") + "INDEXED*" + 5 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Input drawable") + (proc-arg 0 "num-colors" "Length of 'map' argument (should be equal to colormap size)") + (proc-arg 7 "map" "Remap array for the colormap")) + (proc-def "plug-in-colormap-swap" 1 + "Swap two colors in the colormap" + "This procedure takes an indexed image and lets you swap the positions of two colors in the colormap without visually changing the image." + "Mukund Sivaraman " + "Mukund Sivaraman " + "June 2006" + "_Swap Colors" + 0 + (icon icon-name -1 "") + "INDEXED*" + 5 0 + (proc-arg 0 "run-mode" "The run mode { RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Input drawable") + (proc-arg 2 "index1" "First index in the colormap") + (proc-arg 2 "index2" "Second (other) index in the colormap"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/colorify/colorify" 1601838911 + (proc-def "plug-in-colorify" 1 + "Replace all colors with shades of a specified color" + "Makes an average of the RGB channels and uses it to set the color" + "Francisco Bustamante" + "Francisco Bustamante" + "1.1" + "Colorif_y..." + 0 + (icon icon-name -1 "") + "RGB*" + 4 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Input drawable") + (proc-arg 10 "color" "Color to apply"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/color-enhance/color-enhance" 1601838911 + (proc-def "plug-in-color-enhance" 1 + "Stretch color saturation to cover maximum possible range" + "This simple plug-in does an automatic saturation stretch. For each channel in the image, it finds the minimum and maximum values... it uses those values to stretch the individual histograms to the full range. For some images it may do just what you want; for others it may not work that well. This version differs from Contrast Autostretch in that it works in HSV space, and preserves hue." + "Martin Weber" + "Martin Weber" + "1997" + "_Color Enhance (legacy)" + 1 + (menu-path "/Colors/Auto") + (icon icon-name -1 "") + "RGB*, INDEXED*" + 3 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Input drawable"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/color-cube-analyze/color-cube-analyze" 1601838911 + (proc-def "plug-in-ccanalyze" 1 + "Analyze the set of colors in the image" + "Analyze colorcube and print some information about the current image (also displays a color-histogram)" + "robert@experimental.net" + "robert@experimental.net" + "June 20th, 1997" + "Colorcube A_nalysis..." + 1 + (menu-path "/Colors/Info") + (icon icon-name -1 "") + "RGB*, GRAY*, INDEXED*" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Input drawable") + (proc-arg 0 "num-colors" "Number of colors in the image"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/cml-explorer/cml-explorer" 1601838911 + (proc-def "plug-in-cml-explorer" 1 + "Create abstract Coupled-Map Lattice patterns" + "Make an image of Coupled-Map Lattice (CML). CML is a kind of Cellula Automata on continuous (value) domain. In GIMP_RUN_NONINTERACTIVE, the name of a parameter file is passed as the 4th arg. You can control CML_explorer via parameter file." + "Shuji Narazaki (narazaki@InetQ.or.jp); http://www.inetq.or.jp/~narazaki/TheGIMP/" + "Shuji Narazaki" + "1997" + "CML _Explorer..." + 1 + (menu-path "/Filters/Render/Pattern") + (icon icon-name -1 "") + "RGB*, GRAY*" + 4 0 + (proc-arg 0 "ru--mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image (not used)") + (proc-arg 16 "drawable" "Input drawable") + (proc-arg 4 "parameter-filename" "The name of parameter file. CML_explorer makes an image with its settings."))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/checkerboard/checkerboard" 1601838911 + (proc-def "plug-in-checkerboard" 1 + "Create a checkerboard pattern" + "More here later" + "Brent Burton & the Edward Blevins" + "Brent Burton & the Edward Blevins" + "1997" + "_Checkerboard (legacy)..." + 1 + (menu-path "/Filters/Render/Pattern") + (icon icon-name -1 "") + "RGB*, GRAY*" + 5 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image (unused)") + (proc-arg 16 "drawable" "Input drawable") + (proc-arg 0 "check-mode" "Check mode { REGULAR (0), PSYCHOBILY (1) }") + (proc-arg 0 "check-size" "Size of the checks"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/cartoon/cartoon" 1601838911 + (proc-def "plug-in-cartoon" 1 + "Simulate a cartoon by enhancing edges" + "Propagates dark values in an image based on each pixel's relative darkness to a neighboring average. The idea behind this filter is to give the look of a black felt pen drawing subsequently shaded with color. This is achieved by darkening areas of the image which are measured to be darker than a neighborhood average. In this way, sufficiently large shifts in intensity are darkened to black. The rate at which they are darkened to black is determined by the second pct_black parameter. The mask_radius parameter controls the size of the pixel neighborhood over which the average intensity is computed and then compared to each pixel in the neighborhood to decide whether or not to darken it to black. Large values for mask_radius result in very thick black areas bordering the shaded regions of color and much less detail for black areas everywhere including inside regions of color. Small values result in more subtle pen strokes and detail everywhere. Small values for the pct_black make the blend from the color regions to the black border lines smoother and the lines themselves thinner and less noticeable; larger values achieve the opposite effect." + "Spencer Kimball" + "Bit Specialists, Inc." + "2001" + "Ca_rtoon (legacy)..." + 1 + (menu-path "/Filters/Artistic") + (icon icon-name -1 "") + "RGB*, GRAY*" + 5 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image (unused)") + (proc-arg 16 "drawable" "Input drawable") + (proc-arg 3 "mask-radius" "Cartoon mask radius (radius of pixel neighborhood)") + (proc-arg 3 "pct-black" "Percentage of darkened pixels to set to black (0.0 - 1.0)"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/busy-dialog/busy-dialog" 1601838911 + (proc-def "plug-in-busy-dialog" 1 + "Show a dialog while waiting for an operation to finish" + "Used by GIMP to display a dialog, containing a spinner and a custom message, while waiting for an ongoing operation to finish. Optionally, the dialog may provide a \"Cancel\" button, which can be used to cancel the operation." + "Ell" + "Ell" + "2018" + "" + 0 + (icon icon-name -1 "") + "" + 5 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0) }") + (proc-arg 0 "read-fd" "The read file descriptor") + (proc-arg 0 "write-fd" "The write file descriptor") + (proc-arg 4 "message" "The message") + (proc-arg 0 "cancelable" "Whether the dialog is cancelable (TRUE or FALSE)"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/border-average/border-average" 1601838911 + (proc-def "plug-in-borderaverage" 1 + "Set foreground to the average color of the image border" + "" + "Philipp Klaus" + "Internet Access AG" + "1998" + "_Border Average..." + 1 + (menu-path "/Colors/Info") + (icon icon-name -1 "") + "RGB*" + 5 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image (unused)") + (proc-arg 16 "drawable" "Input drawable") + (proc-arg 0 "thickness" "Border size to take in count") + (proc-arg 0 "bucket-exponent" "Bits for bucket size (default=4: 16 Levels)") + (proc-arg 10 "borderaverage" "The average color of the specified border."))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/blur/blur" 1601838911 + (proc-def "plug-in-blur" 1 + "Simple blur, fast but not very strong" + "This plug-in blurs the specified drawable, using a 3x3 blur. Indexed images are not supported." + "Miles O'Neal " + "Miles O'Neal, Spencer Kimball, Peter Mattis, Torsten Martinsen, Brian Degenhardt, Federico Mena Quintero, Stephen Norris, Daniel Cotting" + "1995-1998" + "_Blur" + 0 + (icon icon-name -1 "") + "RGB*, GRAY*" + 3 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image (unused)") + (proc-arg 16 "drawable" "Input drawable"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/blinds/blinds" 1601838911 + (proc-def "plug-in-blinds" 1 + "Simulate an image painted on window blinds" + "More here later" + "Andy Thomas" + "Andy Thomas" + "1997" + "_Blinds..." + 0 + (icon icon-name -1 "") + "RGB*, GRAY*" + 7 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image (unused)") + (proc-arg 16 "drawable" "Input drawable") + (proc-arg 0 "angle-dsp" "Angle of Displacement") + (proc-arg 0 "num-segments" "Number of segments in blinds") + (proc-arg 0 "orientation" "The orientation { ORIENTATION-HORIZONTAL (0), ORIENTATION-VERTICAL (1) }") + (proc-arg 0 "bg-transparent" "Background transparent { FALSE, TRUE }"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/animation-play/animation-play" 1601838911 + (proc-def "plug-in-animationplay" 1 + "Preview a GIMP layer-based animation" + "" + "Adam D. Moss " + "Adam D. Moss " + "1997, 1998..." + "_Playback..." + 1 + (menu-path "/Filters/Animation") + (icon icon-name -1 "media-playback-start") + "RGB*, INDEXED*, GRAY*" + 3 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Input drawable (unused)"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/animation-optimize/animation-optimize" 1601838911 + (proc-def "plug-in-animationoptimize" 1 + "Modify image to reduce size when saved as GIF animation" + "This procedure applies various optimizations to a GIMP layer-based animation in an attempt to reduce the final file size. If a frame of the animation can use the 'combine' mode, this procedure attempts to maximize the number of ajdacent pixels having the same color, which improves the compression for some image formats such as GIF or MNG." + "Adam D. Moss " + "Adam D. Moss " + "1997-2003" + "Optimize (for _GIF)" + 1 + (menu-path "/Filters/Animation") + (icon icon-name -1 "") + "RGB*, INDEXED*, GRAY*" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Input drawable (unused)") + (proc-arg 13 "result" "Resulting image")) + (proc-def "plug-in-animationoptimize-diff" 1 + "Reduce file size where combining layers is possible" + "This procedure applies various optimizations to a GIMP layer-based animation in an attempt to reduce the final file size. If a frame of the animation can use the 'combine' mode, this procedure uses a simple difference between the frames." + "Adam D. Moss " + "Adam D. Moss " + "1997-2001" + "_Optimize (Difference)" + 1 + (menu-path "/Filters/Animation") + (icon icon-name -1 "") + "RGB*, INDEXED*, GRAY*" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Input drawable (unused)") + (proc-arg 13 "result" "Resulting image")) + (proc-def "plug-in-animationunoptimize" 1 + "Remove optimization to make editing easier" + "This procedure 'simplifies' a GIMP layer-based animation that has been optimized for animation. This makes editing the animation much easier." + "Adam D. Moss " + "Adam D. Moss " + "1997-2001" + "_Unoptimize" + 1 + (menu-path "/Filters/Animation") + (icon icon-name -1 "") + "RGB*, INDEXED*, GRAY*" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Input drawable (unused)") + (proc-arg 13 "result" "Resulting image"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/align-layers/align-layers" 1601838911 + (proc-def "plug-in-align-layers" 1 + "Align all visible layers of the image" + "Align visible layers" + "Shuji Narazaki " + "Shuji Narazaki" + "1997" + "Align Visi_ble Layers..." + 1 + (menu-path "/Image/Arrange") + (icon icon-name -1 "") + "RGB*,GRAY*,INDEXED*" + 5 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Input drawable (not used)") + (proc-arg 0 "link-after-alignment" "Link the visible layers after alignment { TRUE, FALSE }") + (proc-arg 0 "use-bottom" "use the bottom layer as the base of alignment { TRUE, FALSE }"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/gutenprint" 1607498222 + (proc-def "file_print_gutenprint" 1 + "This plug-in prints images from The GIMP using Gutenprint directly." + "Prints images to many printers." + "Michael Sweet and Robert Krawitz " + "Copyright 1997-2006 by Michael Sweet and Robert Krawitz" + "5.3.4 - 06 Dec 2020" + "_Print with Gutenprint..." + 1 + (menu-path "/File/Send") + (icon icon-name -1 "gtk-print") + "RGB*,GRAY*,INDEXED*" + 9 0 + (proc-arg 0 "run-mode" "Interactive, non-interactive") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Input drawable") + (proc-arg 4 "driver" "Printer driver short name") + (proc-arg 4 "printer-queue" "CUPS Printer Queue") + (proc-arg 3 "left" "Left offset (points, -1 = centered)") + (proc-arg 3 "top" "Top offset (points, -1 = centered)") + (proc-arg 0 "length-key-value-array" "Length of the key-value array") + (proc-arg 9 "keys" "Key-value pairs for Gutenprint Settings")) + (locale-def "gutenprint" "${gimp_installation_dir}/share/locale")) + +# end of pluginrc diff --git a/.config/GIMP/2.10/sessionrc b/.config/GIMP/2.10/sessionrc new file mode 100644 index 000000000..fcac6f0d4 --- /dev/null +++ b/.config/GIMP/2.10/sessionrc @@ -0,0 +1,92 @@ +# GIMP sessionrc +# +# This file takes session-specific info (that is info, you want to keep +# between two GIMP sessions). You are not supposed to edit it manually, but +# of course you can do. The sessionrc will be entirely rewritten every time +# you quit GIMP. If this file isn't found, defaults are used. + +(session-info "toplevel" + (factory-entry "gimp-empty-image-window") + (position 200 100) + (size 640 480)) +(session-info "toplevel" + (factory-entry "gimp-single-image-window") + (position 962 32) + (size 950 1014) + (open-on-exit) + (aux-info + (left-docks-width "188") + (right-docks-width "205") + (maximized "no")) + (gimp-toolbox + (side left) + (book + (current-page 0) + (dockable "gimp-tool-options" + (tab-style automatic) + (aux-info + (show-button-bar "true"))) + (dockable "gimp-device-status" + (tab-style automatic) + (aux-info + (show-button-bar "true"))) + (dockable "gimp-undo-history" + (tab-style automatic) + (aux-info + (show-button-bar "true"))) + (dockable "gimp-image-list" + (tab-style automatic) + (aux-info + (show-button-bar "true"))))) + (gimp-dock + (side right) + (book + (current-page 0) + (dockable "gimp-brush-grid" + (tab-style automatic) + (aux-info + (show-button-bar "true"))) + (dockable "gimp-pattern-grid" + (tab-style automatic) + (aux-info + (show-button-bar "true"))) + (dockable "gimp-font-list" + (tab-style automatic) + (aux-info + (show-button-bar "true"))) + (dockable "gimp-document-list" + (tab-style automatic) + (aux-info + (show-button-bar "true")))) + (book + (position 336) + (current-page 0) + (dockable "gimp-layer-list" + (tab-style automatic) + (preview-size 32) + (aux-info + (show-button-bar "true"))) + (dockable "gimp-channel-list" + (tab-style automatic) + (preview-size 32) + (aux-info + (show-button-bar "true"))) + (dockable "gimp-vectors-list" + (tab-style automatic) + (preview-size 32) + (aux-info + (show-button-bar "true")))))) +(session-info "toplevel" + (factory-entry "gimp-operation-tool-dialog") + (position 562 274)) +(session-info "toplevel" + (factory-entry "gimp-toolbox-color-dialog") + (position 837 41)) + +(hide-docks no) +(single-window-mode yes) +(show-tabs yes) +(tabs-position 0) +(last-tip-shown 0) + +# end of sessionrc diff --git a/.config/GIMP/2.10/tags.xml b/.config/GIMP/2.10/tags.xml new file mode 100644 index 000000000..d80ffc107 --- /dev/null +++ b/.config/GIMP/2.10/tags.xml @@ -0,0 +1,4806 @@ + + + + + round + + + + fuzzy + round + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/.config/GIMP/2.10/templaterc b/.config/GIMP/2.10/templaterc new file mode 100644 index 000000000..fe461c9fe --- /dev/null +++ b/.config/GIMP/2.10/templaterc @@ -0,0 +1,500 @@ +# GIMP templaterc +# +# This file will be entirely rewritten each time you exit. + +(GimpTemplate "A0 (300 ppi)" + (width 9933) + (height 14043) + (unit millimeters) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "A1 (300 ppi)" + (width 7016) + (height 9933) + (unit millimeters) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "A2 (300 ppi)" + (width 4960) + (height 7016) + (unit millimeters) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "A3 (300 ppi)" + (width 3508) + (height 4960) + (unit millimeters) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "A4 (300 ppi)" + (width 2480) + (height 3508) + (unit millimeters) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "A5 (300 ppi)" + (width 1748) + (height 2480) + (unit millimeters) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "A6 (300 ppi)" + (width 1240) + (height 1748) + (unit millimeters) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "A7 (300 ppi)" + (width 874) + (height 1240) + (unit millimeters) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "B4 (300 ppi)" + (width 2953) + (height 4169) + (unit millimeters) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "B5 (300 ppi)" + (width 2079) + (height 2953) + (unit millimeters) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "B5-Japan (300 ppi)" + (width 2150) + (height 3035) + (unit millimeters) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "US Letter (300 ppi)" + (width 2550) + (height 3300) + (unit inches) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "US Legal (300 ppi)" + (width 2550) + (height 4200) + (unit inches) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "88.9×50.8 US Business Card" + (icon-name "gimp-business-card") + (width 1050) + (height 600) + (unit millimeters) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "85×55 Western Europe Business Card" + (icon-name "gimp-business-card") + (width 1004) + (height 650) + (unit millimeters) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "90×50 Eastern Europe Business Card" + (icon-name "gimp-business-card") + (width 1063) + (height 591) + (unit millimeters) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "90×55 Business Card (AU, IN etc.)" + (icon-name "gimp-business-card") + (width 1063) + (height 650) + (unit millimeters) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "87×49 Vistaprint Business Card" + (icon-name "gimp-business-card") + (width 1028) + (height 579) + (unit millimeters) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "Toilet paper (US, 300 ppi)" + (icon-name "gimp-toilet-paper") + (width 1350) + (height 1350) + (unit inches) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "CD cover (300 ppi)" + (icon-name "media-optical") + (width 1429) + (height 1417) + (unit millimeters) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "Web banner leaderboard 728x90" + (icon-name "gimp-web") + (width 728) + (height 90) + (unit pixels) + (xresolution 72) + (yresolution 72) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "Web banner large rectangle 336×280" + (icon-name "gimp-web") + (width 336) + (height 280) + (unit pixels) + (xresolution 72) + (yresolution 72) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "Web banner medium rectangle 300×250" + (icon-name "gimp-web") + (width 300) + (height 250) + (unit pixels) + (xresolution 72) + (yresolution 72) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "Web banner large mobile 320×100" + (icon-name "gimp-web") + (width 320) + (height 100) + (unit pixels) + (xresolution 72) + (yresolution 72) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "Web banner large skyscraper 300×600" + (icon-name "gimp-web") + (width 300) + (height 600) + (unit pixels) + (xresolution 72) + (yresolution 72) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "1280×720 (HD 720p)" + (icon-name "gimp-video") + (width 1280) + (height 720) + (unit pixels) + (xresolution 72) + (yresolution 72) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "1920×1080 (Full HD 1080p)" + (icon-name "gimp-video") + (width 1920) + (height 1080) + (unit pixels) + (xresolution 72) + (yresolution 72) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "3840x2160 (4K UHD)" + (icon-name "gimp-video") + (width 3840) + (height 2160) + (unit pixels) + (xresolution 72) + (yresolution 72) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "4096×2160 (Digital Cinema Initiatives 4K)" + (icon-name "gimp-video") + (width 4096) + (height 2160) + (unit pixels) + (xresolution 72) + (yresolution 72) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "1366×768 HD" + (icon-name "gimp-display") + (width 1366) + (height 768) + (unit pixels) + (xresolution 72) + (yresolution 72) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "1920×1200 WUXGA" + (icon-name "gimp-display") + (width 1920) + (height 1200) + (unit pixels) + (xresolution 72) + (yresolution 72) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "2560x1600 WQXGA" + (icon-name "gimp-display") + (width 2560) + (height 1600) + (unit pixels) + (xresolution 72) + (yresolution 72) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "3840×2160 4K UHD" + (icon-name "gimp-display") + (width 3840) + (height 2160) + (unit pixels) + (xresolution 72) + (yresolution 72) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "Apple iPhone 6/7" + (icon-name "gimp-smartphone") + (width 750) + (height 1334) + (unit millimeters) + (xresolution 326) + (yresolution 326) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "Apple iPhone 5" + (icon-name "gimp-smartphone") + (width 640) + (height 1136) + (unit millimeters) + (xresolution 326) + (yresolution 326) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "Apple iPad 3&4, Air" + (icon-name "gimp-smartphone") + (width 2048) + (height 2732) + (unit millimeters) + (xresolution 264) + (yresolution 264) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "Samsung Galaxy S6" + (icon-name "gimp-smartphone") + (width 1440) + (height 2560) + (unit millimeters) + (xresolution 577) + (yresolution 577) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "Samsung Galaxy S5" + (icon-name "gimp-smartphone") + (width 1080) + (height 1920) + (unit millimeters) + (xresolution 360) + (yresolution 360) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "Samsung Galaxy Tab 2&3 10,1 inch" + (icon-name "gimp-smartphone") + (width 800) + (height 1280) + (unit millimeters) + (xresolution 149) + (yresolution 149) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) + +# end of templaterc diff --git a/.config/GIMP/2.10/themerc b/.config/GIMP/2.10/themerc new file mode 100644 index 000000000..d7af250a9 --- /dev/null +++ b/.config/GIMP/2.10/themerc @@ -0,0 +1,17 @@ +# GIMP themerc +# +# This file is written on GIMP startup and on every theme change. +# It is NOT supposed to be edited manually. Edit your personal +# gtkrc file instead (/home/dt/.config/GIMP/2.10/gtkrc). + +style "gimp-spin-scale-style" +{ + GimpSpinScale::compact = 1 +} + +class "GimpSpinScale" style "gimp-spin-scale-style" + +include "/usr/share/gimp/2.0/themes/Dark/gtkrc" +include "/etc/gimp/2.0/gtkrc" + +# end of themerc diff --git a/.config/GIMP/2.10/tool-options/gimp-airbrush-tool b/.config/GIMP/2.10/tool-options/gimp-airbrush-tool new file mode 100644 index 000000000..8312f2e94 --- /dev/null +++ b/.config/GIMP/2.10/tool-options/gimp-airbrush-tool @@ -0,0 +1,11 @@ +# GIMP gimp-airbrush-tool options + +(foreground (color-rgb 0.87843143939971924 0.32156863808631897 0.49411767721176147)) +(brush "2. Hardness 050") +(dynamics "Dynamics Off") +(gradient "FG to BG (RGB)") +(palette "Colour History") +(brush-size 51) +(brush-hardness 0.5) + +# end of gimp-airbrush-tool options diff --git a/.config/GIMP/2.10/tool-options/gimp-align-tool b/.config/GIMP/2.10/tool-options/gimp-align-tool new file mode 100644 index 000000000..521b3bf4a --- /dev/null +++ b/.config/GIMP/2.10/tool-options/gimp-align-tool @@ -0,0 +1,4 @@ +# GIMP gimp-align-tool options + + +# end of gimp-align-tool options diff --git a/.config/GIMP/2.10/tool-options/gimp-brightness-contrast-tool b/.config/GIMP/2.10/tool-options/gimp-brightness-contrast-tool new file mode 100644 index 000000000..16bc2d330 --- /dev/null +++ b/.config/GIMP/2.10/tool-options/gimp-brightness-contrast-tool @@ -0,0 +1,4 @@ +# GIMP gimp-brightness-contrast-tool options + + +# end of gimp-brightness-contrast-tool options diff --git a/.config/GIMP/2.10/tool-options/gimp-bucket-fill-tool b/.config/GIMP/2.10/tool-options/gimp-bucket-fill-tool new file mode 100644 index 000000000..7ada67cdb --- /dev/null +++ b/.config/GIMP/2.10/tool-options/gimp-bucket-fill-tool @@ -0,0 +1,8 @@ +# GIMP gimp-bucket-fill-tool options + +(foreground (color-rgb 0.87843143939971924 0.32156863808631897 0.49411767721176147)) +(pattern "Pine") +(brush-size 51) +(brush-hardness 0.5) + +# end of gimp-bucket-fill-tool options diff --git a/.config/GIMP/2.10/tool-options/gimp-by-color-select-tool b/.config/GIMP/2.10/tool-options/gimp-by-color-select-tool new file mode 100644 index 000000000..434e5db6a --- /dev/null +++ b/.config/GIMP/2.10/tool-options/gimp-by-color-select-tool @@ -0,0 +1,4 @@ +# GIMP gimp-by-color-select-tool options + + +# end of gimp-by-color-select-tool options diff --git a/.config/GIMP/2.10/tool-options/gimp-cage-tool b/.config/GIMP/2.10/tool-options/gimp-cage-tool new file mode 100644 index 000000000..70074a22b --- /dev/null +++ b/.config/GIMP/2.10/tool-options/gimp-cage-tool @@ -0,0 +1,4 @@ +# GIMP gimp-cage-tool options + + +# end of gimp-cage-tool options diff --git a/.config/GIMP/2.10/tool-options/gimp-clone-tool b/.config/GIMP/2.10/tool-options/gimp-clone-tool new file mode 100644 index 000000000..bfa780d90 --- /dev/null +++ b/.config/GIMP/2.10/tool-options/gimp-clone-tool @@ -0,0 +1,11 @@ +# GIMP gimp-clone-tool options + +(foreground (color-rgb 0.87843143939971924 0.32156863808631897 0.49411767721176147)) +(brush "2. Hardness 050") +(dynamics "Dynamics Off") +(pattern "Pine") +(palette "Colour History") +(brush-size 51) +(brush-hardness 0.5) + +# end of gimp-clone-tool options diff --git a/.config/GIMP/2.10/tool-options/gimp-color-picker-tool b/.config/GIMP/2.10/tool-options/gimp-color-picker-tool new file mode 100644 index 000000000..411999c35 --- /dev/null +++ b/.config/GIMP/2.10/tool-options/gimp-color-picker-tool @@ -0,0 +1,5 @@ +# GIMP gimp-color-picker-tool options + +(foreground (color-rgb 0.87843143939971924 0.32156863808631897 0.49411767721176147)) + +# end of gimp-color-picker-tool options diff --git a/.config/GIMP/2.10/tool-options/gimp-convolve-tool b/.config/GIMP/2.10/tool-options/gimp-convolve-tool new file mode 100644 index 000000000..a34018c2e --- /dev/null +++ b/.config/GIMP/2.10/tool-options/gimp-convolve-tool @@ -0,0 +1,10 @@ +# GIMP gimp-convolve-tool options + +(foreground (color-rgb 0.87843143939971924 0.32156863808631897 0.49411767721176147)) +(brush "2. Hardness 050") +(dynamics "Dynamics Off") +(palette "Colour History") +(brush-size 51) +(brush-hardness 0.5) + +# end of gimp-convolve-tool options diff --git a/.config/GIMP/2.10/tool-options/gimp-crop-tool b/.config/GIMP/2.10/tool-options/gimp-crop-tool new file mode 100644 index 000000000..ef8f80fee --- /dev/null +++ b/.config/GIMP/2.10/tool-options/gimp-crop-tool @@ -0,0 +1,4 @@ +# GIMP gimp-crop-tool options + + +# end of gimp-crop-tool options diff --git a/.config/GIMP/2.10/tool-options/gimp-curves-tool b/.config/GIMP/2.10/tool-options/gimp-curves-tool new file mode 100644 index 000000000..b7a332b82 --- /dev/null +++ b/.config/GIMP/2.10/tool-options/gimp-curves-tool @@ -0,0 +1,4 @@ +# GIMP gimp-curves-tool options + + +# end of gimp-curves-tool options diff --git a/.config/GIMP/2.10/tool-options/gimp-dodge-burn-tool b/.config/GIMP/2.10/tool-options/gimp-dodge-burn-tool new file mode 100644 index 000000000..94ed1bc64 --- /dev/null +++ b/.config/GIMP/2.10/tool-options/gimp-dodge-burn-tool @@ -0,0 +1,10 @@ +# GIMP gimp-dodge-burn-tool options + +(foreground (color-rgb 0.87843143939971924 0.32156863808631897 0.49411767721176147)) +(brush "2. Hardness 050") +(dynamics "Dynamics Off") +(palette "Colour History") +(brush-size 51) +(brush-hardness 0.5) + +# end of gimp-dodge-burn-tool options diff --git a/.config/GIMP/2.10/tool-options/gimp-ellipse-select-tool b/.config/GIMP/2.10/tool-options/gimp-ellipse-select-tool new file mode 100644 index 000000000..5b00a2531 --- /dev/null +++ b/.config/GIMP/2.10/tool-options/gimp-ellipse-select-tool @@ -0,0 +1,4 @@ +# GIMP gimp-ellipse-select-tool options + + +# end of gimp-ellipse-select-tool options diff --git a/.config/GIMP/2.10/tool-options/gimp-eraser-tool b/.config/GIMP/2.10/tool-options/gimp-eraser-tool new file mode 100644 index 000000000..ae7770a14 --- /dev/null +++ b/.config/GIMP/2.10/tool-options/gimp-eraser-tool @@ -0,0 +1,10 @@ +# GIMP gimp-eraser-tool options + +(foreground (color-rgb 0.87843143939971924 0.32156863808631897 0.49411767721176147)) +(brush "2. Hardness 050") +(dynamics "Dynamics Off") +(palette "Colour History") +(brush-size 51) +(brush-hardness 0.5) + +# end of gimp-eraser-tool options diff --git a/.config/GIMP/2.10/tool-options/gimp-flip-tool b/.config/GIMP/2.10/tool-options/gimp-flip-tool new file mode 100644 index 000000000..468667783 --- /dev/null +++ b/.config/GIMP/2.10/tool-options/gimp-flip-tool @@ -0,0 +1,4 @@ +# GIMP gimp-flip-tool options + + +# end of gimp-flip-tool options diff --git a/.config/GIMP/2.10/tool-options/gimp-foreground-select-tool b/.config/GIMP/2.10/tool-options/gimp-foreground-select-tool new file mode 100644 index 000000000..f1b872605 --- /dev/null +++ b/.config/GIMP/2.10/tool-options/gimp-foreground-select-tool @@ -0,0 +1,5 @@ +# GIMP gimp-foreground-select-tool options + +(foreground (color-rgb 0.87843143939971924 0.32156863808631897 0.49411767721176147)) + +# end of gimp-foreground-select-tool options diff --git a/.config/GIMP/2.10/tool-options/gimp-free-select-tool b/.config/GIMP/2.10/tool-options/gimp-free-select-tool new file mode 100644 index 000000000..86b6ab39f --- /dev/null +++ b/.config/GIMP/2.10/tool-options/gimp-free-select-tool @@ -0,0 +1,4 @@ +# GIMP gimp-free-select-tool options + + +# end of gimp-free-select-tool options diff --git a/.config/GIMP/2.10/tool-options/gimp-fuzzy-select-tool b/.config/GIMP/2.10/tool-options/gimp-fuzzy-select-tool new file mode 100644 index 000000000..a0f7bdbe7 --- /dev/null +++ b/.config/GIMP/2.10/tool-options/gimp-fuzzy-select-tool @@ -0,0 +1,4 @@ +# GIMP gimp-fuzzy-select-tool options + + +# end of gimp-fuzzy-select-tool options diff --git a/.config/GIMP/2.10/tool-options/gimp-gegl-tool b/.config/GIMP/2.10/tool-options/gimp-gegl-tool new file mode 100644 index 000000000..f085e5f57 --- /dev/null +++ b/.config/GIMP/2.10/tool-options/gimp-gegl-tool @@ -0,0 +1,4 @@ +# GIMP gimp-gegl-tool options + + +# end of gimp-gegl-tool options diff --git a/.config/GIMP/2.10/tool-options/gimp-gradient-tool b/.config/GIMP/2.10/tool-options/gimp-gradient-tool new file mode 100644 index 000000000..156dd653f --- /dev/null +++ b/.config/GIMP/2.10/tool-options/gimp-gradient-tool @@ -0,0 +1,8 @@ +# GIMP gimp-gradient-tool options + +(foreground (color-rgb 0.87843143939971924 0.32156863808631897 0.49411767721176147)) +(gradient "FG to BG (RGB)") +(brush-size 51) +(brush-hardness 0.5) + +# end of gimp-gradient-tool options diff --git a/.config/GIMP/2.10/tool-options/gimp-handle-transform-tool b/.config/GIMP/2.10/tool-options/gimp-handle-transform-tool new file mode 100644 index 000000000..a23ed4240 --- /dev/null +++ b/.config/GIMP/2.10/tool-options/gimp-handle-transform-tool @@ -0,0 +1,4 @@ +# GIMP gimp-handle-transform-tool options + + +# end of gimp-handle-transform-tool options diff --git a/.config/GIMP/2.10/tool-options/gimp-heal-tool b/.config/GIMP/2.10/tool-options/gimp-heal-tool new file mode 100644 index 000000000..26cdc8fc0 --- /dev/null +++ b/.config/GIMP/2.10/tool-options/gimp-heal-tool @@ -0,0 +1,10 @@ +# GIMP gimp-heal-tool options + +(foreground (color-rgb 0.87843143939971924 0.32156863808631897 0.49411767721176147)) +(brush "2. Hardness 050") +(dynamics "Dynamics Off") +(palette "Colour History") +(brush-size 51) +(brush-hardness 0.5) + +# end of gimp-heal-tool options diff --git a/.config/GIMP/2.10/tool-options/gimp-ink-tool b/.config/GIMP/2.10/tool-options/gimp-ink-tool new file mode 100644 index 000000000..f387df674 --- /dev/null +++ b/.config/GIMP/2.10/tool-options/gimp-ink-tool @@ -0,0 +1,7 @@ +# GIMP gimp-ink-tool options + +(foreground (color-rgb 0.87843143939971924 0.32156863808631897 0.49411767721176147)) +(brush-size 51) +(brush-hardness 0.5) + +# end of gimp-ink-tool options diff --git a/.config/GIMP/2.10/tool-options/gimp-iscissors-tool b/.config/GIMP/2.10/tool-options/gimp-iscissors-tool new file mode 100644 index 000000000..fb42baff7 --- /dev/null +++ b/.config/GIMP/2.10/tool-options/gimp-iscissors-tool @@ -0,0 +1,4 @@ +# GIMP gimp-iscissors-tool options + + +# end of gimp-iscissors-tool options diff --git a/.config/GIMP/2.10/tool-options/gimp-levels-tool b/.config/GIMP/2.10/tool-options/gimp-levels-tool new file mode 100644 index 000000000..04c0f9322 --- /dev/null +++ b/.config/GIMP/2.10/tool-options/gimp-levels-tool @@ -0,0 +1,4 @@ +# GIMP gimp-levels-tool options + + +# end of gimp-levels-tool options diff --git a/.config/GIMP/2.10/tool-options/gimp-measure-tool b/.config/GIMP/2.10/tool-options/gimp-measure-tool new file mode 100644 index 000000000..ec7cff38a --- /dev/null +++ b/.config/GIMP/2.10/tool-options/gimp-measure-tool @@ -0,0 +1,4 @@ +# GIMP gimp-measure-tool options + + +# end of gimp-measure-tool options diff --git a/.config/GIMP/2.10/tool-options/gimp-move-tool b/.config/GIMP/2.10/tool-options/gimp-move-tool new file mode 100644 index 000000000..b9721a894 --- /dev/null +++ b/.config/GIMP/2.10/tool-options/gimp-move-tool @@ -0,0 +1,4 @@ +# GIMP gimp-move-tool options + + +# end of gimp-move-tool options diff --git a/.config/GIMP/2.10/tool-options/gimp-mypaint-brush-tool b/.config/GIMP/2.10/tool-options/gimp-mypaint-brush-tool new file mode 100644 index 000000000..d7e3d7722 --- /dev/null +++ b/.config/GIMP/2.10/tool-options/gimp-mypaint-brush-tool @@ -0,0 +1,10 @@ +# GIMP gimp-mypaint-brush-tool options + +(foreground (color-rgb 0.87843143939971924 0.32156863808631897 0.49411767721176147)) +(mybrush "100% Opaque") +(brush-size 51) +(brush-hardness 0.5) +(radius 3.0099999904632568) +(hardness 0.94999998807907104) + +# end of gimp-mypaint-brush-tool options diff --git a/.config/GIMP/2.10/tool-options/gimp-offset-tool b/.config/GIMP/2.10/tool-options/gimp-offset-tool new file mode 100644 index 000000000..5a3025357 --- /dev/null +++ b/.config/GIMP/2.10/tool-options/gimp-offset-tool @@ -0,0 +1,4 @@ +# GIMP gimp-offset-tool options + + +# end of gimp-offset-tool options diff --git a/.config/GIMP/2.10/tool-options/gimp-operation-tool b/.config/GIMP/2.10/tool-options/gimp-operation-tool new file mode 100644 index 000000000..c9710ee13 --- /dev/null +++ b/.config/GIMP/2.10/tool-options/gimp-operation-tool @@ -0,0 +1,5 @@ +# GIMP gimp-operation-tool options + +(foreground (color-rgb 0.87843143939971924 0.32156863808631897 0.49411767721176147)) + +# end of gimp-operation-tool options diff --git a/.config/GIMP/2.10/tool-options/gimp-paintbrush-tool b/.config/GIMP/2.10/tool-options/gimp-paintbrush-tool new file mode 100644 index 000000000..f329a047e --- /dev/null +++ b/.config/GIMP/2.10/tool-options/gimp-paintbrush-tool @@ -0,0 +1,11 @@ +# GIMP gimp-paintbrush-tool options + +(foreground (color-rgb 0.87843143939971924 0.32156863808631897 0.49411767721176147)) +(brush "2. Hardness 050") +(dynamics "Dynamics Off") +(gradient "FG to BG (RGB)") +(palette "Colour History") +(brush-size 51) +(brush-hardness 0.5) + +# end of gimp-paintbrush-tool options diff --git a/.config/GIMP/2.10/tool-options/gimp-pencil-tool b/.config/GIMP/2.10/tool-options/gimp-pencil-tool new file mode 100644 index 000000000..6206e222b --- /dev/null +++ b/.config/GIMP/2.10/tool-options/gimp-pencil-tool @@ -0,0 +1,11 @@ +# GIMP gimp-pencil-tool options + +(foreground (color-rgb 0.87843143939971924 0.32156863808631897 0.49411767721176147)) +(brush "2. Hardness 050") +(dynamics "Dynamics Off") +(gradient "FG to BG (RGB)") +(palette "Colour History") +(brush-size 51) +(brush-hardness 0.5) + +# end of gimp-pencil-tool options diff --git a/.config/GIMP/2.10/tool-options/gimp-perspective-clone-tool b/.config/GIMP/2.10/tool-options/gimp-perspective-clone-tool new file mode 100644 index 000000000..0ae94c3f7 --- /dev/null +++ b/.config/GIMP/2.10/tool-options/gimp-perspective-clone-tool @@ -0,0 +1,11 @@ +# GIMP gimp-perspective-clone-tool options + +(foreground (color-rgb 0.87843143939971924 0.32156863808631897 0.49411767721176147)) +(brush "2. Hardness 050") +(dynamics "Dynamics Off") +(pattern "Pine") +(palette "Colour History") +(brush-size 51) +(brush-hardness 0.5) + +# end of gimp-perspective-clone-tool options diff --git a/.config/GIMP/2.10/tool-options/gimp-perspective-tool b/.config/GIMP/2.10/tool-options/gimp-perspective-tool new file mode 100644 index 000000000..3a21bdc72 --- /dev/null +++ b/.config/GIMP/2.10/tool-options/gimp-perspective-tool @@ -0,0 +1,4 @@ +# GIMP gimp-perspective-tool options + + +# end of gimp-perspective-tool options diff --git a/.config/GIMP/2.10/tool-options/gimp-rect-select-tool b/.config/GIMP/2.10/tool-options/gimp-rect-select-tool new file mode 100644 index 000000000..25bc9003e --- /dev/null +++ b/.config/GIMP/2.10/tool-options/gimp-rect-select-tool @@ -0,0 +1,4 @@ +# GIMP gimp-rect-select-tool options + + +# end of gimp-rect-select-tool options diff --git a/.config/GIMP/2.10/tool-options/gimp-rotate-tool b/.config/GIMP/2.10/tool-options/gimp-rotate-tool new file mode 100644 index 000000000..32e5b737a --- /dev/null +++ b/.config/GIMP/2.10/tool-options/gimp-rotate-tool @@ -0,0 +1,4 @@ +# GIMP gimp-rotate-tool options + + +# end of gimp-rotate-tool options diff --git a/.config/GIMP/2.10/tool-options/gimp-scale-tool b/.config/GIMP/2.10/tool-options/gimp-scale-tool new file mode 100644 index 000000000..6d1a75ef5 --- /dev/null +++ b/.config/GIMP/2.10/tool-options/gimp-scale-tool @@ -0,0 +1,4 @@ +# GIMP gimp-scale-tool options + + +# end of gimp-scale-tool options diff --git a/.config/GIMP/2.10/tool-options/gimp-shear-tool b/.config/GIMP/2.10/tool-options/gimp-shear-tool new file mode 100644 index 000000000..b1cf8f8f4 --- /dev/null +++ b/.config/GIMP/2.10/tool-options/gimp-shear-tool @@ -0,0 +1,4 @@ +# GIMP gimp-shear-tool options + + +# end of gimp-shear-tool options diff --git a/.config/GIMP/2.10/tool-options/gimp-smudge-tool b/.config/GIMP/2.10/tool-options/gimp-smudge-tool new file mode 100644 index 000000000..5e0f676d2 --- /dev/null +++ b/.config/GIMP/2.10/tool-options/gimp-smudge-tool @@ -0,0 +1,11 @@ +# GIMP gimp-smudge-tool options + +(foreground (color-rgb 0.87843143939971924 0.32156863808631897 0.49411767721176147)) +(brush "2. Hardness 050") +(dynamics "Dynamics Off") +(gradient "FG to BG (RGB)") +(palette "Colour History") +(brush-size 51) +(brush-hardness 0.5) + +# end of gimp-smudge-tool options diff --git a/.config/GIMP/2.10/tool-options/gimp-text-tool b/.config/GIMP/2.10/tool-options/gimp-text-tool new file mode 100644 index 000000000..236742ee3 --- /dev/null +++ b/.config/GIMP/2.10/tool-options/gimp-text-tool @@ -0,0 +1,7 @@ +# GIMP gimp-text-tool options + +(foreground (color-rgb 0.87843143939971924 0.32156863808631897 0.49411767721176147)) +(palette "Colour History") +(font "Sans-serif") + +# end of gimp-text-tool options diff --git a/.config/GIMP/2.10/tool-options/gimp-threshold-tool b/.config/GIMP/2.10/tool-options/gimp-threshold-tool new file mode 100644 index 000000000..f114556a2 --- /dev/null +++ b/.config/GIMP/2.10/tool-options/gimp-threshold-tool @@ -0,0 +1,4 @@ +# GIMP gimp-threshold-tool options + + +# end of gimp-threshold-tool options diff --git a/.config/GIMP/2.10/tool-options/gimp-transform-3d-tool b/.config/GIMP/2.10/tool-options/gimp-transform-3d-tool new file mode 100644 index 000000000..dbb8c084f --- /dev/null +++ b/.config/GIMP/2.10/tool-options/gimp-transform-3d-tool @@ -0,0 +1,4 @@ +# GIMP gimp-transform-3d-tool options + + +# end of gimp-transform-3d-tool options diff --git a/.config/GIMP/2.10/tool-options/gimp-unified-transform-tool b/.config/GIMP/2.10/tool-options/gimp-unified-transform-tool new file mode 100644 index 000000000..c84224d35 --- /dev/null +++ b/.config/GIMP/2.10/tool-options/gimp-unified-transform-tool @@ -0,0 +1,4 @@ +# GIMP gimp-unified-transform-tool options + + +# end of gimp-unified-transform-tool options diff --git a/.config/GIMP/2.10/tool-options/gimp-vector-tool b/.config/GIMP/2.10/tool-options/gimp-vector-tool new file mode 100644 index 000000000..37b24bc8d --- /dev/null +++ b/.config/GIMP/2.10/tool-options/gimp-vector-tool @@ -0,0 +1,10 @@ +# GIMP gimp-vector-tool options + +(foreground (color-rgb 0.87843143939971924 0.32156863808631897 0.49411767721176147)) +(brush "2. Hardness 050") +(dynamics "Dynamics Off") +(pattern "Pine") +(gradient "FG to BG (RGB)") +(palette "Colour History") + +# end of gimp-vector-tool options diff --git a/.config/GIMP/2.10/tool-options/gimp-warp-tool b/.config/GIMP/2.10/tool-options/gimp-warp-tool new file mode 100644 index 000000000..e837f9e85 --- /dev/null +++ b/.config/GIMP/2.10/tool-options/gimp-warp-tool @@ -0,0 +1,4 @@ +# GIMP gimp-warp-tool options + + +# end of gimp-warp-tool options diff --git a/.config/GIMP/2.10/tool-options/gimp-zoom-tool b/.config/GIMP/2.10/tool-options/gimp-zoom-tool new file mode 100644 index 000000000..316363e45 --- /dev/null +++ b/.config/GIMP/2.10/tool-options/gimp-zoom-tool @@ -0,0 +1,4 @@ +# GIMP gimp-zoom-tool options + + +# end of gimp-zoom-tool options diff --git a/.config/GIMP/2.10/toolrc b/.config/GIMP/2.10/toolrc new file mode 100644 index 000000000..81bb0529c --- /dev/null +++ b/.config/GIMP/2.10/toolrc @@ -0,0 +1,185 @@ +# GIMP toolrc + +(file-version 1) + +(GimpToolGroup "tool group" + (visible yes) + (active-tool "gimp-move-tool") + (children + (GimpToolInfo "gimp-move-tool" + (icon-name "gimp-tool-move") + (visible yes)) + (GimpToolInfo "gimp-align-tool" + (icon-name "gimp-tool-align") + (visible yes)))) +(GimpToolGroup "tool group" + (visible yes) + (active-tool "gimp-rect-select-tool") + (children + (GimpToolInfo "gimp-rect-select-tool" + (icon-name "gimp-tool-rect-select") + (visible yes)) + (GimpToolInfo "gimp-ellipse-select-tool" + (icon-name "gimp-tool-ellipse-select") + (visible yes)))) +(GimpToolGroup "tool group" + (visible yes) + (active-tool "gimp-free-select-tool") + (children + (GimpToolInfo "gimp-free-select-tool" + (icon-name "gimp-tool-free-select") + (visible yes)) + (GimpToolInfo "gimp-iscissors-tool" + (icon-name "gimp-tool-iscissors") + (visible yes)) + (GimpToolInfo "gimp-foreground-select-tool" + (icon-name "gimp-tool-foreground-select") + (visible yes)))) +(GimpToolGroup "tool group" + (visible yes) + (active-tool "gimp-fuzzy-select-tool") + (children + (GimpToolInfo "gimp-fuzzy-select-tool" + (icon-name "gimp-tool-fuzzy-select") + (visible yes)) + (GimpToolInfo "gimp-by-color-select-tool" + (icon-name "gimp-tool-by-color-select") + (visible yes)))) +(GimpToolInfo "gimp-crop-tool" + (icon-name "gimp-tool-crop") + (visible yes)) +(GimpToolGroup "tool group" + (visible yes) + (active-tool "gimp-unified-transform-tool") + (children + (GimpToolInfo "gimp-unified-transform-tool" + (icon-name "gimp-tool-unified-transform") + (visible yes)) + (GimpToolInfo "gimp-rotate-tool" + (icon-name "gimp-tool-rotate") + (visible yes)) + (GimpToolInfo "gimp-scale-tool" + (icon-name "gimp-tool-scale") + (visible yes)) + (GimpToolInfo "gimp-shear-tool" + (icon-name "gimp-tool-shear") + (visible yes)) + (GimpToolInfo "gimp-flip-tool" + (icon-name "gimp-tool-flip") + (visible yes)) + (GimpToolInfo "gimp-perspective-tool" + (icon-name "gimp-tool-perspective") + (visible yes)) + (GimpToolInfo "gimp-transform-3d-tool" + (icon-name "gimp-tool-transform-3d") + (visible yes)) + (GimpToolInfo "gimp-handle-transform-tool" + (icon-name "gimp-tool-handle-transform") + (visible yes)))) +(GimpToolGroup "tool group" + (visible yes) + (active-tool "gimp-warp-tool") + (children + (GimpToolInfo "gimp-warp-tool" + (icon-name "gimp-tool-warp") + (visible yes)) + (GimpToolInfo "gimp-cage-tool" + (icon-name "gimp-tool-cage") + (visible yes)))) +(GimpToolGroup "tool group" + (visible yes) + (active-tool "gimp-bucket-fill-tool") + (children + (GimpToolInfo "gimp-bucket-fill-tool" + (icon-name "gimp-tool-bucket-fill") + (visible yes)) + (GimpToolInfo "gimp-gradient-tool" + (icon-name "gimp-tool-gradient") + (visible yes)))) +(GimpToolGroup "tool group" + (visible yes) + (active-tool "gimp-paintbrush-tool") + (children + (GimpToolInfo "gimp-paintbrush-tool" + (icon-name "gimp-tool-paintbrush") + (visible yes)) + (GimpToolInfo "gimp-pencil-tool" + (icon-name "gimp-tool-pencil") + (visible yes)) + (GimpToolInfo "gimp-airbrush-tool" + (icon-name "gimp-tool-airbrush") + (visible yes)) + (GimpToolInfo "gimp-ink-tool" + (icon-name "gimp-tool-ink") + (visible yes)) + (GimpToolInfo "gimp-mypaint-brush-tool" + (icon-name "gimp-tool-mypaint-brush") + (visible yes)))) +(GimpToolInfo "gimp-eraser-tool" + (icon-name "gimp-tool-eraser") + (visible yes)) +(GimpToolGroup "tool group" + (visible yes) + (active-tool "gimp-clone-tool") + (children + (GimpToolInfo "gimp-clone-tool" + (icon-name "gimp-tool-clone") + (visible yes)) + (GimpToolInfo "gimp-perspective-clone-tool" + (icon-name "gimp-tool-perspective-clone") + (visible yes)) + (GimpToolInfo "gimp-heal-tool" + (icon-name "gimp-tool-heal") + (visible yes)))) +(GimpToolGroup "tool group" + (visible yes) + (active-tool "gimp-smudge-tool") + (children + (GimpToolInfo "gimp-smudge-tool" + (icon-name "gimp-tool-smudge") + (visible yes)) + (GimpToolInfo "gimp-convolve-tool" + (icon-name "gimp-tool-blur") + (visible yes)) + (GimpToolInfo "gimp-dodge-burn-tool" + (icon-name "gimp-tool-dodge") + (visible yes)))) +(GimpToolInfo "gimp-vector-tool" + (icon-name "gimp-tool-path") + (visible yes)) +(GimpToolInfo "gimp-text-tool" + (icon-name "gimp-tool-text") + (visible yes)) +(GimpToolGroup "tool group" + (visible yes) + (active-tool "gimp-color-picker-tool") + (children + (GimpToolInfo "gimp-color-picker-tool" + (icon-name "gimp-tool-color-picker") + (visible yes)) + (GimpToolInfo "gimp-measure-tool" + (icon-name "gimp-tool-measure") + (visible yes)))) +(GimpToolInfo "gimp-zoom-tool" + (icon-name "gimp-tool-zoom") + (visible yes)) +(GimpToolInfo "gimp-brightness-contrast-tool" + (icon-name "gimp-tool-brightness-contrast") + (visible no)) +(GimpToolInfo "gimp-threshold-tool" + (icon-name "gimp-tool-threshold") + (visible no)) +(GimpToolInfo "gimp-levels-tool" + (icon-name "gimp-tool-levels") + (visible no)) +(GimpToolInfo "gimp-curves-tool" + (icon-name "gimp-tool-curves") + (visible no)) +(GimpToolInfo "gimp-offset-tool" + (icon-name "gimp-tool-offset") + (visible no)) +(GimpToolInfo "gimp-gegl-tool" + (icon-name "gimp-gegl") + (visible no)) + +# end of toolrc diff --git a/.config/GIMP/2.10/unitrc b/.config/GIMP/2.10/unitrc new file mode 100644 index 000000000..9883ee89d --- /dev/null +++ b/.config/GIMP/2.10/unitrc @@ -0,0 +1,51 @@ +# GIMP units +# +# This file contains the user unit database. You can edit this list with the +# unit editor. You are not supposed to edit it manually, but of course you +# can do. +# This file will be entirely rewritten each time you exit. + +(unit-info "centimeters" + (factor 2.54) + (digits 2) + (symbol "cm") + (abbreviation "cm") + (singular "centimeter") + (plural "centimeters")) +(unit-info "meters" + (factor 0.025399999999999999) + (digits 4) + (symbol "m") + (abbreviation "m") + (singular "meter") + (plural "meters")) +(unit-info "feet" + (factor 0.083333000000000004) + (digits 4) + (symbol "'") + (abbreviation "ft") + (singular "foot") + (plural "feet")) +(unit-info "yards" + (factor 0.027778000000000001) + (digits 4) + (symbol "yd") + (abbreviation "yd") + (singular "yard") + (plural "yards")) +(unit-info "typogr. points" + (factor 72.269999999999996) + (digits 0) + (symbol "tpt") + (abbreviation "tpt") + (singular "typogr. point") + (plural "typogr. points")) +(unit-info "typogr. picas" + (factor 6.0225) + (digits 1) + (symbol "tpc") + (abbreviation "tpc") + (singular "typogr. pica") + (plural "typogr. picas")) + +# end of units diff --git a/.config/GIMP/2.99/action-history b/.config/GIMP/2.99/action-history new file mode 100644 index 000000000..3e5902c33 --- /dev/null +++ b/.config/GIMP/2.99/action-history @@ -0,0 +1,4 @@ +# GIMP action-history + + +# end of action-history diff --git a/.config/GIMP/2.99/colorrc b/.config/GIMP/2.99/colorrc new file mode 100644 index 000000000..55bd1267e --- /dev/null +++ b/.config/GIMP/2.99/colorrc @@ -0,0 +1,7 @@ +# GIMP colorrc +# +# This file holds a list of recently used colors. + +(color-history) + +# end of colorrc diff --git a/.config/GIMP/2.99/contextrc b/.config/GIMP/2.99/contextrc new file mode 100644 index 000000000..bf399acdf --- /dev/null +++ b/.config/GIMP/2.99/contextrc @@ -0,0 +1,14 @@ +# GIMP user context + +(tool "gimp-paintbrush-tool") +(paint-info "gimp-paintbrush") +(brush "2. Hardness 050") +(dynamics "Pressure Size") +(mybrush "100% Opaque") +(pattern "Pine") +(gradient "FG to BG (RGB)") +(palette "Colour History") +(font "Sans-serif") +(tool-preset "Virtual core pointer") + +# end of user context diff --git a/.config/GIMP/2.99/controllerrc b/.config/GIMP/2.99/controllerrc new file mode 100644 index 000000000..826f9386f --- /dev/null +++ b/.config/GIMP/2.99/controllerrc @@ -0,0 +1,40 @@ +# GIMP controllerrc +# +# This file will be entirely rewritten each time you exit. + +(GimpControllerInfo "Main Mouse Wheel" + (icon-name "gimp-controller-wheel") + (enabled yes) + (debug-events no) + (controller "GimpControllerWheel") + (mapping + (map "scroll-down-shift-primary" "tools-aspect-decrease") + (map "scroll-up-shift-alt" "tools-angle-increase") + (map "scroll-down-shift-alt" "tools-angle-decrease") + (map "scroll-up-shift-primary" "tools-aspect-increase") + (map "scroll-up-shift-primary-alt" "tools-spacing-increase") + (map "scroll-down-shift-primary-alt" "tools-spacing-decrease") + (map "scroll-down-alt" "tools-opacity-decrease") + (map "scroll-up-primary-alt" "tools-size-increase") + (map "scroll-down-primary-alt" "tools-size-decrease") + (map "scroll-up-alt" "tools-opacity-increase"))) +(GimpControllerInfo "Main Keyboard" + (icon-name "gimp-controller-keyboard") + (enabled yes) + (debug-events no) + (controller "GimpControllerKeyboard") + (mapping + (map "cursor-right-alt" "tools-size-increase") + (map "cursor-left-shift" "view-scroll-page-left") + (map "cursor-right-shift" "view-scroll-page-right") + (map "cursor-up-shift" "view-scroll-page-up") + (map "cursor-up-primary" "view-scroll-top-border") + (map "cursor-down-primary" "view-scroll-bottom-border") + (map "cursor-up-alt" "tools-size-increase-skip") + (map "cursor-left-alt" "tools-size-decrease") + (map "cursor-down-shift" "view-scroll-page-down") + (map "cursor-right-primary" "view-scroll-right-border") + (map "cursor-left-primary" "view-scroll-left-border") + (map "cursor-down-alt" "tools-size-decrease-skip"))) + +# end of controllerrc diff --git a/.config/GIMP/2.99/devicerc b/.config/GIMP/2.99/devicerc new file mode 100644 index 000000000..8a497a83b --- /dev/null +++ b/.config/GIMP/2.99/devicerc @@ -0,0 +1,177 @@ +# GIMP devicerc + +(GimpDeviceInfo "Virtual core pointer" + (icon-name "gimp-cursor") + (name "Virtual core pointer") + (tool-options "GimpPaintOptions" + (tool "gimp-paintbrush-tool") + (brush "2. Hardness 050") + (dynamics "Pressure Size") + (gradient "FG to BG (RGB)") + (palette "Colour History") + (brush-size 51) + (brush-hardness 0.5)) + (use-fg-bg yes) + (use-opacity-paint-mode no) + (use-brush yes) + (use-dynamics yes) + (use-mypaint-brush no) + (use-gradient yes) + (use-pattern no) + (use-palette yes) + (use-font no) + (mode screen) + (axes 4 ignore ignore ignore ignore) + (keys 0) + (pressure-curve + (curve-type smooth) + (points 0) + (point-types 0) + (n-samples 256) + (samples 256 0 0.0039215686274509803 0.0078431372549019607 0.011764705882352941 0.015686274509803921 0.019607843137254902 0.023529411764705882 0.027450980392156862 0.031372549019607843 0.035294117647058823 0.039215686274509803 0.043137254901960784 0.047058823529411764 0.050980392156862744 0.054901960784313725 0.058823529411764705 0.062745098039215685 0.066666666666666666 0.070588235294117646 0.074509803921568626 0.078431372549019607 0.082352941176470587 0.086274509803921567 0.090196078431372548 0.094117647058823528 0.098039215686274508 0.10196078431372549 0.10588235294117647 0.10980392156862745 0.11372549019607843 0.11764705882352941 0.12156862745098039 0.12549019607843137 0.12941176470588237 0.13333333333333333 0.13725490196078433 0.14117647058823529 0.14509803921568629 0.14901960784313725 0.15294117647058825 0.15686274509803921 0.16078431372549021 0.16470588235294117 0.16862745098039217 0.17254901960784313 0.17647058823529413 0.1803921568627451 0.18431372549019609 0.18823529411764706 0.19215686274509805 0.19607843137254902 0.20000000000000001 0.20392156862745098 0.20784313725490197 0.21176470588235294 0.21568627450980393 0.2196078431372549 0.22352941176470589 0.22745098039215686 0.23137254901960785 0.23529411764705882 0.23921568627450981 0.24313725490196078 0.24705882352941178 0.25098039215686274 0.25490196078431371 0.25882352941176473 0.2627450980392157 0.26666666666666666 0.27058823529411763 0.27450980392156865 0.27843137254901962 0.28235294117647058 0.28627450980392155 0.29019607843137257 0.29411764705882354 0.29803921568627451 0.30196078431372547 0.30588235294117649 0.30980392156862746 0.31372549019607843 0.31764705882352939 0.32156862745098042 0.32549019607843138 0.32941176470588235 0.33333333333333331 0.33725490196078434 0.3411764705882353 0.34509803921568627 0.34901960784313724 0.35294117647058826 0.35686274509803922 0.36078431372549019 0.36470588235294116 0.36862745098039218 0.37254901960784315 0.37647058823529411 0.38039215686274508 0.3843137254901961 0.38823529411764707 0.39215686274509803 0.396078431372549 0.40000000000000002 0.40392156862745099 0.40784313725490196 0.41176470588235292 0.41568627450980394 0.41960784313725491 0.42352941176470588 0.42745098039215684 0.43137254901960786 0.43529411764705883 0.4392156862745098 0.44313725490196076 0.44705882352941179 0.45098039215686275 0.45490196078431372 0.45882352941176469 0.46274509803921571 0.46666666666666667 0.47058823529411764 0.47450980392156861 0.47843137254901963 0.4823529411764706 0.48627450980392156 0.49019607843137253 0.49411764705882355 0.49803921568627452 0.50196078431372548 0.50588235294117645 0.50980392156862742 0.51372549019607838 0.51764705882352946 0.52156862745098043 0.52549019607843139 0.52941176470588236 0.53333333333333333 0.53725490196078429 0.54117647058823526 0.54509803921568623 0.5490196078431373 0.55294117647058827 0.55686274509803924 0.5607843137254902 0.56470588235294117 0.56862745098039214 0.5725490196078431 0.57647058823529407 0.58039215686274515 0.58431372549019611 0.58823529411764708 0.59215686274509804 0.59607843137254901 0.59999999999999998 0.60392156862745094 0.60784313725490191 0.61176470588235299 0.61568627450980395 0.61960784313725492 0.62352941176470589 0.62745098039215685 0.63137254901960782 0.63529411764705879 0.63921568627450975 0.64313725490196083 0.6470588235294118 0.65098039215686276 0.65490196078431373 0.6588235294117647 0.66274509803921566 0.66666666666666663 0.6705882352941176 0.67450980392156867 0.67843137254901964 0.68235294117647061 0.68627450980392157 0.69019607843137254 0.69411764705882351 0.69803921568627447 0.70196078431372544 0.70588235294117652 0.70980392156862748 0.71372549019607845 0.71764705882352942 0.72156862745098038 0.72549019607843135 0.72941176470588232 0.73333333333333328 0.73725490196078436 0.74117647058823533 0.74509803921568629 0.74901960784313726 0.75294117647058822 0.75686274509803919 0.76078431372549016 0.76470588235294112 0.7686274509803922 0.77254901960784317 0.77647058823529413 0.7803921568627451 0.78431372549019607 0.78823529411764703 0.792156862745098 0.79607843137254897 0.80000000000000004 0.80392156862745101 0.80784313725490198 0.81176470588235294 0.81568627450980391 0.81960784313725488 0.82352941176470584 0.82745098039215681 0.83137254901960789 0.83529411764705885 0.83921568627450982 0.84313725490196079 0.84705882352941175 0.85098039215686272 0.85490196078431369 0.85882352941176465 0.86274509803921573 0.8666666666666667 0.87058823529411766 0.87450980392156863 0.8784313725490196 0.88235294117647056 0.88627450980392153 0.8901960784313725 0.89411764705882357 0.89803921568627454 0.90196078431372551 0.90588235294117647 0.90980392156862744 0.9137254901960784 0.91764705882352937 0.92156862745098034 0.92549019607843142 0.92941176470588238 0.93333333333333335 0.93725490196078431 0.94117647058823528 0.94509803921568625 0.94901960784313721 0.95294117647058818 0.95686274509803926 0.96078431372549022 0.96470588235294119 0.96862745098039216 0.97254901960784312 0.97647058823529409 0.98039215686274506 0.98431372549019602 0.9882352941176471 0.99215686274509807 0.99607843137254903 1))) +(GimpDeviceInfo "ckb1: CORSAIR K68 RGB Mechanical Gaming Keyboard vM" + (name "ckb1: CORSAIR K68 RGB Mechanical Gaming Keyboard vM") + (tool-options "GimpPaintOptions" + (tool "gimp-paintbrush-tool") + (brush "2. Hardness 050") + (dynamics "Pressure Size") + (gradient "FG to BG (RGB)") + (palette "Colour History") + (brush-size 51) + (brush-hardness 0.5)) + (use-fg-bg yes) + (use-opacity-paint-mode no) + (use-brush yes) + (use-dynamics yes) + (use-mypaint-brush no) + (use-gradient yes) + (use-pattern no) + (use-palette yes) + (use-font no) + (mode disabled) + (axes 4 ignore ignore ignore ignore) + (keys 0) + (pressure-curve + (curve-type smooth) + (points 0) + (point-types 0) + (n-samples 256) + (samples 256 0 0.0039215686274509803 0.0078431372549019607 0.011764705882352941 0.015686274509803921 0.019607843137254902 0.023529411764705882 0.027450980392156862 0.031372549019607843 0.035294117647058823 0.039215686274509803 0.043137254901960784 0.047058823529411764 0.050980392156862744 0.054901960784313725 0.058823529411764705 0.062745098039215685 0.066666666666666666 0.070588235294117646 0.074509803921568626 0.078431372549019607 0.082352941176470587 0.086274509803921567 0.090196078431372548 0.094117647058823528 0.098039215686274508 0.10196078431372549 0.10588235294117647 0.10980392156862745 0.11372549019607843 0.11764705882352941 0.12156862745098039 0.12549019607843137 0.12941176470588237 0.13333333333333333 0.13725490196078433 0.14117647058823529 0.14509803921568629 0.14901960784313725 0.15294117647058825 0.15686274509803921 0.16078431372549021 0.16470588235294117 0.16862745098039217 0.17254901960784313 0.17647058823529413 0.1803921568627451 0.18431372549019609 0.18823529411764706 0.19215686274509805 0.19607843137254902 0.20000000000000001 0.20392156862745098 0.20784313725490197 0.21176470588235294 0.21568627450980393 0.2196078431372549 0.22352941176470589 0.22745098039215686 0.23137254901960785 0.23529411764705882 0.23921568627450981 0.24313725490196078 0.24705882352941178 0.25098039215686274 0.25490196078431371 0.25882352941176473 0.2627450980392157 0.26666666666666666 0.27058823529411763 0.27450980392156865 0.27843137254901962 0.28235294117647058 0.28627450980392155 0.29019607843137257 0.29411764705882354 0.29803921568627451 0.30196078431372547 0.30588235294117649 0.30980392156862746 0.31372549019607843 0.31764705882352939 0.32156862745098042 0.32549019607843138 0.32941176470588235 0.33333333333333331 0.33725490196078434 0.3411764705882353 0.34509803921568627 0.34901960784313724 0.35294117647058826 0.35686274509803922 0.36078431372549019 0.36470588235294116 0.36862745098039218 0.37254901960784315 0.37647058823529411 0.38039215686274508 0.3843137254901961 0.38823529411764707 0.39215686274509803 0.396078431372549 0.40000000000000002 0.40392156862745099 0.40784313725490196 0.41176470588235292 0.41568627450980394 0.41960784313725491 0.42352941176470588 0.42745098039215684 0.43137254901960786 0.43529411764705883 0.4392156862745098 0.44313725490196076 0.44705882352941179 0.45098039215686275 0.45490196078431372 0.45882352941176469 0.46274509803921571 0.46666666666666667 0.47058823529411764 0.47450980392156861 0.47843137254901963 0.4823529411764706 0.48627450980392156 0.49019607843137253 0.49411764705882355 0.49803921568627452 0.50196078431372548 0.50588235294117645 0.50980392156862742 0.51372549019607838 0.51764705882352946 0.52156862745098043 0.52549019607843139 0.52941176470588236 0.53333333333333333 0.53725490196078429 0.54117647058823526 0.54509803921568623 0.5490196078431373 0.55294117647058827 0.55686274509803924 0.5607843137254902 0.56470588235294117 0.56862745098039214 0.5725490196078431 0.57647058823529407 0.58039215686274515 0.58431372549019611 0.58823529411764708 0.59215686274509804 0.59607843137254901 0.59999999999999998 0.60392156862745094 0.60784313725490191 0.61176470588235299 0.61568627450980395 0.61960784313725492 0.62352941176470589 0.62745098039215685 0.63137254901960782 0.63529411764705879 0.63921568627450975 0.64313725490196083 0.6470588235294118 0.65098039215686276 0.65490196078431373 0.6588235294117647 0.66274509803921566 0.66666666666666663 0.6705882352941176 0.67450980392156867 0.67843137254901964 0.68235294117647061 0.68627450980392157 0.69019607843137254 0.69411764705882351 0.69803921568627447 0.70196078431372544 0.70588235294117652 0.70980392156862748 0.71372549019607845 0.71764705882352942 0.72156862745098038 0.72549019607843135 0.72941176470588232 0.73333333333333328 0.73725490196078436 0.74117647058823533 0.74509803921568629 0.74901960784313726 0.75294117647058822 0.75686274509803919 0.76078431372549016 0.76470588235294112 0.7686274509803922 0.77254901960784317 0.77647058823529413 0.7803921568627451 0.78431372549019607 0.78823529411764703 0.792156862745098 0.79607843137254897 0.80000000000000004 0.80392156862745101 0.80784313725490198 0.81176470588235294 0.81568627450980391 0.81960784313725488 0.82352941176470584 0.82745098039215681 0.83137254901960789 0.83529411764705885 0.83921568627450982 0.84313725490196079 0.84705882352941175 0.85098039215686272 0.85490196078431369 0.85882352941176465 0.86274509803921573 0.8666666666666667 0.87058823529411766 0.87450980392156863 0.8784313725490196 0.88235294117647056 0.88627450980392153 0.8901960784313725 0.89411764705882357 0.89803921568627454 0.90196078431372551 0.90588235294117647 0.90980392156862744 0.9137254901960784 0.91764705882352937 0.92156862745098034 0.92549019607843142 0.92941176470588238 0.93333333333333335 0.93725490196078431 0.94117647058823528 0.94509803921568625 0.94901960784313721 0.95294117647058818 0.95686274509803926 0.96078431372549022 0.96470588235294119 0.96862745098039216 0.97254901960784312 0.97647058823529409 0.98039215686274506 0.98431372549019602 0.9882352941176471 0.99215686274509807 0.99607843137254903 1))) +(GimpDeviceInfo "Logitech G502 HERO Gaming Mouse" + (icon-name "gimp-cursor") + (name "Logitech G502 HERO Gaming Mouse") + (tool-options "GimpPaintOptions" + (tool "gimp-paintbrush-tool") + (brush "2. Hardness 050") + (dynamics "Pressure Size") + (gradient "FG to BG (RGB)") + (palette "Colour History") + (brush-size 51) + (brush-hardness 0.5)) + (use-fg-bg yes) + (use-opacity-paint-mode no) + (use-brush yes) + (use-dynamics yes) + (use-mypaint-brush no) + (use-gradient yes) + (use-pattern no) + (use-palette yes) + (use-font no) + (mode disabled) + (axes 4 ignore ignore ignore ignore) + (keys 0) + (pressure-curve + (curve-type smooth) + (points 0) + (point-types 0) + (n-samples 256) + (samples 256 0 0.0039215686274509803 0.0078431372549019607 0.011764705882352941 0.015686274509803921 0.019607843137254902 0.023529411764705882 0.027450980392156862 0.031372549019607843 0.035294117647058823 0.039215686274509803 0.043137254901960784 0.047058823529411764 0.050980392156862744 0.054901960784313725 0.058823529411764705 0.062745098039215685 0.066666666666666666 0.070588235294117646 0.074509803921568626 0.078431372549019607 0.082352941176470587 0.086274509803921567 0.090196078431372548 0.094117647058823528 0.098039215686274508 0.10196078431372549 0.10588235294117647 0.10980392156862745 0.11372549019607843 0.11764705882352941 0.12156862745098039 0.12549019607843137 0.12941176470588237 0.13333333333333333 0.13725490196078433 0.14117647058823529 0.14509803921568629 0.14901960784313725 0.15294117647058825 0.15686274509803921 0.16078431372549021 0.16470588235294117 0.16862745098039217 0.17254901960784313 0.17647058823529413 0.1803921568627451 0.18431372549019609 0.18823529411764706 0.19215686274509805 0.19607843137254902 0.20000000000000001 0.20392156862745098 0.20784313725490197 0.21176470588235294 0.21568627450980393 0.2196078431372549 0.22352941176470589 0.22745098039215686 0.23137254901960785 0.23529411764705882 0.23921568627450981 0.24313725490196078 0.24705882352941178 0.25098039215686274 0.25490196078431371 0.25882352941176473 0.2627450980392157 0.26666666666666666 0.27058823529411763 0.27450980392156865 0.27843137254901962 0.28235294117647058 0.28627450980392155 0.29019607843137257 0.29411764705882354 0.29803921568627451 0.30196078431372547 0.30588235294117649 0.30980392156862746 0.31372549019607843 0.31764705882352939 0.32156862745098042 0.32549019607843138 0.32941176470588235 0.33333333333333331 0.33725490196078434 0.3411764705882353 0.34509803921568627 0.34901960784313724 0.35294117647058826 0.35686274509803922 0.36078431372549019 0.36470588235294116 0.36862745098039218 0.37254901960784315 0.37647058823529411 0.38039215686274508 0.3843137254901961 0.38823529411764707 0.39215686274509803 0.396078431372549 0.40000000000000002 0.40392156862745099 0.40784313725490196 0.41176470588235292 0.41568627450980394 0.41960784313725491 0.42352941176470588 0.42745098039215684 0.43137254901960786 0.43529411764705883 0.4392156862745098 0.44313725490196076 0.44705882352941179 0.45098039215686275 0.45490196078431372 0.45882352941176469 0.46274509803921571 0.46666666666666667 0.47058823529411764 0.47450980392156861 0.47843137254901963 0.4823529411764706 0.48627450980392156 0.49019607843137253 0.49411764705882355 0.49803921568627452 0.50196078431372548 0.50588235294117645 0.50980392156862742 0.51372549019607838 0.51764705882352946 0.52156862745098043 0.52549019607843139 0.52941176470588236 0.53333333333333333 0.53725490196078429 0.54117647058823526 0.54509803921568623 0.5490196078431373 0.55294117647058827 0.55686274509803924 0.5607843137254902 0.56470588235294117 0.56862745098039214 0.5725490196078431 0.57647058823529407 0.58039215686274515 0.58431372549019611 0.58823529411764708 0.59215686274509804 0.59607843137254901 0.59999999999999998 0.60392156862745094 0.60784313725490191 0.61176470588235299 0.61568627450980395 0.61960784313725492 0.62352941176470589 0.62745098039215685 0.63137254901960782 0.63529411764705879 0.63921568627450975 0.64313725490196083 0.6470588235294118 0.65098039215686276 0.65490196078431373 0.6588235294117647 0.66274509803921566 0.66666666666666663 0.6705882352941176 0.67450980392156867 0.67843137254901964 0.68235294117647061 0.68627450980392157 0.69019607843137254 0.69411764705882351 0.69803921568627447 0.70196078431372544 0.70588235294117652 0.70980392156862748 0.71372549019607845 0.71764705882352942 0.72156862745098038 0.72549019607843135 0.72941176470588232 0.73333333333333328 0.73725490196078436 0.74117647058823533 0.74509803921568629 0.74901960784313726 0.75294117647058822 0.75686274509803919 0.76078431372549016 0.76470588235294112 0.7686274509803922 0.77254901960784317 0.77647058823529413 0.7803921568627451 0.78431372549019607 0.78823529411764703 0.792156862745098 0.79607843137254897 0.80000000000000004 0.80392156862745101 0.80784313725490198 0.81176470588235294 0.81568627450980391 0.81960784313725488 0.82352941176470584 0.82745098039215681 0.83137254901960789 0.83529411764705885 0.83921568627450982 0.84313725490196079 0.84705882352941175 0.85098039215686272 0.85490196078431369 0.85882352941176465 0.86274509803921573 0.8666666666666667 0.87058823529411766 0.87450980392156863 0.8784313725490196 0.88235294117647056 0.88627450980392153 0.8901960784313725 0.89411764705882357 0.89803921568627454 0.90196078431372551 0.90588235294117647 0.90980392156862744 0.9137254901960784 0.91764705882352937 0.92156862745098034 0.92549019607843142 0.92941176470588238 0.93333333333333335 0.93725490196078431 0.94117647058823528 0.94509803921568625 0.94901960784313721 0.95294117647058818 0.95686274509803926 0.96078431372549022 0.96470588235294119 0.96862745098039216 0.97254901960784312 0.97647058823529409 0.98039215686274506 0.98431372549019602 0.9882352941176471 0.99215686274509807 0.99607843137254903 1))) +(GimpDeviceInfo "Logitech G502 HERO Gaming Mouse Consumer Control" + (icon-name "gimp-cursor") + (name "Logitech G502 HERO Gaming Mouse Consumer Control") + (tool-options "GimpPaintOptions" + (tool "gimp-paintbrush-tool") + (brush "2. Hardness 050") + (dynamics "Pressure Size") + (gradient "FG to BG (RGB)") + (palette "Colour History") + (brush-size 51) + (brush-hardness 0.5)) + (use-fg-bg yes) + (use-opacity-paint-mode no) + (use-brush yes) + (use-dynamics yes) + (use-mypaint-brush no) + (use-gradient yes) + (use-pattern no) + (use-palette yes) + (use-font no) + (mode disabled) + (axes 4 ignore ignore ignore ignore) + (keys 0) + (pressure-curve + (curve-type smooth) + (points 0) + (point-types 0) + (n-samples 256) + (samples 256 0 0.0039215686274509803 0.0078431372549019607 0.011764705882352941 0.015686274509803921 0.019607843137254902 0.023529411764705882 0.027450980392156862 0.031372549019607843 0.035294117647058823 0.039215686274509803 0.043137254901960784 0.047058823529411764 0.050980392156862744 0.054901960784313725 0.058823529411764705 0.062745098039215685 0.066666666666666666 0.070588235294117646 0.074509803921568626 0.078431372549019607 0.082352941176470587 0.086274509803921567 0.090196078431372548 0.094117647058823528 0.098039215686274508 0.10196078431372549 0.10588235294117647 0.10980392156862745 0.11372549019607843 0.11764705882352941 0.12156862745098039 0.12549019607843137 0.12941176470588237 0.13333333333333333 0.13725490196078433 0.14117647058823529 0.14509803921568629 0.14901960784313725 0.15294117647058825 0.15686274509803921 0.16078431372549021 0.16470588235294117 0.16862745098039217 0.17254901960784313 0.17647058823529413 0.1803921568627451 0.18431372549019609 0.18823529411764706 0.19215686274509805 0.19607843137254902 0.20000000000000001 0.20392156862745098 0.20784313725490197 0.21176470588235294 0.21568627450980393 0.2196078431372549 0.22352941176470589 0.22745098039215686 0.23137254901960785 0.23529411764705882 0.23921568627450981 0.24313725490196078 0.24705882352941178 0.25098039215686274 0.25490196078431371 0.25882352941176473 0.2627450980392157 0.26666666666666666 0.27058823529411763 0.27450980392156865 0.27843137254901962 0.28235294117647058 0.28627450980392155 0.29019607843137257 0.29411764705882354 0.29803921568627451 0.30196078431372547 0.30588235294117649 0.30980392156862746 0.31372549019607843 0.31764705882352939 0.32156862745098042 0.32549019607843138 0.32941176470588235 0.33333333333333331 0.33725490196078434 0.3411764705882353 0.34509803921568627 0.34901960784313724 0.35294117647058826 0.35686274509803922 0.36078431372549019 0.36470588235294116 0.36862745098039218 0.37254901960784315 0.37647058823529411 0.38039215686274508 0.3843137254901961 0.38823529411764707 0.39215686274509803 0.396078431372549 0.40000000000000002 0.40392156862745099 0.40784313725490196 0.41176470588235292 0.41568627450980394 0.41960784313725491 0.42352941176470588 0.42745098039215684 0.43137254901960786 0.43529411764705883 0.4392156862745098 0.44313725490196076 0.44705882352941179 0.45098039215686275 0.45490196078431372 0.45882352941176469 0.46274509803921571 0.46666666666666667 0.47058823529411764 0.47450980392156861 0.47843137254901963 0.4823529411764706 0.48627450980392156 0.49019607843137253 0.49411764705882355 0.49803921568627452 0.50196078431372548 0.50588235294117645 0.50980392156862742 0.51372549019607838 0.51764705882352946 0.52156862745098043 0.52549019607843139 0.52941176470588236 0.53333333333333333 0.53725490196078429 0.54117647058823526 0.54509803921568623 0.5490196078431373 0.55294117647058827 0.55686274509803924 0.5607843137254902 0.56470588235294117 0.56862745098039214 0.5725490196078431 0.57647058823529407 0.58039215686274515 0.58431372549019611 0.58823529411764708 0.59215686274509804 0.59607843137254901 0.59999999999999998 0.60392156862745094 0.60784313725490191 0.61176470588235299 0.61568627450980395 0.61960784313725492 0.62352941176470589 0.62745098039215685 0.63137254901960782 0.63529411764705879 0.63921568627450975 0.64313725490196083 0.6470588235294118 0.65098039215686276 0.65490196078431373 0.6588235294117647 0.66274509803921566 0.66666666666666663 0.6705882352941176 0.67450980392156867 0.67843137254901964 0.68235294117647061 0.68627450980392157 0.69019607843137254 0.69411764705882351 0.69803921568627447 0.70196078431372544 0.70588235294117652 0.70980392156862748 0.71372549019607845 0.71764705882352942 0.72156862745098038 0.72549019607843135 0.72941176470588232 0.73333333333333328 0.73725490196078436 0.74117647058823533 0.74509803921568629 0.74901960784313726 0.75294117647058822 0.75686274509803919 0.76078431372549016 0.76470588235294112 0.7686274509803922 0.77254901960784317 0.77647058823529413 0.7803921568627451 0.78431372549019607 0.78823529411764703 0.792156862745098 0.79607843137254897 0.80000000000000004 0.80392156862745101 0.80784313725490198 0.81176470588235294 0.81568627450980391 0.81960784313725488 0.82352941176470584 0.82745098039215681 0.83137254901960789 0.83529411764705885 0.83921568627450982 0.84313725490196079 0.84705882352941175 0.85098039215686272 0.85490196078431369 0.85882352941176465 0.86274509803921573 0.8666666666666667 0.87058823529411766 0.87450980392156863 0.8784313725490196 0.88235294117647056 0.88627450980392153 0.8901960784313725 0.89411764705882357 0.89803921568627454 0.90196078431372551 0.90588235294117647 0.90980392156862744 0.9137254901960784 0.91764705882352937 0.92156862745098034 0.92549019607843142 0.92941176470588238 0.93333333333333335 0.93725490196078431 0.94117647058823528 0.94509803921568625 0.94901960784313721 0.95294117647058818 0.95686274509803926 0.96078431372549022 0.96470588235294119 0.96862745098039216 0.97254901960784312 0.97647058823529409 0.98039215686274506 0.98431372549019602 0.9882352941176471 0.99215686274509807 0.99607843137254903 1))) +(GimpDeviceInfo "MSFT0001:01 04F3:3140 Mouse" + (icon-name "gimp-cursor") + (name "MSFT0001:01 04F3:3140 Mouse") + (tool-options "GimpPaintOptions" + (tool "gimp-paintbrush-tool") + (brush "2. Hardness 050") + (dynamics "Pressure Size") + (gradient "FG to BG (RGB)") + (palette "Colour History") + (brush-size 51) + (brush-hardness 0.5)) + (use-fg-bg yes) + (use-opacity-paint-mode no) + (use-brush yes) + (use-dynamics yes) + (use-mypaint-brush no) + (use-gradient yes) + (use-pattern no) + (use-palette yes) + (use-font no) + (mode disabled) + (axes 4 ignore ignore ignore ignore) + (keys 0) + (pressure-curve + (curve-type smooth) + (points 0) + (point-types 0) + (n-samples 256) + (samples 256 0 0.0039215686274509803 0.0078431372549019607 0.011764705882352941 0.015686274509803921 0.019607843137254902 0.023529411764705882 0.027450980392156862 0.031372549019607843 0.035294117647058823 0.039215686274509803 0.043137254901960784 0.047058823529411764 0.050980392156862744 0.054901960784313725 0.058823529411764705 0.062745098039215685 0.066666666666666666 0.070588235294117646 0.074509803921568626 0.078431372549019607 0.082352941176470587 0.086274509803921567 0.090196078431372548 0.094117647058823528 0.098039215686274508 0.10196078431372549 0.10588235294117647 0.10980392156862745 0.11372549019607843 0.11764705882352941 0.12156862745098039 0.12549019607843137 0.12941176470588237 0.13333333333333333 0.13725490196078433 0.14117647058823529 0.14509803921568629 0.14901960784313725 0.15294117647058825 0.15686274509803921 0.16078431372549021 0.16470588235294117 0.16862745098039217 0.17254901960784313 0.17647058823529413 0.1803921568627451 0.18431372549019609 0.18823529411764706 0.19215686274509805 0.19607843137254902 0.20000000000000001 0.20392156862745098 0.20784313725490197 0.21176470588235294 0.21568627450980393 0.2196078431372549 0.22352941176470589 0.22745098039215686 0.23137254901960785 0.23529411764705882 0.23921568627450981 0.24313725490196078 0.24705882352941178 0.25098039215686274 0.25490196078431371 0.25882352941176473 0.2627450980392157 0.26666666666666666 0.27058823529411763 0.27450980392156865 0.27843137254901962 0.28235294117647058 0.28627450980392155 0.29019607843137257 0.29411764705882354 0.29803921568627451 0.30196078431372547 0.30588235294117649 0.30980392156862746 0.31372549019607843 0.31764705882352939 0.32156862745098042 0.32549019607843138 0.32941176470588235 0.33333333333333331 0.33725490196078434 0.3411764705882353 0.34509803921568627 0.34901960784313724 0.35294117647058826 0.35686274509803922 0.36078431372549019 0.36470588235294116 0.36862745098039218 0.37254901960784315 0.37647058823529411 0.38039215686274508 0.3843137254901961 0.38823529411764707 0.39215686274509803 0.396078431372549 0.40000000000000002 0.40392156862745099 0.40784313725490196 0.41176470588235292 0.41568627450980394 0.41960784313725491 0.42352941176470588 0.42745098039215684 0.43137254901960786 0.43529411764705883 0.4392156862745098 0.44313725490196076 0.44705882352941179 0.45098039215686275 0.45490196078431372 0.45882352941176469 0.46274509803921571 0.46666666666666667 0.47058823529411764 0.47450980392156861 0.47843137254901963 0.4823529411764706 0.48627450980392156 0.49019607843137253 0.49411764705882355 0.49803921568627452 0.50196078431372548 0.50588235294117645 0.50980392156862742 0.51372549019607838 0.51764705882352946 0.52156862745098043 0.52549019607843139 0.52941176470588236 0.53333333333333333 0.53725490196078429 0.54117647058823526 0.54509803921568623 0.5490196078431373 0.55294117647058827 0.55686274509803924 0.5607843137254902 0.56470588235294117 0.56862745098039214 0.5725490196078431 0.57647058823529407 0.58039215686274515 0.58431372549019611 0.58823529411764708 0.59215686274509804 0.59607843137254901 0.59999999999999998 0.60392156862745094 0.60784313725490191 0.61176470588235299 0.61568627450980395 0.61960784313725492 0.62352941176470589 0.62745098039215685 0.63137254901960782 0.63529411764705879 0.63921568627450975 0.64313725490196083 0.6470588235294118 0.65098039215686276 0.65490196078431373 0.6588235294117647 0.66274509803921566 0.66666666666666663 0.6705882352941176 0.67450980392156867 0.67843137254901964 0.68235294117647061 0.68627450980392157 0.69019607843137254 0.69411764705882351 0.69803921568627447 0.70196078431372544 0.70588235294117652 0.70980392156862748 0.71372549019607845 0.71764705882352942 0.72156862745098038 0.72549019607843135 0.72941176470588232 0.73333333333333328 0.73725490196078436 0.74117647058823533 0.74509803921568629 0.74901960784313726 0.75294117647058822 0.75686274509803919 0.76078431372549016 0.76470588235294112 0.7686274509803922 0.77254901960784317 0.77647058823529413 0.7803921568627451 0.78431372549019607 0.78823529411764703 0.792156862745098 0.79607843137254897 0.80000000000000004 0.80392156862745101 0.80784313725490198 0.81176470588235294 0.81568627450980391 0.81960784313725488 0.82352941176470584 0.82745098039215681 0.83137254901960789 0.83529411764705885 0.83921568627450982 0.84313725490196079 0.84705882352941175 0.85098039215686272 0.85490196078431369 0.85882352941176465 0.86274509803921573 0.8666666666666667 0.87058823529411766 0.87450980392156863 0.8784313725490196 0.88235294117647056 0.88627450980392153 0.8901960784313725 0.89411764705882357 0.89803921568627454 0.90196078431372551 0.90588235294117647 0.90980392156862744 0.9137254901960784 0.91764705882352937 0.92156862745098034 0.92549019607843142 0.92941176470588238 0.93333333333333335 0.93725490196078431 0.94117647058823528 0.94509803921568625 0.94901960784313721 0.95294117647058818 0.95686274509803926 0.96078431372549022 0.96470588235294119 0.96862745098039216 0.97254901960784312 0.97647058823529409 0.98039215686274506 0.98431372549019602 0.9882352941176471 0.99215686274509807 0.99607843137254903 1))) +(GimpDeviceInfo "Virtual core XTEST pointer" + (icon-name "gimp-cursor") + (name "Virtual core XTEST pointer") + (tool-options "GimpPaintOptions" + (tool "gimp-paintbrush-tool") + (brush "2. Hardness 050") + (dynamics "Pressure Size") + (gradient "FG to BG (RGB)") + (palette "Colour History") + (brush-size 51) + (brush-hardness 0.5)) + (use-fg-bg yes) + (use-opacity-paint-mode no) + (use-brush yes) + (use-dynamics yes) + (use-mypaint-brush no) + (use-gradient yes) + (use-pattern no) + (use-palette yes) + (use-font no) + (mode disabled) + (axes 2 ignore ignore) + (keys 0) + (pressure-curve + (curve-type smooth) + (points 0) + (point-types 0) + (n-samples 256) + (samples 256 0 0.0039215686274509803 0.0078431372549019607 0.011764705882352941 0.015686274509803921 0.019607843137254902 0.023529411764705882 0.027450980392156862 0.031372549019607843 0.035294117647058823 0.039215686274509803 0.043137254901960784 0.047058823529411764 0.050980392156862744 0.054901960784313725 0.058823529411764705 0.062745098039215685 0.066666666666666666 0.070588235294117646 0.074509803921568626 0.078431372549019607 0.082352941176470587 0.086274509803921567 0.090196078431372548 0.094117647058823528 0.098039215686274508 0.10196078431372549 0.10588235294117647 0.10980392156862745 0.11372549019607843 0.11764705882352941 0.12156862745098039 0.12549019607843137 0.12941176470588237 0.13333333333333333 0.13725490196078433 0.14117647058823529 0.14509803921568629 0.14901960784313725 0.15294117647058825 0.15686274509803921 0.16078431372549021 0.16470588235294117 0.16862745098039217 0.17254901960784313 0.17647058823529413 0.1803921568627451 0.18431372549019609 0.18823529411764706 0.19215686274509805 0.19607843137254902 0.20000000000000001 0.20392156862745098 0.20784313725490197 0.21176470588235294 0.21568627450980393 0.2196078431372549 0.22352941176470589 0.22745098039215686 0.23137254901960785 0.23529411764705882 0.23921568627450981 0.24313725490196078 0.24705882352941178 0.25098039215686274 0.25490196078431371 0.25882352941176473 0.2627450980392157 0.26666666666666666 0.27058823529411763 0.27450980392156865 0.27843137254901962 0.28235294117647058 0.28627450980392155 0.29019607843137257 0.29411764705882354 0.29803921568627451 0.30196078431372547 0.30588235294117649 0.30980392156862746 0.31372549019607843 0.31764705882352939 0.32156862745098042 0.32549019607843138 0.32941176470588235 0.33333333333333331 0.33725490196078434 0.3411764705882353 0.34509803921568627 0.34901960784313724 0.35294117647058826 0.35686274509803922 0.36078431372549019 0.36470588235294116 0.36862745098039218 0.37254901960784315 0.37647058823529411 0.38039215686274508 0.3843137254901961 0.38823529411764707 0.39215686274509803 0.396078431372549 0.40000000000000002 0.40392156862745099 0.40784313725490196 0.41176470588235292 0.41568627450980394 0.41960784313725491 0.42352941176470588 0.42745098039215684 0.43137254901960786 0.43529411764705883 0.4392156862745098 0.44313725490196076 0.44705882352941179 0.45098039215686275 0.45490196078431372 0.45882352941176469 0.46274509803921571 0.46666666666666667 0.47058823529411764 0.47450980392156861 0.47843137254901963 0.4823529411764706 0.48627450980392156 0.49019607843137253 0.49411764705882355 0.49803921568627452 0.50196078431372548 0.50588235294117645 0.50980392156862742 0.51372549019607838 0.51764705882352946 0.52156862745098043 0.52549019607843139 0.52941176470588236 0.53333333333333333 0.53725490196078429 0.54117647058823526 0.54509803921568623 0.5490196078431373 0.55294117647058827 0.55686274509803924 0.5607843137254902 0.56470588235294117 0.56862745098039214 0.5725490196078431 0.57647058823529407 0.58039215686274515 0.58431372549019611 0.58823529411764708 0.59215686274509804 0.59607843137254901 0.59999999999999998 0.60392156862745094 0.60784313725490191 0.61176470588235299 0.61568627450980395 0.61960784313725492 0.62352941176470589 0.62745098039215685 0.63137254901960782 0.63529411764705879 0.63921568627450975 0.64313725490196083 0.6470588235294118 0.65098039215686276 0.65490196078431373 0.6588235294117647 0.66274509803921566 0.66666666666666663 0.6705882352941176 0.67450980392156867 0.67843137254901964 0.68235294117647061 0.68627450980392157 0.69019607843137254 0.69411764705882351 0.69803921568627447 0.70196078431372544 0.70588235294117652 0.70980392156862748 0.71372549019607845 0.71764705882352942 0.72156862745098038 0.72549019607843135 0.72941176470588232 0.73333333333333328 0.73725490196078436 0.74117647058823533 0.74509803921568629 0.74901960784313726 0.75294117647058822 0.75686274509803919 0.76078431372549016 0.76470588235294112 0.7686274509803922 0.77254901960784317 0.77647058823529413 0.7803921568627451 0.78431372549019607 0.78823529411764703 0.792156862745098 0.79607843137254897 0.80000000000000004 0.80392156862745101 0.80784313725490198 0.81176470588235294 0.81568627450980391 0.81960784313725488 0.82352941176470584 0.82745098039215681 0.83137254901960789 0.83529411764705885 0.83921568627450982 0.84313725490196079 0.84705882352941175 0.85098039215686272 0.85490196078431369 0.85882352941176465 0.86274509803921573 0.8666666666666667 0.87058823529411766 0.87450980392156863 0.8784313725490196 0.88235294117647056 0.88627450980392153 0.8901960784313725 0.89411764705882357 0.89803921568627454 0.90196078431372551 0.90588235294117647 0.90980392156862744 0.9137254901960784 0.91764705882352937 0.92156862745098034 0.92549019607843142 0.92941176470588238 0.93333333333333335 0.93725490196078431 0.94117647058823528 0.94509803921568625 0.94901960784313721 0.95294117647058818 0.95686274509803926 0.96078431372549022 0.96470588235294119 0.96862745098039216 0.97254901960784312 0.97647058823529409 0.98039215686274506 0.98431372549019602 0.9882352941176471 0.99215686274509807 0.99607843137254903 1))) + +# end of devicerc diff --git a/.config/GIMP/2.99/dockrc b/.config/GIMP/2.99/dockrc new file mode 100644 index 000000000..bb1944be3 --- /dev/null +++ b/.config/GIMP/2.99/dockrc @@ -0,0 +1,4 @@ +# recently closed docks + + +# end of recently closed docks diff --git a/.config/GIMP/2.99/extensionrc b/.config/GIMP/2.99/extensionrc new file mode 100644 index 000000000..072796c23 --- /dev/null +++ b/.config/GIMP/2.99/extensionrc @@ -0,0 +1,6 @@ +# GIMP extensionrc + +(GimpExtension "org.gimp.extension.goat-exercises" + (active yes)) + +# end of extensionrc diff --git a/.config/GIMP/2.99/gimprc b/.config/GIMP/2.99/gimprc new file mode 100644 index 000000000..5fa733d1e --- /dev/null +++ b/.config/GIMP/2.99/gimprc @@ -0,0 +1,34 @@ +# GIMP gimprc +# +# This is your personal gimprc file. Any variable defined in this file takes +# precedence over the value defined in the system-wide gimprc: +# /etc/gimp/2.99/gimprc +# Most values can be set within GIMP by changing some options in the +# Preferences dialog. + +(import-raw-plug-in "${gimp_plug_in_dir}/plug-ins/file-raw-placeholder/file-raw-placeholder") +(check-update-timestamp 1609190702) +(monitor-xresolution 142) +(monitor-yresolution 142) +(fill-options + (style solid) + (antialias yes) + (feather no) + (feather-radius 10)) +(stroke-options + (style solid) + (antialias yes) + (feather no) + (feather-radius 10) + (method line) + (width 6) + (unit pixels) + (cap-style butt) + (join-style miter) + (miter-limit 10) + (dash-offset 0) + (dash-info 0) + (emulate-brush-dynamics no)) + + +# end of gimprc diff --git a/.config/GIMP/2.99/internal-data/custom.ggr b/.config/GIMP/2.99/internal-data/custom.ggr new file mode 100644 index 000000000..cb0e1d43e --- /dev/null +++ b/.config/GIMP/2.99/internal-data/custom.ggr @@ -0,0 +1,4 @@ +GIMP Gradient +Name: Custom +1 +0 0.5 1 0 0 0 1 1 1 1 1 0 0 1 3 diff --git a/.config/GIMP/2.99/menurc b/.config/GIMP/2.99/menurc new file mode 100644 index 000000000..a9c20987b --- /dev/null +++ b/.config/GIMP/2.99/menurc @@ -0,0 +1,1306 @@ +; gimp-2.99 GtkAccelMap rc-file -*- scheme -*- +; this file is an automated accelerator map dump +; +; (gtk_accel_path "/tools/tools-rotate-image-arbitrary" "") +; (gtk_accel_path "/plug-in/plug-in-spyrogimp" "") +; (gtk_accel_path "/plug-in/script-fu-helloworld" "") +; (gtk_accel_path "/file/file-menu" "") +; (gtk_accel_path "/view/view-show-canvas-boundary" "") +; (gtk_accel_path "/tools/tools-opacity-set-to-default" "") +; (gtk_accel_path "/context/context-background-value-decrease" "") +; (gtk_accel_path "/vectors/vectors-color-tag-brown" "") +; (gtk_accel_path "/tools/tools-opacity-increase-skip" "greater") +; (gtk_accel_path "/tools/tools-vector" "b") +; (gtk_accel_path "/view/view-scroll-left" "") +; (gtk_accel_path "/image/image-convert-u8" "") +; (gtk_accel_path "/tools/tools-airbrush-rate-increase" "") +; (gtk_accel_path "/tools/tools-spacing-set-to-default" "") +; (gtk_accel_path "/view/view-show-statusbar" "") +; (gtk_accel_path "/layers/layers-opacity-transparent" "") +; (gtk_accel_path "/vectors/vectors-color-tag-orange" "") +; (gtk_accel_path "/view/view-zoom-8-1-accel" "KP_4") +; (gtk_accel_path "/context/context-background-value-set" "") +; (gtk_accel_path "/context/context-paint-mode-menu" "") +; (gtk_accel_path "/filters/filters-motion-blur-linear" "") +; (gtk_accel_path "/filters/filters-gegl-graph" "") +; (gtk_accel_path "/context/context-brush-select-set" "") +; (gtk_accel_path "/edit/edit-copy" "c") +; (gtk_accel_path "/context/context-brush-shape-circle" "") +; (gtk_accel_path "/windows/windows-display-0001" "") +; (gtk_accel_path "/vectors/vectors-lock-content" "") +; (gtk_accel_path "/context/context-opacity-opaque" "") +; (gtk_accel_path "/view/view-color-management-menu" "") +; (gtk_accel_path "/filters/filters-spherize" "") +; (gtk_accel_path "/plug-in/gradient-save-as-css" "") +; (gtk_accel_path "/channels/channels-new-last-values" "") +; (gtk_accel_path "/vectors/vectors-merge-visible" "") +; (gtk_accel_path "/plug-in/script-fu-slide" "") +; (gtk_accel_path "/plug-in/plug-in-spheredesigner" "") +; (gtk_accel_path "/filters/filters-curves" "") +; (gtk_accel_path "/channels/channels-lock-position" "") +; (gtk_accel_path "/context/context-brush-menu" "") +; (gtk_accel_path "/context/context-foreground-blue-decrease" "") +; (gtk_accel_path "/context/context-colors-menu" "") +; (gtk_accel_path "/edit/edit-undo-clear" "") +; (gtk_accel_path "/context/context-gradient-select-first" "") +; (gtk_accel_path "/layers/layers-color-tag-brown" "") +; (gtk_accel_path "/plug-in/plug-in-imagemap" "") +; (gtk_accel_path "/filters/filters-recent-menu" "") +; (gtk_accel_path "/layers/layers-text-along-vectors" "") +; (gtk_accel_path "/plug-in/plug-in-map-object" "") +; (gtk_accel_path "/dialogs/dialogs-symmetry" "") +; (gtk_accel_path "/view/view-zoom-revert" "grave") +; (gtk_accel_path "/plug-in/plug-in-script-fu-console" "") +; (gtk_accel_path "/view/view-color-management-enable" "") +; (gtk_accel_path "/dialogs/dialogs-extensions" "") +; (gtk_accel_path "/dialogs/dialogs-undo-history" "") +; (gtk_accel_path "/edit/edit-cut" "x") +; (gtk_accel_path "/context/context-foreground-value-increase-skip" "") +; (gtk_accel_path "/plug-in/script-fu-addborder" "") +; (gtk_accel_path "/view/view-display-intent-absolute-colorimetric" "") +; (gtk_accel_path "/context/context-background-red-decrease" "") +; (gtk_accel_path "/tools/tools-airbrush-rate-maximum" "") +; (gtk_accel_path "/vectors/vectors-color-tag-menu" "") +; (gtk_accel_path "/filters/filters-focus-blur" "") +; (gtk_accel_path "/view/view-fullscreen" "F11") +; (gtk_accel_path "/context/context-brush-radius-decrease-skip" "") +; (gtk_accel_path "/dialogs/dialogs-brushes" "b") +; (gtk_accel_path "/tools/tools-spacing-minimum" "") +; (gtk_accel_path "/context/context-foreground-blue-maximum" "") +; (gtk_accel_path "/view/view-zoom-2-1" "2") +; (gtk_accel_path "/view/view-snap-to-vectors" "") +; (gtk_accel_path "/context/context-foreground-red-increase" "") +; (gtk_accel_path "/image/image-properties" "Return") +; (gtk_accel_path "/drawable/drawable-rotate-270" "") +; (gtk_accel_path "/tools/tools-hardness-increase-percent" "") +; (gtk_accel_path "/plug-in/script-fu-predator" "") +; (gtk_accel_path "/filters/filters-plasma" "") +; (gtk_accel_path "/view/view-show-grid" "") +; (gtk_accel_path "/tools/tools-angle-increase" "") +; (gtk_accel_path "/vectors/vectors-color-tag-violet" "") +; (gtk_accel_path "/context/context-background-saturation-decrease-skip" "") +; (gtk_accel_path "/layers/layers-composite-mode-union" "") +; (gtk_accel_path "/channels/channels-color-tag-blue" "") +; (gtk_accel_path "/windows/windows-dialogs-menu" "") +; (gtk_accel_path "/tools/tools-gegl" "") +; (gtk_accel_path "/tool-options/tool-options-reset" "") +; (gtk_accel_path "/layers/layers-delete" "") +; (gtk_accel_path "/view/view-display-intent-menu" "") +; (gtk_accel_path "/vectors/vectors-edit" "") +; (gtk_accel_path "/filters/filters-illusion" "") +; (gtk_accel_path "/context/context-colormap-foreground-previous" "") +; (gtk_accel_path "/layers/layers-lock-content" "") +; (gtk_accel_path "/file/file-create-menu" "") +; (gtk_accel_path "/tools/tools-spacing-decrease-skip" "") +; (gtk_accel_path "/filters/filters-dropshadow" "") +; (gtk_accel_path "/context/context-background-green-increase" "") +; (gtk_accel_path "/layers/layers-alpha-selection-add" "") +; (gtk_accel_path "/plug-in/script-fu-make-brush-rectangular-feathered" "") +; (gtk_accel_path "/patterns/patterns-delete" "") +; (gtk_accel_path "/layers/layers-opacity-opaque" "") +; (gtk_accel_path "/context/context-brush-radius-menu" "") +; (gtk_accel_path "/view/view-scroll-page-right" "") +; (gtk_accel_path "/layers/layers-blend-space-menu" "") +; (gtk_accel_path "/dockable/dialogs-histogram" "") +; (gtk_accel_path "/context/context-background-saturation-increase" "") +; (gtk_accel_path "/image/image-convert-non-linear" "") +; (gtk_accel_path "/dialogs/dialogs-dynamics-editor" "") +; (gtk_accel_path "/layers/layers-composite-space-menu" "") +; (gtk_accel_path "/file/file-revert" "") +; (gtk_accel_path "/filters/filters-fattal-2002" "") +; (gtk_accel_path "/tools/tools-color-average-radius-set" "") +; (gtk_accel_path "/filters/filters-distorts-menu" "") +; (gtk_accel_path "/tools/tools-fuzzy-select" "u") +; (gtk_accel_path "/documents/documents-reload-previews" "") +; (gtk_accel_path "/debug/debug-show-image-graph" "") +; (gtk_accel_path "/brushes/brushes-show-in-file-manager" "") +; (gtk_accel_path "/context/context-brush-angle-maximum" "") +; (gtk_accel_path "/view/view-zoom-selection" "") +; (gtk_accel_path "/tools/tools-cage" "g") +; (gtk_accel_path "/file/file-open-location" "") +; (gtk_accel_path "/plug-in/plug-in-goat-exercise-c" "") +; (gtk_accel_path "/layers/layers-opacity-decrease" "") +; (gtk_accel_path "/context/context-foreground-hue-decrease-skip" "") +; (gtk_accel_path "/layers/layers-mask-add" "") +; (gtk_accel_path "/filters/filters-diffraction-patterns" "") +; (gtk_accel_path "/image/image-convert-rgb" "") +; (gtk_accel_path "/tools/tools-spacing-decrease-percent" "") +; (gtk_accel_path "/context/context-gradient-select-last" "") +; (gtk_accel_path "/file/file-create-template" "") +; (gtk_accel_path "/vectors/vectors-color-tag-yellow" "") +; (gtk_accel_path "/dockable/dockable-view-type-grid" "") +; (gtk_accel_path "/view/view-navigation-window" "") +; (gtk_accel_path "/windows/windows-tabs-position-bottom" "") +; (gtk_accel_path "/context/context-brush-angle-set" "") +; (gtk_accel_path "/documents/documents-raise-or-open" "") +; (gtk_accel_path "/context/context-background-blue-decrease" "") +; (gtk_accel_path "/filters/filters-linear-sinusoid" "") +; (gtk_accel_path "/context/context-foreground-green-set" "") +; (gtk_accel_path "/tools/tools-levels" "") +; (gtk_accel_path "/plug-in/plug-in-script-fu-server" "") +; (gtk_accel_path "/dock/dock-move-to-screen-menu" "") +; (gtk_accel_path "/windows/windows-tabs-position-right" "") +; (gtk_accel_path "/plug-in/script-fu-line-nova" "") +; (gtk_accel_path "/layers/layers-color-tag-blue" "") +; (gtk_accel_path "/dialogs/dialogs-indexed-palette" "") +; (gtk_accel_path "/tools/tools-object-1-set" "") +; (gtk_accel_path "/channels/channels-new" "") +; (gtk_accel_path "/edit/edit-named-paste" "") +; (gtk_accel_path "/tools/tools-hardness-minimum" "") +; (gtk_accel_path "/filters/filters-menu" "") +; (gtk_accel_path "/tools/tools-opacity-set" "") +; (gtk_accel_path "/dockable/dialogs-toolbox" "b") +; (gtk_accel_path "/plug-in/gimp-help-using-fileformats" "") +; (gtk_accel_path "/edit/edit-strong-redo" "y") +; (gtk_accel_path "/filters/filters-alien-map" "") +; (gtk_accel_path "/plug-in/gimp-online-bugs-features" "") +; (gtk_accel_path "/tools/tools-object-2-last" "") +; (gtk_accel_path "/tools/tools-paintbrush-force-set" "") +; (gtk_accel_path "/vectors/vectors-linked" "") +; (gtk_accel_path "/filters/filters-gaussian-blur-selective" "") +; (gtk_accel_path "/filters/filters-unsharp-mask" "") +; (gtk_accel_path "/fonts/fonts-refresh" "") +; (gtk_accel_path "/file/file-open-recent-menu" "") +; (gtk_accel_path "/tools/tools-hardness-decrease" "") +; (gtk_accel_path "/layers/layers-mask-show" "") +; (gtk_accel_path "/view/view-softproof-intent-absolute-colorimetric" "") +; (gtk_accel_path "/brushes/brushes-open-as-image" "") +; (gtk_accel_path "/plug-in/python-fu-palette-offset" "") +; (gtk_accel_path "/tools/tools-angle-decrease" "") +; (gtk_accel_path "/layers/layers-merge-layers-last-values" "") +; (gtk_accel_path "/context/context-background-blue-set" "") +; (gtk_accel_path "/tools/tools-opacity-increase-percent" "") +; (gtk_accel_path "/context/context-background-value-decrease-skip" "") +; (gtk_accel_path "/plug-in/script-fu-spinning-globe" "") +; (gtk_accel_path "/windows/windows-menu" "") +; (gtk_accel_path "/tools/tools-object-1-first" "") +; (gtk_accel_path "/image/image-flip-horizontal" "") +; (gtk_accel_path "/patterns/patterns-new" "") +; (gtk_accel_path "/tools/tools-force-decrease-percent" "") +; (gtk_accel_path "/context/context-brush-hardness-set" "") +; (gtk_accel_path "/select/select-stroke-last-values" "") +; (gtk_accel_path "/filters/filters-long-shadow" "") +; (gtk_accel_path "/context/context-brush-radius-increase-percent" "") +; (gtk_accel_path "/plug-in/plug-in-animationoptimize-diff" "") +; (gtk_accel_path "/tools/tools-perspective-clone" "") +; (gtk_accel_path "/filters/filters-color-temperature" "") +; (gtk_accel_path "/image/colors-auto-menu" "") +; (gtk_accel_path "/vectors/vectors-selection-to-vectors-advanced" "") +; (gtk_accel_path "/context/context-background-saturation-decrease" "") +; (gtk_accel_path "/plug-in/script-fu-unsharp-mask" "") +; (gtk_accel_path "/tools/tools-rect-select" "r") +; (gtk_accel_path "/tools/tools-angle-set-to-default" "") +; (gtk_accel_path "/filters/filters-semi-flatten" "") +; (gtk_accel_path "/tools/tools-opacity-maximum" "") +; (gtk_accel_path "/dockable/dockable-tab-style-preview-name" "") +; (gtk_accel_path "/view/view-zoom-in-skip" "") +; (gtk_accel_path "/tools/tools-airbrush-flow-decrease" "") +; (gtk_accel_path "/plug-in/python-fu-palette-sort" "") +; (gtk_accel_path "/debug/debug-mem-profile" "") +; (gtk_accel_path "/channels/channels-visible" "") +; (gtk_accel_path "/edit/edit-paste-as-new-layer" "") +; (gtk_accel_path "/context/context-foreground-hue-maximum" "") +; (gtk_accel_path "/tool-options/tool-options-restore-preset-menu" "") +; (gtk_accel_path "/dockable/dialogs-undo-history" "") +; (gtk_accel_path "/tools/tools-paintbrush-hardness-set" "") +; (gtk_accel_path "/filters/filters-stretch-contrast" "") +; (gtk_accel_path "/filters/filters-color-to-alpha" "") +; (gtk_accel_path "/context/context-brush-aspect-maximum" "") +; (gtk_accel_path "/dockable/dialogs-templates" "") +; (gtk_accel_path "/plug-in/script-fu-ripply-anim" "") +; (gtk_accel_path "/view/view-show-menubar" "") +; (gtk_accel_path "/filters/filters-web-menu" "") +; (gtk_accel_path "/dockable/dialogs-cursor" "") +; (gtk_accel_path "/filters/filters-exposure" "") +; (gtk_accel_path "/tools/tools-foreground-select-brush-size-set" "") +; (gtk_accel_path "/tools/tools-spacing-increase" "") +; (gtk_accel_path "/context/context-background-hue-decrease-skip" "") +; (gtk_accel_path "/select/select-shrink" "") +; (gtk_accel_path "/view/view-scroll-horizontal" "") +; (gtk_accel_path "/select/select-fill-last-values" "") +; (gtk_accel_path "/image/image-resize-to-selection" "") +; (gtk_accel_path "/filters/filters-bloom" "") +; (gtk_accel_path "/plug-in/script-fu-paste-as-pattern" "") +; (gtk_accel_path "/plug-in/script-fu-tile-blur" "") +; (gtk_accel_path "/tools/tools-paintbrush-aspect-ratio-set" "") +; (gtk_accel_path "/plug-in/plug-in-gfig" "") +; (gtk_accel_path "/context/context-foreground-hue-set" "") +; (gtk_accel_path "/tools/tools-gradient" "g") +; (gtk_accel_path "/select/select-none" "a") +; (gtk_accel_path "/edit/edit-named-cut" "") +; (gtk_accel_path "/context/context-palette-select-set" "") +; (gtk_accel_path "/channels/channels-select-next" "") +; (gtk_accel_path "/image/image-precision-menu" "") +; (gtk_accel_path "/layers/layers-mask-menu" "") +; (gtk_accel_path "/layers/layers-alpha-selection-replace" "") +; (gtk_accel_path "/plug-in/gimp-palette-export-php" "") +; (gtk_accel_path "/filters/filters-noise-hsv" "") +; (gtk_accel_path "/filters/filters-noise-simplex" "") +; (gtk_accel_path "/help/help-help" "F1") +; (gtk_accel_path "/context/context-opacity-increase-skip" "") +; (gtk_accel_path "/view/view-padding-color-light-check" "") +; (gtk_accel_path "/context/context-brush-spikes-minimum" "") +; (gtk_accel_path "/plug-in/plug-in-gflare" "") +; (gtk_accel_path "/context/context-brush-aspect-set" "") +; (gtk_accel_path "/plug-in/plug-in-zealouscrop" "") +; (gtk_accel_path "/dockable/dialogs-gradient-editor" "") +; (gtk_accel_path "/tools/tools-color-menu" "") +; (gtk_accel_path "/tools/tools-airbrush-flow-maximum" "") +; (gtk_accel_path "/view/view-flip-horizontally" "") +; (gtk_accel_path "/layers/layers-composite-mode-auto" "") +; (gtk_accel_path "/plug-in/gimp-online-developer-web-site" "") +; (gtk_accel_path "/dockable/dockable-tab-style-name" "") +; (gtk_accel_path "/vectors/vectors-raise-to-top" "") +; (gtk_accel_path "/view/view-scroll-page-left" "") +; (gtk_accel_path "/tools/tools-threshold" "") +; (gtk_accel_path "/filters/filters-threshold" "") +; (gtk_accel_path "/tools/tools-airbrush-flow-set" "") +; (gtk_accel_path "/context/context-brush-spacing-minimum" "") +; (gtk_accel_path "/layers/layers-select-bottom" "End") +; (gtk_accel_path "/dockable/dockable-tab-style-preview" "") +; (gtk_accel_path "/dockable/dialogs-channels" "") +; (gtk_accel_path "/channels/channels-color-tag-none" "") +; (gtk_accel_path "/tools/tools-paintbrush" "p") +; (gtk_accel_path "/vectors/vectors-stroke-last-values" "") +; (gtk_accel_path "/vectors/vectors-color-tag-gray" "") +; (gtk_accel_path "/context/context-brush-spacing-increase-skip" "") +; (gtk_accel_path "/plug-in/histogram-export" "") +; (gtk_accel_path "/view/view-show-sample-points" "") +; (gtk_accel_path "/documents/documents-remove" "") +; (gtk_accel_path "/plug-in/python-fu-benchmark-foreground-extract" "") +; (gtk_accel_path "/filters/filters-antialias" "") +; (gtk_accel_path "/dockable/dockable-preview-size-medium" "") +; (gtk_accel_path "/dockable/dialogs-colors" "") +; (gtk_accel_path "/view/view-show-all" "") +; (gtk_accel_path "/debug/debug-benchmark-projection" "") +; (gtk_accel_path "/context/context-brush-spikes-decrease" "") +; (gtk_accel_path "/filters/filters-noise-hurl" "") +; (gtk_accel_path "/file/file-save-and-close" "") +; (gtk_accel_path "/dialogs/dialogs-document-history" "") +; (gtk_accel_path "/context/context-opacity-set" "") +; (gtk_accel_path "/plug-in/script-fu-blend-anim" "") +; (gtk_accel_path "/view/view-zoom-in" "plus") +; (gtk_accel_path "/plug-in/plug-in-smooth-palette" "") +; (gtk_accel_path "/context/context-swatch-background-set" "") +; (gtk_accel_path "/windows/windows-tab-position" "") +; (gtk_accel_path "/dialogs/dialogs-error-console" "") +; (gtk_accel_path "/view/view-rotate-15" "") +; (gtk_accel_path "/view/view-zoom" "") +; (gtk_accel_path "/view/view-scroll-top-border" "") +; (gtk_accel_path "/layers/layers-new" "n") +; (gtk_accel_path "/plug-in/gimp-palette-export-java" "") +; (gtk_accel_path "/image/image-convert-perceptual" "") +; (gtk_accel_path "/context/context-foreground-blue-increase-skip" "") +; (gtk_accel_path "/plug-in/script-fu-burn-in-anim" "") +; (gtk_accel_path "/tools/tools-paint-menu" "") +; (gtk_accel_path "/plug-in/plug-in-colormap-swap" "") +; (gtk_accel_path "/dockable/dialogs-mypaint-brushes" "") +; (gtk_accel_path "/dockable/dockable-preview-size-menu" "") +; (gtk_accel_path "/image/colors-menu" "") +; (gtk_accel_path "/vectors/vectors-lock-position" "") +; (gtk_accel_path "/vectors/vectors-visible" "") +; (gtk_accel_path "/image/image-flatten" "") +; (gtk_accel_path "/tools/tools-spacing-decrease" "") +; (gtk_accel_path "/channels/channels-selection-intersect" "") +; (gtk_accel_path "/filters/filters-dither" "") +; (gtk_accel_path "/view/view-softproof-intent-perceptual" "") +; (gtk_accel_path "/tools/tools-offset" "") +; (gtk_accel_path "/image/image-convert-float" "") +; (gtk_accel_path "/edit/edit-clear" "Delete") +; (gtk_accel_path "/view/view-scroll-down" "") +; (gtk_accel_path "/context/context-foreground-green-increase" "") +; (gtk_accel_path "/image/image-scale" "") +; (gtk_accel_path "/tools/tools-aspect-increase-skip" "") +; (gtk_accel_path "/context/context-colormap-background-previous" "") +; (gtk_accel_path "/image/colors-info-menu" "") +; (gtk_accel_path "/plug-in/plug-in-lic" "") +; (gtk_accel_path "/context/context-background-value-increase" "") +; (gtk_accel_path "/dialogs/dialogs-channels" "") +; (gtk_accel_path "/plug-in/plug-in-web-page" "") +; (gtk_accel_path "/tools/tools-size-maximum" "") +; (gtk_accel_path "/dockable/dialogs-dashboard" "") +; (gtk_accel_path "/vectors/vectors-select-previous" "") +; (gtk_accel_path "/layers/layers-mode-menu" "") +; (gtk_accel_path "/filters/filters-render-nature-menu" "") +; (gtk_accel_path "/layers/layers-color-tag-none" "") +; (gtk_accel_path "/dockable/dialogs-gradients" "g") +; (gtk_accel_path "/tools/tools-heal" "h") +; (gtk_accel_path "/view/view-scroll-right" "") +; (gtk_accel_path "/dialogs/dialogs-cursor" "") +; (gtk_accel_path "/context/context-foreground-saturation-minimum" "") +; (gtk_accel_path "/context/context-background-red-maximum" "") +; (gtk_accel_path "/context/context-brush-spikes-menu" "") +; (gtk_accel_path "/filters/filters-component-extract" "") +; (gtk_accel_path "/filters/filters-recent-10" "") +; (gtk_accel_path "/drawable/drawable-flip-horizontal" "") +; (gtk_accel_path "/layers/layers-merge-group" "") +; (gtk_accel_path "/file/file-open" "o") +; (gtk_accel_path "/plug-in/script-fu-font-map" "") +; (gtk_accel_path "/plug-in/python-fu-console" "") +; (gtk_accel_path "/tools/tools-transform-preview-opacity-set" "") +; (gtk_accel_path "/dialogs/dialogs-histogram" "") +; (gtk_accel_path "/filters/filters-lens-blur" "") +; (gtk_accel_path "/view/view-rotate-set-absolute" "") +; (gtk_accel_path "/layers/layers-mask-apply" "") +; (gtk_accel_path "/context/context-brush-radius-increase-less" "") +; (gtk_accel_path "/dialogs/dialogs-brush-editor" "") +; (gtk_accel_path "/context/context-background-saturation-maximum" "") +; (gtk_accel_path "/context/context-foreground-blue-increase" "") +; (gtk_accel_path "/layers/layers-duplicate" "d") +; (gtk_accel_path "/context/context-palette-select-next" "") +; (gtk_accel_path "/context/context-palette-foreground-next-skip" "") +; (gtk_accel_path "/layers/layers-mask-selection-add" "") +; (gtk_accel_path "/tools/tools-dodge-burn" "d") +; (gtk_accel_path "/edit/edit-copy-visible" "c") +; (gtk_accel_path "/brushes/brushes-duplicate" "") +; (gtk_accel_path "/layers/layers-select-previous" "Page_Up") +; (gtk_accel_path "/tools/tools-angle-maximum" "") +; (gtk_accel_path "/dockable/dockable-lock-tab" "") +; (gtk_accel_path "/context/context-foreground-value-minimum" "") +; (gtk_accel_path "/file/file-close-all" "w") +; (gtk_accel_path "/dialogs/dialogs-sample-points" "") +; (gtk_accel_path "/layers/layers-opacity-menu" "") +; (gtk_accel_path "/plug-in/plug-in-metadata-editor" "") +; (gtk_accel_path "/tools/tools-angle-increase-percent" "") +; (gtk_accel_path "/plug-in/script-fu-drop-shadow" "") +; (gtk_accel_path "/filters/filters-render-menu" "") +; (gtk_accel_path "/plug-in/plug-in-jigsaw" "") +; (gtk_accel_path "/dockable/dockable-tab-style-menu" "") +; (gtk_accel_path "/context/context-brush-hardness-decrease-skip" "") +; (gtk_accel_path "/plug-in/script-fu-guides-from-selection" "") +; (gtk_accel_path "/plug-in/script-fu-selection-to-brush" "") +; (gtk_accel_path "/layers/layers-blend-space-rgb-linear" "") +; (gtk_accel_path "/context/context-background-blue-maximum" "") +; (gtk_accel_path "/tools/tools-zoom" "z") +; (gtk_accel_path "/context/context-swatch-foreground-previous-skip" "") +; (gtk_accel_path "/context/context-background-red-increase" "") +; (gtk_accel_path "/plug-in/plug-in-checkerboard" "") +; (gtk_accel_path "/dockable/dockable-popup" "") +; (gtk_accel_path "/dockable/dockable-preview-size-extra-small" "") +; (gtk_accel_path "/filters/filters-render-clouds-menu" "") +; (gtk_accel_path "/context/context-palette-foreground-first" "") +; (gtk_accel_path "/view/view-zoom-4-1" "3") +; (gtk_accel_path "/channels/channels-duplicate" "") +; (gtk_accel_path "/context/context-brush-aspect-menu" "") +; (gtk_accel_path "/tools/tools-object-2-set" "") +; (gtk_accel_path "/context/context-brush-radius-increase" "") +; (gtk_accel_path "/context/context-swatch-background-next" "") +; (gtk_accel_path "/view/view-display-black-point-compensation" "") +; (gtk_accel_path "/tools/tools-size-decrease" "bracketleft") +; (gtk_accel_path "/dialogs/dialogs-colors" "") +; (gtk_accel_path "/filters/filters-edge" "") +; (gtk_accel_path "/image/image-rotate-180" "") +; (gtk_accel_path "/image/image-new" "n") +; (gtk_accel_path "/tool-options/tool-options-delete-preset-menu" "") +; (gtk_accel_path "/tools/tools-ink-blob-size-set" "") +; (gtk_accel_path "/filters/filters-value-propagate" "") +; (gtk_accel_path "/image/image-color-profile-assign" "") +; (gtk_accel_path "/layers/layers-composite-space-rgb-perceptual" "") +; (gtk_accel_path "/context/context-foreground-green-decrease" "") +; (gtk_accel_path "/layers/layers-scale" "") +; (gtk_accel_path "/layers/layers-transparency-menu" "") +; (gtk_accel_path "/layers/layers-alpha-remove" "") +; (gtk_accel_path "/context/context-pattern-select-set" "") +; (gtk_accel_path "/filters/filters-image-gradient" "") +; (gtk_accel_path "/select/select-all" "a") +; (gtk_accel_path "/context/context-brush-hardness-maximum" "") +; (gtk_accel_path "/plug-in/plug-in-recompose" "") +; (gtk_accel_path "/view/view-zoom-menu" "") +; (gtk_accel_path "/image/image-convert-u16" "") +; (gtk_accel_path "/filters/filters-kaleidoscope" "") +; (gtk_accel_path "/context/context-colormap-foreground-previous-skip" "") +; (gtk_accel_path "/view/view-snap-to-grid" "") +; (gtk_accel_path "/vectors/vectors-fill" "") +; (gtk_accel_path "/view/view-color-management-reset" "") +; (gtk_accel_path "/context/context-background-green-set" "") +; (gtk_accel_path "/tools/tools-force-maximum" "") +; (gtk_accel_path "/context/context-foreground-saturation-increase" "") +; (gtk_accel_path "/plug-in/plug-in-depth-merge" "") +; (gtk_accel_path "/dockable/dialogs-device-status" "") +; (gtk_accel_path "/edit/edit-named-copy" "") +; (gtk_accel_path "/filters/filters-video-degradation" "") +; (gtk_accel_path "/edit/edit-paste-as-new-layer-in-place" "") +; (gtk_accel_path "/layers/layers-resize" "") +; (gtk_accel_path "/layers/layers-blend-space-rgb-perceptual" "") +; (gtk_accel_path "/layers/layers-stack-menu" "") +; (gtk_accel_path "/dockable/dockable-show-button-bar" "") +; (gtk_accel_path "/view/view-zoom-fill" "") +; (gtk_accel_path "/filters/filters-stretch-contrast-hsv" "") +; (gtk_accel_path "/view/view-padding-color-prefs" "") +; (gtk_accel_path "/plug-in/plug-in-goat-exercise-vala" "") +; (gtk_accel_path "/tools/tools-opacity-decrease-skip" "less") +; (gtk_accel_path "/plug-in/plug-in-guillotine" "") +; (gtk_accel_path "/windows/windows-tabs-position-left" "") +; (gtk_accel_path "/documents/documents-recreate-preview" "") +; (gtk_accel_path "/layers/layers-opacity-increase" "") +; (gtk_accel_path "/view/view-padding-color-in-show-all" "") +; (gtk_accel_path "/image/colors-tone-mapping-menu" "") +; (gtk_accel_path "/tools/tools-size-set" "") +; (gtk_accel_path "/context/context-brush-angle-increase-skip" "") +; (gtk_accel_path "/dialogs/dialogs-fonts" "") +; (gtk_accel_path "/channels/channels-linked" "") +; (gtk_accel_path "/dockable/dockable-preview-size-gigantic" "") +; (gtk_accel_path "/plug-in/script-fu-difference-clouds" "") +; (gtk_accel_path "/plug-in/plug-in-dbbrowser" "") +; (gtk_accel_path "/context/context-background-hue-set" "") +; (gtk_accel_path "/plug-in/plug-in-align-layers" "") +; (gtk_accel_path "/context/context-background-blue-increase" "") +; (gtk_accel_path "/dockable/dialogs-palettes" "") +; (gtk_accel_path "/filters/filters-hue-chroma" "") +; (gtk_accel_path "/plug-in/plug-in-blinds" "") +; (gtk_accel_path "/dockable/dockable-preview-size-enormous" "") +; (gtk_accel_path "/filters/filters-edge-detect-menu" "") +; (gtk_accel_path "/channels/channels-lock-content" "") +; (gtk_accel_path "/context/context-paint-mode-next" "") +; (gtk_accel_path "/tools/tools-clone" "c") +; (gtk_accel_path "/tools/tools-color-picker" "o") +; (gtk_accel_path "/plug-in/script-fu-make-brush-elliptical-feathered" "") +; (gtk_accel_path "/context/context-background-value-minimum" "") +; (gtk_accel_path "/drawable/drawable-linked" "") +; (gtk_accel_path "/select/select-sharpen" "") +; (gtk_accel_path "/context/context-colormap-foreground-next" "") +; (gtk_accel_path "/view/view-zoom-4-1-accel" "KP_3") +; (gtk_accel_path "/edit/edit-undo" "z") +; (gtk_accel_path "/plug-in/script-fu-paste-as-brush" "") +; (gtk_accel_path "/filters/filters-noise-cie-lch" "") +; (gtk_accel_path "/filters/filters-invert-perceptual" "") +; (gtk_accel_path "/vectors/vectors-selection-replace" "") +; (gtk_accel_path "/file/file-save-a-copy" "") +; (gtk_accel_path "/vectors/vectors-delete" "") +; (gtk_accel_path "/vectors/vectors-color-tag-blue" "") +; (gtk_accel_path "/channels/channels-edit-attributes" "") +; (gtk_accel_path "/tools/tools-transform-3d" "w") +; (gtk_accel_path "/file/file-show-in-file-manager" "f") +; (gtk_accel_path "/context/context-swatch-background-previous-skip" "") +; (gtk_accel_path "/windows/windows-tabs-position-top" "") +; (gtk_accel_path "/context/context-brush-radius-decrease" "") +; (gtk_accel_path "/filters/filters-light-shadow-menu" "") +; (gtk_accel_path "/layers/layers-mode-previous" "") +; (gtk_accel_path "/vectors/vectors-export" "") +; (gtk_accel_path "/tools/tools-hardness-increase" "") +; (gtk_accel_path "/tools/tools-size-increase-percent" "") +; (gtk_accel_path "/view/view-zoom-16-1-accel" "KP_5") +; (gtk_accel_path "/filters/filters-deinterlace" "") +; (gtk_accel_path "/plug-in/plug-in-compose" "") +; (gtk_accel_path "/context/context-colors-swap" "x") +; (gtk_accel_path "/context/context-foreground-value-decrease-skip" "") +; (gtk_accel_path "/drawable/drawable-lock-position" "") +; (gtk_accel_path "/context/context-palette-background-first" "") +; (gtk_accel_path "/select/select-grow" "") +; (gtk_accel_path "/documents/documents-remove-dangling" "") +; (gtk_accel_path "/filters/filters-invert-linear" "") +; (gtk_accel_path "/filters/filters-recent-09" "") +; (gtk_accel_path "/help/help-context-help" "F1") +; (gtk_accel_path "/dockable/dialogs-images" "") +; (gtk_accel_path "/tools/tools-opacity-decrease-percent" "") +; (gtk_accel_path "/plug-in/plug-in-gimpressionist" "") +; (gtk_accel_path "/filters/filters-recent-08" "") +; (gtk_accel_path "/plug-in/script-fu-selection-rounded-rectangle" "") +; (gtk_accel_path "/plug-in/script-fu-grid-system" "") +; (gtk_accel_path "/dialogs/dialogs-tool-options" "") +; (gtk_accel_path "/context/context-colormap-background-previous-skip" "") +; (gtk_accel_path "/dockable/dialogs-vectors" "") +; (gtk_accel_path "/dockable/dialogs-navigation" "") +; (gtk_accel_path "/context/context-colormap-foreground-first" "") +; (gtk_accel_path "/tools/tools-unified-transform" "t") +; (gtk_accel_path "/view/view-zoom-in-accel" "KP_Add") +; (gtk_accel_path "/dialogs/dialogs-palettes" "") +; (gtk_accel_path "/file/file-quit" "q") +; (gtk_accel_path "/context/context-foreground-saturation-decrease" "") +; (gtk_accel_path "/image/image-menubar" "") +; (gtk_accel_path "/dockable/dockable-tab-style-icon" "") +; (gtk_accel_path "/filters/filters-recent-07" "") +; (gtk_accel_path "/plug-in/script-fu-circuit" "") +; (gtk_accel_path "/plug-in/script-fu-make-brush-rectangular" "") +; (gtk_accel_path "/plug-in/script-fu-erase-rows" "") +; (gtk_accel_path "/tools/tools-ellipse-select" "e") +; (gtk_accel_path "/filters/filters-noise-pick" "") +; (gtk_accel_path "/tools/tools-curves" "") +; (gtk_accel_path "/file/file-export-as" "e") +; (gtk_accel_path "/layers/layers-color-tag-red" "") +; (gtk_accel_path "/view/view-scroll-center" "j") +; (gtk_accel_path "/image/image-popup" "") +; (gtk_accel_path "/filters/filters-recent-06" "") +; (gtk_accel_path "/tools/tools-airbrush-flow-increase" "") +; (gtk_accel_path "/dialogs/dialogs-toolbox" "b") +; (gtk_accel_path "/view/view-scroll-bottom-border" "") +; (gtk_accel_path "/plug-in/plug-in-palettemap" "") +; (gtk_accel_path "/context/context-pattern-select-previous" "") +; (gtk_accel_path "/edit/edit-menu" "") +; (gtk_accel_path "/filters/filters-recent-05" "") +; (gtk_accel_path "/image/image-color-profile-convert" "") +; (gtk_accel_path "/plug-in/plug-in-wavelet-decompose" "") +; (gtk_accel_path "/context/context-palette-select-last" "") +; (gtk_accel_path "/filters/filters-recent-04" "") +; (gtk_accel_path "/image/image-convert-linear" "") +; (gtk_accel_path "/context/context-foreground-value-increase" "") +; (gtk_accel_path "/view/view-zoom-out-accel" "KP_Subtract") +; (gtk_accel_path "/brushes/brushes-edit" "") +; (gtk_accel_path "/image/image-crop-to-selection" "") +; (gtk_accel_path "/context/context-brush-radius-maximum" "") +; (gtk_accel_path "/filters/filters-oilify" "") +; (gtk_accel_path "/layers/layers-opacity-increase-skip" "") +; (gtk_accel_path "/windows/windows-docks-menu" "") +; (gtk_accel_path "/filters/filters-emboss" "") +; (gtk_accel_path "/dockable/dockable-menu" "") +; (gtk_accel_path "/filters/filters-recent-03" "") +; (gtk_accel_path "/plug-in/plug-in-qbist" "") +; (gtk_accel_path "/layers/layers-lower" "") +; (gtk_accel_path "/tools/tools-align" "q") +; (gtk_accel_path "/context/context-brush-aspect-increase-skip" "") +; (gtk_accel_path "/tools/tools-handle-transform" "l") +; (gtk_accel_path "/layers/layers-new-group" "") +; (gtk_accel_path "/filters/filters-waves" "") +; (gtk_accel_path "/view/view-scroll-page-down" "") +; (gtk_accel_path "/filters/filters-recent-02" "") +; (gtk_accel_path "/layers/layers-crop-to-content" "") +; (gtk_accel_path "/filters/filters-whirl-pinch" "") +; (gtk_accel_path "/filters/filters-render-pattern-menu" "") +; (gtk_accel_path "/tools/tools-measure" "m") +; (gtk_accel_path "/dockable/dialogs-tool-presets" "") +; (gtk_accel_path "/tools/tools-aspect-maximum" "") +; (gtk_accel_path "/tools/tools-flip" "f") +; (gtk_accel_path "/tools/tools-airbrush-rate-minimum" "") +; (gtk_accel_path "/help/help-menu" "") +; (gtk_accel_path "/filters/filters-recent-01" "") +; (gtk_accel_path "/context/context-opacity-menu" "") +; (gtk_accel_path "/filters/filters-median-blur" "") +; (gtk_accel_path "/vectors/vectors-paste" "") +; (gtk_accel_path "/context/context-foreground-blue-minimum" "") +; (gtk_accel_path "/filters/filters-apply-canvas" "") +; (gtk_accel_path "/image/image-color-profile-save" "") +; (gtk_accel_path "/drawable/drawable-levels-stretch" "") +; (gtk_accel_path "/filters/filters-difference-of-gaussians" "") +; (gtk_accel_path "/tools/tools-angle-increase-skip" "") +; (gtk_accel_path "/context/context-swatch-background-last" "") +; (gtk_accel_path "/tools/tools-move" "m") +; (gtk_accel_path "/tools/tools-convolve" "u") +; (gtk_accel_path "/tools/tools-airbrush-flow-increase-skip" "") +; (gtk_accel_path "/context/context-foreground-saturation-increase-skip" "") +; (gtk_accel_path "/channels/channels-color-tag-green" "") +; (gtk_accel_path "/tools/tools-aspect-decrease-percent" "") +; (gtk_accel_path "/plug-in/gimp-help-using-photography" "") +; (gtk_accel_path "/dialogs/dialogs-dashboard" "") +; (gtk_accel_path "/layers/layers-crop-to-selection" "") +; (gtk_accel_path "/layers/layers-mask-selection-subtract" "") +; (gtk_accel_path "/plug-in/script-fu-guides-remove" "") +; (gtk_accel_path "/dialogs/dialogs-palette-editor" "") +; (gtk_accel_path "/filters/filters-channel-mixer" "") +; (gtk_accel_path "/images/images-raise-views" "") +; (gtk_accel_path "/plug-in/script-fu-waves-anim" "") +; (gtk_accel_path "/context/context-foreground-green-maximum" "") +; (gtk_accel_path "/view/view-menu" "") +; (gtk_accel_path "/view/view-dot-for-dot" "") +; (gtk_accel_path "/context/context-gradient-select-set" "") +; (gtk_accel_path "/dockable/dockable-close-tab" "") +; (gtk_accel_path "/dockable/dialogs-dynamics-editor" "") +; (gtk_accel_path "/plug-in/python-fu-palette-to-gradient-repeating" "") +; (gtk_accel_path "/vectors/vectors-selection-intersect" "") +; (gtk_accel_path "/vectors/vectors-stroke" "") +; (gtk_accel_path "/filters/filters-little-planet" "") +; (gtk_accel_path "/context/context-pattern-menu" "") +; (gtk_accel_path "/plug-in/python-fu-palette-to-gradient" "") +; (gtk_accel_path "/view/view-show-rulers" "r") +; (gtk_accel_path "/context/context-brush-spikes-increase" "") +; (gtk_accel_path "/view/view-snap-to-guides" "") +; (gtk_accel_path "/layers/layers-alpha-selection-subtract" "") +; (gtk_accel_path "/channels/channels-select-top" "") +; (gtk_accel_path "/plug-in/script-fu-sota-chrome-it" "") +; (gtk_accel_path "/view/view-move-to-screen-:0.0" "") +; (gtk_accel_path "/plug-in/gimp-palette-export-python" "") +; (gtk_accel_path "/context/context-swatch-foreground-next" "0") +; (gtk_accel_path "/select/selection-popup" "") +; (gtk_accel_path "/brushes/brushes-refresh" "") +; (gtk_accel_path "/edit/edit-paste-into" "") +; (gtk_accel_path "/tools/tools-opacity-decrease" "less") +; (gtk_accel_path "/filters/filters-bayer-matrix" "") +; (gtk_accel_path "/context/context-brush-angle-minimum" "") +; (gtk_accel_path "/tools/tools-aspect-increase" "") +; (gtk_accel_path "/vectors/vectors-selection-to-vectors-short" "") +; (gtk_accel_path "/context/context-brush-spikes-maximum" "") +; (gtk_accel_path "/tools/tools-aspect-set" "") +; (gtk_accel_path "/fonts/fonts-popup" "") +; (gtk_accel_path "/layers/layers-popup" "") +; (gtk_accel_path "/context/context-foreground-green-increase-skip" "") +; (gtk_accel_path "/filters/filters-generic-menu" "") +; (gtk_accel_path "/image/image-resize-to-layers" "") +; (gtk_accel_path "/windows/windows-use-single-window-mode" "") +; (gtk_accel_path "/channels/channels-lower-to-bottom" "") +; (gtk_accel_path "/context/context-colormap-background-first" "") +; (gtk_accel_path "/edit/edit-fill-pattern" "semicolon") +; (gtk_accel_path "/context/context-paint-mode-first" "") +; (gtk_accel_path "/plug-in/script-fu-reverse-layers" "") +; (gtk_accel_path "/dockable/dockable-preview-size-extra-large" "") +; (gtk_accel_path "/dockable/dialogs-indexed-palette" "") +; (gtk_accel_path "/context/context-brush-spikes-set" "") +; (gtk_accel_path "/vectors/vectors-new-last-values" "") +; (gtk_accel_path "/tools/tools-object-2-previous" "") +; (gtk_accel_path "/plug-in/plug-in-retinex" "") +; (gtk_accel_path "/context/context-swatch-foreground-previous" "9") +; (gtk_accel_path "/context/context-foreground-value-decrease" "") +; (gtk_accel_path "/context/context-brush-select-first" "") +; (gtk_accel_path "/context/context-swatch-foreground-next-skip" "") +; (gtk_accel_path "/tools/tools-force-increase-skip" "") +; (gtk_accel_path "/dockable/dockable-detach-tab" "") +; (gtk_accel_path "/image/image-print-size" "") +; (gtk_accel_path "/filters/filters-fractal-trace" "") +; (gtk_accel_path "/filters/filters-panorama-projection" "") +; (gtk_accel_path "/context/context-paint-mode-last" "") +; (gtk_accel_path "/image/colors-components-menu" "") +; (gtk_accel_path "/context/context-colormap-foreground-last" "") +; (gtk_accel_path "/view/view-zoom-out" "minus") +; (gtk_accel_path "/plug-in/plug-in-colormap-remap" "") +; (gtk_accel_path "/context/context-palette-background-next-skip" "") +; (gtk_accel_path "/tools/tools-force-decrease" "") +; (gtk_accel_path "/context/context-background-hue-maximum" "") +; (gtk_accel_path "/plug-in/plug-in-mail-image" "") +; (gtk_accel_path "/filters/filters-mantiuk-2006" "") +; (gtk_accel_path "/plug-in/plug-in-small-tiles" "") +; (gtk_accel_path "/layers/layers-composite-mode-clip-to-layer" "") +; (gtk_accel_path "/filters/filters-noise-menu" "") +; (gtk_accel_path "/layers/layers-mask-disable" "") +; (gtk_accel_path "/tools/tools-brightness-contrast" "") +; (gtk_accel_path "/filters/filters-erode" "") +; (gtk_accel_path "/context/context-brush-spikes-increase-skip" "") +; (gtk_accel_path "/context/context-palette-select-previous" "") +; (gtk_accel_path "/vectors/vectors-color-tag-none" "") +; (gtk_accel_path "/layers/layers-transform-menu" "") +; (gtk_accel_path "/context/context-pattern-select-first" "") +; (gtk_accel_path "/tools/tools-spacing-increase-percent" "") +; (gtk_accel_path "/select/select-border" "") +; (gtk_accel_path "/plug-in/script-fu-clothify" "") +; (gtk_accel_path "/edit/edit-paste-into-in-place" "") +; (gtk_accel_path "/layers/layers-new-last-values" "") +; (gtk_accel_path "/context/context-opacity-transparent" "") +; (gtk_accel_path "/plug-in/plug-in-animationoptimize" "") +; (gtk_accel_path "/context/context-colormap-background-next" "") +; (gtk_accel_path "/layers/layers-blend-space-auto" "") +; (gtk_accel_path "/plug-in/file-pdf-save-multi" "") +; (gtk_accel_path "/layers/layers-merge-layers" "") +; (gtk_accel_path "/layers/layers-composite-space-auto" "") +; (gtk_accel_path "/context/context-opacity-decrease-skip" "") +; (gtk_accel_path "/dockable/dialogs-buffers" "") +; (gtk_accel_path "/tools/tools-perspective" "p") +; (gtk_accel_path "/context/context-foreground-red-increase-skip" "") +; (gtk_accel_path "/context/context-colormap-foreground-set" "") +; (gtk_accel_path "/plug-in/script-fu-copy-visible" "") +; (gtk_accel_path "/filters/filters-high-pass" "") +; (gtk_accel_path "/layers/layers-composite-mode-clip-to-backdrop" "") +; (gtk_accel_path "/tools/tools-menu" "") +; (gtk_accel_path "/context/context-background-green-maximum" "") +; (gtk_accel_path "/filters/filters-brightness-contrast" "") +; (gtk_accel_path "/filters/filters-shadows-highlights" "") +; (gtk_accel_path "/channels/channels-color-tag-brown" "") +; (gtk_accel_path "/filters/filters-desaturate" "") +; (gtk_accel_path "/context/context-palette-foreground-previous" "") +; (gtk_accel_path "/plug-in/plug-in-nlfilt" "") +; (gtk_accel_path "/plug-in/gimp-palette-export-text" "") +; (gtk_accel_path "/context/context-palette-foreground-set" "") +; (gtk_accel_path "/tools/tools-paintbrush-spacing-set" "") +; (gtk_accel_path "/debug/debug-gtk-inspector" "") +; (gtk_accel_path "/filters/filters-offset" "o") +; (gtk_accel_path "/filters/filters-softglow" "") +; (gtk_accel_path "/context/context-brush-shape-square" "") +; (gtk_accel_path "/vectors/vectors-select-top" "") +; (gtk_accel_path "/patterns/patterns-popup" "") +; (gtk_accel_path "/tools/tools-opacity-minimum" "") +; (gtk_accel_path "/channels/channels-raise-to-top" "") +; (gtk_accel_path "/view/view-zoom-2-1-accel" "KP_2") +; (gtk_accel_path "/plug-in/script-fu-contactsheet" "") +; (gtk_accel_path "/context/context-foreground-hue-minimum" "") +; (gtk_accel_path "/tools/tools-aspect-decrease" "") +; (gtk_accel_path "/context/context-brush-spacing-decrease-skip" "") +; (gtk_accel_path "/filters/filters-threshold-alpha" "") +; (gtk_accel_path "/tools/tools-mypaint-brush-radius-set" "") +; (gtk_accel_path "/context/context-tool-select-first" "") +; (gtk_accel_path "/vectors/vectors-lower" "") +; (gtk_accel_path "/context/context-brush-aspect-minimum" "") +; (gtk_accel_path "/layers/layers-mask-delete" "") +; (gtk_accel_path "/tools/tools-angle-decrease-percent" "") +; (gtk_accel_path "/context/context-background-green-increase-skip" "") +; (gtk_accel_path "/filters/filters-reinhard-2005" "") +; (gtk_accel_path "/filters/filters-artistic-menu" "") +; (gtk_accel_path "/select/select-flood" "") +; (gtk_accel_path "/tools/tools-hardness-set-to-default" "") +; (gtk_accel_path "/tools/tools-bucket-fill" "b") +; (gtk_accel_path "/tools/tools-angle-set" "") +; (gtk_accel_path "/tools/tools-ink-blob-aspect-set" "") +; (gtk_accel_path "/tools/tools-size-increase" "bracketright") +; (gtk_accel_path "/tools/tools-force-increase-percent" "") +; (gtk_accel_path "/image/image-color-management-menu" "") +; (gtk_accel_path "/channels/channels-selection-replace" "") +; (gtk_accel_path "/dockable/dialogs-layers" "l") +; (gtk_accel_path "/view/view-zoom-fit-in" "j") +; (gtk_accel_path "/brushes/brushes-delete" "") +; (gtk_accel_path "/filters/filters-repeat" "f") +; (gtk_accel_path "/filters/filters-maze" "") +; (gtk_accel_path "/context/context-brush-shape-menu" "") +; (gtk_accel_path "/dockable/dialogs-palette-editor" "") +; (gtk_accel_path "/layers/layers-raise-to-top" "") +; (gtk_accel_path "/drawable/drawable-flip-vertical" "") +; (gtk_accel_path "/filters/filters-color-balance" "") +; (gtk_accel_path "/tools/tools-size-set-to-default" "backslash") +; (gtk_accel_path "/context/context-foreground-blue-decrease-skip" "") +; (gtk_accel_path "/context/context-colors-default" "d") +; (gtk_accel_path "/plug-in/plug-in-gradmap" "") +; (gtk_accel_path "/filters/filters-checkerboard" "") +; (gtk_accel_path "/image/image-convert-grayscale" "") +; (gtk_accel_path "/plug-in/script-fu-fuzzy-border" "") +; (gtk_accel_path "/filters/filters-tile-paper" "") +; (gtk_accel_path "/dialogs/dialogs-selection-editor" "") +; (gtk_accel_path "/layers/layers-edit" "") +; (gtk_accel_path "/image/colors-desaturate-menu" "") +; (gtk_accel_path "/layers/layers-flatten-image" "") +; (gtk_accel_path "/tools/tools-airbrush-rate-increase-skip" "") +; (gtk_accel_path "/channels/channels-select-bottom" "") +; (gtk_accel_path "/dialogs/dialogs-preferences" "") +; (gtk_accel_path "/plug-in/plug-in-animationplay" "") +; (gtk_accel_path "/context/context-brush-angle-menu" "") +; (gtk_accel_path "/tools/tools-airbrush-flow-minimum" "") +; (gtk_accel_path "/view/view-rotate-menu" "") +; (gtk_accel_path "/vectors/vectors-import" "") +; (gtk_accel_path "/plug-in/script-fu-xach-effect" "") +; (gtk_accel_path "/view/view-rotate-345" "") +; (gtk_accel_path "/plug-in/plug-in-decompose" "") +; (gtk_accel_path "/plug-in/gimp-palette-export-css" "") +; (gtk_accel_path "/filters/filters-color-exchange" "") +; (gtk_accel_path "/tools/tools-warp-effect-size-set" "") +; (gtk_accel_path "/view/view-display-intent-perceptual" "") +; (gtk_accel_path "/dialogs/dialogs-navigation" "") +; (gtk_accel_path "/dock/dock-open-display" "") +; (gtk_accel_path "/context/context-paint-mode-previous" "") +; (gtk_accel_path "/plug-in/plug-in-hot" "") +; (gtk_accel_path "/tools/tools-aspect-decrease-skip" "") +; (gtk_accel_path "/view/view-zoom-out-skip" "") +; (gtk_accel_path "/dialogs/dialogs-keyboard-shortcuts" "") +; (gtk_accel_path "/view/view-zoom-maximum" "") +; (gtk_accel_path "/dialogs/dialogs-input-devices" "") +; (gtk_accel_path "/dockable/dialogs-document-history" "") +; (gtk_accel_path "/quick-mask/quick-mask-invert-on" "") +; (gtk_accel_path "/context/context-swatch-foreground-first" "") +; (gtk_accel_path "/file/file-export" "e") +; (gtk_accel_path "/plug-in/script-fu-set-cmap" "") +; (gtk_accel_path "/layers/layers-text-discard" "") +; (gtk_accel_path "/context/context-foreground-red-maximum" "") +; (gtk_accel_path "/filters/filters-edge-sobel" "") +; (gtk_accel_path "/dockable/dockable-preview-size-tiny" "") +; (gtk_accel_path "/plug-in/script-fu-guide-new-percent" "") +; (gtk_accel_path "/view/view-show-scrollbars" "") +; (gtk_accel_path "/filters/filters-render-noise-menu" "") +; (gtk_accel_path "/channels/channels-delete" "") +; (gtk_accel_path "/image/image-flip-vertical" "") +; (gtk_accel_path "/layers/layers-opacity-set" "") +; (gtk_accel_path "/context/context-font-select-next" "") +; (gtk_accel_path "/context/context-menu" "") +; (gtk_accel_path "/image/image-convert-half" "") +; (gtk_accel_path "/tools/tools-size-increase-skip" "bracketright") +; (gtk_accel_path "/file/file-overwrite" "") +; (gtk_accel_path "/context/context-background-red-increase-skip" "") +; (gtk_accel_path "/vectors/vectors-popup" "") +; (gtk_accel_path "/image/image-rotate-90" "") +; (gtk_accel_path "/edit/edit-fill-bg" "period") +; (gtk_accel_path "/tools/tools-iscissors" "i") +; (gtk_accel_path "/context/context-palette-menu" "") +; (gtk_accel_path "/layers/layers-properties-menu" "") +; (gtk_accel_path "/view/view-flip-vertically" "") +; (gtk_accel_path "/context/context-foreground-hue-increase" "") +; (gtk_accel_path "/select/select-invert" "i") +; (gtk_accel_path "/layers/layers-mode-next" "") +; (gtk_accel_path "/file/file-save-as" "s") +; (gtk_accel_path "/context/context-swatch-foreground-last" "") +; (gtk_accel_path "/context/context-palette-background-next" "") +; (gtk_accel_path "/image/image-rotate-270" "") +; (gtk_accel_path "/context/context-brush-hardness-menu" "") +; (gtk_accel_path "/tools/tools-warp" "w") +; (gtk_accel_path "/plug-in/script-fu-erase-nth-rows" "") +; (gtk_accel_path "/context/context-brush-radius-decrease-less" "") +; (gtk_accel_path "/quick-mask/quick-mask-popup" "") +; (gtk_accel_path "/plug-in/plug-in-sparkle" "") +; (gtk_accel_path "/vectors/vectors-selection-subtract" "") +; (gtk_accel_path "/filters/filters-combine-menu" "") +; (gtk_accel_path "/layers/layers-raise" "") +; (gtk_accel_path "/edit/edit-strong-undo" "z") +; (gtk_accel_path "/context/context-colormap-foreground-next-skip" "") +; (gtk_accel_path "/context/context-brush-aspect-increase" "") +; (gtk_accel_path "/filters/filters-invert-value" "") +; (gtk_accel_path "/context/context-foreground-blue-set" "") +; (gtk_accel_path "/filters/filters-bump-map" "") +; (gtk_accel_path "/plug-in/file-gih-save-internal" "") +; (gtk_accel_path "/context/context-background-blue-increase-skip" "") +; (gtk_accel_path "/plug-in/script-fu-old-photo" "") +; (gtk_accel_path "/patterns/patterns-edit" "") +; (gtk_accel_path "/dialogs/dialogs-module-dialog" "") +; (gtk_accel_path "/image/image-configure-grid" "") +; (gtk_accel_path "/context/context-tool-menu" "") +; (gtk_accel_path "/view/view-zoom-1-1-accel" "KP_1") +; (gtk_accel_path "/filters/filters-noise-spread" "") +; (gtk_accel_path "/plug-in/script-fu-round-corners" "") +; (gtk_accel_path "/tools/tools-hardness-increase-skip" "") +; (gtk_accel_path "/select/select-save" "") +; (gtk_accel_path "/context/context-background-saturation-set" "") +; (gtk_accel_path "/plug-in/script-fu-guide-new" "") +; (gtk_accel_path "/tools/tools-hardness-decrease-percent" "") +; (gtk_accel_path "/tools/tools-size-minimum" "") +; (gtk_accel_path "/plug-in/gimp-help-concepts-paths" "") +; (gtk_accel_path "/vectors/vectors-select-next" "") +; (gtk_accel_path "/filters/filters-noise-cell" "") +; (gtk_accel_path "/quick-mask/quick-mask-toggle" "q") +; (gtk_accel_path "/filters/filters-gaussian-blur" "") +; (gtk_accel_path "/plug-in/plug-in-screenshot" "") +; (gtk_accel_path "/view/view-rotate-180" "") +; (gtk_accel_path "/tools/tools-text" "t") +; (gtk_accel_path "/filters/filters-newsprint" "") +; (gtk_accel_path "/filters/filters-noise-solid" "") +; (gtk_accel_path "/file/file-open-as-layers" "o") +; (gtk_accel_path "/context/context-background-red-minimum" "") +; (gtk_accel_path "/plug-in/gimp-online-wiki" "") +; (gtk_accel_path "/layers/layers-merge-down-button" "") +; (gtk_accel_path "/plug-in/script-fu-refresh" "") +; (gtk_accel_path "/layers/layers-text-to-vectors" "") +; (gtk_accel_path "/vectors/vectors-fill-last-values" "") +; (gtk_accel_path "/documents/documents-popup" "") +; (gtk_accel_path "/view/view-padding-color-menu" "") +; (gtk_accel_path "/tools/tools-smudge" "s") +; (gtk_accel_path "/context/context-font-menu" "") +; (gtk_accel_path "/tools/tools-mypaint-brush-hardness-set" "") +; (gtk_accel_path "/plug-in/plug-in-pagecurl" "") +; (gtk_accel_path "/dialogs/dialogs-layers" "l") +; (gtk_accel_path "/context/context-colormap-background-last" "") +; (gtk_accel_path "/plug-in/script-fu-selection-to-image" "") +; (gtk_accel_path "/channels/channels-selection-add" "") +; (gtk_accel_path "/context/context-palette-select-first" "") +; (gtk_accel_path "/layers/layers-lock-position" "") +; (gtk_accel_path "/tools/tools-object-1-next" "") +; (gtk_accel_path "/dialogs/dialogs-device-status" "") +; (gtk_accel_path "/view/view-scroll-vertical" "") +; (gtk_accel_path "/view/view-show-selection" "t") +; (gtk_accel_path "/tools/tools-spacing-maximum" "") +; (gtk_accel_path "/filters/filters-photocopy" "") +; (gtk_accel_path "/channels/channels-color-tag-orange" "") +; (gtk_accel_path "/tools/tools-ink-blob-angle-set" "") +; (gtk_accel_path "/context/context-background-saturation-minimum" "") +; (gtk_accel_path "/layers/layers-lock-alpha" "") +; (gtk_accel_path "/tools/tools-transform-menu" "") +; (gtk_accel_path "/plug-in/plug-in-borderaverage" "") +; (gtk_accel_path "/view/view-padding-color-theme" "") +; (gtk_accel_path "/plug-in/script-fu-gradient-example" "") +; (gtk_accel_path "/filters/filters-color-rotate" "") +; (gtk_accel_path "/dockable/dialogs-dynamics" "") +; (gtk_accel_path "/plug-in/gimp-online-roadmap" "") +; (gtk_accel_path "/filters/filters-vignette" "") +; (gtk_accel_path "/patterns/patterns-copy-location" "") +; (gtk_accel_path "/filters/filters-apply-lens" "") +; (gtk_accel_path "/tools/tools-angle-minimum" "") +; (gtk_accel_path "/tools/tools-ink" "k") +; (gtk_accel_path "/tools/tools-airbrush-rate-set" "") +; (gtk_accel_path "/layers/layers-mask-add-button" "") +; (gtk_accel_path "/layers/layers-color-tag-orange" "") +; (gtk_accel_path "/plug-in/script-fu-coffee-stain" "") +; (gtk_accel_path "/view/view-display-filters" "") +; (gtk_accel_path "/context/context-swatch-background-first" "") +; (gtk_accel_path "/layers/layers-composite-mode-intersection" "") +; (gtk_accel_path "/filters/filters-noise-rgb" "") +; (gtk_accel_path "/context/context-foreground-hue-decrease" "") +; (gtk_accel_path "/plug-in/plug-in-tile" "") +; (gtk_accel_path "/filters/filters-edge-neon" "") +; (gtk_accel_path "/dialogs/dialogs-about" "") +; (gtk_accel_path "/plug-in/plug-in-despeckle" "") +; (gtk_accel_path "/tools/tools-spacing-set" "") +; (gtk_accel_path "/dialogs/dialogs-templates" "") +; (gtk_accel_path "/tools/tools-object-2-first" "") +; (gtk_accel_path "/context/context-background-blue-minimum" "") +; (gtk_accel_path "/quick-mask/quick-mask-invert-off" "") +; (gtk_accel_path "/documents/documents-file-open-dialog" "") +; (gtk_accel_path "/filters/filters-lens-flare" "") +; (gtk_accel_path "/filters/filters-tile-seamless" "") +; (gtk_accel_path "/filters/filters-red-eye-removal" "") +; (gtk_accel_path "/layers/layers-resize-to-image" "") +; (gtk_accel_path "/view/view-color-management-softproof" "") +; (gtk_accel_path "/filters/filters-render-fractals-menu" "") +; (gtk_accel_path "/context/context-brush-angle-decrease-skip" "") +; (gtk_accel_path "/plug-in/gimp-help-using-web" "") +; (gtk_accel_path "/dialogs/dialogs-vectors" "") +; (gtk_accel_path "/edit/edit-buffer-menu" "") +; (gtk_accel_path "/plug-in/script-fu-make-brush-elliptical" "") +; (gtk_accel_path "/plug-in/plug-in-grid" "") +; (gtk_accel_path "/filters/filters-color-enhance" "") +; (gtk_accel_path "/view/view-padding-color-custom" "") +; (gtk_accel_path "/plug-in/script-fu-weave" "") +; (gtk_accel_path "/filters/filters-blur-menu" "") +; (gtk_accel_path "/context/context-brush-aspect-decrease" "") +; (gtk_accel_path "/tools/tools-paintbrush-angle-set" "") +; (gtk_accel_path "/context/context-pattern-select-next" "") +; (gtk_accel_path "/channels/channels-lower" "") +; (gtk_accel_path "/view/view-rotate-other" "") +; (gtk_accel_path "/context/context-brush-hardness-minimum" "") +; (gtk_accel_path "/filters/filters-mosaic" "") +; (gtk_accel_path "/patterns/patterns-show-in-file-manager" "") +; (gtk_accel_path "/debug/debug-menu" "") +; (gtk_accel_path "/context/context-brush-radius-increase-skip" "") +; (gtk_accel_path "/view/view-softproof-black-point-compensation" "") +; (gtk_accel_path "/select/select-menu" "") +; (gtk_accel_path "/plug-in/plug-in-sample-colorize" "") +; (gtk_accel_path "/file/file-open-recent-10" "0") +; (gtk_accel_path "/tools/tools-by-color-select" "o") +; (gtk_accel_path "/context/context-palette-background-previous" "") +; (gtk_accel_path "/tools/tools-force-minimum" "") +; (gtk_accel_path "/channels/channels-color-tag-violet" "") +; (gtk_accel_path "/context/context-swatch-background-next-skip" "") +; (gtk_accel_path "/dockable/dialogs-brush-editor" "") +; (gtk_accel_path "/plug-in/gimp-help-using-simpleobjects" "") +; (gtk_accel_path "/filters/filters-recursive-transform" "") +; (gtk_accel_path "/plug-in/script-fu-add-bevel" "") +; (gtk_accel_path "/dialogs/dialogs-dynamics" "") +; (gtk_accel_path "/plug-in/plug-in-curve-bend" "") +; (gtk_accel_path "/context/context-background-saturation-increase-skip" "") +; (gtk_accel_path "/view/view-scroll-page-up" "") +; (gtk_accel_path "/filters/filters-convolution-matrix" "") +; (gtk_accel_path "/tools/tools-pencil" "n") +; (gtk_accel_path "/filters/filters-levels" "") +; (gtk_accel_path "/layers/layers-color-tag-violet" "") +; (gtk_accel_path "/tools/tools-opacity-increase" "greater") +; (gtk_accel_path "/context/context-brush-radius-decrease-percent" "") +; (gtk_accel_path "/context/context-foreground-red-set" "") +; (gtk_accel_path "/select/select-fill" "") +; (gtk_accel_path "/filters/filters-colorize" "") +; (gtk_accel_path "/view/view-padding-color-dark-check" "") +; (gtk_accel_path "/tools/tools-hardness-maximum" "") +; (gtk_accel_path "/tools/tools-spacing-increase-skip" "") +; (gtk_accel_path "/context/context-gradient-select-previous" "") +; (gtk_accel_path "/layers/layers-new-from-visible" "") +; (gtk_accel_path "/filters/filters-saturation" "") +; (gtk_accel_path "/tools/tools-crop" "c") +; (gtk_accel_path "/plug-in/plug-in-flame" "") +; (gtk_accel_path "/images/images-popup" "") +; (gtk_accel_path "/context/context-font-select-last" "") +; (gtk_accel_path "/vectors/vectors-new" "") +; (gtk_accel_path "/tool-options/tool-options-save-new-preset" "") +; (gtk_accel_path "/filters/filters-posterize" "") +; (gtk_accel_path "/dockable/dockable-view-type-list" "") +; (gtk_accel_path "/filters/filters-slic" "") +; (gtk_accel_path "/view/view-rotate-reset" "exclam") +; (gtk_accel_path "/filters/filters-shift" "") +; (gtk_accel_path "/drawable/drawable-rotate-90" "") +; (gtk_accel_path "/plug-in/plug-in-lighting" "") +; (gtk_accel_path "/tools/tools-mypaint-brush" "y") +; (gtk_accel_path "/channels/channels-color-tag-menu" "") +; (gtk_accel_path "/layers/layers-merge-down" "") +; (gtk_accel_path "/dialogs/dialogs-tips" "") +; (gtk_accel_path "/layers/layers-mode-last" "") +; (gtk_accel_path "/tools/tools-warp-effect-hardness-set" "") +; (gtk_accel_path "/layers/layers-alpha-add" "") +; (gtk_accel_path "/filters/filters-map-menu" "") +; (gtk_accel_path "/context/context-palette-foreground-previous-skip" "") +; (gtk_accel_path "/context/context-tool-select-set" "") +; (gtk_accel_path "/tool-options/tool-options-popup" "") +; (gtk_accel_path "/filters/filters-dilate" "") +; (gtk_accel_path "/context/context-palette-background-last" "") +; (gtk_accel_path "/image/image-mode-menu" "") +; (gtk_accel_path "/vectors/vectors-raise" "") +; (gtk_accel_path "/vectors/vectors-selection-to-vectors" "") +; (gtk_accel_path "/edit/edit-named-copy-visible" "") +; (gtk_accel_path "/dockable/dialogs-brushes" "b") +; (gtk_accel_path "/drawable/drawable-rotate-180" "") +; (gtk_accel_path "/filters/filters-decor-menu" "") +; (gtk_accel_path "/layers/layers-composite-mode-menu" "") +; (gtk_accel_path "/tools/tools-airbrush-rate-decrease" "") +; (gtk_accel_path "/context/context-foreground-hue-increase-skip" "") +; (gtk_accel_path "/channels/channels-popup" "") +; (gtk_accel_path "/channels/channels-color-tag-yellow" "") +; (gtk_accel_path "/dockable/dockable-preview-size-small" "") +; (gtk_accel_path "/image/image-guides-menu" "") +; (gtk_accel_path "/tools/tools-force-increase" "") +; (gtk_accel_path "/layers/layers-alpha-selection-intersect" "") +; (gtk_accel_path "/context/context-brush-select-next" "") +; (gtk_accel_path "/filters/filters-waterpixels" "") +; (gtk_accel_path "/context/context-brush-spacing-increase" "") +; (gtk_accel_path "/dialogs/dialogs-action-search" "slash") +; (gtk_accel_path "/layers/layers-select-next" "Page_Down") +; (gtk_accel_path "/tools/tools-rotate-arbitrary" "") +; (gtk_accel_path "/layers/layers-opacity-decrease-skip" "") +; (gtk_accel_path "/view/view-zoom-16-1" "5") +; (gtk_accel_path "/plug-in/gimp-help-concepts-usage" "") +; (gtk_accel_path "/debug/debug-dump-keyboard-shortcuts" "") +; (gtk_accel_path "/image/image-color-profile-discard" "") +; (gtk_accel_path "/filters/filters-mean-curvature-blur" "") +; (gtk_accel_path "/layers/layers-color-tag-yellow" "") +; (gtk_accel_path "/context/context-brush-aspect-decrease-skip" "") +; (gtk_accel_path "/dock/dock-move-to-screen-:0.0" "") +; (gtk_accel_path "/filters/filters-animation-menu" "") +; (gtk_accel_path "/filters/filters-noise-reduction" "") +; (gtk_accel_path "/dialogs/dialogs-gradients" "g") +; (gtk_accel_path "/tools/tools-object-1-previous" "") +; (gtk_accel_path "/image/image-duplicate" "d") +; (gtk_accel_path "/documents/documents-show-in-file-manager" "") +; (gtk_accel_path "/dockable/dialogs-patterns" "p") +; (gtk_accel_path "/view/view-scroll-right-border" "") +; (gtk_accel_path "/edit/edit-paste" "v") +; (gtk_accel_path "/context/context-palette-foreground-next" "") +; (gtk_accel_path "/channels/channels-color-tag-red" "") +; (gtk_accel_path "/filters/filters-mono-mixer" "") +; (gtk_accel_path "/context/context-font-select-set" "") +; (gtk_accel_path "/patterns/patterns-duplicate" "") +; (gtk_accel_path "/filters/filters-spiral" "") +; (gtk_accel_path "/plug-in/plug-in-unit-editor" "") +; (gtk_accel_path "/tools/tools-angle-decrease-skip" "") +; (gtk_accel_path "/tools/tools-airbrush-flow-decrease-skip" "") +; (gtk_accel_path "/vectors/vectors-select-bottom" "") +; (gtk_accel_path "/context/context-foreground-value-set" "") +; (gtk_accel_path "/debug/debug-dump-items" "") +; (gtk_accel_path "/view/view-scroll-up" "") +; (gtk_accel_path "/plug-in/gimp-help-using-selections" "") +; (gtk_accel_path "/plug-in/plug-in-cml-explorer" "") +; (gtk_accel_path "/select/select-stroke" "") +; (gtk_accel_path "/context/context-foreground-saturation-decrease-skip" "") +; (gtk_accel_path "/tool-options/tool-options-reset-all" "") +; (gtk_accel_path "/drawable/drawable-visible" "") +; (gtk_accel_path "/image/image-metadata-menu" "") +; (gtk_accel_path "/channels/channels-select-previous" "") +; (gtk_accel_path "/context/context-brush-angle-increase" "") +; (gtk_accel_path "/filters/filters-snn-mean" "") +; (gtk_accel_path "/tools/tools-hardness-set" "") +; (gtk_accel_path "/tools/tools-object-1-last" "") +; (gtk_accel_path "/layers/layers-color-tag-menu" "") +; (gtk_accel_path "/context/context-background-value-increase-skip" "") +; (gtk_accel_path "/view/view-display-intent-relative-colorimetric" "") +; (gtk_accel_path "/tools/tools-aspect-set-to-default" "") +; (gtk_accel_path "/filters/filters-supernova" "") +; (gtk_accel_path "/image/image-transform-menu" "") +; (gtk_accel_path "/view/view-shrink-wrap" "j") +; (gtk_accel_path "/context/context-swatch-foreground-set" "") +; (gtk_accel_path "/plug-in/file-pat-save-internal" "") +; (gtk_accel_path "/context/context-foreground-red-decrease" "") +; (gtk_accel_path "/view/view-zoom-8-1" "4") +; (gtk_accel_path "/context/context-brush-radius-minimum" "") +; (gtk_accel_path "/filters/filters-sepia" "") +; (gtk_accel_path "/debug/debug-dump-attached-data" "") +; (gtk_accel_path "/context/context-brush-hardness-increase" "") +; (gtk_accel_path "/context/context-foreground-saturation-set" "") +; (gtk_accel_path "/view/view-softproof-gamut-check" "") +; (gtk_accel_path "/dialogs/dialogs-images" "") +; (gtk_accel_path "/layers/layers-mask-selection-intersect" "") +(gtk_accel_path "/plug-in/file-print-gtk" "p") +; (gtk_accel_path "/filters/filters-reshow" "f") +; (gtk_accel_path "/dialogs/dialogs-gradient-editor" "") +; (gtk_accel_path "/view/view-move-to-screen-menu" "") +; (gtk_accel_path "/documents/documents-copy-location" "") +; (gtk_accel_path "/plug-in/plug-in-goat-exercise-python" "") +; (gtk_accel_path "/view/view-open-display" "") +; (gtk_accel_path "/layers/layers-linked" "") +; (gtk_accel_path "/tool-options/tool-options-save-preset-menu" "") +; (gtk_accel_path "/context/context-brush-spacing-maximum" "") +; (gtk_accel_path "/images/images-delete" "") +; (gtk_accel_path "/file/file-copy-location" "") +; (gtk_accel_path "/dialogs/dialogs-buffers" "") +; (gtk_accel_path "/layers/layers-menu" "") +; (gtk_accel_path "/tools/tools-aspect-minimum" "") +; (gtk_accel_path "/context/context-foreground-green-decrease-skip" "") +; (gtk_accel_path "/context/context-palette-background-previous-skip" "") +; (gtk_accel_path "/edit/edit-paste-as-new-image" "v") +; (gtk_accel_path "/filters/filters-stress" "") +; (gtk_accel_path "/dialogs/dialogs-patterns" "p") +; (gtk_accel_path "/filters/filters-edge-laplace" "") +; (gtk_accel_path "/context/context-background-green-decrease" "") +; (gtk_accel_path "/view/view-rotate-90" "") +; (gtk_accel_path "/filters/filters-ripple" "") +; (gtk_accel_path "/filters/filters-variable-blur" "") +; (gtk_accel_path "/plug-in/plug-in-ifscompose" "") +; (gtk_accel_path "/context/context-brush-spacing-decrease" "") +; (gtk_accel_path "/tools/tools-airbrush" "a") +; (gtk_accel_path "/context/context-background-hue-increase-skip" "") +; (gtk_accel_path "/view/view-softproof-intent-menu" "") +; (gtk_accel_path "/filters/filters-sinus" "") +; (gtk_accel_path "/filters/filters-c2g" "") +; (gtk_accel_path "/plug-in/plug-in-metadata-viewer" "") +; (gtk_accel_path "/tool-options/tool-options-edit-preset-menu" "") +; (gtk_accel_path "/view/view-close" "w") +; (gtk_accel_path "/layers/layers-edit-text" "") +; (gtk_accel_path "/context/context-brush-shape-diamond" "") +; (gtk_accel_path "/tools/tools-force-decrease-skip" "") +; (gtk_accel_path "/plug-in/gimp-online-main-web-site" "") +; (gtk_accel_path "/vectors/vectors-edit-attributes" "") +; (gtk_accel_path "/context/context-opacity-increase" "") +; (gtk_accel_path "/dockable/dialogs-tool-options" "") +; (gtk_accel_path "/context/context-brush-spacing-set" "") +; (gtk_accel_path "/context/context-pattern-select-last" "") +; (gtk_accel_path "/filters/filters-distance-map" "") +; (gtk_accel_path "/tools/tools-free-select" "f") +; (gtk_accel_path "/context/context-foreground-green-minimum" "") +; (gtk_accel_path "/file/file-open-recent-09" "9") +; (gtk_accel_path "/context/context-tool-select-next" "") +; (gtk_accel_path "/layers/layers-select-top" "Home") +; (gtk_accel_path "/channels/channels-selection-subtract" "") +; (gtk_accel_path "/file/file-open-recent-08" "8") +; (gtk_accel_path "/context/context-background-hue-increase" "") +; (gtk_accel_path "/context/context-colormap-background-next-skip" "") +; (gtk_accel_path "/context/context-brush-spikes-decrease-skip" "") +; (gtk_accel_path "/image/image-color-profile-use-srgb" "") +; (gtk_accel_path "/dialogs/dialogs-mypaint-brushes" "") +; (gtk_accel_path "/context/context-font-select-previous" "") +; (gtk_accel_path "/file/file-open-recent-07" "7") +; (gtk_accel_path "/plug-in/plug-in-film" "") +; (gtk_accel_path "/layers/layers-anchor" "h") +; (gtk_accel_path "/view/view-new" "") +; (gtk_accel_path "/edit/edit-redo" "y") +; (gtk_accel_path "/context/context-brush-angle-decrease" "") +; (gtk_accel_path "/file/file-open-recent-06" "6") +; (gtk_accel_path "/images/images-new-view" "") +; (gtk_accel_path "/plug-in/file-gbr-save-internal" "") +; (gtk_accel_path "/file/file-open-recent-05" "5") +; (gtk_accel_path "/edit/edit-paste-in-place" "v") +; (gtk_accel_path "/vectors/vectors-selection-add" "") +; (gtk_accel_path "/tools/tools-aspect-increase-percent" "") +; (gtk_accel_path "/plug-in/plug-in-reset-all" "") +; (gtk_accel_path "/layers/layers-edit-attributes" "") +; (gtk_accel_path "/drawable/drawable-lock-content" "") +; (gtk_accel_path "/plug-in/gimp-help-using-docks" "") +; (gtk_accel_path "/filters/filters-hue-saturation" "") +; (gtk_accel_path "/context/context-foreground-red-decrease-skip" "") +; (gtk_accel_path "/filters/filters-lens-distortion" "") +; (gtk_accel_path "/image/image-convert-indexed" "") +; (gtk_accel_path "/filters/filters-tile-glass" "") +; (gtk_accel_path "/plug-in/script-fu-lava" "") +; (gtk_accel_path "/file/file-open-recent-04" "4") +; (gtk_accel_path "/dock/dock-auto-follow-active" "") +; (gtk_accel_path "/dockable/dialogs-fonts" "") +; (gtk_accel_path "/patterns/patterns-open-as-image" "") +; (gtk_accel_path "/context/context-foreground-saturation-maximum" "") +; (gtk_accel_path "/image/colors-map-menu" "") +; (gtk_accel_path "/context/context-brush-radius-set" "") +; (gtk_accel_path "/file/file-open-recent-03" "3") +; (gtk_accel_path "/context/context-brush-hardness-decrease" "") +; (gtk_accel_path "/windows/windows-show-display-previous" "Tab") +; (gtk_accel_path "/view/view-softproof-intent-relative-colorimetric" "") +; (gtk_accel_path "/tools/tools-force-set-to-default" "") +; (gtk_accel_path "/file/file-open-recent-02" "2") +; (gtk_accel_path "/drawable/drawable-equalize" "") +; (gtk_accel_path "/context/context-font-select-first" "") +; (gtk_accel_path "/plug-in/plug-in-animationunoptimize" "") +; (gtk_accel_path "/layers/layers-mask-selection-replace" "") +; (gtk_accel_path "/plug-in/python-fu-foggify" "") +; (gtk_accel_path "/patterns/patterns-refresh" "") +; (gtk_accel_path "/file/file-open-recent-01" "1") +; (gtk_accel_path "/image/image-crop-to-content" "") +; (gtk_accel_path "/filters/filters-polar-coordinates" "") +; (gtk_accel_path "/brushes/brushes-new" "") +; (gtk_accel_path "/context/context-background-hue-minimum" "") +; (gtk_accel_path "/tools/tools-rotate" "r") +; (gtk_accel_path "/image/image-convert-double" "") +; (gtk_accel_path "/view/view-zoom-1-8" "4") +; (gtk_accel_path "/context/context-background-green-decrease-skip" "") +; (gtk_accel_path "/edit/edit-fill-fg" "comma") +; (gtk_accel_path "/tools/tools-scale" "s") +; (gtk_accel_path "/context/context-brush-select-last" "") +; (gtk_accel_path "/plug-in/script-fu-distress-selection" "") +; (gtk_accel_path "/edit/undo-popup" "") +; (gtk_accel_path "/layers/layers-mode-first" "") +; (gtk_accel_path "/view/view-zoom-1-16" "5") +; (gtk_accel_path "/dockable/dockable-add-tab-menu" "") +; (gtk_accel_path "/context/context-tool-select-previous" "") +; (gtk_accel_path "/channels/channels-color-tag-gray" "") +; (gtk_accel_path "/dockable/dialogs-error-console" "") +; (gtk_accel_path "/context/context-foreground-value-maximum" "") +; (gtk_accel_path "/channels/channels-raise" "") +; (gtk_accel_path "/context/context-background-red-set" "") +; (gtk_accel_path "/plug-in/script-fu-perspective-shadow" "") +; (gtk_accel_path "/context/context-opacity-decrease" "") +; (gtk_accel_path "/filters/filters-cubism" "") +; (gtk_accel_path "/filters/filters-motion-blur-circular" "") +; (gtk_accel_path "/context/context-gradient-menu" "") +; (gtk_accel_path "/plug-in/gimp-online-docs-web-site" "") +; (gtk_accel_path "/filters/filters-normal-map" "") +; (gtk_accel_path "/vectors/vectors-color-tag-green" "") +; (gtk_accel_path "/vectors/vectors-copy" "") +; (gtk_accel_path "/view/view-zoom-1-4" "3") +; (gtk_accel_path "/image/image-resize" "") +; (gtk_accel_path "/context/context-palette-foreground-last" "") +; (gtk_accel_path "/tools/tools-airbrush-rate-decrease-skip" "") +; (gtk_accel_path "/tools/tools-shear" "h") +; (gtk_accel_path "/context/context-background-green-minimum" "") +; (gtk_accel_path "/view/view-snap-to-canvas" "") +; (gtk_accel_path "/view/view-scroll-left-border" "") +; (gtk_accel_path "/filters/filters-pixelize" "") +; (gtk_accel_path "/dock/dock-close" "") +; (gtk_accel_path "/windows/windows-hide-docks" "Tab") +; (gtk_accel_path "/view/view-show-layer-boundary" "") +; (gtk_accel_path "/file/file-save" "s") +; (gtk_accel_path "/layers/layers-composite-space-rgb-linear" "") +; (gtk_accel_path "/windows/windows-show-display-next" "Tab") +; (gtk_accel_path "/context/context-background-hue-decrease" "") +; (gtk_accel_path "/brushes/brushes-copy-location" "") +; (gtk_accel_path "/view/view-zoom-1-2" "2") +; (gtk_accel_path "/image/image-menu" "") +; (gtk_accel_path "/filters/filters-noise-slur" "") +; (gtk_accel_path "/edit/edit-paste-as-menu" "") +; (gtk_accel_path "/tools/tools-select-menu" "") +; (gtk_accel_path "/view/view-zoom-1-1" "1") +; (gtk_accel_path "/plug-in/plug-in-warp" "") +; (gtk_accel_path "/layers/layers-mask-edit" "") +; (gtk_accel_path "/windows/windows-show-tabs" "") +; (gtk_accel_path "/layers/layers-mask-add-last-values" "") +; (gtk_accel_path "/dockable/dockable-preview-size-huge" "") +; (gtk_accel_path "/image/image-merge-layers" "m") +; (gtk_accel_path "/filters/filters-noise-perlin" "") +; (gtk_accel_path "/plug-in/plug-in-destripe" "") +; (gtk_accel_path "/dockable/dockable-tab-style-icon-name" "") +; (gtk_accel_path "/dockable/dockable-preview-size-large" "") +; (gtk_accel_path "/layers/layers-color-tag-green" "") +; (gtk_accel_path "/context/context-background-red-decrease-skip" "") +; (gtk_accel_path "/tools/tools-size-decrease-skip" "bracketleft") +; (gtk_accel_path "/dockable/dialogs-selection-editor" "") +; (gtk_accel_path "/quick-mask/quick-mask-configure" "") +; (gtk_accel_path "/filters/filters-cartoon" "") +; (gtk_accel_path "/plug-in/plug-in-fractalexplorer" "") +; (gtk_accel_path "/view/view-softproof-profile" "") +; (gtk_accel_path "/view/view-rotate-270" "") +; (gtk_accel_path "/vectors/vectors-lower-to-bottom" "") +; (gtk_accel_path "/context/context-colormap-background-set" "") +; (gtk_accel_path "/layers/layers-color-tag-gray" "") +; (gtk_accel_path "/tools/tools-paintbrush-size-set" "") +; (gtk_accel_path "/brushes/brushes-popup" "") +; (gtk_accel_path "/dock/dock-show-image-menu" "") +; (gtk_accel_path "/context/context-brush-hardness-increase-skip" "") +; (gtk_accel_path "/plug-in/script-fu-selection-to-pattern" "") +; (gtk_accel_path "/documents/documents-clear" "") +; (gtk_accel_path "/plug-in/script-fu-carve-it" "") +; (gtk_accel_path "/plug-in/plug-in-plug-in-details" "") +; (gtk_accel_path "/context/context-brush-select-previous" "") +; (gtk_accel_path "/context/context-palette-background-set" "") +; (gtk_accel_path "/tools/tools-eraser" "e") +; (gtk_accel_path "/select/select-float" "l") +; (gtk_accel_path "/context/context-gradient-select-next" "") +; (gtk_accel_path "/filters/filters-grid" "") +; (gtk_accel_path "/tools/tools-size-decrease-percent" "") +; (gtk_accel_path "/layers/layers-visible" "") +; (gtk_accel_path "/documents/documents-open" "") +; (gtk_accel_path "/dockable/dialogs-sample-points" "") +; (gtk_accel_path "/context/context-background-blue-decrease-skip" "") +; (gtk_accel_path "/view/view-softproof-intent-saturation" "") +; (gtk_accel_path "/view/view-zoom-minimum" "") +; (gtk_accel_path "/tools/tools-hardness-decrease-skip" "") +; (gtk_accel_path "/filters/filters-rgb-clip" "") +; (gtk_accel_path "/context/context-background-value-maximum" "") +; (gtk_accel_path "/layers/layers-lower-to-bottom" "") +; (gtk_accel_path "/tools/tools-force-set" "") +; (gtk_accel_path "/filters/filters-wind" "") +; (gtk_accel_path "/context/context-foreground-red-minimum" "") +; (gtk_accel_path "/debug/debug-dump-managers" "") +; (gtk_accel_path "/context/context-tool-select-last" "") +; (gtk_accel_path "/filters/filters-displace" "") +; (gtk_accel_path "/filters/filters-enhance-menu" "") +; (gtk_accel_path "/filters/filters-engrave" "") +; (gtk_accel_path "/tools/tools-object-2-next" "") +; (gtk_accel_path "/view/view-show-guides" "t") +; (gtk_accel_path "/plug-in/script-fu-test-sphere" "") +; (gtk_accel_path "/vectors/vectors-color-tag-red" "") +; (gtk_accel_path "/vectors/vectors-selection-from-vectors" "v") +; (gtk_accel_path "/view/view-zoom-other" "") +; (gtk_accel_path "/image/image-convert-u32" "") +; (gtk_accel_path "/dockable/dialogs-symmetry" "") +; (gtk_accel_path "/context/context-swatch-background-previous" "") +; (gtk_accel_path "/select/select-feather" "") +; (gtk_accel_path "/filters/filters-motion-blur-zoom" "") +; (gtk_accel_path "/dialogs/dialogs-tool-presets" "") +; (gtk_accel_path "/vectors/vectors-duplicate" "") +; (gtk_accel_path "/view/view-display-intent-saturation" "") +; (gtk_accel_path "/tools/tools-foreground-select" "") diff --git a/.config/GIMP/2.99/parasiterc b/.config/GIMP/2.99/parasiterc new file mode 100644 index 000000000..6cfb1bec8 --- /dev/null +++ b/.config/GIMP/2.99/parasiterc @@ -0,0 +1,6 @@ +# GIMP parasiterc +# +# This file will be entirely rewritten each time you exit. + + +# end of parasiterc diff --git a/.config/GIMP/2.99/pluginrc b/.config/GIMP/2.99/pluginrc new file mode 100644 index 000000000..5a724f92e --- /dev/null +++ b/.config/GIMP/2.99/pluginrc @@ -0,0 +1,4152 @@ +# GIMP pluginrc +# +# This file can safely be removed and will be automatically regenerated by +# querying the installed plug-ins. + +(protocol-version 270) +(file-version 13) + +(plug-in-def "${gimp_plug_in_dir}/plug-ins/web-page/web-page" 1609190423 + (proc-def "plug-in-web-page" 1 + "Create an image of a webpage" + "The plug-in allows you to take a screenshot of a webpage." + "Mukund Sivaraman " + "2011" + "2011" + "From _Webpage..." + 1 + (menu-path "/File/Create/Acquire") + (icon icon-name -1 "") + "" + 4 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 0) + (proc-arg 6 "GParamString" "gchararray" "url" "URL" "URL of the webpage to screenshot" 3 "http://www.gimp.org/") + (proc-arg 1 "GParamInt" "gint" "width" "Width" "The width of the screenshot (in pixels)" 3 100 524288 1024) + (proc-arg 1 "GParamInt" "gint" "font-size" "Font size" "The font size to use in the page (in pt)" 3 1 1000 12) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The output image" 3 0))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/web-browser/web-browser" 1609190423 + (proc-def "plug-in-web-browser" 1 + "Open an URL in the user specified web browser" + "Opens the given URL in the user specified web browser." + "Henrik Brix Andersen " + "2003" + "2003/09/16" + "" + 0 + (icon icon-name -1 "") + "" + 1 0 + (proc-arg 6 "GParamString" "gchararray" "url" "URL" "URL to open" 3 "http://www.gimp.org/"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/wavelet-decompose/wavelet-decompose" 1609190423 + (proc-def "plug-in-wavelet-decompose" 1 + "Wavelet decompose" + "Compute and render wavelet scales" + "Miroslav Talasek " + "Miroslav Talasek " + "19january 2017" + "_Wavelet-decompose..." + 1 + (menu-path "/Filters/Enhance") + (icon icon-name -1 "") + "RGB*, GRAY*" + 6 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The input image" 3 0) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "drawable" "Drawable" "The input drawable" 3 1) + (proc-arg 1 "GParamInt" "gint" "scales" "Scales" "Number of scales" 3 1 7 5) + (proc-arg 4 "GParamBoolean" "gboolean" "create-group" "Create group" "Create a layer group to store the decomposition" 3 1) + (proc-arg 4 "GParamBoolean" "gboolean" "create-masks" "Create masks" "Add a layer mask to each scales layer" 3 0))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/warp/warp" 1609190423 + (proc-def "plug-in-warp" 1 + "Twist or smear image in many different ways" + "Smears an image along vector paths calculated as the gradient of a separate control matrix. The effect can look like brushstrokes of acrylic or watercolor paint, in some cases." + "John P. Beale" + "John P. Beale" + "1997" + "_Warp..." + 1 + (menu-path "/Filters/Map") + (icon icon-name -1 "") + "RGB*, GRAY*" + 17 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The input image" 3 0) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "drawable" "Drawable" "The input drawable" 3 1) + (proc-arg 5 "GParamDouble" "gdouble" "amount" "Amount" "Pixel displacement multiplier" 3 -1.7976931348623157e+308 1.7976931348623157e+308 10) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "warp-map" "Warp map" "Displacement control map" 3 1) + (proc-arg 1 "GParamInt" "gint" "iter" "Iter" "Iteration count" 3 1 100 5) + (proc-arg 5 "GParamDouble" "gdouble" "dither" "Dither" "Random dither amount" 3 0 100 0) + (proc-arg 5 "GParamDouble" "gdouble" "angle" "Angle" "Angle of gradient vector rotation" 3 0 360 90) + (proc-arg 1 "GParamInt" "gint" "wrap-type" "Wrap type" "Edge behavior: { WRAP (0), SMEAR (1), BLACK (2), COLOR (3) }" 3 0 3 0) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "mag-map" "Mag map" "Magnitude control map" 3 1) + (proc-arg 4 "GParamBoolean" "gboolean" "mag-use" "Mag use" "Use magnitude map" 3 0) + (proc-arg 1 "GParamInt" "gint" "substeps" "Substeps" "Substeps between image updates" 3 1 100 1) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "grad-map" "Grad map" "Gradient control map" 3 1) + (proc-arg 5 "GParamDouble" "gdouble" "grad-scale" "Grad scale" "Scaling factor for gradient map (0=don't use)" 3 -1.7976931348623157e+308 1.7976931348623157e+308 0) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "vector-map" "Vector map" "Fixed vector control map" 3 1) + (proc-arg 5 "GParamDouble" "gdouble" "vector-scale" "Vector scale" "Scaling factor for fixed vector map (0=don't use)" 3 -1.7976931348623157e+308 1.7976931348623157e+308 0) + (proc-arg 5 "GParamDouble" "gdouble" "vector-angle" "Vector angle" "Angle for fixed vector map" 3 0 360 0))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/van-gogh-lic/van-gogh-lic" 1609190423 + (proc-def "plug-in-lic" 1 + "Special effects that nobody understands" + "No help yet" + "Tom Bech & Federico Mena Quintero" + "Tom Bech & Federico Mena Quintero" + "Version 0.14, September 24 1997" + "_Van Gogh (LIC)..." + 1 + (menu-path "/Filters/Artistic") + (icon icon-name -1 "") + "RGB*" + 3 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The input image" 3 0) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "drawable" "Drawable" "The input drawable" 3 1))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/unit-editor/unit-editor" 1609190423 + (proc-def "plug-in-unit-editor" 1 + "Create or alter units used in GIMP" + "The GIMP unit editor" + "Michael Natterer " + "Michael Natterer " + "2000" + "U_nits" + 1 + (menu-path "/Edit/Preferences") + (icon icon-name -1 "gimp-tool-measure") + "" + 1 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 0))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/tile-small/tile-small" 1609190423 + (proc-def "plug-in-small-tiles" 1 + "Tile image into smaller versions of the original" + "More here later" + "Andy Thomas" + "Andy Thomas" + "1997" + "_Small Tiles..." + 1 + (menu-path "/Filters/Map") + (icon icon-name -1 "") + "RGB*, GRAY*" + 4 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The input image" 3 0) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "drawable" "Drawable" "The input drawable" 3 1) + (proc-arg 1 "GParamInt" "gint" "num-tiles" "Num tiles" "Number of tiles to make" 3 2 6 2))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/tile/tile" 1609190423 + (proc-def "plug-in-tile" 1 + "Create an array of copies of the image" + "This function creates a new image with a single layer sized to the specified 'new_width' and 'new_height' parameters. The specified drawable is tiled into this layer. The new layer will have the same type as the specified drawable and the new image will have a corresponding base type." + "Spencer Kimball & Peter Mattis" + "Spencer Kimball & Peter Mattis" + "1996-1997" + "_Tile..." + 1 + (menu-path "/Filters/Map") + (icon icon-name -1 "") + "*" + 6 2 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The input image" 3 0) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "drawable" "Drawable" "The input drawable" 3 1) + (proc-arg 1 "GParamInt" "gint" "new-width" "New width" "New (tiled) image width" 3 1 524288 1) + (proc-arg 1 "GParamInt" "gint" "new-height" "New height" "New (tiled) image height" 3 1 524288 1) + (proc-arg 4 "GParamBoolean" "gboolean" "new-image" "New image" "Create a new image" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "new-image" "New image" "Output image (NULL if new-image == FALSE)" 3 1) + (proc-arg 8 "GimpParamLayer" "GimpLayer" "new-layer" "New layer" "Output layer (NULL if new-image == FALSE)" 3 1))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/spyro-plus/spyro-plus.py" 1609190423 + (proc-def "plug-in-spyrogimp" 1 + "Draw spyrographs using current tool settings and selection." + "Uses current tool settings to draw Spyrograph patterns. The size and location of the pattern is based on the current selection." + "Elad Shahar" + "Elad Shahar" + "2018" + "Spyrogimp..." + 1 + (menu-path "/Filters/Render/") + (icon icon-name -1 "") + "*" + 16 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The input image" 3 0) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "drawable" "Drawable" "The input drawable" 3 1) + (proc-arg 1 "GParamInt" "gint" "curve-type" "The curve type { Spyrograph (0), Epitrochoid (1), Sine (2), Lissajous(3) }" "The curve type { Spyrograph (0), Epitrochoid (1), Sine (2), Lissajous(3) }" 3 0 3 0) + (proc-arg 1 "GParamInt" "gint" "shape" "Shape of fixed gear" "Shape of fixed gear" 3 0 2147483647 0) + (proc-arg 1 "GParamInt" "gint" "sides" "Number of sides of fixed gear (3 or greater). Only used by some shapes." "Number of sides of fixed gear (3 or greater). Only used by some shapes." 3 3 2147483647 3) + (proc-arg 5 "GParamDouble" "gdouble" "morph" "Morph shape of fixed gear, between 0 and 1. Only used by some shapes." "Morph shape of fixed gear, between 0 and 1. Only used by some shapes." 3 0 1 0) + (proc-arg 1 "GParamInt" "gint" "fixed-teeth" "Number of teeth for fixed gear" "Number of teeth for fixed gear" 3 0 2147483647 96) + (proc-arg 1 "GParamInt" "gint" "moving-teeth" "Number of teeth for moving gear" "Number of teeth for moving gear" 3 0 2147483647 36) + (proc-arg 5 "GParamDouble" "gdouble" "hole-percent" "Location of hole in moving gear in percent, where 100 means that the hole is at the edge of the gear, and 0 means the hole is at the center" "Location of hole in moving gear in percent, where 100 means that the hole is at the edge of the gear, and 0 means the hole is at the center" 3 0 100 100) + (proc-arg 1 "GParamInt" "gint" "margin" "Margin from selection, in pixels" "Margin from selection, in pixels" 3 0 2147483647 0) + (proc-arg 4 "GParamBoolean" "gboolean" "equal-w-h" "Make height and width equal" "Make height and width equal" 3 0) + (proc-arg 5 "GParamDouble" "gdouble" "pattern-rotation" "Pattern rotation, in degrees" "Pattern rotation, in degrees" 3 -360 360 0) + (proc-arg 5 "GParamDouble" "gdouble" "shape-rotation" "Shape rotation of fixed gear, in degrees" "Shape rotation of fixed gear, in degrees" 3 -360 360 0) + (proc-arg 1 "GParamInt" "gint" "tool" "Tool to use for drawing the pattern." "Tool to use for drawing the pattern." 3 0 2147483647 1) + (proc-arg 4 "GParamBoolean" "gboolean" "long-gradient" "Whether to apply a long gradient to match the length of the pattern. Only applicable to some of the tools." "Whether to apply a long gradient to match the length of the pattern. Only applicable to some of the tools." 3 0)) + (locale-def "gimp30-python" "${gimp_installation_dir}/share/locale")) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/sphere-designer/sphere-designer" 1609190423 + (proc-def "plug-in-spheredesigner" 1 + "Create an image of a textured sphere" + "This plug-in can be used to create textured and/or bumpmapped spheres, and uses a small lightweight raytracer to perform the task with good quality" + "Vidar Madsen" + "Vidar Madsen" + "1999" + "Sphere _Designer..." + 1 + (menu-path "/Filters/Render") + (icon icon-name -1 "") + "RGB*, GRAY*" + 3 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The input image" 3 0) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "drawable" "Drawable" "The input drawable" 3 1))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/sparkle/sparkle" 1609190423 + (proc-def "plug-in-sparkle" 1 + "Turn bright spots into starry sparkles" + "Uses a percentage based luminoisty threhsold to find candidate pixels for adding some sparkles (spikes)." + "John Beale, & (ported to GIMP v0.54) Michael J. Hammel & ted to GIMP v1.0) & Seth Burgess & Spencer Kimball" + "John Beale" + "Version 1.27, September 2003" + "_Sparkle..." + 1 + (menu-path "/Filters/Light and Shadow/Light") + (icon icon-name -1 "") + "RGB*, GRAY*" + 16 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The input image" 3 0) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "drawable" "Drawable" "The input drawable" 3 1) + (proc-arg 5 "GParamDouble" "gdouble" "lum-threshold" "Lum threshold" "Luminosity threshold" 3 0 1 0.001) + (proc-arg 5 "GParamDouble" "gdouble" "flare-inten" "Flare inten" "Flare intensity" 3 0 1 0.5) + (proc-arg 1 "GParamInt" "gint" "spike-len" "Spike len" "Spike length (in pixels)" 3 1 1000 20) + (proc-arg 1 "GParamInt" "gint" "spike-points" "Spike points" "# of spike points" 3 1 1000 4) + (proc-arg 1 "GParamInt" "gint" "spike-angle" "Spike angle" "Spike angle (-1: random)" 3 -1 360 15) + (proc-arg 5 "GParamDouble" "gdouble" "density" "Density" "Spike density" 3 0 1 1) + (proc-arg 5 "GParamDouble" "gdouble" "transparency" "Transparency" "Transparency" 3 0 1 0) + (proc-arg 5 "GParamDouble" "gdouble" "random-hue" "Random hue" "Random hue" 3 0 1 0) + (proc-arg 5 "GParamDouble" "gdouble" "random-saturation" "Random saturation" "Random saturation" 3 0 1 0) + (proc-arg 4 "GParamBoolean" "gboolean" "preserve-luminosity" "Preserve luminosity" "Preserve luminosity" 3 0) + (proc-arg 4 "GParamBoolean" "gboolean" "inverse" "Inverse" "Inverse" 3 0) + (proc-arg 4 "GParamBoolean" "gboolean" "border" "Border" "Add border" 3 0) + (proc-arg 1 "GParamInt" "gint" "color-type" "Color type" "Color of sparkles: { NATURAL (0), FOREGROUND (1), BACKGROUND (2) }" 3 0 2 0))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/smooth-palette/smooth-palette" 1609190423 + (proc-def "plug-in-smooth-palette" 1 + "Derive a smooth color palette from the image" + "help!" + "Scott Draves" + "Scott Draves" + "1997" + "Smoo_th Palette..." + 1 + (menu-path "/Colors/Info") + (icon icon-name -1 "") + "RGB*" + 7 2 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The input image" 3 0) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "drawable" "Drawable" "The input drawable" 3 1) + (proc-arg 1 "GParamInt" "gint" "width" "Widtg" "Widtg" 3 2 524288 256) + (proc-arg 1 "GParamInt" "gint" "height" "Height" "Height" 3 2 524288 64) + (proc-arg 1 "GParamInt" "gint" "n-tries" "N tries" "Search septh" 3 1 1024 50) + (proc-arg 4 "GParamBoolean" "gboolean" "show-image" "Show image" "Show image" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "new-image" "New image" "Output image" 3 0) + (proc-arg 8 "GimpParamLayer" "GimpLayer" "new-layer" "New layer" "Output layer" 3 0))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/selection-to-path/selection-to-path" 1609190423 + (proc-def "plug-in-sel2path" 1 + "Converts a selection to a path" + "Converts a selection to a path" + "Andy Thomas" + "Andy Thomas" + "1999" + "" + 0 + (icon icon-name -1 "") + "*" + 23 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The input image" 3 0) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "drawable" "Drawable" "The input drawable" 3 1) + (proc-arg 5 "GParamDouble" "gdouble" "align-threshold" "Align threshold" "Align threshold" 3 0.20000000000000001 2 0.5) + (proc-arg 5 "GParamDouble" "gdouble" "corner-always-threshold" "Corner always threshold" "Corner always threshold" 3 30 180 60) + (proc-arg 1 "GParamInt" "gint" "corner-surround" "Corner surround" "Corner surround" 3 3 8 4) + (proc-arg 5 "GParamDouble" "gdouble" "corner-threshold" "Corner threshold" "Corner threshold" 3 0 180 100) + (proc-arg 5 "GParamDouble" "gdouble" "error-threshold" "Error threshold" "Error threshold" 3 0.20000000000000001 10 0.40000000000000002) + (proc-arg 1 "GParamInt" "gint" "filter-alternative-surround" "Filter alternative surround" "Filter alternative surround" 3 1 10 1) + (proc-arg 5 "GParamDouble" "gdouble" "filter-epsilon" "Filter epsilon" "Filter epsilon" 3 5 40 10) + (proc-arg 1 "GParamInt" "gint" "filter-iteration-count" "Filter iteration count" "Filter iteration count" 3 4 70 4) + (proc-arg 5 "GParamDouble" "gdouble" "filter-percent" "Filter percent" "Filter percent" 3 0 1 0.33000000000000002) + (proc-arg 1 "GParamInt" "gint" "filter-secondary-surround" "Filter secondary surround" "Filter secondary surround" 3 3 10 3) + (proc-arg 1 "GParamInt" "gint" "filter-surround" "Filter surround" "Filter surround" 3 2 10 2) + (proc-arg 4 "GParamBoolean" "gboolean" "keep-knees" "Keep knees" "Keep knees" 3 0) + (proc-arg 5 "GParamDouble" "gdouble" "line-reversion-threshold" "Line reversion threshold" "Line reversion threshold" 3 0.01 0.20000000000000001 0.01) + (proc-arg 5 "GParamDouble" "gdouble" "line-threshold" "Line threshold" "Line threshold" 3 0.20000000000000001 4 0.5) + (proc-arg 5 "GParamDouble" "gdouble" "reparametrize-improvement" "Reparametrize improvement" "Reparametrize improvement" 3 0 1 0.01) + (proc-arg 5 "GParamDouble" "gdouble" "reparametrize-threshold" "Reparametrize threshold" "Reparametrize threshold" 3 1 50 1) + (proc-arg 5 "GParamDouble" "gdouble" "subdivide-search" "Subdivide search" "Subdivide search" 3 0.050000000000000003 1 0.10000000000000001) + (proc-arg 1 "GParamInt" "gint" "subdivide-surround" "Subdivide surround" "Subdivide surround" 3 2 10 4) + (proc-arg 5 "GParamDouble" "gdouble" "subdivide-threshold" "Subdivide threshold" "Subdivide threshold" 3 0.01 1 0.029999999999999999) + (proc-arg 1 "GParamInt" "gint" "tangent-surround" "Tangent surround" "Tangent surround" 3 2 10 3))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/script-fu/script-fu" 1609190423 + (proc-def "extension-script-fu" 2 + "A scheme interpreter for scripting GIMP operations" + "More help here later" + "Spencer Kimball & Peter Mattis" + "Spencer Kimball & Peter Mattis" + "1997" + "" + 0 + (icon icon-name -1 "") + "" + 0 0) + (proc-def "plug-in-script-fu-console" 1 + "Interactive console for Script-Fu development" + "Provides an interface which allows interactive scheme development." + "Spencer Kimball & Peter Mattis" + "Spencer Kimball & Peter Mattis" + "1997" + "Script-Fu _Console" + 1 + (menu-path "/Filters/Development/Script-Fu") + (icon icon-name -1 "") + "" + 1 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 0)) + (proc-def "plug-in-script-fu-text-console" 1 + "Provides a text console mode for script-fu development" + "Provides an interface which allows interactive scheme development." + "Spencer Kimball & Peter Mattis" + "Spencer Kimball & Peter Mattis" + "1997" + "" + 0 + (icon icon-name -1 "") + "" + 1 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 0)) + (proc-def "plug-in-script-fu-server" 1 + "Server for remote Script-Fu operation" + "Provides a server for remote script-fu operation. NOTE that for security reasons this procedure's API was changed in an incompatible way since GIMP 2.8.12. You now have to pass the IP to listen on as first parameter. Calling this procedure with the old API will fail on purpose." + "Spencer Kimball & Peter Mattis" + "Spencer Kimball & Peter Mattis" + "1997" + "_Start Server..." + 1 + (menu-path "/Filters/Development/Script-Fu") + (icon icon-name -1 "") + "" + 4 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 0) + (proc-arg 6 "GParamString" "gchararray" "ip" "IP" "The IP on which to listen for requests" 3 "") + (proc-arg 1 "GParamInt" "gint" "port" "Port" "The port on which to listen for requests" 3 0 2147483647 0) + (proc-arg 6 "GParamString" "gchararray" "logfile" "Log File" "The file to log activity to" 3 "")) + (proc-def "plug-in-script-fu-eval" 1 + "Evaluate scheme code" + "Evaluate the code under the scheme interpreter (primarily for batch mode)" + "Manish Singh" + "Manish Singh" + "1998" + "" + 0 + (icon icon-name -1 "") + "" + 2 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 0) + (proc-arg 6 "GParamString" "gchararray" "code" "Code" "The code to run" 3 "")) + (locale-def "gimp30-script-fu")) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/screenshot/screenshot" 1609190423 + (proc-def "plug-in-screenshot" 1 + "Create an image from an area of the screen" + "The plug-in takes screenshots of an interactively selected window or of the desktop, either the whole desktop or an interactively selected region. When called non-interactively, it may grab the root window or use the window-id passed as a parameter. The last four parameters are optional and can be used to specify the corners of the region to be grabbed.On Mac OS X or on gnome-shell, when called non-interactively, the plug-inonly can take screenshots of the entire root window.Grabbing a window or a region is not supportednon-interactively. To grab a region or a particularwindow, you need to use the interactive mode." + "Sven Neumann , Henrik Brix Andersen ,Simone Karin Lehmann" + "1998 - 2008" + "v1.1 (2008/04)" + "_Screenshot..." + 1 + (menu-path "/File/Create/Acquire") + (icon pixbuf 1216 "\211PNG\15\12\32\12\0\0\0\15IHDR\0\0\0\26\0\0\0\26\10\6\0\0\0\304\264l\73\0\0\0\4sBIT\10\10\10\10\174\10d\210\0\0\4wIDAT\70\215\235\225MlTU\24\200\277w\347\275\67o\336L\207v\72\355\264\245\277\54\240\15\65\32\26B\60a\3\211D\266jpQ\22\27\332\24\27\254\334\310\332\350FV\256\14\46\6Q\33\22b\42\211U\371\13\32im\220\14H\261\264\324t\50\264e\246o\176\72\363\346\275\231\67\63\327E\247\70\10\46\340In\356\71\347\236\174\347\344\334ss\25\236CN\235\72\245\1\321M\373\310\221\43\53\377\25\253\74\53\64\26k\77\20\10\230\337\7\2\1\337\246\57\227\313\331\225\212\267\57\231L\305\237\247\300\307D\10qsrjR\66\312\271s\337\345\201kO\213W\237\25\254\252\252y\371\362\45\226\226\356m\70\44\134\274t\41\250\50\212\52\245\374\377\140\237\317g\216\217\217\57wvv\274T\267\265\345\345\225\71UU\203\236\347\75\33\270\275\275\255\23\210\1\273\223\311\324\73\73\207w\66\15\14\364\307J\245\222\335\327\333\177\323\347\23\322\247\252\30F\240\66\77w\267\315\363\274kB\10\55\32m\375\60\231L\235\201\372\345\65\200\366YV\372\75\51\245r\360\340\253\255\373\367\37h\352\354\354\264Z\42\315\301\251\351\251\246\137\256\134\41\22i\305\60\374\4CA\12\205\2CC\303\325\374z\376\347\236\236\236\360\17\23\23\261\351\351\351\267\223\311\324\5\245\275\275\355\200e\245\77\17\205B\135\207\337\72\254\356\331\263\233\356\356n\374\176\35\327u\271zu\222r\311\243\134\55\321\335\335\215\42\4\76\41\20\276\215\341x\270\272B\311q\211ut\340\327\3\305\243cGU\300\257\256\255Y\237\236\375\366lo\270\51\204m\333\174y\372\64\225J\205m\333\6H\76L\62\372\356\30RJ\306\317\174\315\305\363\347\61CaT\335\217\256\371\320UA\173\54\306\374\335\273\134\277\36g\357\336WL\323\64\263\305b\21U\10\321\364\333\324\44CC\203\254\254\256\60\60\320OW\327V\46\46\46\270\277\264\304\311\223\47\61\315\0\251\264\305\360\313\373\60\3\6\236\343\260\272\272\312\303\224\305Zz\16\307qI\247\55\12\205\302c\227\47\35\307\41\233\313a\333Eb\261\30\361x\234\304b\2\41\4\177\316\316\320\327\77\100\377\366a\354\214\305\302\314\3J\345\62\324\44\136\255J\64\32e\351\336\22\226\225\301u\234\177\300RJE\42\221\65\311\354\354\54\0\353\353y\134\327\305\64M\204\20\30\301\55\334\271u\23\277\256\361\307\255\31\222\253\53linapp\7ss\363t\367\364\223K\247i\230fec\334\236\234\357G\42Q\50\332\5\356\57\77\40\261\260\200Wr\311\347\363d\323\26\371\134\206\256\336\76\26\357\45\10\230A\212\266\215\224R\1\204\330\4\64\366\247Q\374F\200\277\26\23\44WW\321\65\225\134\56\307\350\350\50\275\275\275\324\252U\250V\250T\252\230M\341z\175R\1T\261Q\225\244X\54\76\25\34\60\14\52\225\12\45\307\301\257\353\214\215\215\261k\327\56FFFhkk\43\30\14\242\50\12\236W\206\215\247\255\0\372\6X\202\353\272O\100\205P\50\26m\0\14\303\40\221H\20\217\307Y\137\137\47\34\16\323\325\325EKs\363FS\25\201\343\72T\253\65\1\250\76\51\345G\207\16\275\346\53\330\205G\355\50\225\312tun\245\275\55\346\365\365\365\271\55\221\250\236\311f\50\71\16RJ\342\361\70\231L\206c\307\216\61s\373\66\355\261\16\252\136\271\232\261\322J\46\223\276\355\272\245\57\224h\264u\44\233\315\235\70\176\374\203H\265V\251\51\212PR\251\65q\343\306\15o\362\352d\32\20\176\277\77\274\343\205\27\15U\201t\52\211a\30D\42\21\266\357\30\344\316\302\2\361\337\257I\307\266\55\140\46\24\12\176\134\50\330\277\52\200\332\332\32\71hY\351\23\200\37\320\0\57\24\12\176V\50\330\363\100\20\10\32\201\300\47\257\277\361\246\236\315\345\250V\53\370\174\32\232\256q\361\247\37\11\67\267\174u\77\261x\1\270\5\54\1Y\245\336lQ\7\6\66Au\135\257\47S\1M\325\264ot\135\17i\232\246\325j\65\351\225\75W\302\373\45\327Y\0\226\201\24\220\7J\233\137\323\277\23l\56\275\16U\353g\233q\262nK\240\324\260\134\300\3jO\373\363\32\223\64\352\233g\265\372\136m\200\313\272\277V\327\371\33\51\366\11O\363\73\12\137\0\0\0\0IEND\256B\140\202") + "" + 6 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 1 "GParamInt" "gint" "shoot-type" "Shoot type" "The shoot type { SHOOT-WINDOW (0), SHOOT-ROOT (1), SHOOT-REGION (2) }" 3 0 2 0) + (proc-arg 1 "GParamInt" "gint" "x1" "X1" "Region left x coord for SHOOT-WINDOW" 3 -2147483648 2147483647 0) + (proc-arg 1 "GParamInt" "gint" "y1" "Y1" "Region top y coord for SHOOT-WINDOW" 3 -2147483648 2147483647 0) + (proc-arg 1 "GParamInt" "gint" "x2" "X2" "Region right x coord for SHOOT-WINDOW" 3 -2147483648 2147483647 0) + (proc-arg 1 "GParamInt" "gint" "y2" "Y2" "Region bottom y coord for SHOOT-WINDOW" 3 -2147483648 2147483647 0) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Output image" 3 0))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/sample-colorize/sample-colorize" 1609190423 + (proc-def "plug-in-sample-colorize" 1 + "Colorize image using a sample image as a guide" + "This plug-in colorizes the contents of the specified (gray) layer with the help of a sample (color) layer. It analyzes all colors in the sample layer. The sample colors are sorted by brightness (== intentisty) and amount and stored in a sample colortable (where brightness is the index) The pixels of the destination layer are remapped with the help of the sample colortable. If use_subcolors is TRUE, the remapping process uses all sample colors of the corresponding brightness-intensity and distributes the subcolors according to their amount in the sample (If the sample has 5 green, 3 yellow, and 1 red pixel of the intensity value 105, the destination pixels at intensity value 105 are randomly painted in green, yellow and red in a relation of 5:3:1 If use_subcolors is FALSE only one sample color per intensity is used. (green will be used in this example) The brightness intensity value is transformed at the remapping process according to the levels: out_lo, out_hi, in_lo, in_high and gamma The in_low / in_high levels specify an initial mapping of the intensity. The gamma value determines how intensities are interpolated between the in_lo and in_high levels. A gamma value of 1.0 results in linear interpolation. Higher gamma values results in more high-level intensities Lower gamma values results in more low-level intensities The out_low/out_high levels constrain the resulting intensity index The intensity index is used to pick the corresponding color in the sample colortable. If hold_inten is FALSE the picked color is used 1:1 as resulting remap_color. If hold_inten is TRUE The brightness of the picked color is adjusted back to the original intensity value (only hue and saturation are taken from the picked sample color) (or to the input level, if orig_inten is set FALSE) Works on both Grayscale and RGB image with/without alpha channel. (the image with the dst_drawable is converted to RGB if necessary) The sample_drawable should be of type RGB or RGBA" + "Wolfgang Hofer" + "hof@hotbot.com" + "02/2000" + "_Sample Colorize..." + 1 + (menu-path "/Colors/Map") + (icon icon-name -1 "") + "RGB*, GRAY*" + 13 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The input image" 3 0) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "drawable" "Drawable" "The input drawable" 3 1) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "sample-drawable" "Sample drawable" "Sample drawable (should be of Type RGB or RGBA)" 3 1) + (proc-arg 4 "GParamBoolean" "gboolean" "hold-inten" "Hold inten" "Hold brightness intensity levels" 3 1) + (proc-arg 4 "GParamBoolean" "gboolean" "orig-inten" "Orig inten" "TRUE: hold brightness of original intensity levels, FALSE: Hold Intensity of input levels" 3 1) + (proc-arg 4 "GParamBoolean" "gboolean" "rnd-subcolors" "Rnd subcolors" "TRUE: Use all subcolors of same intensity, FALSE: Use only one color per intensity" 3 0) + (proc-arg 4 "GParamBoolean" "gboolean" "guess-missing" "Guess missing" "TRUE: guess samplecolors for the missing intensity values, FALSE: use only colors found in the sample" 3 1) + (proc-arg 1 "GParamInt" "gint" "in-low" "In low" "Intensity of lowest input" 3 0 254 0) + (proc-arg 1 "GParamInt" "gint" "in-high" "In high" "Intensity of highest input" 3 1 255 255) + (proc-arg 5 "GParamDouble" "gdouble" "gamma" "Gamma" "Gamma adjustment factor, 1.0 is linear" 3 0.10000000000000001 1 1) + (proc-arg 1 "GParamInt" "gint" "out-low" "out low" "Lowest sample color intensity" 3 0 254 0) + (proc-arg 1 "GParamInt" "gint" "ouz-high" "Out high" "Highest sample color intensity" 3 1 255 255))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/qbist/qbist" 1609190423 + (proc-def "plug-in-qbist" 1 + "Generate a huge variety of abstract patterns" + "This Plug-in is based on an article by Jörn Loviscach (appeared in c't 10/95, page 326). It generates modern art pictures from a random genetic formula." + "Jörn Loviscach, Jens Ch. Restemeier" + "Jörn Loviscach, Jens Ch. Restemeier" + "January 2001, 1.12" + "_Qbist..." + 1 + (menu-path "/Filters/Render/Pattern") + (icon icon-name -1 "") + "RGB*" + 3 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The input image" 3 0) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "drawable" "Drawable" "The input drawable" 3 1))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/python-eval/python-eval.py" 1609190423 + (proc-def "python-fu-eval" 1 + "Evaluate Python code" + "Evaluate python code under the python interpreter (primarily for batch mode)" + "Manish Singh" + "Manish Singh" + "2006" + "" + 0 + (icon icon-name -1 "") + "" + 1 0 + (proc-arg 6 "GParamString" "gchararray" "code" "Python code to evaluate, or '-' to read from stdin" "Python code to evaluate, or '-' to read from stdin" 3 "")) + (locale-def "gimp30-python" "${gimp_installation_dir}/share/locale")) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/python-console/python-console.py" 1609190423 + (proc-def "python-fu-console" 1 + "Interactive GIMP Python interpreter" + "Type in commands and see results" + "James Henstridge" + "James Henstridge" + "1997-1999" + "Python _Console" + 1 + (menu-path "/Filters/Development/Python-Fu") + (icon icon-name -1 "") + "" + 1 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "Read-write integer property." 3 1)) + (locale-def "gimp30-python" "${gimp_installation_dir}/share/locale")) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/procedure-browser/procedure-browser" 1609190423 + (proc-def "plug-in-dbbrowser" 1 + "List available procedures in the PDB" + "" + "Thomas Noel" + "Thomas Noel" + "23th june 1997" + "Procedure _Browser" + 1 + (menu-path "/Help/Programming") + (icon icon-name -1 "") + "" + 1 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 0))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/print/print" 1609190423 + (proc-def "file-print-gtk" 1 + "Print the image" + "Print the image using the GTK+ Print API." + "Bill Skaggs, Sven Neumann, Stefan Röllin" + "Bill Skaggs " + "2006 - 2008" + "_Print..." + 1 + (menu-path "/File/Send") + (icon icon-name -1 "document-print") + "*" + 3 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The input image" 3 0) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "drawable" "Drawable" "The input drawable" 3 1))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/plugin-browser/plugin-browser" 1609190423 + (proc-def "plug-in-plug-in-details" 1 + "Display information about plug-ins" + "Allows one to browse the plug-in menus system. You can search for plug-in names, sort by name or menu location and you can view a tree representation of the plug-in menus. Can also be of help to find where new plug-ins have installed themselves in the menus." + "Andy Thomas" + "Andy Thomas" + "1999" + "_Plug-In Browser" + 1 + (menu-path "/Help/Programming") + (icon icon-name -1 "gimp-plugin") + "" + 1 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 0))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/palette-to-gradient/palette-to-gradient.py" 1609190423 + (proc-def "python-fu-palette-to-gradient" 1 + "Create a gradient using colors from the palette" + "Create a new gradient using colors from the palette." + "Carol Spears, reproduced from previous work by Adrian Likins and Jeff Trefftz" + "Carol Spears" + "2006" + "Palette to _Gradient" + 1 + (menu-path "") + (icon icon-name -1 "") + "" + 2 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode (unused)" 3 1) + (proc-arg 6 "GParamString" "gchararray" "palette" "Palette" "Palette name or empty string for the currently selected palette" 3 "") + (proc-arg 6 "GParamString" "gchararray" "new-gradient" "Name of the newly created gradient" "Read-write integer property." 3 "")) + (proc-def "python-fu-palette-to-gradient-repeating" 1 + "Create a repeating gradient using colors from the palette" + "Create a new repeating gradient using colors from the palette." + "Carol Spears, reproduced from previous work by Adrian Likins and Jeff Trefftz" + "Carol Spears" + "2006" + "Palette to _Repeating Gradient" + 1 + (menu-path "") + (icon icon-name -1 "") + "" + 2 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode (unused)" 3 1) + (proc-arg 6 "GParamString" "gchararray" "palette" "Palette" "Palette name or empty string for the currently selected palette" 3 "") + (proc-arg 6 "GParamString" "gchararray" "new-gradient" "Name of the newly created gradient" "Read-write integer property." 3 "")) + (locale-def "gimp30-python" "${gimp_installation_dir}/share/locale")) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/palette-sort/palette-sort.py" 1609190423 + (proc-def "python-fu-palette-sort" 1 + "Sort the colors in a palette" + "palette_sort (palette, selection, slice_expr, channel,\nchannel2, quantize, ascending, pchannel, pquantize) -> new_palette\nSorts a palette, or part of a palette, using several options.\nOne can select two color channels over which to sort,\nand several auxiliary parameters create a 2D sorted\npalette with sorted rows, among other things.\nOne can optionally install colormath\n(https://pypi.python.org/pypi/colormath/1.0.8)\nto GIMP's Python to get even more channels to choose from.\n" + "João S. O. Bueno, Carol Spears, David Gowers" + "João S. O. Bueno, Carol Spears, David Gowers" + "2006-2014" + "_Sort Palette..." + 1 + (menu-path "") + (icon icon-name -1 "") + "" + 11 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 6 "GParamString" "gchararray" "palette" "Palette" "Palette" 3 "") + (proc-arg 1 "GParamInt" "gint" "selections" "Se_lections" "['All', 'Slice / Array', 'Autoslice (fg->bg)', 'Partitioned']" 3 0 3 0) + (proc-arg 6 "GParamString" "gchararray" "slice-expr" "Slice _expression" "\n Format is 'start:nrows,length' . All items are optional.\n\n The empty string selects all items, as does ':'\n ':4,' makes a 4-row selection out of all colors (length auto-determined)\n ':4' also.\n ':1,4' selects the first 4 colors\n ':,4' selects rows of 4 colors (nrows auto-determined)\n ':3,4' selects 3 rows of 4 colors\n '4:' selects a single row of all colors after 4, inclusive.\n '3:,4' selects rows of 4 colors, starting at 3 (nrows auto-determined)\n '2:3,4' selects 3 rows of 4 colors (12 colors total), beginning at index 2.\n '4' is illegal (ambiguous)\n" 3 "") + (proc-arg 1 "GParamInt" "gint" "channel1" "Channel to _sort" "Channel to sort: ('Red', 'Green', 'Blue', 'Luma (Y)', 'Hue', 'Saturation', 'Value', 'Saturation (HSL)', 'Lightness (HSL)', 'Index', 'Random')" 3 0 11 3) + (proc-arg 4 "GParamBoolean" "gboolean" "ascending1" "_Ascending" "Ascending" 3 1) + (proc-arg 1 "GParamInt" "gint" "channel2" "Secondary Channel to s_ort" "Secondary Channel to sort: ('Red', 'Green', 'Blue', 'Luma (Y)', 'Hue', 'Saturation', 'Value', 'Saturation (HSL)', 'Lightness (HSL)', 'Index', 'Random')" 3 0 11 5) + (proc-arg 4 "GParamBoolean" "gboolean" "ascending2" "_Ascending" "Ascending" 3 1) + (proc-arg 5 "GParamDouble" "gdouble" "quantize" "_Quantization" "Quantization" 3 0 1 0) + (proc-arg 1 "GParamInt" "gint" "pchannel" "_Partitioning channel" "Partitioning channel: ('Red', 'Green', 'Blue', 'Luma (Y)', 'Hue', 'Saturation', 'Value', 'Saturation (HSL)', 'Lightness (HSL)', 'Index', 'Random')" 3 0 11 3) + (proc-arg 5 "GParamDouble" "gdouble" "pquantize" "Partition q_uantization" "Partition quantization" 3 0 1 0) + (proc-arg 6 "GParamString" "gchararray" "new-palette" "Palette" "Palette" 3 "")) + (locale-def "gimp30-python" "${gimp_installation_dir}/share/locale")) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/palette-offset/palette-offset.py" 1609190423 + (proc-def "python-fu-palette-offset" 1 + "Offset the colors in a palette" + "palette_offset (palette, amount) -> modified_palette" + "Joao S. O. Bueno Calligaris, Carol Spears" + "(c) Joao S. O. Bueno Calligaris" + "2004, 2006" + "_Offset Palette..." + 1 + (menu-path "") + (icon icon-name -1 "") + "" + 3 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "Read-write integer property." 3 1) + (proc-arg 6 "GParamString" "gchararray" "palette" "Palette" "Palette" 3 "") + (proc-arg 1 "GParamInt" "gint" "amount" "Off_set" "Offset" 3 -2147483648 2147483647 1) + (proc-arg 6 "GParamString" "gchararray" "new-palette" "Name of the edited palette" "Name of the newly created palette if read-only or the input palette otherwise" 3 "")) + (locale-def "gimp30-python" "${gimp_installation_dir}/share/locale")) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/pagecurl/pagecurl" 1609190423 + (proc-def "plug-in-pagecurl" 1 + "Curl up one of the image corners" + "This plug-in creates a pagecurl-effect." + "Federico Mena Quintero and Simon Budig" + "Federico Mena Quintero and Simon Budig" + "July 2004, 1.0" + "_Pagecurl..." + 1 + (menu-path "/Filters/Distorts") + (icon icon-name -1 "") + "RGB*, GRAY*" + 7 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The input image" 3 0) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "drawable" "Drawable" "The input drawable" 3 1) + (proc-arg 1 "GParamInt" "gint" "colors" "Colors" "FG- and BG-Color (0), Current gradient (1), Current gradient reversed (2)" 3 0 2 0) + (proc-arg 1 "GParamInt" "gint" "edge" "Edge" "Edge to curl (1-4, clockwise, starting in the lower right edge)" 3 1 4 1) + (proc-arg 1 "GParamInt" "gint" "orientation" "Orientation" "Vertical (0), Horizontal (1)" 3 0 1 0) + (proc-arg 4 "GParamBoolean" "gboolean" "shade" "Shade" "Shade the region under the curl" 3 1) + (proc-arg 8 "GimpParamLayer" "GimpLayer" "curl-layer" "Curl layer" "The new layer with the curl." 3 0))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/nl-filter/nl-filter" 1609190423 + (proc-def "plug-in-nlfilt" 1 + "Nonlinear swiss army knife filter" + "This is the pnmnlfilt, in gimp's clothing. See the pnmnlfilt manpage for details." + "Graeme W. Gill, gimp 0.99 plug-in by Eric L. Hernes" + "Graeme W. Gill, Eric L. Hernes" + "1997" + "_NL Filter..." + 1 + (menu-path "/Filters/Enhance") + (icon icon-name -1 "") + "RGB, GRAY" + 6 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The input image" 3 0) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "drawable" "Drawable" "The input drawable" 3 1) + (proc-arg 5 "GParamDouble" "gdouble" "alpha" "Alpha" "The amount of the filter to apply" 3 0 1 0.29999999999999999) + (proc-arg 5 "GParamDouble" "gdouble" "radius" "Radius" "The filter radius" 3 0.33333333333333331 1 0.33333333333333331) + (proc-arg 1 "GParamInt" "gint" "filter" "Filter" "The Filter to Run, 0 - alpha trimmed mean; 1 - optimal estimation (alpha controls noise variance); 2 - edge enhancement" 3 0 2 0))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/metadata-viewer/metadata-viewer" 1609190423 + (proc-def "plug-in-metadata-viewer" 1 + "View metadata (Exif, IPTC, XMP)" + "View metadata information attached to the current image. This can include Exif, IPTC and/or XMP information." + "Hartmut Kuhse, Michael Natterer, Ben Touchette" + "Hartmut Kuhse, Michael Natterer, Ben Touchette" + "2013, 2017" + "_View Metadata" + 1 + (menu-path "/Image/Metadata") + (icon icon-name -1 "") + "*" + 2 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 0) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The input image" 3 0))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/metadata-editor/metadata-editor" 1609190423 + (proc-def "plug-in-metadata-editor" 1 + "Edit metadata (IPTC, EXIF, XMP)" + "Edit metadata information attached to the current image. Some or all of this metadata will be saved in the file, depending on the output file format." + "Ben Touchette" + "Ben Touchette" + "2017" + "_Edit Metadata" + 1 + (menu-path "/Image/Metadata") + (icon icon-name -1 "") + "*" + 2 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 0) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The input image" 3 0))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/map-object/map-object" 1609190423 + (proc-def "plug-in-map-object" 1 + "Map the image to an object (plane, sphere, box or cylinder)" + "No help yet" + "Tom Bech & Federico Mena Quintero" + "Tom Bech & Federico Mena Quintero" + "Version 1.2.0, July 16 1998" + "Map _Object..." + 1 + (menu-path "/Filters/Map") + (icon icon-name -1 "") + "RGB*" + 49 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The input image" 3 0) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "drawable" "Drawable" "The input drawable" 3 1) + (proc-arg 1 "GParamInt" "gint" "map-type" "Map type" "Type of mapping (0=plane, 1=sphere, 2=box, 3=cylinder)" 3 0 2 0) + (proc-arg 5 "GParamDouble" "gdouble" "viewpoint-x" "Viewpoint X" "Position of viewpoint (x,y,z)" 3 -1.7976931348623157e+308 1.7976931348623157e+308 0.5) + (proc-arg 5 "GParamDouble" "gdouble" "viewpoint-y" "Viewpoint Y" "Position of viewpoint (x,y,z)" 3 -1.7976931348623157e+308 1.7976931348623157e+308 0.5) + (proc-arg 5 "GParamDouble" "gdouble" "viewpoint-z" "Viewpoint Z" "Position of viewpoint (x,y,z)" 3 -1.7976931348623157e+308 1.7976931348623157e+308 2) + (proc-arg 5 "GParamDouble" "gdouble" "position-x" "Position X" "Object position (x,y,z)" 3 -1.7976931348623157e+308 1.7976931348623157e+308 0.5) + (proc-arg 5 "GParamDouble" "gdouble" "position-y" "Position Y" "Object position (x,y,z)" 3 -1.7976931348623157e+308 1.7976931348623157e+308 0.5) + (proc-arg 5 "GParamDouble" "gdouble" "position-z" "Position Z" "Object position (x,y,z)" 3 -1.7976931348623157e+308 1.7976931348623157e+308 0) + (proc-arg 5 "GParamDouble" "gdouble" "first-axis-x" "First axis X" "First axis of object (x,y,z)" 3 -1.7976931348623157e+308 1.7976931348623157e+308 1) + (proc-arg 5 "GParamDouble" "gdouble" "first-axis-y" "First axis y" "First axis of object (x,y,z)" 3 -1.7976931348623157e+308 1.7976931348623157e+308 0) + (proc-arg 5 "GParamDouble" "gdouble" "first-axis-z" "First axis Z" "First axis of object (x,y,z)" 3 -1.7976931348623157e+308 1.7976931348623157e+308 0) + (proc-arg 5 "GParamDouble" "gdouble" "second-axis-x" "Second axis X" "Second axis of object (x,y,z)" 3 -1.7976931348623157e+308 1.7976931348623157e+308 0) + (proc-arg 5 "GParamDouble" "gdouble" "second-axis-y" "Second axis Y" "Second axis of object (x,y,z)" 3 -1.7976931348623157e+308 1.7976931348623157e+308 1) + (proc-arg 5 "GParamDouble" "gdouble" "second-axis-z" "Second axis Z" "Second axis of object (x,y,z)" 3 -1.7976931348623157e+308 1.7976931348623157e+308 0) + (proc-arg 5 "GParamDouble" "gdouble" "rotation-angle-x" "Rotation angle X" "Rotation about X axis in degrees" 3 -1.7976931348623157e+308 1.7976931348623157e+308 0) + (proc-arg 5 "GParamDouble" "gdouble" "rotation-angle-y" "Rotation angle Y" "Rotation about Y axis in degrees" 3 -1.7976931348623157e+308 1.7976931348623157e+308 0) + (proc-arg 5 "GParamDouble" "gdouble" "rotation-angle-z" "Rotation angle Z" "Rotation about Z axis in degrees" 3 -1.7976931348623157e+308 1.7976931348623157e+308 0) + (proc-arg 1 "GParamInt" "gint" "light-type" "Light type" "Type of lightsource (0=point, 1=directional, 2=none)" 3 0 2 0) + (proc-arg 7 "GimpParamRGB" "GimpRGB" "light-color" "Light color" "Light source color" 3 1 1 1 1 1) + (proc-arg 5 "GParamDouble" "gdouble" "light-position-x" "Light position X" "Light source position (x,y,z)" 3 -1.7976931348623157e+308 1.7976931348623157e+308 -0.5) + (proc-arg 5 "GParamDouble" "gdouble" "light-position-y" "Light position Y" "Light source position (x,y,z)" 3 -1.7976931348623157e+308 1.7976931348623157e+308 -0.5) + (proc-arg 5 "GParamDouble" "gdouble" "light-position-z" "Light position Z" "Light source position (x,y,z)" 3 -1.7976931348623157e+308 1.7976931348623157e+308 2) + (proc-arg 5 "GParamDouble" "gdouble" "light-direction-x" "Light direction X" "Light source direction (x,y,z)" 3 -1.7976931348623157e+308 1.7976931348623157e+308 -1) + (proc-arg 5 "GParamDouble" "gdouble" "light-direction-y" "Light direction Y" "Light source direction (x,y,z)" 3 -1.7976931348623157e+308 1.7976931348623157e+308 -1) + (proc-arg 5 "GParamDouble" "gdouble" "light-direction-z" "Light direction Z" "Light source direction (x,y,z)" 3 -1.7976931348623157e+308 1.7976931348623157e+308 1) + (proc-arg 5 "GParamDouble" "gdouble" "ambient-intensity" "Ambient intensity" "Material ambient intensity" 3 0 1 0.29999999999999999) + (proc-arg 5 "GParamDouble" "gdouble" "diffuse-intensity" "Diffuse intensity" "Material diffuse intensity" 3 0 1 1) + (proc-arg 5 "GParamDouble" "gdouble" "diffuse-reflectivity" "Diffuse reflectivity" "Material diffuse reflectivity" 3 0 1 0.5) + (proc-arg 5 "GParamDouble" "gdouble" "specular-reflectivity" "Specular reflectivity" "Material specular reflectivity" 3 0 1 0.5) + (proc-arg 5 "GParamDouble" "gdouble" "highlight" "Highlight" "Material highlight (note, it's exponential)" 3 0 1.7976931348623157e+308 27) + (proc-arg 4 "GParamBoolean" "gboolean" "antialiasing" "Antialiasing" "Apply antialiasing" 3 1) + (proc-arg 4 "GParamBoolean" "gboolean" "tiled" "Tiled" "Tile source image" 3 0) + (proc-arg 4 "GParamBoolean" "gboolean" "new-image" "New image" "Create a new image" 3 0) + (proc-arg 4 "GParamBoolean" "gboolean" "transparent-background" "Transparent background" "Make background transparent" 3 0) + (proc-arg 5 "GParamDouble" "gdouble" "radius" "Radius" "Sphere/cylinder radius (only used when maptype=1 or 3)" 3 0 1.7976931348623157e+308 0.25) + (proc-arg 5 "GParamDouble" "gdouble" "x-scale" "X scale" "Box X size" 3 0 1.7976931348623157e+308 0.5) + (proc-arg 5 "GParamDouble" "gdouble" "y-scale" "Y scale" "Box Y size" 3 0 1.7976931348623157e+308 0.5) + (proc-arg 5 "GParamDouble" "gdouble" "z-scale" "Z scale" "Box Z size" 3 0 1.7976931348623157e+308 0.5) + (proc-arg 5 "GParamDouble" "gdouble" "cylinder-length" "Cylinder length" "Cylinder length" 3 0 1.7976931348623157e+308 0.25) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "box-front-drawable" "Box front drawable" "Box front face (set these to NULL if not used)" 3 1) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "box-back-drawable" "Box back drawable" "Box back face" 3 1) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "box-top-drawable" "Box top drawable" "Box top face" 3 1) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "box-bottom-drawable" "Box bottom drawable" "Box bottom face" 3 1) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "box-left-drawable" "Box left drawable" "Box left face" 3 1) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "box-right-drawable" "Box right drawable" "Box right face" 3 1) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "cyl-top-drawable" "Cyl top drawable" "Cylinder top face (set these to NULL if not used)" 3 1) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "cyl-bottom-drawable" "Cyl bottom drawable" "Cylinder bottom face" 3 1))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/mail/mail" 1609190423 + (has-init)) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/lighting/lighting" 1609190423 + (proc-def "plug-in-lighting" 1 + "Apply various lighting effects to an image" + "No help yet" + "Tom Bech & Federico Mena Quintero" + "Tom Bech & Federico Mena Quintero" + "Version 0.2.0, March 15 1998" + "_Lighting Effects..." + 1 + (menu-path "/Filters/Light and Shadow/Light") + (icon icon-name -1 "") + "RGB*" + 24 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The input image" 3 0) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "drawable" "Drawable" "The input drawable" 3 1) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "bump-drawable" "Bump drawable" "Bumpmap drawable (set to NULL if disabled)" 3 1) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "env-drawable" "Env drawable" "Environmentmap drawable (set to NULL if disabled" 3 1) + (proc-arg 4 "GParamBoolean" "gboolean" "do-bumpmap" "Do bumpmap" "Enable bumpmapping" 3 1) + (proc-arg 4 "GParamBoolean" "gboolean" "do-envmap" "Do envmap" "Enable envmapping" 3 1) + (proc-arg 1 "GParamInt" "gint" "bumpmap-type" "Bumpmap type" "Type of mapping (0=linear, 1=log, 2=sinusoidal, 3=spherical)" 3 0 2 0) + (proc-arg 1 "GParamInt" "gint" "light-type" "Light type" "Type of lightsource (0=point, 1=directional, 3=spot, 4=none)" 3 0 4 0) + (proc-arg 7 "GimpParamRGB" "GimpRGB" "light-color" "Light color" "Light source color" 3 1 1 1 1 1) + (proc-arg 5 "GParamDouble" "gdouble" "light-position-x" "Light position X" "Light source position (x,y,z)" 3 -1.7976931348623157e+308 1.7976931348623157e+308 -1) + (proc-arg 5 "GParamDouble" "gdouble" "light-position-y" "Light position Y" "Light source position (x,y,z)" 3 -1.7976931348623157e+308 1.7976931348623157e+308 -1) + (proc-arg 5 "GParamDouble" "gdouble" "light-position-z" "Light position Z" "Light source position (x,y,z)" 3 -1.7976931348623157e+308 1.7976931348623157e+308 -1) + (proc-arg 5 "GParamDouble" "gdouble" "light-direction-x" "Light direction X" "Light source direction (x,y,z)" 3 -1.7976931348623157e+308 1.7976931348623157e+308 -1) + (proc-arg 5 "GParamDouble" "gdouble" "light-direction-y" "Light direction Y" "Light source direction (x,y,z)" 3 -1.7976931348623157e+308 1.7976931348623157e+308 -1) + (proc-arg 5 "GParamDouble" "gdouble" "light-direction-z" "Light direction Z" "Light source direction (x,y,z)" 3 -1.7976931348623157e+308 1.7976931348623157e+308 1) + (proc-arg 5 "GParamDouble" "gdouble" "ambient-intensity" "Ambient intensity" "Material ambient intensity" 3 0 1 0.20000000000000001) + (proc-arg 5 "GParamDouble" "gdouble" "diffuse-intensity" "Diffuse intensity" "Material diffuse intensity" 3 0 1 0.5) + (proc-arg 5 "GParamDouble" "gdouble" "diffuse-reflectivity" "Diffuse reflectivity" "Material diffuse reflectivity" 3 0 1 0.40000000000000002) + (proc-arg 5 "GParamDouble" "gdouble" "specular-reflectivity" "Specular reflectivity" "Material specular reflectivity" 3 0 1 0.5) + (proc-arg 5 "GParamDouble" "gdouble" "highlight" "Highlight" "Material highlight (note, it's exponential)" 3 0 1.7976931348623157e+308 27) + (proc-arg 4 "GParamBoolean" "gboolean" "antialiasing" "Antialiasing" "Apply antialiasing" 3 0) + (proc-arg 4 "GParamBoolean" "gboolean" "new-image" "New image" "Create a new image" 3 0) + (proc-arg 4 "GParamBoolean" "gboolean" "transparent-background" "Transparent background" "Make background transparent" 3 0))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/jigsaw/jigsaw" 1609190423 + (proc-def "plug-in-jigsaw" 1 + "Add a jigsaw-puzzle pattern to the image" + "Jigsaw puzzle look" + "Nigel Wetten" + "Nigel Wetten" + "May 2000" + "_Jigsaw..." + 1 + (menu-path "/Filters/Render/Pattern") + (icon icon-name -1 "") + "RGB*" + 8 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The input image" 3 0) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "drawable" "Drawable" "The input drawable" 3 1) + (proc-arg 1 "GParamInt" "gint" "x" "X" "Number of tiles across" 3 1 524288 5) + (proc-arg 1 "GParamInt" "gint" "y" "Y" "Number of tiles down" 3 1 524288 5) + (proc-arg 1 "GParamInt" "gint" "style" "Style" "The style/shape of the jigsaw puzzle { 0, 1 }" 3 0 1 0) + (proc-arg 1 "GParamInt" "gint" "blend-lines" "Blend lines" "Number of lines for shading bevels" 3 1 524288 3) + (proc-arg 5 "GParamDouble" "gdouble" "blend-amount" "Blend amount" "The power of the light highlights" 3 0 5 0.5))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/imagemap/imagemap" 1609190423 + (proc-def "plug-in-imagemap" 1 + "Create a clickable imagemap" + "" + "Maurits Rijk" + "Maurits Rijk" + "1998-2005" + "_Image Map..." + 1 + (menu-path "/Filters/Web") + (icon icon-name -1 "") + "*" + 3 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The input image" 3 0) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "drawable" "Drawable" "The input drawable" 3 1))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/ifs-compose/ifs-compose" 1609190423 + (proc-def "plug-in-ifscompose" 1 + "Create an Iterated Function System (IFS) fractal" + "Interactively create an Iterated Function System fractal. Use the window on the upper left to adjustthe component transformations of the fractal. The operation that is performed is selected by the buttons underneath the window, or from a menu popped up by the right mouse button. The fractal will be rendered with a transparent background if the current image has an alpha channel." + "Owen Taylor" + "Owen Taylor" + "1997" + "_IFS Fractal..." + 1 + (menu-path "/Filters/Render/Fractals") + (icon icon-name -1 "") + "*" + 3 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The input image" 3 0) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "drawable" "Drawable" "The input drawable" 3 1))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/hot/hot" 1609190423 + (proc-def "plug-in-hot" 1 + "Find and fix pixels that may be unsafely bright" + "hot scans an image for pixels that will give unsave values of chrominance or composite signale amplitude when encoded into an NTSC or PAL signal. Three actions can be performed on these 'hot' pixels. (0) reduce luminance, (1) reduce saturation, or (2) Blacken." + "Eric L. Hernes, Alan Wm Paeth" + "Eric L. Hernes" + "1997" + "_Hot..." + 1 + (menu-path "/Colors/Modify") + (icon icon-name -1 "") + "RGB" + 6 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The input image" 3 0) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "drawable" "Drawable" "The input drawable" 3 1) + (proc-arg 1 "GParamInt" "gint" "mode" "Mode" "Mode { NTSC (0), PAL (1) }" 3 0 1 0) + (proc-arg 1 "GParamInt" "gint" "action" "Action" "Action { (0) reduce luminance, (1) reduce saturation, or (2) Blacken }" 3 0 2 0) + (proc-arg 4 "GParamBoolean" "gboolean" "new-layer" "New layer" "Create a new layer" 3 1))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/histogram-export/histogram-export.py" 1609190423 + (proc-def "histogram-export" 1 + "Exports the image histogram to a text file (CSV)" + "\nExports the image histogram to a text file,\nso that it can be used by other programs\nand loaded into spreadsheets.\n\nThe resulting file is a CSV file (Comma Separated\nValues), which can be imported\ndirectly in most spreadsheet programs.\n\nThe first two columns are the bucket boundaries,\nfollowed by the selected columns. The histogram\nrefers to the selected image area, and\ncan use either Sample Average data or data\nfrom the current drawable only.;\n\nThe output is in \"weighted pixels\" - meaning\nall fully transparent pixels are not counted.\n\nCheck the gimp-histogram call\n" + "João S. O. Bueno" + "(c) GPL V3.0 or later" + "2014" + "_Export histogram..." + 1 + (menu-path "/Colors/Info/") + (icon icon-name -1 "") + "*" + 7 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The input image" 3 0) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "drawable" "Drawable" "The input drawable" 3 1) + (proc-arg 0 "GParamObject" "GFile" "file" "Histogram _File" "Histogram export file" 3) + (proc-arg 5 "GParamDouble" "gdouble" "bucket-size" "_Bucket Size" "Bucket Size" 3 0.001 1 0.01) + (proc-arg 4 "GParamBoolean" "gboolean" "sample-average" "Sample _Average" "Sample Average" 3 0) + (proc-arg 6 "GParamString" "gchararray" "output-format" "Output format" "Output format: 'pixel count', 'normalized', 'percent'" 3 "pixel count")) + (locale-def "gimp30-python" "${gimp_installation_dir}/share/locale")) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/help-browser/help-browser" 1609190423 + (proc-def "extension-gimp-help-browser" 2 + "Browse the GIMP user manual" + "A small and simple HTML browser optimized for browsing the GIMP user manual." + "Sven Neumann , Michael Natterer Henrik Brix Andersen " + "Sven Neumann, Michael Natterer & Henrik Brix Andersen" + "1999-2008" + "" + 0 + (icon icon-name -1 "") + "" + 5 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 0) + (proc-arg 1 "GParamInt" "gint" "num-domain-names" "Num domain names" "Num domain names" 3 0 2147483647 0) + (proc-arg 0 "GimpParamStringArray" "GimpStringArray" "domain-names" "Domain names" "Domain names" 3) + (proc-arg 1 "GParamInt" "gint" "num-domain-uris" "Num domain URIs" "Num domain URIs" 3 0 2147483647 0) + (proc-arg 0 "GimpParamStringArray" "GimpStringArray" "domain-uris" "Domain URIs" "Domain URIs" 3))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/help/help" 1609190423 + (proc-def "extension-gimp-help" 2 + "" + "" + "Sven Neumann , Michael Natterer , Henrik Brix Andersen " + "Sven Neumann, Michael Natterer & Henrik Brix Andersen" + "1999-2008" + "" + 0 + (icon icon-name -1 "") + "" + 4 0 + (proc-arg 1 "GParamInt" "gint" "num-domain-names" "Num Domain Names" "Num domain names" 3 0 2147483647 0) + (proc-arg 0 "GimpParamStringArray" "GimpStringArray" "domain-names" "Domain Names" "Domain names" 3) + (proc-arg 1 "GParamInt" "gint" "num-domain-uris" "Num Domain URIs" "Num domain URIs" 3 0 2147483647 0) + (proc-arg 0 "GimpParamStringArray" "GimpStringArray" "domain-uris" "Domain URIs" "Domain URIs" 3))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/guillotine/guillotine" 1609190423 + (proc-def "plug-in-guillotine" 1 + "Slice the image into subimages using guides" + "This function takes an image and slices it along its guides, creating new images. The original image is not modified." + "Adam D. Moss (adam@foxbox.org)" + "Adam D. Moss (adam@foxbox.org)" + "1998" + "Slice Using G_uides" + 1 + (menu-path "/Image/Crop") + (icon icon-name -1 "") + "*" + 3 2 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The input image" 3 0) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "drawable" "Drawable" "The input drawable" 3 1) + (proc-arg 1 "GParamInt" "gint" "image-count" "Number of images created" "Number of images created" 3 0 2147483647 0) + (proc-arg 9 "GimpParamObjectArray" "GimpObjectArray" "images" "Output images" "Output images" 3 "GimpImage"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/grid/grid" 1609190423 + (proc-def "plug-in-grid" 1 + "Draw a grid on the image" + "Draws a grid using the specified colors. The grid origin is the upper left corner." + "Tim Newsome" + "Tim Newsome, Sven Neumann, Tom Rathborne, TC" + "1997 - 2000" + "_Grid (legacy)..." + 1 + (menu-path "/Filters/Render/Pattern") + (icon icon-name -1 "") + "*" + 15 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The input image" 3 0) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "drawable" "Drawable" "The input drawable" 3 1) + (proc-arg 1 "GParamInt" "gint" "hwidth" "H width" "Horizontal width" 3 0 524288 1) + (proc-arg 1 "GParamInt" "gint" "hspace" "H space" "Horizontal spacing" 3 1 524288 16) + (proc-arg 1 "GParamInt" "gint" "hoffset" "H offset" "Horizontal offset" 3 0 524288 8) + (proc-arg 7 "GimpParamRGB" "GimpRGB" "hcolor" "H color" "Horizontal color" 3 1 0 0 0 1) + (proc-arg 1 "GParamInt" "gint" "vwidth" "V width" "Vertical width" 3 0 524288 1) + (proc-arg 1 "GParamInt" "gint" "vspace" "V space" "Vertical spacing" 3 1 524288 16) + (proc-arg 1 "GParamInt" "gint" "voffset" "V offset" "Vertical offset" 3 0 524288 8) + (proc-arg 7 "GimpParamRGB" "GimpRGB" "vcolor" "V color" "Vertical color" 3 1 0 0 0 1) + (proc-arg 1 "GParamInt" "gint" "iwidth" "I width" "Intersection width" 3 0 524288 0) + (proc-arg 1 "GParamInt" "gint" "ispace" "I space" "Intersection spacing" 3 1 524288 2) + (proc-arg 1 "GParamInt" "gint" "ioffset" "I offset" "Intersection offset" 3 0 524288 6) + (proc-arg 7 "GimpParamRGB" "GimpRGB" "icolor" "I color" "Intersection color" 3 1 0 0 0 1))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/gradients-save-as-css/gradients-save-as-css.py" 1609190423 + (proc-def "gradient-save-as-css" 1 + "Creates a new palette from a given gradient" + "palette_from_gradient (gradient, number, segment_colors) -> None" + "Joao S. O. Bueno" + "(c) GPL V3.0 or later" + "2011" + "Save as CSS..." + 1 + (menu-path "") + (icon icon-name -1 "") + "*" + 3 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 6 "GParamString" "gchararray" "gradient" "Gradient to use" "" 3 "") + (proc-arg 0 "GParamObject" "GFile" "file" "File" "" 3)) + (locale-def "gimp30-python" "${gimp_installation_dir}/share/locale")) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/gradient-map/gradient-map" 1609190423 + (proc-def "plug-in-gradmap" 1 + "Recolor the image using colors from the active gradient" + "This plug-in maps the contents of the specified drawable with active gradient. It calculates luminosity of each pixel and replaces the pixel by the sample of active gradient at the position proportional to that luminosity. Complete black pixel becomes the leftmost color of the gradient, and complete white becomes the rightmost. Works on both Grayscale and RGB image with/without alpha channel." + "Eiichi Takamori" + "Eiichi Takamori" + "1997" + "_Gradient Map" + 1 + (menu-path "/Colors/Map") + (icon icon-name -1 "") + "RGB*, GRAY*" + 3 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The input image" 3 0) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "drawable" "Drawable" "The input drawable" 3 1)) + (proc-def "plug-in-palettemap" 1 + "Recolor the image using colors from the active palette" + "This plug-in maps the contents of the specified drawable with the active palette. It calculates luminosity of each pixel and replaces the pixel by the palette sample at the corresponding index. A complete black pixel becomes the lowest palette entry, and complete white becomes the highest. Works on both Grayscale and RGB image with/without alpha channel." + "Bill Skaggs" + "Bill Skaggs" + "2004" + "_Palette Map" + 1 + (menu-path "/Colors/Map") + (icon icon-name -1 "") + "RGB*, GRAY*" + 3 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The input image" 3 0) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "drawable" "Drawable" "The input drawable" 3 1))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/gradient-flare/gradient-flare" 1609190423 + (proc-def "plug-in-gflare" 1 + "Produce a lense flare effect using gradients" + "This plug-in produces a lense flare effect using custom gradients. In interactive call, the user can edit his/her own favorite lense flare (GFlare) and render it. Edited gflare is saved automatically to the folder in gflare-path, if it is defined in gimprc. In non-interactive call, the user can only render one of GFlare which has been stored in gflare-path already." + "Eiichi Takamori" + "Eiichi Takamori, and a lot of GIMP people" + "1997" + "_Gradient Flare..." + 1 + (menu-path "/Filters/Light and Shadow/Light") + (icon icon-name -1 "") + "RGB*, GRAY*" + 14 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The input image" 3 0) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "drawable" "Drawable" "The input drawable" 3 1) + (proc-arg 6 "GParamString" "gchararray" "gflare-name" "GFlare name" "Name of the GFlare to render" 3 "Default") + (proc-arg 1 "GParamInt" "gint" "center-x" "Center X" "X coordinate of center of GFlare" 3 -524288 524288 128) + (proc-arg 1 "GParamInt" "gint" "center-y" "Center Y" "Y coordinate of center of GFlare" 3 -524288 524288 128) + (proc-arg 5 "GParamDouble" "gdouble" "radius" "Radius" "Radius of GFlare (pixel)" 3 1 524288 100) + (proc-arg 5 "GParamDouble" "gdouble" "rotation" "Rotation" "Rotation of GFlare (degree)" 3 0 360 0) + (proc-arg 5 "GParamDouble" "gdouble" "hue" "Hue" "Hue rotation of GFlare (degree)" 3 0 360 0) + (proc-arg 5 "GParamDouble" "gdouble" "vector-angle" "Vector angle" "Vector angle for second flares (degree)" 3 0 360 60) + (proc-arg 5 "GParamDouble" "gdouble" "vector-length" "Vector length" "Vector length for second flares (percentage of Radius)" 3 0 10000 400) + (proc-arg 4 "GParamBoolean" "gboolean" "use-asupsample" "Use asupsample" "Use adaptive supersampling while rendering" 3 0) + (proc-arg 1 "GParamInt" "gint" "asupsample-max-depth" "Asupsample max depth" "Max depth for adaptive supersampling" 3 0 10 3) + (proc-arg 5 "GParamDouble" "gdouble" "asupsample-threshold" "Asupsample threshold" "Threshold for adaptive supersampling" 3 0 1 0.20000000000000001))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimpressionist/gimpressionist" 1609190423 + (proc-def "plug-in-gimpressionist" 1 + "Performs various artistic operations" + "Performs various artistic operations on an image" + "Vidar Madsen " + "Vidar Madsen" + "v1.0, November 2003" + "_GIMPressionist..." + 1 + (menu-path "/Filters/Artistic") + (icon icon-name -1 "") + "RGB*, GRAY*" + 4 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The input image" 3 0) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "drawable" "Drawable" "The input drawable" 3 1) + (proc-arg 6 "GParamString" "gchararray" "preset" "Preset" "Preset Name" 3 ""))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/gfig/gfig" 1609190423 + (proc-def "plug-in-gfig" 1 + "Create geometric shapes" + "Draw Vector Graphics and paint them onto your images. Gfig allows you to draw many types of objects including Lines, Circles, Ellipses, Curves, Polygons, pointed stars, Bezier curves, and Spirals. Objects can be painted using Brushes or other tools or filled using colors or patterns. Gfig objects can also be used to create selections." + "Andy Thomas" + "Andy Thomas" + "1997" + "_Gfig..." + 1 + (menu-path "/Filters/Render") + (icon icon-name -1 "") + "RGB*, GRAY*" + 3 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The input image" 3 0) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "drawable" "Drawable" "The input drawable" 3 1))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/fractal-explorer/fractal-explorer" 1609190423 + (proc-def "plug-in-fractalexplorer" 1 + "Render fractal art" + "No help yet." + "Daniel Cotting (cotting@multimania.com, www.multimania.com/cotting)" + "Daniel Cotting (cotting@multimania.com, www.multimania.com/cotting)" + "December, 1998" + "_Fractal Explorer..." + 1 + (menu-path "/Filters/Render/Fractals") + (icon icon-name -1 "") + "RGB*, GRAY*" + 22 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The input image" 3 0) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "drawable" "Drawable" "The input drawable" 3 1) + (proc-arg 1 "GParamInt" "gint" "fractal-type" "Fractal type" "0: Mandelbrot; 1: Julia; 2: Barnsley 1; 3: Barnsley 2; 4: Barnsley 3; 5: Spider; 6: ManOWar; 7: Lambda; 8: Sierpinski" 3 0 8 0) + (proc-arg 5 "GParamDouble" "gdouble" "xmin" "X min" "xmin fractal image delimiter" 3 -1.7976931348623157e+308 1.7976931348623157e+308 0) + (proc-arg 5 "GParamDouble" "gdouble" "xmax" "X max" "xmax fractal image delimiter" 3 -1.7976931348623157e+308 1.7976931348623157e+308 0) + (proc-arg 5 "GParamDouble" "gdouble" "ymin" "Y min" "ymin fractal image delimiter" 3 -1.7976931348623157e+308 1.7976931348623157e+308 0) + (proc-arg 5 "GParamDouble" "gdouble" "ymax" "Y max" "ymax fractal image delimiter" 3 -1.7976931348623157e+308 1.7976931348623157e+308 0) + (proc-arg 5 "GParamDouble" "gdouble" "iter" "Iter" "Iteration value" 3 -1.7976931348623157e+308 1.7976931348623157e+308 0) + (proc-arg 5 "GParamDouble" "gdouble" "cx" "CX" "cx value (only Julia)" 3 -1.7976931348623157e+308 1.7976931348623157e+308 0) + (proc-arg 5 "GParamDouble" "gdouble" "cy" "CY" "cy value (only Julia)" 3 -1.7976931348623157e+308 1.7976931348623157e+308 0) + (proc-arg 1 "GParamInt" "gint" "color-mode" "Color mode" "0: Apply colormap as specified by the parameters below; 1: Apply active gradient to final image" 3 0 1 0) + (proc-arg 5 "GParamDouble" "gdouble" "red-stretch" "Red stretch" "Red stretching factor" 3 -1.7976931348623157e+308 1.7976931348623157e+308 0) + (proc-arg 5 "GParamDouble" "gdouble" "green-stretch" "Green stretch" "Green stretching factor" 3 -1.7976931348623157e+308 1.7976931348623157e+308 0) + (proc-arg 5 "GParamDouble" "gdouble" "blues-tretch" "Blue stretch" "Blue stretching factor" 3 -1.7976931348623157e+308 1.7976931348623157e+308 0) + (proc-arg 1 "GParamInt" "gint" "red-mode" "Red mode" "Red application mode (0:SIN; 1:COS; 2:NONE)" 3 0 2 0) + (proc-arg 1 "GParamInt" "gint" "green-mode" "Green mode" "Green application mode (0:SIN; 1:COS; 2:NONE)" 3 0 2 0) + (proc-arg 1 "GParamInt" "gint" "blue-mode" "Blue mode" "Blue application mode (0:SIN; 1:COS; 2:NONE)" 3 0 2 0) + (proc-arg 4 "GParamBoolean" "gboolean" "red-invert" "Red invert" "Red inversion mode" 3 0) + (proc-arg 4 "GParamBoolean" "gboolean" "green-invert" "Green invert" "Green inversion mode" 3 0) + (proc-arg 4 "GParamBoolean" "gboolean" "blue-invert" "Blue invert" "Blue inversion mode" 3 0) + (proc-arg 1 "GParamInt" "gint" "n-colors" "N volors" "Number of Colors for mapping" 3 2 8192 512))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/foggify/foggify.py" 1609190423 + (proc-def "python-fu-foggify" 1 + "Add a layer of fog" + "Adds a layer of fog to the image." + "James Henstridge" + "James Henstridge" + "1999,2007" + "_Fog..." + 1 + (menu-path "/Filters/Decor") + (icon icon-name -1 "") + "RGB*, GRAY*" + 6 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The input image" 3 0) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "drawable" "Drawable" "The input drawable" 3 1) + (proc-arg 6 "GParamString" "gchararray" "name" "Layer name" "Layer name" 3 "Clouds") + (proc-arg 5 "GParamDouble" "gdouble" "turbulence" "Turbulence" "Turbulence" 3 0 10 1) + (proc-arg 5 "GParamDouble" "gdouble" "opacity" "Opacity" "Opacity" 3 0 100 100)) + (locale-def "gimp30-python" "${gimp_installation_dir}/share/locale")) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/flame/flame" 1609190423 + (proc-def "plug-in-flame" 1 + "Create cosmic recursive fractal flames" + "Create cosmic recursive fractal flames" + "Scott Draves" + "Scott Draves" + "1997" + "_Flame..." + 1 + (menu-path "/Filters/Render/Fractals") + (icon icon-name -1 "") + "RGB*" + 3 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The input image" 3 0) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "drawable" "Drawable" "The input drawable" 3 1))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/film/film" 1609190423 + (proc-def "plug-in-film" 1 + "Combine several images on a film strip" + "Compose several images to a roll film" + "Peter Kirchgessner" + "Peter Kirchgessner (peter@kirchgessner.net)" + "1997" + "_Filmstrip..." + 1 + (menu-path "/Filters/Combine") + (icon icon-name -1 "") + "*" + 12 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The input image" 3 0) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "drawable" "Drawable" "The input drawable" 3 1) + (proc-arg 1 "GParamInt" "gint" "film-height" "Film height" "Height of film (0: fit to images)" 3 0 524288 0) + (proc-arg 7 "GimpParamRGB" "GimpRGB" "film-color" "Film color" "Color of the film" 3 1 0 0 0 1) + (proc-arg 1 "GParamInt" "gint" "number-start" "Number start" "Start index for numbering" 3 -2147483648 2147483647 1) + (proc-arg 6 "GParamString" "gchararray" "number-font" "Number font" "Font for drawing numbers" 3 "") + (proc-arg 7 "GimpParamRGB" "GimpRGB" "number-color" "Number color" "Color for numbers" 3 1 0 0 0 1) + (proc-arg 4 "GParamBoolean" "gboolean" "at-top" "At top" "Draw numbers at top" 3 1) + (proc-arg 4 "GParamBoolean" "gboolean" "at-bottom" "At bottom" "Draw numbers at bottom" 3 1) + (proc-arg 1 "GParamInt" "gint" "num-images" "Num images" "Number of images to be used for film" 3 1 64 1) + (proc-arg 9 "GimpParamObjectArray" "GimpObjectArray" "images" "Images" "num-images images to be used for film" 3 "GimpImage") + (proc-arg 8 "GimpParamImage" "GimpImage" "new-image" "New image" "Output image" 3 0))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-xwd/file-xwd" 1609190423 + (proc-def "file-xwd-load" 1 + "Loads files in the XWD (X Window Dump) format" + "Loads files in the XWD (X Window Dump) format. XWD image files are produced by the program xwd. Xwd is an X Window System window dumping utility." + "Peter Kirchgessner" + "Peter Kirchgessner" + "1996" + "X window dump" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "xwd") + (magics "4,long,0x00000007") + (mime-types "image/x-xwindowdump")) + "" + 2 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load" 3) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Output image" 3 1)) + (proc-def "file-xwd-save" 1 + "Exports files in the XWD (X Window Dump) format" + "XWD exporting handles all image types except those with alpha channels." + "Peter Kirchgessner" + "Peter Kirchgessner" + "1996" + "X window dump" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "xwd") + (mime-types "image/x-xwindowdump") + (handles-remote)) + "RGB, GRAY, INDEXED" + 5 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The image to save" 3 0) + (proc-arg 1 "GParamInt" "gint" "num-drawables" "Number of drawables" "Number of drawables to be saved" 3 0 2147483647 1) + (proc-arg 9 "GimpParamObjectArray" "GimpObjectArray" "drawables" "Drawables" "The drawables to save" 16387 "GimpDrawable") + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to save to" 3))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-xpm/file-xpm" 1609190423 + (proc-def "file-xpm-load" 1 + "Load files in XPM (X11 Pixmap) format." + "Load files in XPM (X11 Pixmap) format. XPM is a portable image format designed to be included in C source code. XLib provides utility functions to read this format. Newer code should however be using gdk-pixbuf-csource instead. XPM supports colored images, unlike the XBM format which XPM was designed to replace." + "Spencer Kimball & Peter Mattis & Ray Lehtiniemi" + "Spencer Kimball & Peter Mattis" + "1997" + "X PixMap image" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "xpm") + (magics "0, string,/*\\040XPM\\040*/") + (mime-types "image/x-pixmap")) + "" + 2 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load" 3) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Output image" 3 1)) + (proc-def "file-xpm-save" 1 + "Export files in XPM (X11 Pixmap) format." + "Export files in XPM (X11 Pixmap) format. XPM is a portable image format designed to be included in C source code. XLib provides utility functions to read this format. Newer code should however be using gdk-pixbuf-csource instead. XPM supports colored images, unlike the XBM format which XPM was designed to replace." + "Spencer Kimball & Peter Mattis & Ray Lehtiniemi & Nathan Summers" + "Spencer Kimball & Peter Mattis" + "1997" + "X PixMap image" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "xpm") + (mime-types "image/x-pixmap")) + "*" + 6 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The image to save" 3 0) + (proc-arg 1 "GParamInt" "gint" "num-drawables" "Number of drawables" "Number of drawables to be saved" 3 0 2147483647 1) + (proc-arg 9 "GimpParamObjectArray" "GimpObjectArray" "drawables" "Drawables" "The drawables to save" 16387 "GimpDrawable") + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to save to" 3) + (proc-arg 1 "GParamInt" "gint" "threshold" "Threshold" "Alpha threshold" 3 0 255 127))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-xmc/file-xmc" 1609190423 + (proc-def "file-xmc-load-thumb" 1 + "Loads only first frame of X11 Mouse Cursor's animation sequence which nominal size is the closest of thumb-size to be used as a thumbnail" + "" + "Takeshi Matsuyama " + "Takeshi Matsuyama" + "26 May 2009" + "" + 0 + (icon icon-name -1 "") + "" + 2 5 + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load the thumbnail from" 3) + (proc-arg 1 "GParamInt" "gint" "thumb-size" "Thumb Size" "Preferred thumbnail size" 3 16 2014 256) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Thumbnail image" 3 1) + (proc-arg 1 "GParamInt" "gint" "image-width" "Image width" "Width of the full-sized image (0 for unknown)" 3 0 524288 0) + (proc-arg 1 "GParamInt" "gint" "image-height" "Image height" "Height of the full-sized image (0 for unknown)" 3 0 524288 0) + (proc-arg 3 "GParamEnum" "GimpImageType" "image-type" "Image type" "Type of the image" 3 0) + (proc-arg 1 "GParamInt" "gint" "num-layers" "Num layers" "Number of layers in the image" 3 1 2147483647 1)) + (proc-def "file-xmc-load" 1 + "Loads files of X11 Mouse Cursor file format" + "This plug-in loads X11 Mouse Cursor (XMC) files." + "Takeshi Matsuyama " + "Takeshi Matsuyama" + "26 May 2009" + "X11 Mouse Cursor" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "xmc") + (magics "0,string,Xcur") + (mime-types "image/x-xcursor") + (thumb-loader "file-xmc-load-thumb")) + "" + 2 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load" 3) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Output image" 3 1)) + (proc-def "file-xmc-save" 1 + "Exports files of X11 cursor file" + "This plug-in exports X11 Mouse Cursor (XMC) files" + "Takeshi Matsuyama " + "Takeshi Matsuyama" + "26 May 2009" + "X11 Mouse Cursor" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "xmc") + (mime-types "image/x-xcursor")) + "RGBA" + 15 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The image to save" 3 0) + (proc-arg 1 "GParamInt" "gint" "num-drawables" "Number of drawables" "Number of drawables to be saved" 3 0 2147483647 1) + (proc-arg 9 "GimpParamObjectArray" "GimpObjectArray" "drawables" "Drawables" "The drawables to save" 16387 "GimpDrawable") + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to save to" 3) + (proc-arg 1 "GParamInt" "gint" "hot-spot-x" "Hot spot X" "X-coordinate of hot spot (use -1, -1 to keep original hot spot" 3 -1 524288 -1) + (proc-arg 1 "GParamInt" "gint" "hot-spot-y" "Hot spot Y" "Y-coordinate of hot spot (use -1, -1 to keep original hot spot" 3 -1 524288 -1) + (proc-arg 4 "GParamBoolean" "gboolean" "crop" "Crop" "Auto-crop or not" 3 0) + (proc-arg 1 "GParamInt" "gint" "size" "Size" "Default nominal size" 3 1 2147483647 32) + (proc-arg 4 "GParamBoolean" "gboolean" "size-replace" "Size replace" "Replace existent size or not" 3 0) + (proc-arg 1 "GParamInt" "gint" "delay" "Delay" "Default delay" 3 5 2147483647 50) + (proc-arg 4 "GParamBoolean" "gboolean" "delay-replace" "Delay replace" "Replace existent delay or not" 3 0) + (proc-arg 6 "GParamString" "gchararray" "xmc-copyright" "Copyright" "Copyright information" 3 "") + (proc-arg 6 "GParamString" "gchararray" "xmc-license" "License" "License information" 3 "") + (proc-arg 6 "GParamString" "gchararray" "gimp-comment" "Other" "Other comment (taken from 'gimp-comment' parasite)" 3 "Created with GIMP"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-xbm/file-xbm" 1609190423 + (proc-def "file-xbm-load" 1 + "Load a file in X10 or X11 bitmap (XBM) file format" + "Load a file in X10 or X11 bitmap (XBM) file format. XBM is a lossless format for flat black-and-white (two color indexed) images." + "Gordon Matzigkeit" + "Gordon Matzigkeit" + "1998" + "X BitMap image" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "xbm,icon,bitmap") + (mime-types "image/x-xbitmap")) + "" + 2 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load" 3) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Output image" 3 1)) + (proc-def "file-xbm-save" 1 + "Export a file in X10 or X11 bitmap (XBM) file format" + "Export a file in X10 or X11 bitmap (XBM) file format. XBM is a lossless format for flat black-and-white (two color indexed) images." + "Gordon Matzigkeit" + "Gordon Matzigkeit" + "1998" + "X BitMap image" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "xbm,icon,bitmap") + (mime-types "image/x-xbitmap") + (handles-remote)) + "INDEXED" + 14 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The image to save" 3 0) + (proc-arg 1 "GParamInt" "gint" "num-drawables" "Number of drawables" "Number of drawables to be saved" 3 0 2147483647 1) + (proc-arg 9 "GimpParamObjectArray" "GimpObjectArray" "drawables" "Drawables" "The drawables to save" 16387 "GimpDrawable") + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to save to" 3) + (proc-arg 4 "GParamBoolean" "gboolean" "save-comment" "Save comment" "Write a comment at the beginning of the file." 3 0) + (proc-arg 6 "GParamString" "gchararray" "gimp-comment" "Comment" "Image description (maximum 72 bytes)" 3 "Created with GIMP") + (proc-arg 4 "GParamBoolean" "gboolean" "x10-format" "X10 format" "Export in X10 format" 3 0) + (proc-arg 4 "GParamBoolean" "gboolean" "use-hot-spot" "Use hot spot" "Write hotspot information" 3 0) + (proc-arg 1 "GParamInt" "gint" "hot-spot-x" "Hot spot X" "X coordinate of hotspot" 3 0 524288 0) + (proc-arg 1 "GParamInt" "gint" "hot-spot-y" "Hot spot Y" "Y coordinate of hotspot" 3 0 524288 0) + (proc-arg 6 "GParamString" "gchararray" "prefix" "Prefix" "Identifier prefix [determined from filename]" 3 "bitmap") + (proc-arg 4 "GParamBoolean" "gboolean" "write-mask" "Write mask" "Write extra mask file" 3 0) + (proc-arg 6 "GParamString" "gchararray" "mask-suffix" "Mask suffix" "Suffix of the mask file" 3 "-mask"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-wmf/file-wmf" 1609190423 + (proc-def "file-wmf-load-thumb" 1 + "Loads a small preview from a WMF image" + "" + "Dom Lachowicz " + "Dom Lachowicz " + "(c) 2003 - Version 0.3.0" + "" + 0 + (icon icon-name -1 "") + "" + 2 5 + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load the thumbnail from" 3) + (proc-arg 1 "GParamInt" "gint" "thumb-size" "Thumb Size" "Preferred thumbnail size" 3 16 2014 256) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Thumbnail image" 3 1) + (proc-arg 1 "GParamInt" "gint" "image-width" "Image width" "Width of the full-sized image (0 for unknown)" 3 0 524288 0) + (proc-arg 1 "GParamInt" "gint" "image-height" "Image height" "Height of the full-sized image (0 for unknown)" 3 0 524288 0) + (proc-arg 3 "GParamEnum" "GimpImageType" "image-type" "Image type" "Type of the image" 3 0) + (proc-arg 1 "GParamInt" "gint" "num-layers" "Num layers" "Number of layers in the image" 3 1 2147483647 1)) + (proc-def "file-wmf-load" 1 + "Loads files in the WMF file format" + "Loads files in the WMF file format" + "Dom Lachowicz " + "Dom Lachowicz " + "(c) 2003 - Version 0.3.0" + "Microsoft WMF file" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "wmf,apm") + (magics "0,string,\\327\\315\\306\\232,0,string,\\1\\0\\11\\0") + (mime-types "image/x-wmf") + (thumb-loader "file-wmf-load-thumb")) + "" + 5 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load" 3) + (proc-arg 5 "GParamDouble" "gdouble" "resolution" "Resolution" "Resolution to use for rendering the WMF" 3 0.0050000000000000001 1048576 90) + (proc-arg 1 "GParamInt" "gint" "width" "Width" "Width (in pixels) to load the WMF in, 0 for original width" 3 0 524288 0) + (proc-arg 1 "GParamInt" "gint" "height" "Height" "Height (in pixels) to load the WMF in, 0 for original height" 3 0 524288 0) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Output image" 3 1))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-webp/file-webp" 1609190423 + (proc-def "file-webp-load" 1 + "Loads images in the WebP file format" + "Loads images in the WebP file format" + "Nathan Osman, Ben Touchette" + "(C) 2015-2016 Nathan Osman, (C) 2016 Ben Touchette" + "2015,2016" + "WebP image" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "webp") + (magics "8,string,WEBP") + (mime-types "image/webp")) + "" + 2 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load" 3) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Output image" 3 1)) + (proc-def "file-webp-save" 1 + "Saves files in the WebP image format" + "Saves files in the WebP image format" + "Nathan Osman, Ben Touchette" + "(C) 2015-2016 Nathan Osman, (C) 2016 Ben Touchette" + "2015,2016" + "WebP image" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "webp") + (mime-types "image/webp")) + "*" + 19 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The image to save" 3 0) + (proc-arg 1 "GParamInt" "gint" "num-drawables" "Number of drawables" "Number of drawables to be saved" 3 0 2147483647 1) + (proc-arg 9 "GimpParamObjectArray" "GimpObjectArray" "drawables" "Drawables" "The drawables to save" 16387 "GimpDrawable") + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to save to" 3) + (proc-arg 1 "GParamInt" "gint" "preset" "Preset" "Preset (Default=0, Picture=1, Photo=2, Drawing=3, Icon=4, Text=5)" 3 0 5 0) + (proc-arg 4 "GParamBoolean" "gboolean" "lossless" "Lossless" "Use lossless encoding" 3 0) + (proc-arg 5 "GParamDouble" "gdouble" "quality" "Quality" "Quality of the image" 3 0 100 90) + (proc-arg 5 "GParamDouble" "gdouble" "alpha-quality" "Alpha quality" "Quality of the image's alpha channel" 3 0 100 100) + (proc-arg 4 "GParamBoolean" "gboolean" "animation" "Animation" "Use layers for animation" 3 0) + (proc-arg 4 "GParamBoolean" "gboolean" "animation-loop" "Animation loop" "Loop animation infinitely" 3 1) + (proc-arg 4 "GParamBoolean" "gboolean" "minimize-size" "Minimize size" "Minimize animation size" 3 1) + (proc-arg 1 "GParamInt" "gint" "keyframe-distance" "Keyframe distance" "Maximum distance between keyframes" 3 0 2147483647 50) + (proc-arg 4 "GParamBoolean" "gboolean" "save-exif" "Save Exif" "Toggle saving Exif data" 3 0) + (proc-arg 4 "GParamBoolean" "gboolean" "save-iptc" "Save IPTC" "Toggle saving IPTC data" 3 0) + (proc-arg 4 "GParamBoolean" "gboolean" "save-xmp" "Save XMP" "Toggle saving XMP data" 3 0) + (proc-arg 4 "GParamBoolean" "gboolean" "save-color-profile" "Save color profle" "Toggle saving the color profile" 3 0) + (proc-arg 1 "GParamInt" "gint" "default-delay" "Default delay" "Delay to use when timestamps are not available or forced" 3 0 2147483647 200) + (proc-arg 4 "GParamBoolean" "gboolean" "force-delay" "Force delay" "Force delay on all frames" 3 0))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-tiff/file-tiff" 1609190423 + (proc-def "file-tiff-load" 1 + "loads files of the tiff file format" + "FIXME: write help for tiff_load" + "Spencer Kimball, Peter Mattis & Nick Lamb" + "Nick Lamb " + "1995-1996,1998-2003" + "TIFF image" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "tif,tiff") + (magics "0,string,II*\\0,0,string,MM\\0*") + (mime-types "image/tiff") + (handles-remote)) + "" + 2 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load" 3) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Output image" 3 1)) + (proc-def "file-tiff-save" 1 + "Saves files in the tiff file format" + "Saves files in the Tagged Image File Format. The value for the saved comment is taken from the 'gimp-comment' parasite" + "Spencer Kimball & Peter Mattis" + "Spencer Kimball & Peter Mattis" + "1995-1996,2000-2003" + "TIFF image" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "tif,tiff") + (mime-types "image/tiff") + (handles-remote)) + "*" + 7 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The image to save" 3 0) + (proc-arg 1 "GParamInt" "gint" "num-drawables" "Number of drawables" "Number of drawables to be saved" 3 0 2147483647 1) + (proc-arg 9 "GimpParamObjectArray" "GimpObjectArray" "drawables" "Drawables" "The drawables to save" 16387 "GimpDrawable") + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to save to" 3) + (proc-arg 1 "GParamInt" "gint" "compression" "Co_mpression" "Compression type: { NONE (0), LZW (1), PACKBITS (2), DEFLATE (3), JPEG (4), CCITT G3 Fax (5), CCITT G4 Fax (6) }" 3 0 6 0) + (proc-arg 4 "GParamBoolean" "gboolean" "save-transparent-pixels" "Save color _values from transparent pixels" "Keep the color data masked by an alpha channel intact (do not store premultiplied components)" 3 1))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-tga/file-tga" 1609190423 + (proc-def "file-tga-load" 1 + "Loads files of Targa file format" + "FIXME: write help for tga_load" + "Raphael FRANCOIS, Gordon Matzigkeit" + "Raphael FRANCOIS, Gordon Matzigkeit" + "1997,2000,2007" + "TarGA image" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "tga,vda,icb,vst") + (magics "-18&,string,TRUEVISION-XFILE.,-1,byte,0") + (mime-types "image/x-tga")) + "" + 2 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load" 3) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Output image" 3 1)) + (proc-def "file-tga-save" 1 + "Exports files in the Targa file format" + "FIXME: write help for tga_save" + "Raphael FRANCOIS, Gordon Matzigkeit" + "Raphael FRANCOIS, Gordon Matzigkeit" + "1997,2000" + "TarGA image" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "tga") + (mime-types "image/x-tga")) + "*" + 7 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The image to save" 3 0) + (proc-arg 1 "GParamInt" "gint" "num-drawables" "Number of drawables" "Number of drawables to be saved" 3 0 2147483647 1) + (proc-arg 9 "GimpParamObjectArray" "GimpObjectArray" "drawables" "Drawables" "The drawables to save" 16387 "GimpDrawable") + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to save to" 3) + (proc-arg 4 "GParamBoolean" "gboolean" "rle" "RLE" "Use RLE compression" 3 1) + (proc-arg 1 "GParamInt" "gint" "origin" "Origin" "Image origin (0 = top-left, 1 = bottom-left)" 3 0 1 1))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-svg/file-svg" 1609190423 + (proc-def "file-svg-load-thumb" 1 + "Generates a thumbnail of an SVG image" + "Renders a thumbnail of an SVG file using librsvg." + "Dom Lachowicz, Sven Neumann" + "Dom Lachowicz " + "2.5.0" + "" + 0 + (icon icon-name -1 "") + "" + 2 5 + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load the thumbnail from" 3) + (proc-arg 1 "GParamInt" "gint" "thumb-size" "Thumb Size" "Preferred thumbnail size" 3 16 2014 256) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Thumbnail image" 3 1) + (proc-arg 1 "GParamInt" "gint" "image-width" "Image width" "Width of the full-sized image (0 for unknown)" 3 0 524288 0) + (proc-arg 1 "GParamInt" "gint" "image-height" "Image height" "Height of the full-sized image (0 for unknown)" 3 0 524288 0) + (proc-arg 3 "GParamEnum" "GimpImageType" "image-type" "Image type" "Type of the image" 3 0) + (proc-arg 1 "GParamInt" "gint" "num-layers" "Num layers" "Number of layers in the image" 3 1 2147483647 1)) + (proc-def "file-svg-load" 1 + "Loads files in the SVG file format" + "Renders SVG files to raster graphics using librsvg." + "Dom Lachowicz, Sven Neumann" + "Dom Lachowicz " + "2.5.0" + "SVG image" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "svg") + (magics "0,string," + "Copyright 1997-1998 by Michael Sweet" + "1.1.1 - 17 May 1998" + "Silicon Graphics IRIS image" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "sgi,rgb,rgba,bw,icon") + (magics "0,short,474") + (mime-types "image/x-sgi")) + "" + 2 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load" 3) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Output image" 3 1)) + (proc-def "file-sgi-save" 1 + "Exports files in SGI image file format" + "This plug-in exports SGI image files." + "Michael Sweet " + "Copyright 1997-1998 by Michael Sweet" + "1.1.1 - 17 May 1998" + "Silicon Graphics IRIS image" + 0 + (icon icon-name -1 "gimp-tool-paintbrush") + (save-proc + (extensions "sgi,rgb,rgba,bw,icon") + (mime-types "image/x-sgi")) + "*" + 6 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The image to save" 3 0) + (proc-arg 1 "GParamInt" "gint" "num-drawables" "Number of drawables" "Number of drawables to be saved" 3 0 2147483647 1) + (proc-arg 9 "GimpParamObjectArray" "GimpObjectArray" "drawables" "Drawables" "The drawables to save" 16387 "GimpDrawable") + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to save to" 3) + (proc-arg 1 "GParamInt" "gint" "compression" "Compression" "Compression level (0 = none, 1 = RLE, 2 = ARLE)" 3 0 2 1))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-raw-placeholder/file-raw-placeholder" 1609190423 + (proc-def "file-raw-placeholder-canon-load" 1 + "Load files in the Canon raw formats via placeholder" + "This plug-in loads files in Canon's raw formats by calling placeholder." + "Tobias Ellinghaus" + "Tobias Ellinghaus" + "2016" + "" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "cr2,crw,cr3") + (magics "0,string,II*\\0\\020\\0\\0\\0CR,0,string,II\\024\\0\\0\\0HEAPCCDR,4,string,ftypcrx ") + (mime-types "image/x-canon-cr2,image/x-canon-crw,image/x-canon-cr3") + (handles-raw)) + "" + 2 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load" 3) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Output image" 3 1)) + (proc-def "file-raw-placeholder-nikon-load" 1 + "Load files in the Nikon raw formats via placeholder" + "This plug-in loads files in Nikon's raw formats by calling placeholder." + "Tobias Ellinghaus" + "Tobias Ellinghaus" + "2016" + "" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "nef,nrw") + (mime-types "image/x-nikon-nef,image/x-nikon-nrw") + (handles-raw)) + "" + 2 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load" 3) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Output image" 3 1)) + (proc-def "file-raw-placeholder-hasselblad-load" 1 + "Load files in the Hasselblad raw formats via placeholder" + "This plug-in loads files in Hasselblad's raw formats by calling placeholder." + "Tobias Ellinghaus" + "Tobias Ellinghaus" + "2016" + "" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "3fr,fff") + (mime-types "image/x-hasselblad-3fr,image/x-hasselblad-fff") + (handles-raw)) + "" + 2 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load" 3) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Output image" 3 1)) + (proc-def "file-raw-placeholder-sony-load" 1 + "Load files in the Sony raw formats via placeholder" + "This plug-in loads files in Sony's raw formats by calling placeholder." + "Tobias Ellinghaus" + "Tobias Ellinghaus" + "2016" + "" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "arw,srf,sr2") + (mime-types "image/x-sony-arw,image/x-sony-srf,image/x-sony-sr2") + (handles-raw)) + "" + 2 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load" 3) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Output image" 3 1)) + (proc-def "file-raw-placeholder-bay-load" 1 + "Load files in the BAY raw format via placeholder" + "This plug-in loads files in Casio's raw BAY format by calling placeholder." + "Tobias Ellinghaus" + "Tobias Ellinghaus" + "2016" + "" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "bay") + (mime-types "image/x-casio-bay") + (handles-raw)) + "" + 2 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load" 3) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Output image" 3 1)) + (proc-def "file-raw-placeholder-cine-load" 1 + "Load files in the CINE raw format via placeholder" + "This plug-in loads files in Phantom Software's raw CINE format by calling placeholder." + "Tobias Ellinghaus" + "Tobias Ellinghaus" + "2016" + "" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "cine,cin") + (handles-raw)) + "" + 2 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load" 3) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Output image" 3 1)) + (proc-def "file-raw-placeholder-sinar-load" 1 + "Load files in the Sinar raw formats via placeholder" + "This plug-in loads files in Sinar's raw formats by calling placeholder." + "Tobias Ellinghaus" + "Tobias Ellinghaus" + "2016" + "" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "cs1,ia,sti") + (handles-raw)) + "" + 2 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load" 3) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Output image" 3 1)) + (proc-def "file-raw-placeholder-kodak-load" 1 + "Load files in the Kodak raw formats via placeholder" + "This plug-in loads files in Kodak's raw formats by calling placeholder." + "Tobias Ellinghaus" + "Tobias Ellinghaus" + "2016" + "" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "dc2,dcr,kdc,k25,kc2") + (mime-types "image/x-kodak-dc2,image/x-kodak-dcr,image/x-kodak-kdc,image/x-kodak-k25,image/x-kodak-kc2") + (handles-raw)) + "" + 2 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load" 3) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Output image" 3 1)) + (proc-def "file-raw-placeholder-dng-load" 1 + "Load files in the DNG raw format via placeholder" + "This plug-in loads files in the Adobe Digital Negative DNG format by calling placeholder." + "Tobias Ellinghaus" + "Tobias Ellinghaus" + "2016" + "" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "dng") + (mime-types "image/x-adobe-dng") + (handles-raw)) + "" + 2 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load" 3) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Output image" 3 1)) + (proc-def "file-raw-placeholder-erf-load" 1 + "Load files in the ERF raw format via placeholder" + "This plug-in loads files in Epson's raw ERF format by calling placeholder." + "Tobias Ellinghaus" + "Tobias Ellinghaus" + "2016" + "" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "erf") + (mime-types "image/x-epson-erf") + (handles-raw)) + "" + 2 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load" 3) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Output image" 3 1)) + (proc-def "file-raw-placeholder-phaseone-load" 1 + "Load files in the Phase One raw formats via placeholder" + "This plug-in loads files in Phase One's raw formats by calling placeholder." + "Tobias Ellinghaus" + "Tobias Ellinghaus" + "2016" + "" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "cap,iiq") + (mime-types "image/x-phaseone-cap,image/x-phaseone-iiq") + (handles-raw)) + "" + 2 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load" 3) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Output image" 3 1)) + (proc-def "file-raw-placeholder-minolta-load" 1 + "Load files in the Minolta raw formats via placeholder" + "This plug-in loads files in Minolta's raw formats by calling placeholder." + "Tobias Ellinghaus" + "Tobias Ellinghaus" + "2016" + "" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "mdc,mrw") + (mime-types "image/x-minolta-mdc,image/x-minolta-mrw") + (handles-raw)) + "" + 2 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load" 3) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Output image" 3 1)) + (proc-def "file-raw-placeholder-mef-load" 1 + "Load files in the MEF raw format via placeholder" + "This plug-in loads files in Mamiya's raw MEF format by calling placeholder." + "Tobias Ellinghaus" + "Tobias Ellinghaus" + "2016" + "" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "mef") + (mime-types "image/x-mamiya-mef") + (handles-raw)) + "" + 2 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load" 3) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Output image" 3 1)) + (proc-def "file-raw-placeholder-mos-load" 1 + "Load files in the MOS raw format via placeholder" + "This plug-in loads files in Leaf's raw MOS format by calling placeholder." + "Tobias Ellinghaus" + "Tobias Ellinghaus" + "2016" + "" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "mos") + (mime-types "image/x-leaf-mos") + (handles-raw)) + "" + 2 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load" 3) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Output image" 3 1)) + (proc-def "file-raw-placeholder-orf-load" 1 + "Load files in the ORF raw format via placeholder" + "This plug-in loads files in Olympus' raw ORF format by calling placeholder." + "Tobias Ellinghaus" + "Tobias Ellinghaus" + "2016" + "" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "orf") + (magics "0,string,IIRO,0,string,MMOR,0,string,IIRS") + (mime-types "image/x-olympus-orf") + (handles-raw)) + "" + 2 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load" 3) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Output image" 3 1)) + (proc-def "file-raw-placeholder-pef-load" 1 + "Load files in the PEF raw format via placeholder" + "This plug-in loads files in Pentax' raw PEF format by calling placeholder." + "Tobias Ellinghaus" + "Tobias Ellinghaus" + "2016" + "" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "pef,raw") + (mime-types "image/x-pentax-pef,image/x-pentax-raw") + (handles-raw)) + "" + 2 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load" 3) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Output image" 3 1)) + (proc-def "file-raw-placeholder-pxn-load" 1 + "Load files in the PXN raw format via placeholder" + "This plug-in loads files in Logitech's raw PXN format by calling placeholder." + "Tobias Ellinghaus" + "Tobias Ellinghaus" + "2016" + "" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "pxn") + (mime-types "image/x-pxn") + (handles-raw)) + "" + 2 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load" 3) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Output image" 3 1)) + (proc-def "file-raw-placeholder-qtk-load" 1 + "Load files in the QTK raw format via placeholder" + "This plug-in loads files in Apple's QuickTake QTK raw format by calling placeholder." + "Tobias Ellinghaus" + "Tobias Ellinghaus" + "2016" + "" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "qtk") + (handles-raw)) + "" + 2 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load" 3) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Output image" 3 1)) + (proc-def "file-raw-placeholder-raf-load" 1 + "Load files in the RAF raw format via placeholder" + "This plug-in loads files in Fujifilm's raw RAF format by calling placeholder." + "Tobias Ellinghaus" + "Tobias Ellinghaus" + "2016" + "" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "raf") + (magics "0,string,FUJIFILMCCD-RAW") + (mime-types "image/x-fuji-raf") + (handles-raw)) + "" + 2 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load" 3) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Output image" 3 1)) + (proc-def "file-raw-placeholder-panasonic-load" 1 + "Load files in the Panasonic raw formats via placeholder" + "This plug-in loads files in Panasonic's raw formats by calling placeholder." + "Tobias Ellinghaus" + "Tobias Ellinghaus" + "2016" + "" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "raw,rw2") + (magics "0,string,IIU\\0") + (mime-types "image/x-panasonic-raw,image/x-panasonic-rw2") + (handles-raw)) + "" + 2 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load" 3) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Output image" 3 1)) + (proc-def "file-raw-placeholder-rdc-load" 1 + "Load files in the RDC raw format via placeholder" + "This plug-in loads files in Digital Foto Maker's raw RDC format by calling placeholder." + "Tobias Ellinghaus" + "Tobias Ellinghaus" + "2016" + "" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "rdc") + (handles-raw)) + "" + 2 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load" 3) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Output image" 3 1)) + (proc-def "file-raw-placeholder-rwl-load" 1 + "Load files in the RWL raw format via placeholder" + "This plug-in loads files in Leica's raw RWL format by calling placeholder." + "Tobias Ellinghaus" + "Tobias Ellinghaus" + "2016" + "" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "rwl") + (mime-types "image/x-leica-rwl") + (handles-raw)) + "" + 2 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load" 3) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Output image" 3 1)) + (proc-def "file-raw-placeholder-srw-load" 1 + "Load files in the SRW raw format via placeholder" + "This plug-in loads files in Samsung's raw SRW format by calling placeholder." + "Tobias Ellinghaus" + "Tobias Ellinghaus" + "2016" + "" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "srw") + (mime-types "image/x-samsung-srw") + (handles-raw)) + "" + 2 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load" 3) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Output image" 3 1)) + (proc-def "file-raw-placeholder-x3f-load" 1 + "Load files in the X3F raw format via placeholder" + "This plug-in loads files in Sigma's raw X3F format by calling placeholder." + "Tobias Ellinghaus" + "Tobias Ellinghaus" + "2016" + "" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "x3f") + (magics "0,string,FOVb") + (mime-types "image/x-sigma-x3f") + (handles-raw)) + "" + 2 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load" 3) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Output image" 3 1)) + (proc-def "file-raw-placeholder-ari-load" 1 + "Load files in the ARI raw format via placeholder" + "This plug-in loads files in Arriflex' raw ARI format by calling placeholder." + "Tobias Ellinghaus" + "Tobias Ellinghaus" + "2016" + "" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "ari") + (handles-raw)) + "" + 2 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load" 3) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Output image" 3 1))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-raw-data/file-raw-data" 1609190423 + (proc-def "file-raw-load" 1 + "Load raw images, specifying image information" + "Load raw images, specifying image information" + "timecop, pg@futureware.at" + "timecop, pg@futureware.at" + "Aug 2004" + "Raw image data" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "data")) + "" + 2 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load" 3) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Output image" 3 1)) + (proc-def "file-hgt-load" 1 + "Load HGT data as images" + "Load Digital Elevation Model data in HGT format from the Shuttle Radar Topography Mission as images. Though the output image will be RGB, all colors are grayscale by default and the contrast will be quite low on most earth relief. Therefore You will likely want to remap elevation to colors as a second step, for instance with the \"Gradient Map\" plug-in." + "" + "" + "2017-12-09" + "Digital Elevation Model data" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "hgt")) + "" + 3 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load" 3) + (proc-arg 1 "GParamInt" "gint" "sample-spacing" "Sample spacing" "The sample spacing of the data. (0: auto-detect, 1: SRTM-1, 2: SRTM-3 data)" 3 0 2 0) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Output image" 3 1)) + (proc-def "file-raw-save" 1 + "Dump images to disk in raw format" + "Dump images to disk in raw format" + "Björn Kautler, Bjoern@Kautler.net" + "Björn Kautler, Bjoern@Kautler.net" + "April 2014" + "Raw image data" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "data,raw")) + "INDEXED, GRAY, RGB, RGBA" + 7 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The image to save" 3 0) + (proc-arg 1 "GParamInt" "gint" "num-drawables" "Number of drawables" "Number of drawables to be saved" 3 0 2147483647 1) + (proc-arg 9 "GimpParamObjectArray" "GimpObjectArray" "drawables" "Drawables" "The drawables to save" 16387 "GimpDrawable") + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to save to" 3) + (proc-arg 1 "GParamInt" "gint" "image-type" "Image type" "The image type { RAW_RGB (0), RAW_PLANAR (6) }" 3 0 6 0) + (proc-arg 1 "GParamInt" "gint" "palette-type" "Palette type" "The palette type { RAW_PALETTE_RGB (0), RAW_PALETTE_BGR (1) }" 3 0 1 0))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-psp/file-psp" 1609190423 + (proc-def "file-psp-load" 1 + "Loads images from the Paint Shop Pro PSP file format" + "This plug-in loads and exports images in Paint Shop Pro's native PSP format. Vector layers aren't handled. Exporting isn't yet implemented." + "Tor Lillqvist" + "Tor Lillqvist" + "1999" + "Paint Shop Pro image" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "psp,tub,pspimage,psptube") + (magics "0,string,Paint\\040Shop\\040Pro\\040Image\\040File\n\032") + (mime-types "image/x-psp")) + "" + 2 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load" 3) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Output image" 3 1))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-psd/file-psd" 1609190423 + (proc-def "file-psd-load-thumb" 1 + "Loads thumbnails from the Photoshop PSD file format" + "This plug-in loads thumbnail images from Adobe Photoshop (TM) native PSD format files." + "John Marshall" + "John Marshall" + "2007" + "" + 0 + (icon icon-name -1 "") + "" + 2 5 + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load the thumbnail from" 3) + (proc-arg 1 "GParamInt" "gint" "thumb-size" "Thumb Size" "Preferred thumbnail size" 3 16 2014 256) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Thumbnail image" 3 1) + (proc-arg 1 "GParamInt" "gint" "image-width" "Image width" "Width of the full-sized image (0 for unknown)" 3 0 524288 0) + (proc-arg 1 "GParamInt" "gint" "image-height" "Image height" "Height of the full-sized image (0 for unknown)" 3 0 524288 0) + (proc-arg 3 "GParamEnum" "GimpImageType" "image-type" "Image type" "Type of the image" 3 0) + (proc-arg 1 "GParamInt" "gint" "num-layers" "Num layers" "Number of layers in the image" 3 1 2147483647 1)) + (proc-def "file-psd-load" 1 + "Loads images from the Photoshop PSD file format" + "This plug-in loads images in Adobe Photoshop (TM) native PSD format." + "John Marshall" + "John Marshall" + "2007" + "Photoshop image" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "psd") + (magics "0,string,8BPS") + (mime-types "image/x-psd") + (thumb-loader "file-psd-load-thumb")) + "" + 2 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load" 3) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Output image" 3 1)) + (proc-def "file-psd-load-merged" 1 + "Loads images from the Photoshop PSD file format" + "This plug-in loads the merged image data in Adobe Photoshop (TM) native PSD format." + "Ell" + "Ell" + "2018" + "Photoshop image (merged)" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "psd") + (magics "0,string,8BPS") + (priority 1) + (mime-types "image/x-psd") + (priority 1) + (thumb-loader "file-psd-load-thumb")) + "" + 2 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load" 3) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Output image" 3 1)) + (proc-def "file-psd-save" 1 + "Saves files in the Photoshop(tm) PSD file format" + "This filter saves files of Adobe Photoshop(tm) native PSD format. These files may be of any image type supported by GIMP, with or without layers, layer masks, aux channels and guides." + "Monigotes" + "Monigotes" + "2000" + "Photoshop image" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "psd") + (mime-types "image/x-psd")) + "*" + 5 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The image to save" 3 0) + (proc-arg 1 "GParamInt" "gint" "num-drawables" "Number of drawables" "Number of drawables to be saved" 3 0 2147483647 1) + (proc-arg 9 "GimpParamObjectArray" "GimpObjectArray" "drawables" "Drawables" "The drawables to save" 16387 "GimpDrawable") + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to save to" 3))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-ps/file-ps" 1609190423 + (proc-def "file-ps-load-thumb" 1 + "Loads a small preview from a PostScript or PDF document" + "" + "Peter Kirchgessner " + "Peter Kirchgessner" + "v1.17 19-Sep-2004" + "" + 0 + (icon icon-name -1 "") + "" + 2 5 + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load the thumbnail from" 3) + (proc-arg 1 "GParamInt" "gint" "thumb-size" "Thumb Size" "Preferred thumbnail size" 3 16 2014 256) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Thumbnail image" 3 1) + (proc-arg 1 "GParamInt" "gint" "image-width" "Image width" "Width of the full-sized image (0 for unknown)" 3 0 524288 0) + (proc-arg 1 "GParamInt" "gint" "image-height" "Image height" "Height of the full-sized image (0 for unknown)" 3 0 524288 0) + (proc-arg 3 "GParamEnum" "GimpImageType" "image-type" "Image type" "Type of the image" 3 0) + (proc-arg 1 "GParamInt" "gint" "num-layers" "Num layers" "Number of layers in the image" 3 1 2147483647 1)) + (proc-def "file-ps-load" 1 + "Load PostScript documents" + "Load PostScript documents" + "Peter Kirchgessner " + "Peter Kirchgessner" + "v1.17 19-Sep-2004" + "PostScript document" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "ps") + (magics "0,string,%!,0,long,0xc5d0d3c6") + (mime-types "application/postscript") + (thumb-loader "file-ps-load-thumb")) + "" + 10 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load" 3) + (proc-arg 1 "GParamInt" "gint" "resolution" "Resolution" "Resolution to interpret image (dpi)" 3 5 8192 100) + (proc-arg 1 "GParamInt" "gint" "width" "Width" "Desired width" 3 1 524288 826) + (proc-arg 1 "GParamInt" "gint" "height" "Height" "Desired height" 3 1 524288 1170) + (proc-arg 4 "GParamBoolean" "gboolean" "check-bbox" "Check bbox" "FALSE: Use width/height, TRUE: Use BoundingBox" 3 1) + (proc-arg 6 "GParamString" "gchararray" "pages" "Pages" "Pages to load (e.g.: 1,3,5-7)" 3 "1") + (proc-arg 1 "GParamInt" "gint" "coloring" "Coloring" "4: b/w, 5: grey, 6: color image, 7: automatic" 3 4 7 6) + (proc-arg 1 "GParamInt" "gint" "text-alpha-bits" "Text alpha bits" "1, 2 or 4" 3 1 4 1) + (proc-arg 1 "GParamInt" "gint" "graphoc-alpha-bits" "Graphic alpha bits" "1, 2 or 4" 3 1 4 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Output image" 3 1)) + (proc-def "file-eps-load" 1 + "load Encapsulated PostScript images" + "load Encapsulated PostScript images" + "Peter Kirchgessner " + "Peter Kirchgessner" + "v1.17 19-Sep-2004" + "Encapsulated PostScript image" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "eps") + (magics "0,string,%!,0,long,0xc5d0d3c6") + (mime-types "image/x-eps") + (thumb-loader "file-ps-load-thumb")) + "" + 10 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load" 3) + (proc-arg 1 "GParamInt" "gint" "resolution" "Resolution" "Resolution to interpret image (dpi)" 3 5 8192 100) + (proc-arg 1 "GParamInt" "gint" "width" "Width" "Desired width" 3 1 524288 826) + (proc-arg 1 "GParamInt" "gint" "height" "Height" "Desired height" 3 1 524288 1170) + (proc-arg 4 "GParamBoolean" "gboolean" "check-bbox" "Check bbox" "FALSE: Use width/height, TRUE: Use BoundingBox" 3 1) + (proc-arg 6 "GParamString" "gchararray" "pages" "Pages" "Pages to load (e.g.: 1,3,5-7)" 3 "1") + (proc-arg 1 "GParamInt" "gint" "coloring" "Coloring" "4: b/w, 5: grey, 6: color image, 7: automatic" 3 4 7 6) + (proc-arg 1 "GParamInt" "gint" "text-alpha-bits" "Text alpha bits" "1, 2 or 4" 3 1 4 1) + (proc-arg 1 "GParamInt" "gint" "graphoc-alpha-bits" "Graphic alpha bits" "1, 2 or 4" 3 1 4 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Output image" 3 1)) + (proc-def "file-ps-save" 1 + "Export image as PostScript document" + "PostScript exporting handles all image types except those with alpha channels." + "Peter Kirchgessner " + "Peter Kirchgessner" + "v1.17 19-Sep-2004" + "PostScript document" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "ps") + (mime-types "application/postscript") + (handles-remote)) + "RGB, GRAY, INDEXED" + 15 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The image to save" 3 0) + (proc-arg 1 "GParamInt" "gint" "num-drawables" "Number of drawables" "Number of drawables to be saved" 3 0 2147483647 1) + (proc-arg 9 "GimpParamObjectArray" "GimpObjectArray" "drawables" "Drawables" "The drawables to save" 16387 "GimpDrawable") + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to save to" 3) + (proc-arg 5 "GParamDouble" "gdouble" "width" "Width" "Width of the image in PostScript file (0: use input image size)" 3 0 524288 0) + (proc-arg 5 "GParamDouble" "gdouble" "height" "Height" "Height of the image in PostScript file (0: use input image size)" 3 0 524288 0) + (proc-arg 5 "GParamDouble" "gdouble" "x-offset" "X offset" "X-offset to image from lower left corner" 3 -524288 524288 0) + (proc-arg 5 "GParamDouble" "gdouble" "y-offset" "Y offset" "Y-offset to image from lower left corner" 3 -524288 524288 0) + (proc-arg 1 "GParamInt" "gint" "unit" "Unit" "Unit for width/height/offset. 0: inches, 1: millimeters" 3 0 1 0) + (proc-arg 4 "GParamBoolean" "gboolean" "keep-ratio" "Keep ratio" "FALSE: use width/height, TRUE: keep aspect ratio" 3 1) + (proc-arg 1 "GParamInt" "gint" "rotation" "Rotation" "0, 90, 180, 270" 3 0 270 0) + (proc-arg 4 "GParamBoolean" "gboolean" "eps-flag" "EPG flag" "FALSE: PostScript, TRUE: Encapsulated PostScript" 3 0) + (proc-arg 1 "GParamInt" "gint" "preview" "Preview" "0: no preview, >0: max. size of preview" 3 0 524288 0) + (proc-arg 1 "GParamInt" "gint" "level" "Level" "1: PostScript Level 1, 2: PostScript Level 2" 3 1 2 2)) + (proc-def "file-eps-save" 1 + "Export image as Encapsulated PostScript image" + "PostScript exporting handles all image types except those with alpha channels." + "Peter Kirchgessner " + "Peter Kirchgessner" + "v1.17 19-Sep-2004" + "Encapsulated PostScript image" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "eps") + (mime-types "application/x-eps") + (handles-remote)) + "RGB, GRAY, INDEXED" + 15 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The image to save" 3 0) + (proc-arg 1 "GParamInt" "gint" "num-drawables" "Number of drawables" "Number of drawables to be saved" 3 0 2147483647 1) + (proc-arg 9 "GimpParamObjectArray" "GimpObjectArray" "drawables" "Drawables" "The drawables to save" 16387 "GimpDrawable") + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to save to" 3) + (proc-arg 5 "GParamDouble" "gdouble" "width" "Width" "Width of the image in PostScript file (0: use input image size)" 3 0 524288 0) + (proc-arg 5 "GParamDouble" "gdouble" "height" "Height" "Height of the image in PostScript file (0: use input image size)" 3 0 524288 0) + (proc-arg 5 "GParamDouble" "gdouble" "x-offset" "X offset" "X-offset to image from lower left corner" 3 -524288 524288 0) + (proc-arg 5 "GParamDouble" "gdouble" "y-offset" "Y offset" "Y-offset to image from lower left corner" 3 -524288 524288 0) + (proc-arg 1 "GParamInt" "gint" "unit" "Unit" "Unit for width/height/offset. 0: inches, 1: millimeters" 3 0 1 0) + (proc-arg 4 "GParamBoolean" "gboolean" "keep-ratio" "Keep ratio" "FALSE: use width/height, TRUE: keep aspect ratio" 3 1) + (proc-arg 1 "GParamInt" "gint" "rotation" "Rotation" "0, 90, 180, 270" 3 0 270 0) + (proc-arg 4 "GParamBoolean" "gboolean" "eps-flag" "EPG flag" "FALSE: PostScript, TRUE: Encapsulated PostScript" 3 0) + (proc-arg 1 "GParamInt" "gint" "preview" "Preview" "0: no preview, >0: max. size of preview" 3 0 524288 0) + (proc-arg 1 "GParamInt" "gint" "level" "Level" "1: PostScript Level 1, 2: PostScript Level 2" 3 1 2 2))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-pnm/file-pnm" 1609190423 + (proc-def "file-pnm-load" 1 + "Loads files in the PNM file format" + "This plug-in loads files in the various Netpbm portable file formats." + "Erik Nygren" + "Erik Nygren" + "1996" + "PNM Image" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "pnm,ppm,pgm,pbm,pfm") + (magics "0,string,P1,0,string,P2,0,string,P3,0,string,P4,0,string,P5,0,string,P6,0,string,PF,0,string,Pf") + (mime-types "image/x-portable-anymap") + (handles-remote)) + "" + 2 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load" 3) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Output image" 3 1)) + (proc-def "file-pnm-save" 1 + "Exports files in the PNM file format" + "PNM export handles all image types without transparency." + "Erik Nygren" + "Erik Nygren" + "1996" + "PNM image" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "pnm") + (mime-types "image/x-portable-anymap") + (handles-remote)) + "RGB, GRAY, INDEXED" + 6 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The image to save" 3 0) + (proc-arg 1 "GParamInt" "gint" "num-drawables" "Number of drawables" "Number of drawables to be saved" 3 0 2147483647 1) + (proc-arg 9 "GimpParamObjectArray" "GimpObjectArray" "drawables" "Drawables" "The drawables to save" 16387 "GimpDrawable") + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to save to" 3) + (proc-arg 4 "GParamBoolean" "gboolean" "raw" "Raw" "TRUE for raw output, FALSE for ascii output" 3 1)) + (proc-def "file-pbm-save" 1 + "Exports files in the PBM file format" + "PBM exporting produces mono images without transparency." + "Erik Nygren" + "Erik Nygren" + "1996" + "PBM image" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "pbm") + (mime-types "image/x-portable-bitmap") + (handles-remote)) + "RGB, GRAY, INDEXED" + 6 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The image to save" 3 0) + (proc-arg 1 "GParamInt" "gint" "num-drawables" "Number of drawables" "Number of drawables to be saved" 3 0 2147483647 1) + (proc-arg 9 "GimpParamObjectArray" "GimpObjectArray" "drawables" "Drawables" "The drawables to save" 16387 "GimpDrawable") + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to save to" 3) + (proc-arg 4 "GParamBoolean" "gboolean" "raw" "Raw" "TRUE for raw output, FALSE for ascii output" 3 1)) + (proc-def "file-pgm-save" 1 + "Exports files in the PGM file format" + "PGM exporting produces grayscale images without transparency." + "Erik Nygren" + "Erik Nygren" + "1996" + "PGM image" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "pgm") + (mime-types "image/x-portable-graymap") + (handles-remote)) + "RGB, GRAY, INDEXED" + 6 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The image to save" 3 0) + (proc-arg 1 "GParamInt" "gint" "num-drawables" "Number of drawables" "Number of drawables to be saved" 3 0 2147483647 1) + (proc-arg 9 "GimpParamObjectArray" "GimpObjectArray" "drawables" "Drawables" "The drawables to save" 16387 "GimpDrawable") + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to save to" 3) + (proc-arg 4 "GParamBoolean" "gboolean" "raw" "Raw" "TRUE for raw output, FALSE for ascii output" 3 1)) + (proc-def "file-ppm-save" 1 + "Exports files in the PPM file format" + "PPM export handles RGB images without transparency." + "Erik Nygren" + "Erik Nygren" + "1996" + "PPM image" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "ppm") + (mime-types "image/x-portable-pixmap") + (handles-remote)) + "RGB, GRAY, INDEXED" + 6 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The image to save" 3 0) + (proc-arg 1 "GParamInt" "gint" "num-drawables" "Number of drawables" "Number of drawables to be saved" 3 0 2147483647 1) + (proc-arg 9 "GimpParamObjectArray" "GimpObjectArray" "drawables" "Drawables" "The drawables to save" 16387 "GimpDrawable") + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to save to" 3) + (proc-arg 4 "GParamBoolean" "gboolean" "raw" "Raw" "TRUE for raw output, FALSE for ascii output" 3 1)) + (proc-def "file-pfm-save" 1 + "Exports files in the PFM file format" + "PFM export handles all images without transparency." + "Mukund Sivaraman" + "Mukund Sivaraman" + "2015" + "PFM image" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "pfm") + (mime-types "image/x-portable-floatmap") + (handles-remote)) + "RGB, GRAY, INDEXED" + 5 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The image to save" 3 0) + (proc-arg 1 "GParamInt" "gint" "num-drawables" "Number of drawables" "Number of drawables to be saved" 3 0 2147483647 1) + (proc-arg 9 "GimpParamObjectArray" "GimpObjectArray" "drawables" "Drawables" "The drawables to save" 16387 "GimpDrawable") + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to save to" 3))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-png/file-png" 1609190423 + (proc-def "file-png-load" 1 + "Loads files in PNG file format" + "This plug-in loads Portable Network Graphics (PNG) files." + "Michael Sweet , Daniel Skarda <0rfelyus@atrey.karlin.mff.cuni.cz>" + "Michael Sweet , Daniel Skarda <0rfelyus@atrey.karlin.mff.cuni.cz>, Nick Lamb " + "1.3.4 - 03 September 2002" + "PNG image" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "png") + (magics "0,string,PNG\r\n\032\n") + (mime-types "image/png")) + "" + 2 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load" 3) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Output image" 3 1)) + (proc-def "file-png-save" 1 + "Exports files in PNG file format" + "This plug-in exports Portable Network Graphics (PNG) files." + "Michael Sweet , Daniel Skarda <0rfelyus@atrey.karlin.mff.cuni.cz>" + "Michael Sweet , Daniel Skarda <0rfelyus@atrey.karlin.mff.cuni.cz>, Nick Lamb " + "1.3.4 - 03 September 2002" + "PNG image" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "png") + (mime-types "image/png")) + "*" + 13 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The image to save" 3 0) + (proc-arg 1 "GParamInt" "gint" "num-drawables" "Number of drawables" "Number of drawables to be saved" 3 0 2147483647 1) + (proc-arg 9 "GimpParamObjectArray" "GimpObjectArray" "drawables" "Drawables" "The drawables to save" 16387 "GimpDrawable") + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to save to" 3) + (proc-arg 4 "GParamBoolean" "gboolean" "interlaced" "_Interlacing (Adam7)" "Use Adam7 interlacing?" 3 0) + (proc-arg 1 "GParamInt" "gint" "compression" "Co_mpression level" "Deflate Compression factor (0..9)" 3 0 9 9) + (proc-arg 4 "GParamBoolean" "gboolean" "bkgd" "Save _background color" "Write bKGD chunk (PNG metadata)" 3 1) + (proc-arg 4 "GParamBoolean" "gboolean" "gama" "Save _gamma" "Write gAMA chunk (PNG metadata)" 3 0) + (proc-arg 4 "GParamBoolean" "gboolean" "offs" "Save layer o_ffset" "Write oFFs chunk (PNG metadata)" 3 0) + (proc-arg 4 "GParamBoolean" "gboolean" "phys" "Save resol_ution" "Write pHYs chunk (PNG metadata)" 3 1) + (proc-arg 4 "GParamBoolean" "gboolean" "time" "Save creation _time" "Write tIME chunk (PNG metadata)" 3 1) + (proc-arg 4 "GParamBoolean" "gboolean" "save-transparent" "Save color _values from transparent pixels" "Preserve color of transparent pixels?" 3 0))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-pix/file-pix" 1609190423 + (proc-def "file-pix-load" 1 + "Loads files of the Alias|Wavefront Pix file format" + "Loads files of the Alias|Wavefront Pix file format" + "Michael Taylor" + "Michael Taylor" + "1997" + "Alias Pix image" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "pix,matte,mask,alpha,als") + (handles-remote)) + "" + 2 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load" 3) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Output image" 3 1)) + (proc-def "file-pix-save" 1 + "Export file in the Alias|Wavefront pix/matte file format" + "Export file in the Alias|Wavefront pix/matte file format" + "Michael Taylor" + "Michael Taylor" + "1997" + "Alias Pix image" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "pix,matte,mask,alpha,als") + (handles-remote)) + "*" + 5 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The image to save" 3 0) + (proc-arg 1 "GParamInt" "gint" "num-drawables" "Number of drawables" "Number of drawables to be saved" 3 0 2147483647 1) + (proc-arg 9 "GimpParamObjectArray" "GimpObjectArray" "drawables" "Drawables" "The drawables to save" 16387 "GimpDrawable") + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to save to" 3))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-pdf-save/file-pdf-save" 1609190423 + (proc-def "file-pdf-save" 1 + "Save files in PDF format" + "Saves files in Adobe's Portable Document Format. PDF is designed to be easily processed by a variety of different platforms, and is a distant cousin of PostScript." + "Barak Itkin, Lionel N., Jehan" + "Copyright Barak Itkin, Lionel N., Jehan" + "August 2009, 2017" + "Portable Document Format" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "pdf") + (mime-types "application/pdf")) + "*" + 11 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The image to save" 3 0) + (proc-arg 1 "GParamInt" "gint" "num-drawables" "Number of drawables" "Number of drawables to be saved" 3 0 2147483647 1) + (proc-arg 9 "GimpParamObjectArray" "GimpObjectArray" "drawables" "Drawables" "The drawables to save" 16387 "GimpDrawable") + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to save to" 3) + (proc-arg 4 "GParamBoolean" "gboolean" "vectorize" "Vectorize" "Convert bitmaps to vector graphics where possible." 3 1) + (proc-arg 4 "GParamBoolean" "gboolean" "ignore-hidden" "Ignore hidden" "Omit hidden layers and layers with zero opacity." 3 1) + (proc-arg 4 "GParamBoolean" "gboolean" "apply-masks" "Apply masks" "Apply layer masks before saving (Keeping them will not change the output)," 3 1) + (proc-arg 4 "GParamBoolean" "gboolean" "layers-as-pages" "Layers as pages" "Layers as pages (bottom layers first)." 3 0) + (proc-arg 4 "GParamBoolean" "gboolean" "reverse-order" "Reverse order" "Reverse the pages order (top layers first)." 3 0) + (proc-arg 4 "GParamBoolean" "gboolean" "convert-text-layers" "Convert text layers to image" "Convert text layers to raster graphics" 3 0)) + (proc-def "file-pdf-save-multi" 1 + "Save files in PDF format" + "Saves files in Adobe's Portable Document Format. PDF is designed to be easily processed by a variety of different platforms, and is a distant cousin of PostScript." + "Barak Itkin" + "Copyright Barak Itkin" + "August 2009" + "_Create multipage PDF..." + 0 + (icon icon-name -1 "") + "*" + 7 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 0) + (proc-arg 1 "GParamInt" "gint" "count" "Count" "The number of images entered (This will be the number of pages)." 3 1 350 1) + (proc-arg 0 "GimpParamInt32Array" "GimpInt32Array" "images" "Images" "Input image for each page (An image can appear more than once)" 3) + (proc-arg 4 "GParamBoolean" "gboolean" "vectorize" "Vectorize" "Convert bitmaps to vector graphics where possible." 3 1) + (proc-arg 4 "GParamBoolean" "gboolean" "ignore-hidden" "Ignore hidden" "Omit hidden layers and layers with zero opacity." 3 1) + (proc-arg 4 "GParamBoolean" "gboolean" "apply-masks" "Apply masks" "Apply layer masks before saving (Keeping them will not change the output)," 3 1) + (proc-arg 6 "GParamString" "gchararray" "uri" "URI" "The URI of the file to save to" 3 ""))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-pdf-load/file-pdf-load" 1609190423 + (proc-def "file-pdf-load-thumb" 1 + "Loads a preview from a PDF file." + "Loads a small preview of the first page of the PDF format file. Uses the embedded thumbnail if present." + "Nathan Summers" + "Nathan Summers" + "2005" + "" + 0 + (icon icon-name -1 "") + "" + 2 5 + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load the thumbnail from" 3) + (proc-arg 1 "GParamInt" "gint" "thumb-size" "Thumb Size" "Preferred thumbnail size" 3 16 2014 256) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Thumbnail image" 3 1) + (proc-arg 1 "GParamInt" "gint" "image-width" "Image width" "Width of the full-sized image (0 for unknown)" 3 0 524288 0) + (proc-arg 1 "GParamInt" "gint" "image-height" "Image height" "Height of the full-sized image (0 for unknown)" 3 0 524288 0) + (proc-arg 3 "GParamEnum" "GimpImageType" "image-type" "Image type" "Type of the image" 3 0) + (proc-arg 1 "GParamInt" "gint" "num-layers" "Num layers" "Number of layers in the image" 3 1 2147483647 1)) + (proc-def "file-pdf-load" 1 + "Load file in PDF format" + "Loads files in Adobe's Portable Document Format. PDF is designed to be easily processed by a variety of different platforms, and is a distant cousin of PostScript." + "Nathan Summers, Lionel N." + "Nathan Summers, Lionel N." + "2005, 2017" + "Portable Document Format" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "pdf") + (magics "0, string,%PDF-") + (mime-types "application/pdf") + (thumb-loader "file-pdf-load-thumb")) + "" + 5 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load" 3) + (proc-arg 6 "GParamString" "gchararray" "pdf-password" "PDF password" "The password to decrypt the encrypted PDF file" 3 "") + (proc-arg 1 "GParamInt" "gint" "n-pages" "N pages" "Number of pages to load (0 for all)" 3 0 2147483647 0) + (proc-arg 0 "GimpParamInt32Array" "GimpInt32Array" "pages" "Pages" "The pages to load in the expected order" 3) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Output image" 3 1))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-pcx/file-pcx" 1609190423 + (proc-def "file-pcx-load" 1 + "Loads files in Zsoft PCX file format" + "FIXME: write help for pcx_load" + "Francisco Bustamante & Nick Lamb" + "Nick Lamb " + "January 1997" + "ZSoft PCX image" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "pcx,pcc") + (magics "0&,byte,10,2&,byte,1,3&,byte,>0,3,byte,<9") + (mime-types "image/x-pcx")) + "" + 2 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load" 3) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Output image" 3 1)) + (proc-def "file-pcx-save" 1 + "Exports files in ZSoft PCX file format" + "FIXME: write help for pcx_save" + "Francisco Bustamante & Nick Lamb" + "Nick Lamb " + "January 1997" + "ZSoft PCX image" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "pcx,pcc") + (mime-types "image/x-pcx")) + "INDEXED, RGB, GRAY" + 5 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The image to save" 3 0) + (proc-arg 1 "GParamInt" "gint" "num-drawables" "Number of drawables" "Number of drawables to be saved" 3 0 2147483647 1) + (proc-arg 9 "GimpParamObjectArray" "GimpObjectArray" "drawables" "Drawables" "The drawables to save" 16387 "GimpDrawable") + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to save to" 3))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-pat/file-pat" 1609190423 + (proc-def "file-pat-save" 1 + "Exports Gimp pattern file (.PAT)" + "New Gimp patterns can be created by exporting them in the appropriate place with this plug-in." + "Tim Newsome" + "Tim Newsome" + "1997" + "GIMP pattern" + 0 + (icon icon-name -1 "gimp-pattern") + (save-proc + (extensions "pat") + (mime-types "image/x-gimp-pat") + (handles-remote)) + "*" + 6 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The image to save" 3 0) + (proc-arg 1 "GParamInt" "gint" "num-drawables" "Number of drawables" "Number of drawables to be saved" 3 0 2147483647 1) + (proc-arg 9 "GimpParamObjectArray" "GimpObjectArray" "drawables" "Drawables" "The drawables to save" 16387 "GimpDrawable") + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to save to" 3) + (proc-arg 6 "GParamString" "gchararray" "description" "Description" "Short description of the pattern" 3 "GIMP Pattern"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-openraster/file-openraster.py" 1609190423 + (proc-def "file-openraster-load-thumb" 1 + "loads a thumbnail from an OpenRaster (.ora) file" + "loads a thumbnail from an OpenRaster (.ora) file" + "Jon Nordby" + "Jon Nordby" + "2009" + "" + 0 + (icon icon-name -1 "") + "" + 2 5 + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load the thumbnail from" 3) + (proc-arg 1 "GParamInt" "gint" "thumb-size" "Thumb Size" "Preferred thumbnail size" 3 16 2014 256) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Thumbnail image" 3 1) + (proc-arg 1 "GParamInt" "gint" "image-width" "Image width" "Width of the full-sized image (0 for unknown)" 3 0 524288 0) + (proc-arg 1 "GParamInt" "gint" "image-height" "Image height" "Height of the full-sized image (0 for unknown)" 3 0 524288 0) + (proc-arg 3 "GParamEnum" "GimpImageType" "image-type" "Image type" "Type of the image" 3 0) + (proc-arg 1 "GParamInt" "gint" "num-layers" "Num layers" "Number of layers in the image" 3 1 2147483647 1)) + (proc-def "file-openraster-load" 1 + "load an OpenRaster (.ora) file" + "load an OpenRaster (.ora) file" + "Jon Nordby" + "Jon Nordby" + "2009" + "OpenRaster" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "ora") + (mime-types "image/openraster") + (thumb-loader "file-openraster-load-thumb")) + "" + 2 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load" 3) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Output image" 3 1)) + (proc-def "file-openraster-save" 1 + "save an OpenRaster (.ora) file" + "save an OpenRaster (.ora) file" + "Jon Nordby" + "Jon Nordby" + "2009" + "OpenRaster" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "ora")) + "*" + 5 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The image to save" 3 0) + (proc-arg 1 "GParamInt" "gint" "num-drawables" "Number of drawables" "Number of drawables to be saved" 3 0 2147483647 1) + (proc-arg 9 "GimpParamObjectArray" "GimpObjectArray" "drawables" "Drawables" "The drawables to save" 16387 "GimpDrawable") + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to save to" 3)) + (locale-def "gimp30-python" "${gimp_installation_dir}/share/locale")) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-mng/file-mng" 1609190423 + (proc-def "file-mng-save" 1 + "Saves images in the MNG file format" + "This plug-in saves images in the Multiple-image Network Graphics (MNG) format which can be used as a replacement for animated GIFs, and more." + "Mukund Sivaraman " + "Mukund Sivaraman " + "November 19, 2002" + "MNG animation" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "mng") + (mime-types "image/x-mng")) + "*" + 17 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The image to save" 3 0) + (proc-arg 1 "GParamInt" "gint" "num-drawables" "Number of drawables" "Number of drawables to be saved" 3 0 2147483647 1) + (proc-arg 9 "GimpParamObjectArray" "GimpObjectArray" "drawables" "Drawables" "The drawables to save" 16387 "GimpDrawable") + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to save to" 3) + (proc-arg 4 "GParamBoolean" "gboolean" "interlaced" "Interlaced" "Use interlacing" 3 0) + (proc-arg 1 "GParamInt" "gint" "png-compression" "PNG Compression" "PNG compression level, choose a high compression level for small file size" 3 0 9 9) + (proc-arg 5 "GParamDouble" "gdouble" "jpeg-quality" "JPEG Quality" "JPEG quality factor" 3 0 1 0.75) + (proc-arg 5 "GParamDouble" "gdouble" "jpeg-smoothing" "JPEG Smoothing" "JPEG smoothing factor" 3 0 1 0) + (proc-arg 4 "GParamBoolean" "gboolean" "loop" "Loop" "(ANIMATED MNG) Loop infinitely" 3 1) + (proc-arg 1 "GParamInt" "gint" "default-delay" "Default delay" "(ANIMATED MNG) Default delay between frames in milliseconds" 3 1 2147483647 100) + (proc-arg 1 "GParamInt" "gint" "default-chunks" "Default chunks" "(ANIMATED MNG) Default chunks type (0 = PNG + Delta PNG; 1 = JNG + Delta PNG; 2 = All PNG; 3 = All JNG)" 3 0 3 0) + (proc-arg 1 "GParamInt" "gint" "default-dispose" "Default dispose" "(ANIMATED MNG) Default dispose type (0 = combine; 1 = replace)" 3 0 1 0) + (proc-arg 4 "GParamBoolean" "gboolean" "bkgd" "bKGD" "Write bKGd (background color) chunk" 3 0) + (proc-arg 4 "GParamBoolean" "gboolean" "gama" "gAMA" "Write gAMA (gamma) chunk" 3 0) + (proc-arg 4 "GParamBoolean" "gboolean" "phys" "pHYs" "Write pHYs (image resolution) chunk" 3 1) + (proc-arg 4 "GParamBoolean" "gboolean" "time" "tIME" "Write tIME (creation time) chunk" 3 1))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-jpeg/file-jpeg" 1609190423 + (proc-def "file-jpeg-load-thumb" 1 + "Loads a thumbnail from a JPEG image" + "Loads a thumbnail from a JPEG image, if one exists" + "Mukund Sivaraman , Sven Neumann " + "Mukund Sivaraman , Sven Neumann " + "November 15, 2004" + "" + 0 + (icon icon-name -1 "") + "" + 2 5 + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load the thumbnail from" 3) + (proc-arg 1 "GParamInt" "gint" "thumb-size" "Thumb Size" "Preferred thumbnail size" 3 16 2014 256) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Thumbnail image" 3 1) + (proc-arg 1 "GParamInt" "gint" "image-width" "Image width" "Width of the full-sized image (0 for unknown)" 3 0 524288 0) + (proc-arg 1 "GParamInt" "gint" "image-height" "Image height" "Height of the full-sized image (0 for unknown)" 3 0 524288 0) + (proc-arg 3 "GParamEnum" "GimpImageType" "image-type" "Image type" "Type of the image" 3 0) + (proc-arg 1 "GParamInt" "gint" "num-layers" "Num layers" "Number of layers in the image" 3 1 2147483647 1)) + (proc-def "file-jpeg-load" 1 + "Loads files in the JPEG file format" + "Loads files in the JPEG file format" + "Spencer Kimball, Peter Mattis & others" + "Spencer Kimball & Peter Mattis" + "1995-2007" + "JPEG image" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "jpg,jpeg,jpe") + (magics "0,string,") + (mime-types "image/jpeg") + (thumb-loader "file-jpeg-load-thumb")) + "" + 2 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load" 3) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Output image" 3 1)) + (proc-def "file-jpeg-save" 1 + "Saves files in the JPEG file format" + "Saves files in the lossy, widely supported JPEG format" + "Spencer Kimball, Peter Mattis & others" + "Spencer Kimball & Peter Mattis" + "1995-2007" + "JPEG image" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "jpg,jpeg,jpe") + (mime-types "image/jpeg")) + "RGB*, GRAY*" + 13 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The image to save" 3 0) + (proc-arg 1 "GParamInt" "gint" "num-drawables" "Number of drawables" "Number of drawables to be saved" 3 0 2147483647 1) + (proc-arg 9 "GimpParamObjectArray" "GimpObjectArray" "drawables" "Drawables" "The drawables to save" 16387 "GimpDrawable") + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to save to" 3) + (proc-arg 5 "GParamDouble" "gdouble" "quality" "_Quality" "Quality of exported image" 3 0 1 0.90000000000000002) + (proc-arg 5 "GParamDouble" "gdouble" "smoothing" "S_moothing" "Smoothing factor for exported image" 3 0 1 0) + (proc-arg 4 "GParamBoolean" "gboolean" "optimize" "Optimi_ze" "Use optimized tables during Huffman coding" 3 1) + (proc-arg 4 "GParamBoolean" "gboolean" "progressive" "_Progressive" "Create progressive JPEG images" 3 1) + (proc-arg 1 "GParamInt" "gint" "sub-sampling" "Su_bsampling" "Sub-sampling type { 0 == 4:2:0 (chroma quartered), 1 == 4:2:2 Horizontal (chroma halved), 2 == 4:4:4 (best quality), 3 == 4:2:2 Vertical (chroma halved)" 3 0 3 2) + (proc-arg 4 "GParamBoolean" "gboolean" "baseline" "Baseline" "Force creation of a baseline JPEG (non-baseline JPEGs can't be read by all decoders)" 3 1) + (proc-arg 1 "GParamInt" "gint" "restart" "Inter_val (MCU rows):" "Interval of restart markers (in MCU rows, 0 = no restart markers)" 3 0 64 0) + (proc-arg 1 "GParamInt" "gint" "dct" "_DCT method" "DCT method to use { INTEGER (0), FIXED (1), FLOAT (2) }" 3 0 2 0))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-jp2-load/file-jp2-load" 1609190423 + (proc-def "file-jp2-load" 1 + "Loads JPEG 2000 images." + "The JPEG 2000 image loader." + "Mukund Sivaraman" + "Mukund Sivaraman" + "2009" + "JPEG 2000 image" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "jp2") + (magics "3,string,\fjP") + (mime-types "image/jp2")) + "" + 2 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load" 3) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Output image" 3 1)) + (proc-def "file-j2k-load" 1 + "Loads JPEG 2000 codestream." + "Loads JPEG 2000 codestream. If the color space is set to UNKNOWN (0), we will try to guess, which is only possible for few spaces (such as grayscale). Most such calls will fail. You are rather expected to know the color space of your data." + "Jehan" + "Jehan" + "2009" + "JPEG 2000 codestream" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "j2k,j2c,jpc") + (mime-types "image/x-jp2-codestream")) + "" + 3 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load" 3) + (proc-arg 1 "GParamInt" "gint" "colorspace" "Color space" "Color space { UNKNOWN (0), GRAYSCALE (1), RGB (2), CMYK (3), YCbCr (4), xvYCC (5) }" 3 0 5 0) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Output image" 3 1))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-ico/file-ico" 1609190423 + (proc-def "file-ico-load-thumb" 1 + "Loads a preview from an Windows ICO file" + "" + "Dom Lachowicz, Sven Neumann" + "Sven Neumann " + "2005" + "" + 0 + (icon icon-name -1 "") + "" + 2 5 + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load the thumbnail from" 3) + (proc-arg 1 "GParamInt" "gint" "thumb-size" "Thumb Size" "Preferred thumbnail size" 3 16 2014 256) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Thumbnail image" 3 1) + (proc-arg 1 "GParamInt" "gint" "image-width" "Image width" "Width of the full-sized image (0 for unknown)" 3 0 524288 0) + (proc-arg 1 "GParamInt" "gint" "image-height" "Image height" "Height of the full-sized image (0 for unknown)" 3 0 524288 0) + (proc-arg 3 "GParamEnum" "GimpImageType" "image-type" "Image type" "Type of the image" 3 0) + (proc-arg 1 "GParamInt" "gint" "num-layers" "Num layers" "Number of layers in the image" 3 1 2147483647 1)) + (proc-def "file-ico-load" 1 + "Loads files of Windows ICO file format" + "Loads files of Windows ICO file format" + "Christian Kreibich " + "Christian Kreibich " + "2002" + "Microsoft Windows icon" + 0 + (icon icon-name -1 "gimp-tool-paintbrush") + (load-proc + (extensions "ico") + (magics "0,string,\\000\\001\\000\\000,0,string,\\000\\002\\000\\000") + (mime-types "image/x-ico") + (thumb-loader "file-ico-load-thumb")) + "" + 2 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load" 3) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Output image" 3 1)) + (proc-def "file-ico-save" 1 + "Saves files in Windows ICO file format" + "Saves files in Windows ICO file format" + "Christian Kreibich " + "Christian Kreibich " + "2002" + "Microsoft Windows icon" + 0 + (icon icon-name -1 "gimp-tool-paintbrush") + (save-proc + (extensions "ico") + (mime-types "image/x-ico")) + "*" + 5 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The image to save" 3 0) + (proc-arg 1 "GParamInt" "gint" "num-drawables" "Number of drawables" "Number of drawables to be saved" 3 0 2147483647 1) + (proc-arg 9 "GimpParamObjectArray" "GimpObjectArray" "drawables" "Drawables" "The drawables to save" 16387 "GimpDrawable") + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to save to" 3))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-html-table/file-html-table" 1609190423 + (proc-def "file-html-table-save" 1 + "GIMP Table Magic" + "Allows you to draw an HTML table in GIMP. See help for more info." + "Daniel Dunbar" + "Daniel Dunbar" + "1998" + "HTML table" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "html,htm") + (mime-types "text/html") + (handles-remote)) + "*" + 5 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The image to save" 3 0) + (proc-arg 1 "GParamInt" "gint" "num-drawables" "Number of drawables" "Number of drawables to be saved" 3 0 2147483647 1) + (proc-arg 9 "GimpParamObjectArray" "GimpObjectArray" "drawables" "Drawables" "The drawables to save" 16387 "GimpDrawable") + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to save to" 3))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-heif/file-heif" 1609190423 + (has-init)) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-header/file-header" 1609190423 + (proc-def "file-header-save" 1 + "saves files as C unsigned character array" + "FIXME: write help" + "Spencer Kimball & Peter Mattis" + "Spencer Kimball & Peter Mattis" + "1997" + "C source code header" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "h") + (mime-types "image/x-chdr") + (handles-remote)) + "INDEXED, RGB" + 5 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The image to save" 3 0) + (proc-arg 1 "GParamInt" "gint" "num-drawables" "Number of drawables" "Number of drawables to be saved" 3 0 2147483647 1) + (proc-arg 9 "GimpParamObjectArray" "GimpObjectArray" "drawables" "Drawables" "The drawables to save" 16387 "GimpDrawable") + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to save to" 3))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-glob/file-glob" 1609190423 + (proc-def "file-glob" 1 + "Returns a list of matching filenames" + "This can be useful in scripts and other plug-ins (e.g., batch-conversion). See the glob(7) manpage for more info. Note however that this isn't a full-featured glob implementation. It only handles simple patterns like \"/home/foo/bar/*.jpg\"." + "Sven Neumann" + "Sven Neumann" + "2004" + "" + 0 + (icon icon-name -1 "") + "" + 2 2 + (proc-arg 6 "GParamString" "gchararray" "pattern" "Pattern" "The glob pattern (in UTF-8 encoding)" 3 "") + (proc-arg 4 "GParamBoolean" "gboolean" "filename-encoding" "Filename encoding" "FALSE to return UTF-8 strings, TRUE to return strings in filename encoding" 3 0) + (proc-arg 1 "GParamInt" "gint" "num-files" "Num files" "Number of returned filenames" 3 0 2147483647 0) + (proc-arg 0 "GimpParamStringArray" "GimpStringArray" "files" "Files" "The list of matching filenames" 16387))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-gih/file-gih" 1609190423 + (proc-def "file-gih-save" 1 + "exports images in GIMP brush pipe format" + "This plug-in exports an image in the GIMP brush pipe format. For a colored brush pipe, RGBA layers are used, otherwise the layers should be grayscale masks. The image can be multi-layered, and additionally the layers can be divided into a rectangular array of brushes." + "Tor Lillqvist" + "Tor Lillqvist" + "1999" + "GIMP brush (animated)" + 0 + (icon icon-name -1 "gimp-tool-paintbrush") + (save-proc + (extensions "gih") + (mime-types "image/x-gimp-gih") + (handles-remote)) + "RGB*, GRAY*" + 15 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The image to save" 3 0) + (proc-arg 1 "GParamInt" "gint" "num-drawables" "Number of drawables" "Number of drawables to be saved" 3 0 2147483647 1) + (proc-arg 9 "GimpParamObjectArray" "GimpObjectArray" "drawables" "Drawables" "The drawables to save" 16387 "GimpDrawable") + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to save to" 3) + (proc-arg 1 "GParamInt" "gint" "spacing" "Spacing" "Spacing of the brush" 3 1 1000 10) + (proc-arg 6 "GParamString" "gchararray" "description" "Description" "Short description of the gihtern" 3 "GIMP Gihtern") + (proc-arg 1 "GParamInt" "gint" "cell-width" "Cell width" "Width of the brush cells" 3 1 1000 10) + (proc-arg 1 "GParamInt" "gint" "cell-height" "Cell height" "Height of the brush cells" 3 1 1000 10) + (proc-arg 1 "GParamInt" "gint" "display-cols" "Display columns" "Display column number" 3 1 1000 1) + (proc-arg 1 "GParamInt" "gint" "display-rows" "Display rows" "Display row number" 3 1 1000 1) + (proc-arg 1 "GParamInt" "gint" "dimension" "Dimension" "Dimension of the brush pipe" 3 1 4 1) + (proc-arg 0 "GimpParamUInt8Array" "GimpUint8Array" "rank" "Rank" "Ranks of the dimensions" 3) + (proc-arg 1 "GParamInt" "gint" "dimension-2" "Dimension 2" "Dimension of the brush pipe (same as dimension)" 3 1 4 1) + (proc-arg 0 "GimpParamStringArray" "GimpStringArray" "sel" "Sel" "Selection modes" 3))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-gif-save/file-gif-save" 1609190423 + (proc-def "file-gif-save" 1 + "exports files in Compuserve GIF file format" + "Export a file in Compuserve GIF format, with possible animation, transparency, and comment. To export an animation, operate on a multi-layer file and give the 'as-animation' parameter as TRUE. The plug-in will interpret <50% alpha as transparent. When run non-interactively, the value for the comment is taken from the 'gimp-comment' parasite. " + "Spencer Kimball, Peter Mattis, Adam Moss, David Koblas" + "Spencer Kimball, Peter Mattis, Adam Moss, David Koblas" + "1995-1997" + "GIF image" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "gif") + (mime-types "image/gif") + (handles-remote)) + "INDEXED*, GRAY*" + 12 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The image to save" 3 0) + (proc-arg 1 "GParamInt" "gint" "num-drawables" "Number of drawables" "Number of drawables to be saved" 3 0 2147483647 1) + (proc-arg 9 "GimpParamObjectArray" "GimpObjectArray" "drawables" "Drawables" "The drawables to save" 16387 "GimpDrawable") + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to save to" 3) + (proc-arg 4 "GParamBoolean" "gboolean" "interlace" "Interlace" "Try to export as interlaced" 3 0) + (proc-arg 4 "GParamBoolean" "gboolean" "loop" "Loop" "(animated gif) loop infinitely" 3 1) + (proc-arg 1 "GParamInt" "gint" "default-delay" "Default delay" "(animated gif) Default delay between frames in milliseconds" 3 0 2147483647 100) + (proc-arg 1 "GParamInt" "gint" "default-dispose" "Default dispoe" "(animated gif) Default disposal type (0=`don't care`, 1=combine, 2=replace)" 3 0 2 0) + (proc-arg 4 "GParamBoolean" "gboolean" "as-animation" "As animation" "Export GIF as animation?" 3 0) + (proc-arg 4 "GParamBoolean" "gboolean" "force-delay" "Force delay" "(animated gif) Use specified delay for all frames" 3 0) + (proc-arg 4 "GParamBoolean" "gboolean" "force-dispose" "Force dispose" "(animated gif) Use specified disposal for all frames" 3 0))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-gif-load/file-gif-load" 1609190423 + (proc-def "file-gif-load-thumb" 1 + "Loads only the first frame of a GIF image, to be used as a thumbnail" + "" + "Sven Neumann" + "Sven Neumann" + "2006" + "" + 0 + (icon icon-name -1 "") + "" + 2 5 + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load the thumbnail from" 3) + (proc-arg 1 "GParamInt" "gint" "thumb-size" "Thumb Size" "Preferred thumbnail size" 3 16 2014 256) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Thumbnail image" 3 1) + (proc-arg 1 "GParamInt" "gint" "image-width" "Image width" "Width of the full-sized image (0 for unknown)" 3 0 524288 0) + (proc-arg 1 "GParamInt" "gint" "image-height" "Image height" "Height of the full-sized image (0 for unknown)" 3 0 524288 0) + (proc-arg 3 "GParamEnum" "GimpImageType" "image-type" "Image type" "Type of the image" 3 0) + (proc-arg 1 "GParamInt" "gint" "num-layers" "Num layers" "Number of layers in the image" 3 1 2147483647 1)) + (proc-def "file-gif-load" 1 + "Loads files of Compuserve GIF file format" + "FIXME: write help for gif_load" + "Spencer Kimball, Peter Mattis, Adam Moss, David Koblas" + "Spencer Kimball, Peter Mattis, Adam Moss, David Koblas" + "1995-2006" + "GIF image" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "gif") + (magics "0,string,GIF8") + (mime-types "image/gif") + (thumb-loader "file-gif-load-thumb")) + "" + 2 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load" 3) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Output image" 3 1))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-gegl/file-gegl" 1609190423 + (proc-def "file-load-rgbe" 1 + "Load files in the RGBE file format" + "This procedure loads images in the RGBE format, using gegl:load" + "" + "" + "" + "Radiance RGBE" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "hdr") + (magics "0,string,?#") + (mime-types "image/vnd.radiance")) + "" + 2 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load" 3) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Output image" 3 1)) + (proc-def "file-save-rgbe" 1 + "Saves files in the RGBE file format" + "This procedure exports images in the RGBE format, using gegl:save" + "" + "" + "" + "Radiance RGBE" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "hdr") + (mime-types "image/vnd.radiance")) + "*" + 5 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The image to save" 3 0) + (proc-arg 1 "GParamInt" "gint" "num-drawables" "Number of drawables" "Number of drawables to be saved" 3 0 2147483647 1) + (proc-arg 9 "GimpParamObjectArray" "GimpObjectArray" "drawables" "Drawables" "The drawables to save" 16387 "GimpDrawable") + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to save to" 3)) + (proc-def "file-exr-save" 1 + "Saves files in the OpenEXR file format" + "This procedure saves images in the OpenEXR format, using gegl:save" + "" + "" + "" + "OpenEXR image" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "exr") + (mime-types "image/x-exr")) + "*" + 5 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The image to save" 3 0) + (proc-arg 1 "GParamInt" "gint" "num-drawables" "Number of drawables" "Number of drawables to be saved" 3 0 2147483647 1) + (proc-arg 9 "GimpParamObjectArray" "GimpObjectArray" "drawables" "Drawables" "The drawables to save" 16387 "GimpDrawable") + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to save to" 3))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-gbr/file-gbr" 1609190423 + (proc-def "file-gbr-save" 1 + "Exports files in the GIMP brush file format" + "Exports files in the GIMP brush file format" + "Tim Newsome, Jens Lautenbacher, Sven Neumann" + "Tim Newsome, Jens Lautenbacher, Sven Neumann" + "1997-2000" + "GIMP brush" + 0 + (icon icon-name -1 "gimp-tool-paintbrush") + (save-proc + (extensions "gbr") + (mime-types "image/x-gimp-gbr") + (handles-remote)) + "*" + 7 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The image to save" 3 0) + (proc-arg 1 "GParamInt" "gint" "num-drawables" "Number of drawables" "Number of drawables to be saved" 3 0 2147483647 1) + (proc-arg 9 "GimpParamObjectArray" "GimpObjectArray" "drawables" "Drawables" "The drawables to save" 16387 "GimpDrawable") + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to save to" 3) + (proc-arg 1 "GParamInt" "gint" "spacing" "Spacing" "Spacing of the brush" 3 1 1000 10) + (proc-arg 6 "GParamString" "gchararray" "description" "Description" "Short description of the brush" 3 "GIMP Brush"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-fli/file-fli" 1609190423 + (proc-def "file-fli-load" 1 + "Load FLI-movies" + "This is an experimental plug-in to handle FLI movies" + "Jens Ch. Restemeier" + "Jens Ch. Restemeier" + "1997" + "AutoDesk FLIC animation" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "fli,flc") + (mime-types "image/x-flic")) + "" + 4 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load" 3) + (proc-arg 1 "GParamInt" "gint" "from-frame" "From frame" "Load beginning from this frame" 3 -1 2147483647 -1) + (proc-arg 1 "GParamInt" "gint" "to-frame" "To frame" "End loading with this frame" 3 -1 2147483647 -1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Output image" 3 1)) + (proc-def "file-fli-save" 1 + "Export FLI-movies" + "This is an experimental plug-in to handle FLI movies" + "Jens Ch. Restemeier" + "Jens Ch. Restemeier" + "1997" + "AutoDesk FLIC animation" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "fli,flc") + (mime-types "image/x-flic")) + "INDEXED, GRAY" + 7 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The image to save" 3 0) + (proc-arg 1 "GParamInt" "gint" "num-drawables" "Number of drawables" "Number of drawables to be saved" 3 0 2147483647 1) + (proc-arg 9 "GimpParamObjectArray" "GimpObjectArray" "drawables" "Drawables" "The drawables to save" 16387 "GimpDrawable") + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to save to" 3) + (proc-arg 1 "GParamInt" "gint" "from-frame" "From frame" "Export beginning from this frame" 3 -1 2147483647 -1) + (proc-arg 1 "GParamInt" "gint" "to-frame" "To frame" "End exporting with this frame" 3 -1 2147483647 -1)) + (proc-def "file-fli-info" 1 + "Get information about a Fli movie" + "This is an experimental plug-in to handle FLI movies" + "Jens Ch. Restemeier" + "Jens Ch. Restemeier" + "1997" + "" + 0 + (icon icon-name -1 "") + "" + 1 3 + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The local file to get info about" 3) + (proc-arg 1 "GParamInt" "gint" "width" "Width" "Width of one frame" 3 0 524288 0) + (proc-arg 1 "GParamInt" "gint" "height" "Height" "Height of one frame" 3 0 524288 0) + (proc-arg 1 "GParamInt" "gint" "frames" "Frames" "Number of frames" 3 0 2147483647 0))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-fits/file-fits" 1609190423 + (proc-def "file-fits-load" 1 + "Load file of the FITS file format" + "Load file of the FITS file format (Flexible Image Transport System)" + "Peter Kirchgessner" + "Peter Kirchgessner (peter@kirchgessner.net)" + "1997" + "Flexible Image Transport System" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "fit,fits") + (magics "0,string,SIMPLE") + (mime-types "image/x-fits")) + "" + 2 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load" 3) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Output image" 3 1)) + (proc-def "file-fits-save" 1 + "Export file in the FITS file format" + "FITS exporting handles all image types except those with alpha channels." + "Peter Kirchgessner" + "Peter Kirchgessner (peter@kirchgessner.net)" + "1997" + "Flexible Image Transport System" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "fit,fits") + (mime-types "image/x-fits")) + "RGB, GRAY, INDEXED" + 5 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The image to save" 3 0) + (proc-arg 1 "GParamInt" "gint" "num-drawables" "Number of drawables" "Number of drawables to be saved" 3 0 2147483647 1) + (proc-arg 9 "GimpParamObjectArray" "GimpObjectArray" "drawables" "Drawables" "The drawables to save" 16387 "GimpDrawable") + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to save to" 3))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-faxg3/file-faxg3" 1609190423 + (proc-def "file-faxg3-load" 1 + "Loads g3 fax files" + "This plug-in loads Fax G3 Image files." + "Jochen Friedrich" + "Jochen Friedrich, Gert Doering, Spencer Kimball & Peter Mattis" + "" + "G3 fax image" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "g3") + (magics "4,string,Research") + (mime-types "image/g3-fax")) + "" + 2 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load" 3) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Output image" 3 1))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-exr/file-exr" 1609190423 + (proc-def "file-exr-load" 1 + "Loads files in the OpenEXR file format" + "This plug-in loads OpenEXR files. " + "Dominik Ernst , Mukund Sivaraman " + "Dominik Ernst , Mukund Sivaraman " + "" + "OpenEXR image" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "exr") + (magics "0,long,0x762f3101") + (mime-types "image/x-exr")) + "" + 2 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load" 3) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Output image" 3 1))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-dicom/file-dicom" 1609190423 + (proc-def "file-dicom-load" 1 + "Loads files of the dicom file format" + "Load a file in the DICOM standard format. The standard is defined at http://medical.nema.org/. The plug-in currently only supports reading images with uncompressed pixel sections." + "Dov Grobgeld" + "Dov Grobgeld " + "2003" + "DICOM image" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "dcm,dicom") + (magics "128,string,DICM") + (mime-types "image/x-dcm")) + "" + 2 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load" 3) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Output image" 3 1)) + (proc-def "file-dicom-save" 1 + "Save file in the DICOM file format" + "Save an image in the medical standard DICOM image formats. The standard is defined at http://medical.nema.org/. The file format is defined in section 10 of the standard. The files are saved uncompressed and the compulsory DICOM tags are filled with default dummy values." + "Dov Grobgeld" + "Dov Grobgeld " + "2003" + "Digital Imaging and Communications in Medicine image" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "dcm,dicom") + (mime-types "image/x-dcm")) + "RGB, GRAY" + 5 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The image to save" 3 0) + (proc-arg 1 "GParamInt" "gint" "num-drawables" "Number of drawables" "Number of drawables to be saved" 3 0 2147483647 1) + (proc-arg 9 "GimpParamObjectArray" "GimpObjectArray" "drawables" "Drawables" "The drawables to save" 16387 "GimpDrawable") + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to save to" 3))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-desktop-link/file-desktop-link" 1609190423 + (proc-def "file-desktop-link-load" 1 + "Follows a link to an image in a .desktop file" + "Opens a .desktop file and if it is a link, it asks GIMP to open the file the link points to." + "Sven Neumann" + "Sven Neumann" + "2006" + "Desktop Link" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "desktop")) + "" + 2 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load" 3) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Output image" 3 1))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-dds/file-dds" 1609190423 + (proc-def "file-dds-load" 1 + "Loads files in DDS image format" + "Loads files in DDS image format" + "Shawn Kirst" + "Shawn Kirst" + "2008" + "DDS image" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "dds") + (magics "0,string,DDS") + (mime-types "image/dds")) + "" + 4 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load" 3) + (proc-arg 4 "GParamBoolean" "gboolean" "load-mipmaps" "Load mipmaps" "Load mipmaps if present" 3 1) + (proc-arg 4 "GParamBoolean" "gboolean" "decode-images" "Decode images" "Decode YCoCg/AExp images when detected" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Output image" 3 1)) + (proc-def "file-dds-save" 1 + "Saves files in DDS image format" + "Saves files in DDS image format" + "Shawn Kirst" + "Shawn Kirst" + "2008" + "DDS image" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "dds") + (mime-types "image/dds")) + "INDEXED, GRAY, RGB" + 19 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The image to save" 3 0) + (proc-arg 1 "GParamInt" "gint" "num-drawables" "Number of drawables" "Number of drawables to be saved" 3 0 2147483647 1) + (proc-arg 9 "GimpParamObjectArray" "GimpObjectArray" "drawables" "Drawables" "The drawables to save" 16387 "GimpDrawable") + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to save to" 3) + (proc-arg 1 "GParamInt" "gint" "compression-format" "Compression format" "Compression format (0 = None, 1 = BC1/DXT1, 2 = BC2/DXT3, 3 = BC3/DXT5, 4 = BC3n/DXT5nm, 5 = BC4/ATI1N, 6 = BC5/ATI2N, 7 = RXGB (DXT5), 8 = Alpha Exponent (DXT5), 9 = YCoCg (DXT5), 10 = YCoCg scaled (DXT5))" 3 0 10 0) + (proc-arg 1 "GParamInt" "gint" "mipmaps" "Mipmaps" "How to handle mipmaps (0 = No mipmaps, 1 = Generate mipmaps, 2 = Use existing mipmaps (layers)" 3 0 2 0) + (proc-arg 1 "GParamInt" "gint" "save-type" "Save type" "How to save the image (0 = selected layer, 1 = cube map, 2 = volume map, 3 = texture array" 3 0 3 0) + (proc-arg 1 "GParamInt" "gint" "format" "Format" "Pixel format (0 = default, 1 = DDS_FORMAT_RGB8, 2 = DDS_FORMAT_RGBA8, 3 = DDS_FORMAT_BGR8, 4 = DDS_FORMAT_ABGR8, 5 = DDS_FORMAT_R5G6B5, 6 = DDS_FORMAT_RGBA4, 7 = DDS_FORMAT_RGB5A1, 8 = DDS_FORMAT_RGB10A2, 9 = DDS_FORMAT_R3G3B2, 10 = DDS_FORMAT_A8, 11 = DDS_FORMAT_L8, 12 = DDS_FORMAT_L8A8, 13 = DDS_FORMAT_AEXP, 14 = DDS_FORMAT_YCOCG)" 3 0 14 0) + (proc-arg 4 "GParamBoolean" "gboolean" "transparent-color" "Transparent color" "Make an indexed color transparent" 3 0) + (proc-arg 1 "GParamInt" "gint" "transparent-index" "Transparent index" "Index of transparent color or -1 to disable (for indexed images only)." 3 0 255 0) + (proc-arg 1 "GParamInt" "gint" "mipmap-filter" "Mipmap filter" "Filtering to use when generating mipmaps (0 = default, 1 = nearest, 2 = box, 3 = triangle, 4 = quadratic, 5 = bspline, 6 = mitchell, 7 = lanczos, 8 = kaiser)" 3 0 8 0) + (proc-arg 1 "GParamInt" "gint" "mipmap-wrap" "Mipmap wrap" "Wrap mode to use when generating mipmaps (0 = default, 1 = mirror, 2 = repeat, 3 = clamp)" 3 0 3 0) + (proc-arg 4 "GParamBoolean" "gboolean" "gamma-correct" "Gamme correct" "Use gamma correct mipmap filtering" 3 0) + (proc-arg 4 "GParamBoolean" "gboolean" "srgb" "sRGB" "Use sRGB colorspace for gamma correction" 3 0) + (proc-arg 5 "GParamDouble" "gdouble" "gamma" "Gamma" "Gamma value to use for gamma correction (i.e. 2.2)" 3 0 10 0) + (proc-arg 4 "GParamBoolean" "gboolean" "perceptual-metric" "Perceptual metric" "Use a perceptual error metric during compression" 3 0) + (proc-arg 4 "GParamBoolean" "gboolean" "preserve-alpha-coverage" "Preserve alpha coverage" "Preserve alpha test converage for alpha channel maps" 3 0) + (proc-arg 5 "GParamDouble" "gdouble" "alpha-test-threshold" "Alpha test threshold" "Alpha test threshold value for which alpha test converage should be preserved" 3 0 1 0.5))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-csource/file-csource" 1609190423 + (proc-def "file-csource-save" 1 + "Dump image data in RGB(A) format for C source" + "CSource cannot be run non-interactively." + "Tim Janik" + "Tim Janik" + "1999" + "C source code" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "c") + (mime-types "image/x-csrc") + (handles-remote)) + "*" + 5 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The image to save" 3 0) + (proc-arg 1 "GParamInt" "gint" "num-drawables" "Number of drawables" "Number of drawables to be saved" 3 0 2147483647 1) + (proc-arg 9 "GimpParamObjectArray" "GimpObjectArray" "drawables" "Drawables" "The drawables to save" 16387 "GimpDrawable") + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to save to" 3))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-compressor/file-compressor" 1609190423 + (proc-def "file-gz-load" 1 + "loads files compressed with gzip" + "This procedure loads files in the gzip compressed format." + "Daniel Risacher" + "Daniel Risacher, Spencer Kimball and Peter Mattis" + "1995-1997" + "gzip archive" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "xcf.gz,xcfgz") + (magics "0,string,\037") + (mime-types "application/x-gzip")) + "" + 2 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load" 3) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Output image" 3 1)) + (proc-def "file-gz-save" 1 + "saves files compressed with gzip" + "This procedure saves files in the gzip compressed format." + "Daniel Risacher" + "Daniel Risacher, Spencer Kimball and Peter Mattis" + "1995-1997" + "gzip archive" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "xcf.gz,xcfgz") + (mime-types "application/x-gzip")) + "RGB*, GRAY*, INDEXED*" + 5 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The image to save" 3 0) + (proc-arg 1 "GParamInt" "gint" "num-drawables" "Number of drawables" "Number of drawables to be saved" 3 0 2147483647 1) + (proc-arg 9 "GimpParamObjectArray" "GimpObjectArray" "drawables" "Drawables" "The drawables to save" 16387 "GimpDrawable") + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to save to" 3)) + (proc-def "file-bz2-load" 1 + "loads files compressed with bzip2" + "This procedure loads files in the bzip2 compressed format." + "Daniel Risacher" + "Daniel Risacher, Spencer Kimball and Peter Mattis" + "1995-1997" + "bzip archive" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "xcf.bz2,xcfbz2") + (magics "0,string,BZh") + (mime-types "application/x-bzip")) + "" + 2 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load" 3) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Output image" 3 1)) + (proc-def "file-bz2-save" 1 + "saves files compressed with bzip2" + "This procedure saves files in the bzip2 compressed format." + "Daniel Risacher" + "Daniel Risacher, Spencer Kimball and Peter Mattis" + "1995-1997" + "bzip archive" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "xcf.bz2,xcfbz2") + (mime-types "application/x-bzip")) + "RGB*, GRAY*, INDEXED*" + 5 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The image to save" 3 0) + (proc-arg 1 "GParamInt" "gint" "num-drawables" "Number of drawables" "Number of drawables to be saved" 3 0 2147483647 1) + (proc-arg 9 "GimpParamObjectArray" "GimpObjectArray" "drawables" "Drawables" "The drawables to save" 16387 "GimpDrawable") + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to save to" 3)) + (proc-def "file-xz-load" 1 + "loads files compressed with xz" + "This procedure loads files in the xz compressed format." + "Daniel Risacher" + "Daniel Risacher, Spencer Kimball and Peter Mattis" + "1995-1997" + "xz archive" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "xcf.xz,xcfxz") + (magics "0,string,7zXZ") + (mime-types "application/x-xz")) + "" + 2 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load" 3) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Output image" 3 1)) + (proc-def "file-xz-save" 1 + "saves files compressed with xz" + "This procedure saves files in the xz compressed format." + "Daniel Risacher" + "Daniel Risacher, Spencer Kimball and Peter Mattis" + "1995-1997" + "xz archive" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "xcf.xz,xcfxz") + (mime-types "application/x-xz")) + "RGB*, GRAY*, INDEXED*" + 5 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The image to save" 3 0) + (proc-arg 1 "GParamInt" "gint" "num-drawables" "Number of drawables" "Number of drawables to be saved" 3 0 2147483647 1) + (proc-arg 9 "GimpParamObjectArray" "GimpObjectArray" "drawables" "Drawables" "The drawables to save" 16387 "GimpDrawable") + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to save to" 3))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-cel/file-cel" 1609190423 + (proc-def "file-cel-load" 1 + "Loads files in KISS CEL file format" + "This plug-in loads individual KISS cell files." + "Nick Lamb" + "Nick Lamb " + "May 1998" + "KISS CEL" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "cel") + (magics "0,string,KiSS\\040")) + "" + 3 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load" 3) + (proc-arg 6 "GParamString" "gchararray" "palette-filename" "Palette filename" "Filename to load palette from" 16387 "") + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Output image" 3 1)) + (proc-def "file-cel-save" 1 + "Exports files in KISS CEL file format" + "This plug-in exports individual KISS cell files." + "Nick Lamb" + "Nick Lamb " + "May 1998" + "KISS CEL" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "cel") + (handles-remote)) + "RGB*, INDEXED*" + 6 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The image to save" 3 0) + (proc-arg 1 "GParamInt" "gint" "num-drawables" "Number of drawables" "Number of drawables to be saved" 3 0 2147483647 1) + (proc-arg 9 "GimpParamObjectArray" "GimpObjectArray" "drawables" "Drawables" "The drawables to save" 16387 "GimpDrawable") + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to save to" 3) + (proc-arg 6 "GParamString" "gchararray" "palette-filename" "Palette filename" "Filename to save palette to" 16387 ""))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-bmp/file-bmp" 1609190423 + (proc-def "file-bmp-load" 1 + "Loads files of Windows BMP file format" + "Loads files of Windows BMP file format" + "Alexander Schulz" + "Alexander Schulz" + "1997" + "Windows BMP image" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "bmp") + (magics "0,string,BM") + (mime-types "image/bmp")) + "" + 2 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to load" 3) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "Output image" 3 1)) + (proc-def "file-bmp-save" 1 + "Saves files in Windows BMP file format" + "Saves files in Windows BMP file format" + "Alexander Schulz" + "Alexander Schulz" + "1997" + "Windows BMP image" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "bmp") + (mime-types "image/bmp")) + "INDEXED, GRAY, RGB*" + 5 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The image to save" 3 0) + (proc-arg 1 "GParamInt" "gint" "num-drawables" "Number of drawables" "Number of drawables to be saved" 3 0 2147483647 1) + (proc-arg 9 "GimpParamObjectArray" "GimpObjectArray" "drawables" "Drawables" "The drawables to save" 16387 "GimpDrawable") + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to save to" 3))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-aa/file-aa" 1609190423 + (proc-def "file-aa-save" 1 + "Saves grayscale image in various text formats" + "This plug-in uses aalib to save grayscale image as ascii art into a variety of text formats" + "Tim Newsome " + "Tim Newsome " + "1997" + "ASCII art" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "txt,ansi,text") + (mime-types "text/plain")) + "*" + 6 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The image to save" 3 0) + (proc-arg 1 "GParamInt" "gint" "num-drawables" "Number of drawables" "Number of drawables to be saved" 3 0 2147483647 1) + (proc-arg 9 "GimpParamObjectArray" "GimpObjectArray" "drawables" "Drawables" "The drawables to save" 16387 "GimpDrawable") + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to save to" 3) + (proc-arg 1 "GParamInt" "gint" "file-type" "File type" "File type to use" 3 0 11 0))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/destripe/destripe" 1609190423 + (proc-def "plug-in-destripe" 1 + "Remove vertical stripe artifacts from the image" + "This plug-in tries to remove vertical stripes from an image." + "Marc Lehmann " + "Marc Lehmann " + "0.2" + "Des_tripe..." + 1 + (menu-path "/Colors/Tone Mapping") + (icon icon-name -1 "") + "RGB*, GRAY*" + 4 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The input image" 3 0) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "drawable" "Drawable" "The input drawable" 3 1) + (proc-arg 1 "GParamInt" "gint" "avg-width" "Avg width" "Averaging filter width" 3 2 100 36))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/despeckle/despeckle" 1609190423 + (proc-def "plug-in-despeckle" 1 + "Remove speckle noise from the image" + "This plug-in selectively performs a median or adaptive box filter on an image." + "Michael Sweet " + "Copyright 1997-1998 by Michael Sweet" + "May 2010" + "Des_peckle..." + 1 + (menu-path "/Filters/Enhance") + (icon icon-name -1 "") + "RGB*, GRAY*" + 7 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The input image" 3 0) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "drawable" "Drawable" "The input drawable" 3 1) + (proc-arg 1 "GParamInt" "gint" "radius" "Radius" "Filter box radius" 3 1 30 3) + (proc-arg 1 "GParamInt" "gint" "type" "Type" "Filter type { MEDIAN (0), ADAPTIVE (1), RECURSIVE-MEDIAN (2), RECURSIVE-ADAPTIVE (3) }" 3 0 3 1) + (proc-arg 1 "GParamInt" "gint" "black" "Black" "Black level" 3 -1 255 7) + (proc-arg 1 "GParamInt" "gint" "white" "White" "White level" 3 0 256 248))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/depth-merge/depth-merge" 1609190423 + (proc-def "plug-in-depth-merge" 1 + "Combine two images using depth maps (z-buffers)" + "Taking as input two full-color, full-alpha images and two corresponding grayscale depth maps, this plug-in combines the images based on which is closer (has a lower depth map value) at each point." + "Sean Cier" + "Sean Cier" + "August 1998" + "_Depth Merge..." + 1 + (menu-path "/Filters/Combine") + (icon icon-name -1 "") + "RGB*, GRAY*" + 11 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The input image" 3 0) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "drawable" "Drawable" "The input drawable" 3 1) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "source-1" "Source 1" "Source 1" 3 1) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "source-2" "Source 2" "Source 2" 3 1) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "depth-map-1" "Depth map 1" "Depth map 1" 3 1) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "depth-map-2" "Depth map 2" "Depth map 2" 3 1) + (proc-arg 5 "GParamDouble" "gdouble" "overlap" "Overlap" "Overlap" 3 0 2 0) + (proc-arg 5 "GParamDouble" "gdouble" "offset" "Offset" "Depth relative offset" 3 -1 1 0) + (proc-arg 5 "GParamDouble" "gdouble" "scale-1" "Scale 1" "Depth relative scale 1" 3 -1 1 1) + (proc-arg 5 "GParamDouble" "gdouble" "scale-2" "Scale 2" "Depth relative scale 2" 3 -1 1 1))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/decompose/decompose" 1609190423 + (proc-def "plug-in-decompose" 1 + "Decompose an image into separate colorspace components" + "This function creates new gray images with different channel information in each of them" + "Peter Kirchgessner" + "Peter Kirchgessner, Clarence Risher" + "1997" + "_Decompose..." + 1 + (menu-path "/Colors/Components") + (icon icon-name -1 "") + "RGB*" + 6 4 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The input image" 3 0) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "drawable" "Drawable" "The input drawable" 3 1) + (proc-arg 6 "GParamString" "gchararray" "decompose-type" "Decompose type" "What to decompose: \"RGB\", \"RGBA\", \"Red\", \"Green\", \"Blue\", \"Alpha\", \"HSV\", \"Hue\", \"Saturation\", \"Value\", \"HSL\", \"Hue (HSL)\", \"Saturation (HSL)\", \"Lightness\", \"CMYK\", \"Cyan\", \"Magenta\", \"Yellow\", \"Black\", \"LAB\", \"LCH\", \"YCbCr_ITU_R470\", \"YCbCr_ITU_R470_256\", \"YCbCr_ITU_R709\", \"YCbCr_ITU_R709_256\"" 3 "RGB") + (proc-arg 4 "GParamBoolean" "gboolean" "layers-mode" "Layers mode" "Create channels as layers in a single image" 3 1) + (proc-arg 4 "GParamBoolean" "gboolean" "use-registration" "Use registration" "When enabled, pixels in the foreground color will appear black in all output images. This can be used for things like crop marks that have to show up on all channels." 3 0) + (proc-arg 8 "GimpParamImage" "GimpImage" "new-image-1" "New image 1" "Output gray image 1" 3 0) + (proc-arg 8 "GimpParamImage" "GimpImage" "new-image-2" "New image 2" "Output gray image 2 (N/A for single channel extract)" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "new-image-3" "New image 3" "Output gray image 3 (N/A for single channel extract)" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "new-image-4" "New image 4" "Output gray image 4 (N/A for single channel extract)" 3 1))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/curve-bend/curve-bend" 1609190423 + (proc-def "plug-in-curve-bend" 1 + "Bend the image using two control curves" + "This plug-in does bend the active layer If there is a current selection it is copied to floating selection and the curve_bend distortion is done on the floating selection. If work_on_copy parameter is TRUE, the curve_bend distortion is done on a copy of the active layer (or floating selection). The upper and lower edges are bent in shape of 2 spline curves. both (upper and lower) curves are determined by upto 17 points or by 256 Y-Values if curve_type == 1 (freehand mode) If rotation is not 0, the layer is rotated before and rotated back after the bend operation. This enables bending in other directions than vertical. bending usually changes the size of the handled layer. this plug-in sets the offsets of the handled layer to keep its center at the same position" + "Wolfgang Hofer (hof@hotbot.com)" + "Wolfgang Hofer" + "v1.3.18 (2003/08/26)" + "_Curve Bend..." + 1 + (menu-path "/Filters/Distorts") + (icon icon-name -1 "") + "RGB*, GRAY*" + 20 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The input image" 3 0) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "drawable" "Drawable" "The input drawable" 3 1) + (proc-arg 5 "GParamDouble" "gdouble" "rotation" "Rotation" "Direction {angle 0 to 360 degree } of the bend effect" 3 0 360 0) + (proc-arg 4 "GParamBoolean" "gboolean" "smoothing" "Smoothing" "Smoothing" 3 1) + (proc-arg 4 "GParamBoolean" "gboolean" "antialias" "Antialias" "Antialias" 3 1) + (proc-arg 4 "GParamBoolean" "gboolean" "work-on-copy" "Work on copy" "Copy the drawable and bend the copy" 3 0) + (proc-arg 1 "GParamInt" "gint" "curve-type" "Curve type" "{ 0 == smooth (use 17 points), 1 == freehand (use 256 val_y) }" 3 0 1 0) + (proc-arg 1 "GParamInt" "gint" "argc-upper-point-x" "Argc upper point X" "Argc upper point X" 3 2 17 2) + (proc-arg 0 "GimpParamFloatArray" "GimpFloatArray" "upper-point-x" "Upper point X" "Array of 17 x point coords { 0.0 <= x <= 1.0 or -1 for unused point }" 3) + (proc-arg 1 "GParamInt" "gint" "argc-upper-point-y" "Argc upper point Y" "Argc upper point Y" 3 2 17 2) + (proc-arg 0 "GimpParamFloatArray" "GimpFloatArray" "upper-point-y" "Upper point Y" "Array of 17 y point coords { 0.0 <= y <= 1.0 or -1 for unused point }" 3) + (proc-arg 1 "GParamInt" "gint" "argc-lower-point-x" "Argc lower point X" "Argc lower point X" 3 2 17 2) + (proc-arg 0 "GimpParamFloatArray" "GimpFloatArray" "lower-point-x" "Lower point X" "Array of 17 x point coords { 0.0 <= x <= 1.0 or -1 for unused point }" 3) + (proc-arg 1 "GParamInt" "gint" "argc-lower-point-y" "Argc lower point Y" "Argc lower point Y" 3 2 17 2) + (proc-arg 0 "GimpParamFloatArray" "GimpFloatArray" "lower-point-y" "Lower point Y" "Array of 17 y point coords { 0.0 <= y <= 1.0 or -1 for unused point }" 3) + (proc-arg 1 "GParamInt" "gint" "argc-upper-val-y" "Argc upper val Y" "Argc upper val Y" 3 256 256 256) + (proc-arg 0 "GimpParamUInt8Array" "GimpUint8Array" "upper-val-y" "Upper val Y" "Array of 256 y freehand coords { 0 <= y <= 255 }" 3) + (proc-arg 1 "GParamInt" "gint" "argc-lower-val-y" "Argc lower val Y" "Argc lower val Y" 3 256 256 256) + (proc-arg 0 "GimpParamUInt8Array" "GimpUint8Array" "lower-val-y" "Lower val Y" "Array of 256 y freehand coords { 0 <= y <= 255 }" 3) + (proc-arg 8 "GimpParamLayer" "GimpLayer" "bent-layer" "Bent layer" "The transformed layer" 3 0))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/crop-zealous/crop-zealous" 1609190423 + (proc-def "plug-in-zealouscrop" 1 + "Autocrop unused space from edges and middle" + "" + "Adam D. Moss" + "Adam D. Moss" + "1997" + "_Zealous Crop" + 1 + (menu-path "/Image/Crop") + (icon icon-name -1 "") + "*" + 3 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The input image" 3 0) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "drawable" "Drawable" "The input drawable" 3 1))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/contrast-retinex/contrast-retinex" 1609190423 + (proc-def "plug-in-retinex" 1 + "Enhance contrast using the Retinex method" + "The Retinex Image Enhancement Algorithm is an automatic image enhancement method that enhances a digital image in terms of dynamic range compression, color independence from the spectral distribution of the scene illuminant, and color/lightness rendition." + "Fabien Pelisson" + "Fabien Pelisson" + "2003" + "Retine_x..." + 1 + (menu-path "/Colors/Tone Mapping") + (icon icon-name -1 "") + "RGB*" + 7 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The input image" 3 0) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "drawable" "Drawable" "The input drawable" 3 1) + (proc-arg 1 "GParamInt" "gint" "scale" "Scale" "Biggest scale value" 3 16 250 240) + (proc-arg 1 "GParamInt" "gint" "nscales" "N scales" "Number of scales" 3 0 8 3) + (proc-arg 1 "GParamInt" "gint" "scales-mode" "Scales mode" "Retinex distribution through scales" 3 0 2 0) + (proc-arg 5 "GParamDouble" "gdouble" "cvar" "Cvar" "Variance value" 3 0 4 1.2))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/compose/compose" 1609190423 + (proc-def "plug-in-compose" 1 + "Create an image using multiple gray images as color channels" + "This function creates a new image from multiple gray images" + "Peter Kirchgessner" + "Peter Kirchgessner (peter@kirchgessner.net)" + "1997" + "C_ompose..." + 1 + (menu-path "/Colors/Components") + (icon icon-name -1 "") + "GRAY*" + 7 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The input image" 3 0) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "drawable" "Drawable" "The input drawable" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image-2" "Image 2" "Second input image" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image-3" "Image 3" "Third input image" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image-4" "Image 4" "Fourth input image" 3 1) + (proc-arg 6 "GParamString" "gchararray" "compose-type" "Compose type" "What to compose: \"RGB\", \"RGBA\", \"HSV\", \"HSL\", \"CMYK\", \"LAB\", \"LCH\", \"YCbCr_ITU_R470\", \"YCbCr_ITU_R709\", \"YCbCr_ITU_R470_256\", \"YCbCr_ITU_R709_256\"" 3 "RGB") + (proc-arg 8 "GimpParamImage" "GimpImage" "new-image" "New image" "Output image" 3 0)) + (proc-def "plug-in-drawable-compose" 1 + "Compose an image from multiple drawables of gray images" + "This function creates a new image from multiple drawables of gray images" + "Peter Kirchgessner" + "Peter Kirchgessner (peter@kirchgessner.net)" + "1998" + "" + 0 + (icon icon-name -1 "") + "GRAY*" + 7 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The input image" 3 0) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "drawable" "Drawable" "The input drawable" 3 1) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "drawable-2" "Drawable 2" "Second input drawable" 3 1) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "drawable-3" "Drawable 3" "Third input drawable" 3 1) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "drawable-4" "Drawable 4" "Fourth input drawable" 3 1) + (proc-arg 6 "GParamString" "gchararray" "compose-type" "Compose type" "What to compose: \"RGB\", \"RGBA\", \"HSV\", \"HSL\", \"CMYK\", \"LAB\", \"LCH\", \"YCbCr_ITU_R470\", \"YCbCr_ITU_R709\", \"YCbCr_ITU_R470_256\", \"YCbCr_ITU_R709_256\"" 3 "RGB") + (proc-arg 8 "GimpParamImage" "GimpImage" "new-image" "New image" "Output image" 3 0)) + (proc-def "plug-in-recompose" 1 + "Recompose an image that was previously decomposed" + "This function recombines the grayscale layers produced by Decompose into a single RGB or RGBA layer, and replaces the originally decomposed layer with the result." + "Bill Skaggs" + "Bill Skaggs" + "2004" + "R_ecompose" + 1 + (menu-path "/Colors/Components") + (icon icon-name -1 "") + "GRAY*" + 3 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The input image" 3 0) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "drawable" "Drawable" "The input drawable" 3 1))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/colorxhtml/colorxhtml.py" 1609190423 + (proc-def "file-colorxhtml-save" 1 + "Save as colored HTML text" + "Saves the image as colored XHTML text (based on Perl version by Marc Lehmann)" + "Manish Singh and Carol Spears" + "(c) GPL V3.0 or later" + "2003" + "Colored HTML text" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "html,xhtml")) + "RGB" + 9 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The image to save" 3 0) + (proc-arg 1 "GParamInt" "gint" "num-drawables" "Number of drawables" "Number of drawables to be saved" 3 0 2147483647 1) + (proc-arg 9 "GimpParamObjectArray" "GimpObjectArray" "drawables" "Drawables" "The drawables to save" 16387 "GimpDrawable") + (proc-arg 0 "GParamObject" "GFile" "file" "File" "The file to save to" 3) + (proc-arg 4 "GParamBoolean" "gboolean" "source-file" "_Read characters from file, if true, or use text entry" "_Read characters from file, if true, or use text entry" 3 0) + (proc-arg 6 "GParamString" "gchararray" "characters" "_File to read or characters to use" "_File to read or characters to use" 3 "foo") + (proc-arg 1 "GParamInt" "gint" "font-size" "Fo_nt size in pixels" "Fo_nt size in pixels" 3 5 100 10) + (proc-arg 4 "GParamBoolean" "gboolean" "separate" "_Write a separate CSS file" "_Write a separate CSS file" 3 0)) + (locale-def "gimp30-python" "${gimp_installation_dir}/share/locale")) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/colormap-remap/colormap-remap" 1609190423 + (proc-def "plug-in-colormap-swap" 1 + "Swap two colors in the colormap" + "This procedure takes an indexed image and lets you swap the positions of two colors in the colormap without visually changing the image." + "Mukund Sivaraman " + "Mukund Sivaraman " + "June 2006" + "_Swap Colors" + 0 + (icon icon-name -1 "gimp-colormap") + "INDEXED*" + 5 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The input image" 3 0) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "drawable" "Drawable" "The input drawable" 3 1) + (proc-arg 1 "GParamUChar" "guchar" "index1" "Index 1" "First index in the colormap" 3 0 255 0) + (proc-arg 1 "GParamUChar" "guchar" "index2" "Index 2" "Second (other) index in the colormap" 3 0 255 0)) + (proc-def "plug-in-colormap-remap" 1 + "Rearrange the colormap" + "This procedure takes an indexed image and lets you alter the positions of colors in the colormap without visually changing the image." + "Mukund Sivaraman " + "Mukund Sivaraman " + "June 2006" + "R_earrange Colormap..." + 2 + (menu-path "/Colors/Map/Colormap") + (menu-path "") + (icon icon-name -1 "gimp-colormap") + "INDEXED*" + 5 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The input image" 3 0) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "drawable" "Drawable" "The input drawable" 3 1) + (proc-arg 1 "GParamInt" "gint" "num-colors" "Num colors" "Length of 'map' argument" 3 1 256 1) + (proc-arg 0 "GimpParamUInt8Array" "GimpUint8Array" "map" "Map" "Remap array for the colormap" 3))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/cml-explorer/cml-explorer" 1609190423 + (proc-def "plug-in-cml-explorer" 1 + "Create abstract Coupled-Map Lattice patterns" + "Make an image of Coupled-Map Lattice (CML). CML is a kind of Cellula Automata on continuous (value) domain. In GIMP_RUN_NONINTERACTIVE, the name of a parameter file is passed as the 4th arg. You can control CML_explorer via parameter file." + "Shuji Narazaki (narazaki@InetQ.or.jp); http://www.inetq.or.jp/~narazaki/TheGIMP/" + "Shuji Narazaki" + "1997" + "CML _Explorer..." + 1 + (menu-path "/Filters/Render/Pattern") + (icon icon-name -1 "") + "RGB*, GRAY*" + 4 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The input image" 3 0) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "drawable" "Drawable" "The input drawable" 3 1) + (proc-arg 6 "GParamString" "gchararray" "parameter-uri" "Parameter UTI" "The local file:// URI of parameter file. CML_explorer makes an image with its settings." 3 ""))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/checkerboard/checkerboard" 1609190423 + (proc-def "plug-in-checkerboard" 1 + "Create a checkerboard pattern" + "More here later" + "Brent Burton & the Edward Blevins" + "Brent Burton & the Edward Blevins" + "1997" + "_Checkerboard (legacy)..." + 1 + (menu-path "/Filters/Render/Pattern") + (icon icon-name -1 "") + "RGB*, GRAY*" + 5 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The input image" 3 0) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "drawable" "Drawable" "The input drawable" 3 1) + (proc-arg 4 "GParamBoolean" "gboolean" "psychobily" "Psychobily" "Render a psychobiliy checkerboard" 3 0) + (proc-arg 1 "GParamInt" "gint" "check-size" "Check size" "Size of the checks" 3 1 524288 10))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/busy-dialog/busy-dialog" 1609190423 + (proc-def "plug-in-busy-dialog" 1 + "Show a dialog while waiting for an operation to finish" + "Used by GIMP to display a dialog, containing a spinner and a custom message, while waiting for an ongoing operation to finish. Optionally, the dialog may provide a \"Cancel\" button, which can be used to cancel the operation." + "Ell" + "Ell" + "2018" + "" + 0 + (icon icon-name -1 "") + "" + 5 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 0) + (proc-arg 1 "GParamInt" "gint" "read-fd" "The read file descriptor" "The read file descriptor" 3 -2147483648 2147483647 0) + (proc-arg 1 "GParamInt" "gint" "write-fd" "The write file descriptor" "The write file descriptor" 3 -2147483648 2147483647 0) + (proc-arg 6 "GParamString" "gchararray" "message" "The message" "The message" 3 "") + (proc-arg 4 "GParamBoolean" "gboolean" "cancelable" "Whether the dialog is cancelable" "Whether the dialog is cancelable" 3 0))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/border-average/border-average" 1609190423 + (proc-def "plug-in-borderaverage" 1 + "Set foreground to the average color of the image border" + "" + "Philipp Klaus" + "Internet Access AG" + "1998" + "_Border Average..." + 1 + (menu-path "/Colors/Info") + (icon icon-name -1 "") + "RGB*" + 5 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The input image" 3 0) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "drawable" "Drawable" "The input drawable" 3 1) + (proc-arg 1 "GParamInt" "gint" "thickness" "Border size to take in count" "Border size to take in count" 3 0 2147483647 3) + (proc-arg 1 "GParamInt" "gint" "bucket-exponent" "Bits for bucket size (default=4: 16 Levels)" "Bits for bucket size (default=4: 16 Levels)" 3 0 2147483647 4) + (proc-arg 7 "GimpParamRGB" "GimpRGB" "borderaverage" "The average color of the specified border." "The average color of the specified border." 3 1 0 0 0 1))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/blinds/blinds" 1609190423 + (proc-def "plug-in-blinds" 1 + "Simulate an image painted on window blinds" + "More here later" + "Andy Thomas" + "Andy Thomas" + "1997" + "_Blinds..." + 1 + (menu-path "/Filters/Distorts") + (icon icon-name -1 "") + "RGB*, GRAY*" + 7 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The input image" 3 0) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "drawable" "Drawable" "The input drawable" 3 1) + (proc-arg 1 "GParamInt" "gint" "angle-displacement" "Angle displacement" "Angle of Displacement" 3 0 360 30) + (proc-arg 1 "GParamInt" "gint" "num-segments" "Num segments" "Number of segments in blinds" 3 1 1024 3) + (proc-arg 3 "GParamEnum" "GimpOrientationType" "orientation" "Orientation" "The orientation" 3 0) + (proc-arg 4 "GParamBoolean" "gboolean" "bg-transparent" "BG transparent" "Background transparent" 3 0))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/benchmark-foreground-extract/benchmark-foreground-extract.py" 1609190423 + (proc-def "python-fu-benchmark-foreground-extract" 1 + "Benchmark and regression test for Foreground Extraction" + "\n This is a from-scratch implementation of the benchmark proposed in\n \"GrabCut\": interactive foreground extraction using iterated graph\n cuts published in the Proceedings of the 2004 SIGGRAPH Conference.\n\n No guarantee is made that this benchmark produces the same results\n as the cited benchmark but the goal is that it does. So if you find\n any bugs or inaccuracies in this code, please let us know.\n\n The benchmark has been adapted work with the MATTING algorithm,\n which is (currently) the only\n implementation of gimp_drawable_foreground_extract(). If other\n implementations are being added, this benchmark should be changed\n accordingly.\n\n You will need a set of test images to run this benchmark, preferably\n the original set of 50 images. Some of these images are from the\n Berkeley Segmentation Dataset\n http://www.cs.berkeley.edu/projects/vision/grouping/segbench/ .\n See http://www.siox.org/details.html to download trimaps.\n See https://web.archive.org/web/20050209123253/http://research.microsoft.com/vision/cambridge/segmentation/\n and download the \"Labelling - Lasso\" file.\n" + "Sven Neumann" + "Sven Neumann" + "2005" + "Foreground Extraction" + 1 + (menu-path "/Filters/Extensions/Benchmark") + (icon icon-name -1 "") + "" + 3 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 6 "GParamString" "gchararray" "image-folder" "Image Folder" "Image Folder" 3 "~/segmentation/msbench/imagedata") + (proc-arg 4 "GParamBoolean" "gboolean" "save-output" "Save output images" "Save output images" 3 0)) + (locale-def "gimp30-python" "${gimp_installation_dir}/share/locale")) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/animation-play/animation-play" 1609190423 + (proc-def "plug-in-animationplay" 1 + "Preview a GIMP layer-based animation" + "" + "Adam D. Moss " + "Adam D. Moss " + "1997, 1998..." + "_Playback..." + 1 + (menu-path "/Filters/Animation/") + (icon icon-name -1 "media-playback-start") + "*" + 3 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The input image" 3 0) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "drawable" "Drawable" "The input drawable" 3 1))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/animation-optimize/animation-optimize" 1609190423 + (proc-def "plug-in-animationoptimize" 1 + "Modify image to reduce size when saved as GIF animation" + "This procedure applies various optimizations to a GIMP layer-based animation in an attempt to reduce the final file size. If a frame of theanimation can use the 'combine' mode, this procedure attempts to maximize the number of ajdacent pixels having the same color, whichimproves the compression for some image formats such as GIF or MNG." + "Adam D. Moss " + "Adam D. Moss " + "1997-2003" + "Optimize (for _GIF)" + 1 + (menu-path "/Filters/Animation") + (icon icon-name -1 "") + "*" + 3 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The input image" 3 0) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "drawable" "Drawable" "The input drawable" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "result" "Result" "Resultimg image" 3 0)) + (proc-def "plug-in-animationoptimize-diff" 1 + "Reduce file size where combining layers is possible" + "This procedure applies various optimizations to a GIMP layer-based animation in an attempt to reduce the final file size. If a frame of the animation can use the 'combine' mode, this procedure uses a simple difference between the frames." + "Adam D. Moss " + "Adam D. Moss " + "1997-2003" + "_Optimize (Difference)" + 1 + (menu-path "/Filters/Animation") + (icon icon-name -1 "") + "*" + 3 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The input image" 3 0) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "drawable" "Drawable" "The input drawable" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "result" "Result" "Resultimg image" 3 0)) + (proc-def "plug-in-animationunoptimize" 1 + "Remove optimization to make editing easier" + "This procedure 'simplifies' a GIMP layer-based animation that has been optimized for animation. This makes editing the animation much easier." + "Adam D. Moss " + "Adam D. Moss " + "1997-2003" + "_Unoptimize" + 1 + (menu-path "/Filters/Animation") + (icon icon-name -1 "") + "*" + 3 1 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The input image" 3 0) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "drawable" "Drawable" "The input drawable" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "result" "Result" "Resultimg image" 3 0))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/align-layers/align-layers" 1609190423 + (proc-def "plug-in-align-layers" 1 + "Align all visible layers of the image" + "Align visible layers" + "Shuji Narazaki " + "Shuji Narazaki" + "1997" + "Align Visi_ble Layers..." + 1 + (menu-path "/Image/Arrange") + (icon icon-name -1 "") + "*" + 3 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The input image" 3 0) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "drawable" "Drawable" "The input drawable" 3 1))) +(plug-in-def "${gimp_plug_in_dir}/extensions/org.gimp.extension.goat-exercises/goat-exercise-vala" 1609190423 + (proc-def "plug-in-goat-exercise-vala" 1 + "Exercise a goat in the Vala language" + "Takes a goat for a walk in Vala" + "Niels De Graef" + "Niels De Graef" + "2020" + "Exercise a Vala goat" + 1 + (menu-path "/Filters/Development/Goat exercises/") + (icon icon-name -1 "gimp-gegl") + "RGB*, INDEXED*, GRAY*" + 3 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The input image" 3 0) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "drawable" "Drawable" "The input drawable" 3 1))) +(plug-in-def "${gimp_plug_in_dir}/extensions/org.gimp.extension.goat-exercises/goat-exercise-py3.py" 1609190423 + (proc-def "plug-in-goat-exercise-python" 1 + "Exercise a goat in the Python 3 language" + "Takes a goat for a walk in Python 3" + "Jehan" + "Jehan" + "2019" + "Exercise a goat and a python" + 1 + (menu-path "/Filters/Development/Goat exercises/") + (icon icon-name -1 "gimp-gegl") + "*" + 3 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The input image" 3 0) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "drawable" "Drawable" "The input drawable" 3 1)) + (locale-def "gimp30-std-plug-ins" "${gimp_installation_dir}/share/locale")) +(plug-in-def "${gimp_plug_in_dir}/extensions/org.gimp.extension.goat-exercises/goat-exercise-c" 1609190423 + (proc-def "plug-in-goat-exercise-c" 1 + "Exercise a goat in the C language" + "Takes a goat for a walk" + "Øyvind Kolås " + "Øyvind Kolås " + "21 march 2012" + "Exercise in _C minor" + 1 + (menu-path "/Filters/Development/Goat exercises/") + (icon icon-name -1 "gimp-gegl") + "*" + 3 0 + (proc-arg 3 "GParamEnum" "GimpRunMode" "run-mode" "Run mode" "The run mode" 3 1) + (proc-arg 8 "GimpParamImage" "GimpImage" "image" "Image" "The input image" 3 0) + (proc-arg 8 "GimpParamDrawable" "GimpDrawable" "drawable" "Drawable" "The input drawable" 3 1))) + +# end of pluginrc diff --git a/.config/GIMP/2.99/sessionrc b/.config/GIMP/2.99/sessionrc new file mode 100644 index 000000000..703e9bd11 --- /dev/null +++ b/.config/GIMP/2.99/sessionrc @@ -0,0 +1,86 @@ +# GIMP sessionrc +# +# This file takes session-specific info (that is info, you want to keep +# between two GIMP sessions). You are not supposed to edit it manually, but +# of course you can do. The sessionrc will be entirely rewritten every time +# you quit GIMP. If this file isn't found, defaults are used. + +(session-info "toplevel" + (factory-entry "gimp-empty-image-window") + (position 200 100) + (size 640 480)) +(session-info "toplevel" + (factory-entry "gimp-single-image-window") + (position 962 32) + (size 950 1014) + (open-on-exit) + (aux-info + (left-docks-width "188") + (right-docks-width "231") + (maximized "no")) + (gimp-toolbox + (side left) + (book + (current-page 0) + (dockable "gimp-tool-options" + (tab-style icon) + (aux-info + (show-button-bar "true"))) + (dockable "gimp-device-status" + (tab-style icon) + (aux-info + (show-button-bar "true"))) + (dockable "gimp-undo-history" + (tab-style icon) + (aux-info + (show-button-bar "true"))) + (dockable "gimp-image-list" + (tab-style icon) + (aux-info + (show-button-bar "true"))))) + (gimp-dock + (side right) + (book + (current-page 0) + (dockable "gimp-brush-grid" + (tab-style icon) + (aux-info + (show-button-bar "true"))) + (dockable "gimp-pattern-grid" + (tab-style icon) + (aux-info + (show-button-bar "true"))) + (dockable "gimp-font-list" + (tab-style icon) + (aux-info + (show-button-bar "true"))) + (dockable "gimp-document-list" + (tab-style icon) + (aux-info + (show-button-bar "true")))) + (book + (position 336) + (current-page 0) + (dockable "gimp-layer-list" + (tab-style icon) + (preview-size 32) + (aux-info + (show-button-bar "true"))) + (dockable "gimp-channel-list" + (tab-style icon) + (preview-size 32) + (aux-info + (show-button-bar "true"))) + (dockable "gimp-vectors-list" + (tab-style icon) + (preview-size 32) + (aux-info + (show-button-bar "true")))))) + +(hide-docks no) +(single-window-mode yes) +(show-tabs yes) +(tabs-position 0) +(last-tip-shown 0) + +# end of sessionrc diff --git a/.config/GIMP/2.99/tags.xml b/.config/GIMP/2.99/tags.xml new file mode 100644 index 000000000..fff50d9b2 --- /dev/null +++ b/.config/GIMP/2.99/tags.xml @@ -0,0 +1,4500 @@ + + + + + round + + + + fuzzy + round + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/.config/GIMP/2.99/templaterc b/.config/GIMP/2.99/templaterc new file mode 100644 index 000000000..362a1fc07 --- /dev/null +++ b/.config/GIMP/2.99/templaterc @@ -0,0 +1,461 @@ +# GIMP templaterc +# +# This file will be entirely rewritten each time you exit. + +(GimpTemplate "A0 (300 ppi)" + (width 9933) + (height 14043) + (unit millimeters) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "A1 (300 ppi)" + (width 7016) + (height 9933) + (unit millimeters) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "A2 (300 ppi)" + (width 4960) + (height 7016) + (unit millimeters) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "A3 (300 ppi)" + (width 3508) + (height 4960) + (unit millimeters) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "A4 (300 ppi)" + (width 2480) + (height 3508) + (unit millimeters) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "A5 (300 ppi)" + (width 1748) + (height 2480) + (unit millimeters) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "A6 (300 ppi)" + (width 1240) + (height 1748) + (unit millimeters) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "A7 (300 ppi)" + (width 874) + (height 1240) + (unit millimeters) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "B4 (300 ppi)" + (width 2953) + (height 4169) + (unit millimeters) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "B5 (300 ppi)" + (width 2079) + (height 2953) + (unit millimeters) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "B5-Japan (300 ppi)" + (width 2150) + (height 3035) + (unit millimeters) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "US Letter (300 ppi)" + (width 2550) + (height 3300) + (unit inches) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "US Legal (300 ppi)" + (width 2550) + (height 4200) + (unit inches) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "88.9×50.8 US Business Card" + (icon-name "gimp-business-card") + (width 1050) + (height 600) + (unit millimeters) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "85×55 Western Europe Business Card" + (icon-name "gimp-business-card") + (width 1004) + (height 650) + (unit millimeters) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "90×50 Eastern Europe Business Card" + (icon-name "gimp-business-card") + (width 1063) + (height 591) + (unit millimeters) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "90×55 Business Card (AU, IN etc.)" + (icon-name "gimp-business-card") + (width 1063) + (height 650) + (unit millimeters) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "87×49 Vistaprint Business Card" + (icon-name "gimp-business-card") + (width 1028) + (height 579) + (unit millimeters) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "Toilet paper (US, 300 ppi)" + (icon-name "gimp-toilet-paper") + (width 1350) + (height 1350) + (unit inches) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "CD cover (300 ppi)" + (icon-name "media-optical") + (width 1429) + (height 1417) + (unit millimeters) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "Web banner leaderboard 728x90" + (icon-name "gimp-web") + (width 728) + (height 90) + (unit pixels) + (xresolution 72) + (yresolution 72) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "Web banner large rectangle 336×280" + (icon-name "gimp-web") + (width 336) + (height 280) + (unit pixels) + (xresolution 72) + (yresolution 72) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "Web banner medium rectangle 300×250" + (icon-name "gimp-web") + (width 300) + (height 250) + (unit pixels) + (xresolution 72) + (yresolution 72) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "Web banner large mobile 320×100" + (icon-name "gimp-web") + (width 320) + (height 100) + (unit pixels) + (xresolution 72) + (yresolution 72) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "Web banner large skyscraper 300×600" + (icon-name "gimp-web") + (width 300) + (height 600) + (unit pixels) + (xresolution 72) + (yresolution 72) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "1280×720 (HD 720p)" + (icon-name "gimp-video") + (width 1280) + (height 720) + (unit pixels) + (xresolution 72) + (yresolution 72) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "1920×1080 (Full HD 1080p)" + (icon-name "gimp-video") + (width 1920) + (height 1080) + (unit pixels) + (xresolution 72) + (yresolution 72) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "3840x2160 (4K UHD)" + (icon-name "gimp-video") + (width 3840) + (height 2160) + (unit pixels) + (xresolution 72) + (yresolution 72) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "4096×2160 (Digital Cinema Initiatives 4K)" + (icon-name "gimp-video") + (width 4096) + (height 2160) + (unit pixels) + (xresolution 72) + (yresolution 72) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "1366×768 HD" + (icon-name "gimp-display") + (width 1366) + (height 768) + (unit pixels) + (xresolution 72) + (yresolution 72) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "1920×1200 WUXGA" + (icon-name "gimp-display") + (width 1920) + (height 1200) + (unit pixels) + (xresolution 72) + (yresolution 72) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "2560x1600 WQXGA" + (icon-name "gimp-display") + (width 2560) + (height 1600) + (unit pixels) + (xresolution 72) + (yresolution 72) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "3840×2160 4K UHD" + (icon-name "gimp-display") + (width 3840) + (height 2160) + (unit pixels) + (xresolution 72) + (yresolution 72) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "Apple iPhone 6/7" + (icon-name "gimp-smartphone") + (width 750) + (height 1334) + (unit millimeters) + (xresolution 326) + (yresolution 326) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "Apple iPhone 5" + (icon-name "gimp-smartphone") + (width 640) + (height 1136) + (unit millimeters) + (xresolution 326) + (yresolution 326) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "Apple iPad 3&4, Air" + (icon-name "gimp-smartphone") + (width 2048) + (height 2732) + (unit millimeters) + (xresolution 264) + (yresolution 264) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "Samsung Galaxy S6" + (icon-name "gimp-smartphone") + (width 1440) + (height 2560) + (unit millimeters) + (xresolution 577) + (yresolution 577) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "Samsung Galaxy S5" + (icon-name "gimp-smartphone") + (width 1080) + (height 1920) + (unit millimeters) + (xresolution 360) + (yresolution 360) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "Samsung Galaxy Tab 2&3 10,1 inch" + (icon-name "gimp-smartphone") + (width 800) + (height 1280) + (unit millimeters) + (xresolution 149) + (yresolution 149) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (fill-type background)) + +# end of templaterc diff --git a/.config/GIMP/2.99/theme.css b/.config/GIMP/2.99/theme.css new file mode 100644 index 000000000..5dded3c6f --- /dev/null +++ b/.config/GIMP/2.99/theme.css @@ -0,0 +1,15 @@ +/* GIMP theme.css + * + * This file is written on GIMP startup and on every theme change. + * It is NOT supposed to be edited manually. Edit your personal + * gimp.css file instead (/home/dt/.config/GIMP/2.99/gimp.css). + */ + +@import url("file:///usr/share/gimp/2.99/themes/System/gimp.css"); +@import url("file:///etc/gimp/2.99/gimp.css"); + +* { -gtk-icon-style: symbolic; } + +/* prefer-dark-theme */ + +/* end of theme.css */ diff --git a/.config/GIMP/2.99/tool-options/gimp-airbrush-tool b/.config/GIMP/2.99/tool-options/gimp-airbrush-tool new file mode 100644 index 000000000..b21e0fbcf --- /dev/null +++ b/.config/GIMP/2.99/tool-options/gimp-airbrush-tool @@ -0,0 +1,10 @@ +# GIMP gimp-airbrush-tool options + +(brush "2. Hardness 050") +(dynamics "Pressure Size") +(gradient "FG to BG (RGB)") +(palette "Colour History") +(brush-size 51) +(brush-hardness 0.5) + +# end of gimp-airbrush-tool options diff --git a/.config/GIMP/2.99/tool-options/gimp-align-tool b/.config/GIMP/2.99/tool-options/gimp-align-tool new file mode 100644 index 000000000..521b3bf4a --- /dev/null +++ b/.config/GIMP/2.99/tool-options/gimp-align-tool @@ -0,0 +1,4 @@ +# GIMP gimp-align-tool options + + +# end of gimp-align-tool options diff --git a/.config/GIMP/2.99/tool-options/gimp-brightness-contrast-tool b/.config/GIMP/2.99/tool-options/gimp-brightness-contrast-tool new file mode 100644 index 000000000..16bc2d330 --- /dev/null +++ b/.config/GIMP/2.99/tool-options/gimp-brightness-contrast-tool @@ -0,0 +1,4 @@ +# GIMP gimp-brightness-contrast-tool options + + +# end of gimp-brightness-contrast-tool options diff --git a/.config/GIMP/2.99/tool-options/gimp-bucket-fill-tool b/.config/GIMP/2.99/tool-options/gimp-bucket-fill-tool new file mode 100644 index 000000000..b10bf35be --- /dev/null +++ b/.config/GIMP/2.99/tool-options/gimp-bucket-fill-tool @@ -0,0 +1,7 @@ +# GIMP gimp-bucket-fill-tool options + +(pattern "Pine") +(brush-size 51) +(brush-hardness 0.5) + +# end of gimp-bucket-fill-tool options diff --git a/.config/GIMP/2.99/tool-options/gimp-by-color-select-tool b/.config/GIMP/2.99/tool-options/gimp-by-color-select-tool new file mode 100644 index 000000000..434e5db6a --- /dev/null +++ b/.config/GIMP/2.99/tool-options/gimp-by-color-select-tool @@ -0,0 +1,4 @@ +# GIMP gimp-by-color-select-tool options + + +# end of gimp-by-color-select-tool options diff --git a/.config/GIMP/2.99/tool-options/gimp-cage-tool b/.config/GIMP/2.99/tool-options/gimp-cage-tool new file mode 100644 index 000000000..70074a22b --- /dev/null +++ b/.config/GIMP/2.99/tool-options/gimp-cage-tool @@ -0,0 +1,4 @@ +# GIMP gimp-cage-tool options + + +# end of gimp-cage-tool options diff --git a/.config/GIMP/2.99/tool-options/gimp-clone-tool b/.config/GIMP/2.99/tool-options/gimp-clone-tool new file mode 100644 index 000000000..4e712e3c9 --- /dev/null +++ b/.config/GIMP/2.99/tool-options/gimp-clone-tool @@ -0,0 +1,10 @@ +# GIMP gimp-clone-tool options + +(brush "2. Hardness 050") +(dynamics "Pressure Size") +(pattern "Pine") +(palette "Colour History") +(brush-size 51) +(brush-hardness 0.5) + +# end of gimp-clone-tool options diff --git a/.config/GIMP/2.99/tool-options/gimp-color-picker-tool b/.config/GIMP/2.99/tool-options/gimp-color-picker-tool new file mode 100644 index 000000000..d46490a2f --- /dev/null +++ b/.config/GIMP/2.99/tool-options/gimp-color-picker-tool @@ -0,0 +1,4 @@ +# GIMP gimp-color-picker-tool options + + +# end of gimp-color-picker-tool options diff --git a/.config/GIMP/2.99/tool-options/gimp-convolve-tool b/.config/GIMP/2.99/tool-options/gimp-convolve-tool new file mode 100644 index 000000000..9e4c35620 --- /dev/null +++ b/.config/GIMP/2.99/tool-options/gimp-convolve-tool @@ -0,0 +1,9 @@ +# GIMP gimp-convolve-tool options + +(brush "2. Hardness 050") +(dynamics "Pressure Size") +(palette "Colour History") +(brush-size 51) +(brush-hardness 0.5) + +# end of gimp-convolve-tool options diff --git a/.config/GIMP/2.99/tool-options/gimp-crop-tool b/.config/GIMP/2.99/tool-options/gimp-crop-tool new file mode 100644 index 000000000..ef8f80fee --- /dev/null +++ b/.config/GIMP/2.99/tool-options/gimp-crop-tool @@ -0,0 +1,4 @@ +# GIMP gimp-crop-tool options + + +# end of gimp-crop-tool options diff --git a/.config/GIMP/2.99/tool-options/gimp-curves-tool b/.config/GIMP/2.99/tool-options/gimp-curves-tool new file mode 100644 index 000000000..b7a332b82 --- /dev/null +++ b/.config/GIMP/2.99/tool-options/gimp-curves-tool @@ -0,0 +1,4 @@ +# GIMP gimp-curves-tool options + + +# end of gimp-curves-tool options diff --git a/.config/GIMP/2.99/tool-options/gimp-dodge-burn-tool b/.config/GIMP/2.99/tool-options/gimp-dodge-burn-tool new file mode 100644 index 000000000..9ab25512e --- /dev/null +++ b/.config/GIMP/2.99/tool-options/gimp-dodge-burn-tool @@ -0,0 +1,9 @@ +# GIMP gimp-dodge-burn-tool options + +(brush "2. Hardness 050") +(dynamics "Pressure Size") +(palette "Colour History") +(brush-size 51) +(brush-hardness 0.5) + +# end of gimp-dodge-burn-tool options diff --git a/.config/GIMP/2.99/tool-options/gimp-ellipse-select-tool b/.config/GIMP/2.99/tool-options/gimp-ellipse-select-tool new file mode 100644 index 000000000..5b00a2531 --- /dev/null +++ b/.config/GIMP/2.99/tool-options/gimp-ellipse-select-tool @@ -0,0 +1,4 @@ +# GIMP gimp-ellipse-select-tool options + + +# end of gimp-ellipse-select-tool options diff --git a/.config/GIMP/2.99/tool-options/gimp-eraser-tool b/.config/GIMP/2.99/tool-options/gimp-eraser-tool new file mode 100644 index 000000000..7e9027e29 --- /dev/null +++ b/.config/GIMP/2.99/tool-options/gimp-eraser-tool @@ -0,0 +1,9 @@ +# GIMP gimp-eraser-tool options + +(brush "2. Hardness 050") +(dynamics "Pressure Size") +(palette "Colour History") +(brush-size 51) +(brush-hardness 0.5) + +# end of gimp-eraser-tool options diff --git a/.config/GIMP/2.99/tool-options/gimp-flip-tool b/.config/GIMP/2.99/tool-options/gimp-flip-tool new file mode 100644 index 000000000..468667783 --- /dev/null +++ b/.config/GIMP/2.99/tool-options/gimp-flip-tool @@ -0,0 +1,4 @@ +# GIMP gimp-flip-tool options + + +# end of gimp-flip-tool options diff --git a/.config/GIMP/2.99/tool-options/gimp-foreground-select-tool b/.config/GIMP/2.99/tool-options/gimp-foreground-select-tool new file mode 100644 index 000000000..1026eac30 --- /dev/null +++ b/.config/GIMP/2.99/tool-options/gimp-foreground-select-tool @@ -0,0 +1,4 @@ +# GIMP gimp-foreground-select-tool options + + +# end of gimp-foreground-select-tool options diff --git a/.config/GIMP/2.99/tool-options/gimp-free-select-tool b/.config/GIMP/2.99/tool-options/gimp-free-select-tool new file mode 100644 index 000000000..86b6ab39f --- /dev/null +++ b/.config/GIMP/2.99/tool-options/gimp-free-select-tool @@ -0,0 +1,4 @@ +# GIMP gimp-free-select-tool options + + +# end of gimp-free-select-tool options diff --git a/.config/GIMP/2.99/tool-options/gimp-fuzzy-select-tool b/.config/GIMP/2.99/tool-options/gimp-fuzzy-select-tool new file mode 100644 index 000000000..a0f7bdbe7 --- /dev/null +++ b/.config/GIMP/2.99/tool-options/gimp-fuzzy-select-tool @@ -0,0 +1,4 @@ +# GIMP gimp-fuzzy-select-tool options + + +# end of gimp-fuzzy-select-tool options diff --git a/.config/GIMP/2.99/tool-options/gimp-gegl-tool b/.config/GIMP/2.99/tool-options/gimp-gegl-tool new file mode 100644 index 000000000..f085e5f57 --- /dev/null +++ b/.config/GIMP/2.99/tool-options/gimp-gegl-tool @@ -0,0 +1,4 @@ +# GIMP gimp-gegl-tool options + + +# end of gimp-gegl-tool options diff --git a/.config/GIMP/2.99/tool-options/gimp-gradient-tool b/.config/GIMP/2.99/tool-options/gimp-gradient-tool new file mode 100644 index 000000000..a3b7422db --- /dev/null +++ b/.config/GIMP/2.99/tool-options/gimp-gradient-tool @@ -0,0 +1,7 @@ +# GIMP gimp-gradient-tool options + +(gradient "FG to BG (RGB)") +(brush-size 51) +(brush-hardness 0.5) + +# end of gimp-gradient-tool options diff --git a/.config/GIMP/2.99/tool-options/gimp-handle-transform-tool b/.config/GIMP/2.99/tool-options/gimp-handle-transform-tool new file mode 100644 index 000000000..a23ed4240 --- /dev/null +++ b/.config/GIMP/2.99/tool-options/gimp-handle-transform-tool @@ -0,0 +1,4 @@ +# GIMP gimp-handle-transform-tool options + + +# end of gimp-handle-transform-tool options diff --git a/.config/GIMP/2.99/tool-options/gimp-heal-tool b/.config/GIMP/2.99/tool-options/gimp-heal-tool new file mode 100644 index 000000000..5dcfe9843 --- /dev/null +++ b/.config/GIMP/2.99/tool-options/gimp-heal-tool @@ -0,0 +1,9 @@ +# GIMP gimp-heal-tool options + +(brush "2. Hardness 050") +(dynamics "Pressure Size") +(palette "Colour History") +(brush-size 51) +(brush-hardness 0.5) + +# end of gimp-heal-tool options diff --git a/.config/GIMP/2.99/tool-options/gimp-ink-tool b/.config/GIMP/2.99/tool-options/gimp-ink-tool new file mode 100644 index 000000000..05f649bee --- /dev/null +++ b/.config/GIMP/2.99/tool-options/gimp-ink-tool @@ -0,0 +1,6 @@ +# GIMP gimp-ink-tool options + +(brush-size 51) +(brush-hardness 0.5) + +# end of gimp-ink-tool options diff --git a/.config/GIMP/2.99/tool-options/gimp-iscissors-tool b/.config/GIMP/2.99/tool-options/gimp-iscissors-tool new file mode 100644 index 000000000..fb42baff7 --- /dev/null +++ b/.config/GIMP/2.99/tool-options/gimp-iscissors-tool @@ -0,0 +1,4 @@ +# GIMP gimp-iscissors-tool options + + +# end of gimp-iscissors-tool options diff --git a/.config/GIMP/2.99/tool-options/gimp-levels-tool b/.config/GIMP/2.99/tool-options/gimp-levels-tool new file mode 100644 index 000000000..04c0f9322 --- /dev/null +++ b/.config/GIMP/2.99/tool-options/gimp-levels-tool @@ -0,0 +1,4 @@ +# GIMP gimp-levels-tool options + + +# end of gimp-levels-tool options diff --git a/.config/GIMP/2.99/tool-options/gimp-measure-tool b/.config/GIMP/2.99/tool-options/gimp-measure-tool new file mode 100644 index 000000000..ec7cff38a --- /dev/null +++ b/.config/GIMP/2.99/tool-options/gimp-measure-tool @@ -0,0 +1,4 @@ +# GIMP gimp-measure-tool options + + +# end of gimp-measure-tool options diff --git a/.config/GIMP/2.99/tool-options/gimp-move-tool b/.config/GIMP/2.99/tool-options/gimp-move-tool new file mode 100644 index 000000000..b9721a894 --- /dev/null +++ b/.config/GIMP/2.99/tool-options/gimp-move-tool @@ -0,0 +1,4 @@ +# GIMP gimp-move-tool options + + +# end of gimp-move-tool options diff --git a/.config/GIMP/2.99/tool-options/gimp-mypaint-brush-tool b/.config/GIMP/2.99/tool-options/gimp-mypaint-brush-tool new file mode 100644 index 000000000..7ba5cfb73 --- /dev/null +++ b/.config/GIMP/2.99/tool-options/gimp-mypaint-brush-tool @@ -0,0 +1,9 @@ +# GIMP gimp-mypaint-brush-tool options + +(mybrush "100% Opaque") +(brush-size 51) +(brush-hardness 0.5) +(radius 3.0099999904632568) +(hardness 0.94999998807907104) + +# end of gimp-mypaint-brush-tool options diff --git a/.config/GIMP/2.99/tool-options/gimp-offset-tool b/.config/GIMP/2.99/tool-options/gimp-offset-tool new file mode 100644 index 000000000..5a3025357 --- /dev/null +++ b/.config/GIMP/2.99/tool-options/gimp-offset-tool @@ -0,0 +1,4 @@ +# GIMP gimp-offset-tool options + + +# end of gimp-offset-tool options diff --git a/.config/GIMP/2.99/tool-options/gimp-operation-tool b/.config/GIMP/2.99/tool-options/gimp-operation-tool new file mode 100644 index 000000000..a71f6908f --- /dev/null +++ b/.config/GIMP/2.99/tool-options/gimp-operation-tool @@ -0,0 +1,4 @@ +# GIMP gimp-operation-tool options + + +# end of gimp-operation-tool options diff --git a/.config/GIMP/2.99/tool-options/gimp-paintbrush-tool b/.config/GIMP/2.99/tool-options/gimp-paintbrush-tool new file mode 100644 index 000000000..44b126e7d --- /dev/null +++ b/.config/GIMP/2.99/tool-options/gimp-paintbrush-tool @@ -0,0 +1,10 @@ +# GIMP gimp-paintbrush-tool options + +(brush "2. Hardness 050") +(dynamics "Pressure Size") +(gradient "FG to BG (RGB)") +(palette "Colour History") +(brush-size 51) +(brush-hardness 0.5) + +# end of gimp-paintbrush-tool options diff --git a/.config/GIMP/2.99/tool-options/gimp-pencil-tool b/.config/GIMP/2.99/tool-options/gimp-pencil-tool new file mode 100644 index 000000000..727f802c2 --- /dev/null +++ b/.config/GIMP/2.99/tool-options/gimp-pencil-tool @@ -0,0 +1,10 @@ +# GIMP gimp-pencil-tool options + +(brush "2. Hardness 050") +(dynamics "Pressure Size") +(gradient "FG to BG (RGB)") +(palette "Colour History") +(brush-size 51) +(brush-hardness 0.5) + +# end of gimp-pencil-tool options diff --git a/.config/GIMP/2.99/tool-options/gimp-perspective-clone-tool b/.config/GIMP/2.99/tool-options/gimp-perspective-clone-tool new file mode 100644 index 000000000..49d8deb5c --- /dev/null +++ b/.config/GIMP/2.99/tool-options/gimp-perspective-clone-tool @@ -0,0 +1,10 @@ +# GIMP gimp-perspective-clone-tool options + +(brush "2. Hardness 050") +(dynamics "Pressure Size") +(pattern "Pine") +(palette "Colour History") +(brush-size 51) +(brush-hardness 0.5) + +# end of gimp-perspective-clone-tool options diff --git a/.config/GIMP/2.99/tool-options/gimp-perspective-tool b/.config/GIMP/2.99/tool-options/gimp-perspective-tool new file mode 100644 index 000000000..3a21bdc72 --- /dev/null +++ b/.config/GIMP/2.99/tool-options/gimp-perspective-tool @@ -0,0 +1,4 @@ +# GIMP gimp-perspective-tool options + + +# end of gimp-perspective-tool options diff --git a/.config/GIMP/2.99/tool-options/gimp-rect-select-tool b/.config/GIMP/2.99/tool-options/gimp-rect-select-tool new file mode 100644 index 000000000..25bc9003e --- /dev/null +++ b/.config/GIMP/2.99/tool-options/gimp-rect-select-tool @@ -0,0 +1,4 @@ +# GIMP gimp-rect-select-tool options + + +# end of gimp-rect-select-tool options diff --git a/.config/GIMP/2.99/tool-options/gimp-rotate-tool b/.config/GIMP/2.99/tool-options/gimp-rotate-tool new file mode 100644 index 000000000..32e5b737a --- /dev/null +++ b/.config/GIMP/2.99/tool-options/gimp-rotate-tool @@ -0,0 +1,4 @@ +# GIMP gimp-rotate-tool options + + +# end of gimp-rotate-tool options diff --git a/.config/GIMP/2.99/tool-options/gimp-scale-tool b/.config/GIMP/2.99/tool-options/gimp-scale-tool new file mode 100644 index 000000000..6d1a75ef5 --- /dev/null +++ b/.config/GIMP/2.99/tool-options/gimp-scale-tool @@ -0,0 +1,4 @@ +# GIMP gimp-scale-tool options + + +# end of gimp-scale-tool options diff --git a/.config/GIMP/2.99/tool-options/gimp-shear-tool b/.config/GIMP/2.99/tool-options/gimp-shear-tool new file mode 100644 index 000000000..b1cf8f8f4 --- /dev/null +++ b/.config/GIMP/2.99/tool-options/gimp-shear-tool @@ -0,0 +1,4 @@ +# GIMP gimp-shear-tool options + + +# end of gimp-shear-tool options diff --git a/.config/GIMP/2.99/tool-options/gimp-smudge-tool b/.config/GIMP/2.99/tool-options/gimp-smudge-tool new file mode 100644 index 000000000..e24a56b2c --- /dev/null +++ b/.config/GIMP/2.99/tool-options/gimp-smudge-tool @@ -0,0 +1,10 @@ +# GIMP gimp-smudge-tool options + +(brush "2. Hardness 050") +(dynamics "Pressure Size") +(gradient "FG to BG (RGB)") +(palette "Colour History") +(brush-size 51) +(brush-hardness 0.5) + +# end of gimp-smudge-tool options diff --git a/.config/GIMP/2.99/tool-options/gimp-text-tool b/.config/GIMP/2.99/tool-options/gimp-text-tool new file mode 100644 index 000000000..a11335d54 --- /dev/null +++ b/.config/GIMP/2.99/tool-options/gimp-text-tool @@ -0,0 +1,6 @@ +# GIMP gimp-text-tool options + +(palette "Colour History") +(font "Sans-serif") + +# end of gimp-text-tool options diff --git a/.config/GIMP/2.99/tool-options/gimp-threshold-tool b/.config/GIMP/2.99/tool-options/gimp-threshold-tool new file mode 100644 index 000000000..f114556a2 --- /dev/null +++ b/.config/GIMP/2.99/tool-options/gimp-threshold-tool @@ -0,0 +1,4 @@ +# GIMP gimp-threshold-tool options + + +# end of gimp-threshold-tool options diff --git a/.config/GIMP/2.99/tool-options/gimp-transform-3d-tool b/.config/GIMP/2.99/tool-options/gimp-transform-3d-tool new file mode 100644 index 000000000..dbb8c084f --- /dev/null +++ b/.config/GIMP/2.99/tool-options/gimp-transform-3d-tool @@ -0,0 +1,4 @@ +# GIMP gimp-transform-3d-tool options + + +# end of gimp-transform-3d-tool options diff --git a/.config/GIMP/2.99/tool-options/gimp-unified-transform-tool b/.config/GIMP/2.99/tool-options/gimp-unified-transform-tool new file mode 100644 index 000000000..c84224d35 --- /dev/null +++ b/.config/GIMP/2.99/tool-options/gimp-unified-transform-tool @@ -0,0 +1,4 @@ +# GIMP gimp-unified-transform-tool options + + +# end of gimp-unified-transform-tool options diff --git a/.config/GIMP/2.99/tool-options/gimp-vector-tool b/.config/GIMP/2.99/tool-options/gimp-vector-tool new file mode 100644 index 000000000..70cfb40e8 --- /dev/null +++ b/.config/GIMP/2.99/tool-options/gimp-vector-tool @@ -0,0 +1,9 @@ +# GIMP gimp-vector-tool options + +(brush "2. Hardness 050") +(dynamics "Pressure Size") +(pattern "Pine") +(gradient "FG to BG (RGB)") +(palette "Colour History") + +# end of gimp-vector-tool options diff --git a/.config/GIMP/2.99/tool-options/gimp-warp-tool b/.config/GIMP/2.99/tool-options/gimp-warp-tool new file mode 100644 index 000000000..e837f9e85 --- /dev/null +++ b/.config/GIMP/2.99/tool-options/gimp-warp-tool @@ -0,0 +1,4 @@ +# GIMP gimp-warp-tool options + + +# end of gimp-warp-tool options diff --git a/.config/GIMP/2.99/tool-options/gimp-zoom-tool b/.config/GIMP/2.99/tool-options/gimp-zoom-tool new file mode 100644 index 000000000..316363e45 --- /dev/null +++ b/.config/GIMP/2.99/tool-options/gimp-zoom-tool @@ -0,0 +1,4 @@ +# GIMP gimp-zoom-tool options + + +# end of gimp-zoom-tool options diff --git a/.config/GIMP/2.99/toolrc b/.config/GIMP/2.99/toolrc new file mode 100644 index 000000000..81bb0529c --- /dev/null +++ b/.config/GIMP/2.99/toolrc @@ -0,0 +1,185 @@ +# GIMP toolrc + +(file-version 1) + +(GimpToolGroup "tool group" + (visible yes) + (active-tool "gimp-move-tool") + (children + (GimpToolInfo "gimp-move-tool" + (icon-name "gimp-tool-move") + (visible yes)) + (GimpToolInfo "gimp-align-tool" + (icon-name "gimp-tool-align") + (visible yes)))) +(GimpToolGroup "tool group" + (visible yes) + (active-tool "gimp-rect-select-tool") + (children + (GimpToolInfo "gimp-rect-select-tool" + (icon-name "gimp-tool-rect-select") + (visible yes)) + (GimpToolInfo "gimp-ellipse-select-tool" + (icon-name "gimp-tool-ellipse-select") + (visible yes)))) +(GimpToolGroup "tool group" + (visible yes) + (active-tool "gimp-free-select-tool") + (children + (GimpToolInfo "gimp-free-select-tool" + (icon-name "gimp-tool-free-select") + (visible yes)) + (GimpToolInfo "gimp-iscissors-tool" + (icon-name "gimp-tool-iscissors") + (visible yes)) + (GimpToolInfo "gimp-foreground-select-tool" + (icon-name "gimp-tool-foreground-select") + (visible yes)))) +(GimpToolGroup "tool group" + (visible yes) + (active-tool "gimp-fuzzy-select-tool") + (children + (GimpToolInfo "gimp-fuzzy-select-tool" + (icon-name "gimp-tool-fuzzy-select") + (visible yes)) + (GimpToolInfo "gimp-by-color-select-tool" + (icon-name "gimp-tool-by-color-select") + (visible yes)))) +(GimpToolInfo "gimp-crop-tool" + (icon-name "gimp-tool-crop") + (visible yes)) +(GimpToolGroup "tool group" + (visible yes) + (active-tool "gimp-unified-transform-tool") + (children + (GimpToolInfo "gimp-unified-transform-tool" + (icon-name "gimp-tool-unified-transform") + (visible yes)) + (GimpToolInfo "gimp-rotate-tool" + (icon-name "gimp-tool-rotate") + (visible yes)) + (GimpToolInfo "gimp-scale-tool" + (icon-name "gimp-tool-scale") + (visible yes)) + (GimpToolInfo "gimp-shear-tool" + (icon-name "gimp-tool-shear") + (visible yes)) + (GimpToolInfo "gimp-flip-tool" + (icon-name "gimp-tool-flip") + (visible yes)) + (GimpToolInfo "gimp-perspective-tool" + (icon-name "gimp-tool-perspective") + (visible yes)) + (GimpToolInfo "gimp-transform-3d-tool" + (icon-name "gimp-tool-transform-3d") + (visible yes)) + (GimpToolInfo "gimp-handle-transform-tool" + (icon-name "gimp-tool-handle-transform") + (visible yes)))) +(GimpToolGroup "tool group" + (visible yes) + (active-tool "gimp-warp-tool") + (children + (GimpToolInfo "gimp-warp-tool" + (icon-name "gimp-tool-warp") + (visible yes)) + (GimpToolInfo "gimp-cage-tool" + (icon-name "gimp-tool-cage") + (visible yes)))) +(GimpToolGroup "tool group" + (visible yes) + (active-tool "gimp-bucket-fill-tool") + (children + (GimpToolInfo "gimp-bucket-fill-tool" + (icon-name "gimp-tool-bucket-fill") + (visible yes)) + (GimpToolInfo "gimp-gradient-tool" + (icon-name "gimp-tool-gradient") + (visible yes)))) +(GimpToolGroup "tool group" + (visible yes) + (active-tool "gimp-paintbrush-tool") + (children + (GimpToolInfo "gimp-paintbrush-tool" + (icon-name "gimp-tool-paintbrush") + (visible yes)) + (GimpToolInfo "gimp-pencil-tool" + (icon-name "gimp-tool-pencil") + (visible yes)) + (GimpToolInfo "gimp-airbrush-tool" + (icon-name "gimp-tool-airbrush") + (visible yes)) + (GimpToolInfo "gimp-ink-tool" + (icon-name "gimp-tool-ink") + (visible yes)) + (GimpToolInfo "gimp-mypaint-brush-tool" + (icon-name "gimp-tool-mypaint-brush") + (visible yes)))) +(GimpToolInfo "gimp-eraser-tool" + (icon-name "gimp-tool-eraser") + (visible yes)) +(GimpToolGroup "tool group" + (visible yes) + (active-tool "gimp-clone-tool") + (children + (GimpToolInfo "gimp-clone-tool" + (icon-name "gimp-tool-clone") + (visible yes)) + (GimpToolInfo "gimp-perspective-clone-tool" + (icon-name "gimp-tool-perspective-clone") + (visible yes)) + (GimpToolInfo "gimp-heal-tool" + (icon-name "gimp-tool-heal") + (visible yes)))) +(GimpToolGroup "tool group" + (visible yes) + (active-tool "gimp-smudge-tool") + (children + (GimpToolInfo "gimp-smudge-tool" + (icon-name "gimp-tool-smudge") + (visible yes)) + (GimpToolInfo "gimp-convolve-tool" + (icon-name "gimp-tool-blur") + (visible yes)) + (GimpToolInfo "gimp-dodge-burn-tool" + (icon-name "gimp-tool-dodge") + (visible yes)))) +(GimpToolInfo "gimp-vector-tool" + (icon-name "gimp-tool-path") + (visible yes)) +(GimpToolInfo "gimp-text-tool" + (icon-name "gimp-tool-text") + (visible yes)) +(GimpToolGroup "tool group" + (visible yes) + (active-tool "gimp-color-picker-tool") + (children + (GimpToolInfo "gimp-color-picker-tool" + (icon-name "gimp-tool-color-picker") + (visible yes)) + (GimpToolInfo "gimp-measure-tool" + (icon-name "gimp-tool-measure") + (visible yes)))) +(GimpToolInfo "gimp-zoom-tool" + (icon-name "gimp-tool-zoom") + (visible yes)) +(GimpToolInfo "gimp-brightness-contrast-tool" + (icon-name "gimp-tool-brightness-contrast") + (visible no)) +(GimpToolInfo "gimp-threshold-tool" + (icon-name "gimp-tool-threshold") + (visible no)) +(GimpToolInfo "gimp-levels-tool" + (icon-name "gimp-tool-levels") + (visible no)) +(GimpToolInfo "gimp-curves-tool" + (icon-name "gimp-tool-curves") + (visible no)) +(GimpToolInfo "gimp-offset-tool" + (icon-name "gimp-tool-offset") + (visible no)) +(GimpToolInfo "gimp-gegl-tool" + (icon-name "gimp-gegl") + (visible no)) + +# end of toolrc diff --git a/.config/GIMP/2.99/unitrc b/.config/GIMP/2.99/unitrc new file mode 100644 index 000000000..9883ee89d --- /dev/null +++ b/.config/GIMP/2.99/unitrc @@ -0,0 +1,51 @@ +# GIMP units +# +# This file contains the user unit database. You can edit this list with the +# unit editor. You are not supposed to edit it manually, but of course you +# can do. +# This file will be entirely rewritten each time you exit. + +(unit-info "centimeters" + (factor 2.54) + (digits 2) + (symbol "cm") + (abbreviation "cm") + (singular "centimeter") + (plural "centimeters")) +(unit-info "meters" + (factor 0.025399999999999999) + (digits 4) + (symbol "m") + (abbreviation "m") + (singular "meter") + (plural "meters")) +(unit-info "feet" + (factor 0.083333000000000004) + (digits 4) + (symbol "'") + (abbreviation "ft") + (singular "foot") + (plural "feet")) +(unit-info "yards" + (factor 0.027778000000000001) + (digits 4) + (symbol "yd") + (abbreviation "yd") + (singular "yard") + (plural "yards")) +(unit-info "typogr. points" + (factor 72.269999999999996) + (digits 0) + (symbol "tpt") + (abbreviation "tpt") + (singular "typogr. point") + (plural "typogr. points")) +(unit-info "typogr. picas" + (factor 6.0225) + (digits 1) + (symbol "tpc") + (abbreviation "tpc") + (singular "typogr. pica") + (plural "typogr. picas")) + +# end of units diff --git a/.config/Kvantum/kvantum.kvconfig b/.config/Kvantum/kvantum.kvconfig new file mode 100644 index 000000000..c470e3042 --- /dev/null +++ b/.config/Kvantum/kvantum.kvconfig @@ -0,0 +1,2 @@ +[General] +theme=Matchama diff --git a/.config/QtProject.conf b/.config/QtProject.conf new file mode 100644 index 000000000..644fd088a --- /dev/null +++ b/.config/QtProject.conf @@ -0,0 +1,8 @@ +[FileDialog] +history=@Invalid() +lastVisited=file:///home/dt/.gitlabs/cynical.vim +qtVersion=5.15.2 +shortcuts=file:, file:///home/dt +sidebarWidth=99 +treeViewHeader=@ByteArray(\0\0\0\xff\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x1\xc8\0\0\0\x4\x1\x1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x64\xff\xff\xff\xff\0\0\0\x81\0\0\0\0\0\0\0\x4\0\0\0\xc6\0\0\0\x1\0\0\0\0\0\0\0\x44\0\0\0\x1\0\0\0\0\0\0\0\x44\0\0\0\x1\0\0\0\0\0\0\0z\0\0\0\x1\0\0\0\0\0\0\x3\xe8\0\xff\xff\xff\xff) +viewMode=Detail diff --git a/.config/TheCynicalTeam/MultiMonitorLock-Gui.conf b/.config/TheCynicalTeam/MultiMonitorLock-Gui.conf new file mode 100644 index 000000000..e630a0027 --- /dev/null +++ b/.config/TheCynicalTeam/MultiMonitorLock-Gui.conf @@ -0,0 +1,2 @@ +[settings] +folder=/usr/share/backgrounds/manjaro-wallpapers-18.0 diff --git a/.config/alacritty/alacritty.yml b/.config/alacritty/alacritty.yml new file mode 100644 index 000000000..cb38fe7de --- /dev/null +++ b/.config/alacritty/alacritty.yml @@ -0,0 +1,552 @@ +# Configuration for Alacritty, the GPU enhanced terminal emulator. + +# Any items in the `env` entry below will be added as +# environment variables. Some entries may override variables +# set by alacritty itself. +env: + # TERM variable + # + # This value is used to set the `$TERM` environment variable for + # each instance of Alacritty. If it is not present, alacritty will + # check the local terminfo database and use `alacritty` if it is + # available, otherwise `xterm-256color` is used. + TERM: xterm-256color + +window: + # Window dimensions (changes require restart) + # + # Specified in number of columns/lines, not pixels. + # If both are `0`, this setting is ignored. + #dimensions: + # columns: 0 + # lines: 0 + + # Window position (changes require restart) + # + # Specified in number of pixels. + # If the position is not set, the window manager will handle the placement. + #position: + # x: 0 + # y: 0 + + # Window padding (changes require restart) + # + # Blank space added around the window in pixels. This padding is scaled + # by DPI and the specified value is always added at both opposing sides. + padding: + x: 11 + y: 11 + + # Spread additional padding evenly around the terminal content. + dynamic_padding: true + + # Window decorations + # + # Values for `decorations`: + # - full: Borders and title bar + # - none: Neither borders nor title bar + # + # Values for `decorations` (macOS only): + # - transparent: Title bar, transparent background and title bar buttons + # - buttonless: Title bar, transparent background, but no title bar buttons + #decorations: full + + # Startup Mode (changes require restart) + # + # Values for `startup_mode`: + # - Windowed + # - Maximized + # - Fullscreen + # + # Values for `startup_mode` (macOS only): + # - SimpleFullscreen + #startup_mode: Windowed + + # Window title + title: Alacritty + + # Window class (Linux/BSD only): + class: + # Application instance name + instance: Alacritty + # General application class + general: Alacritty + + # GTK theme variant (Linux/BSD only) + # + # Override the variant of the GTK theme. Commonly supported values are `dark` and `light`. + # Set this to `None` to use the default theme variant. + #gtk_theme_variant: None + +scrolling: + # Maximum number of lines in the scrollback buffer. + # Specifying '0' will disable scrolling. + history: 5000 + + # Number of lines the viewport will move for every line scrolled when + # scrollback is enabled (history > 0). + multiplier: 3 + +# Font configuration +font: + # Normal (roman) font face + normal: + # Font family + # + # Default: + # - (macOS) Menlo + # - (Linux/BSD) monospace + # - (Windows) Consolas + # family: SauceCodePro Nerd Font + # family: CodeNewRoman Nerd Font + # family: RobotoMono Nerd Font + # family: Hack + # family: JetBrains Mono + # family: UbuntuMono Nerd Font + # family: Monofur Nerd Font + # family: TerminessTTF Nerd Font + family: SauceCodePro Nerd Font Mono + + # The `style` can be specified to pick a specific face. + style: Regular + + # Bold font face + bold: + # Font family + # + # If the bold family is not specified, it will fall back to the + # value specified for the normal font. + # family: SauceCodePro Nerd Font + # family: CodeNewRoman Nerd Font + # family: RobotoMono Nerd Font + # family: Hack + # family: JetBrains Mono + # family: UbuntuMono Nerd Font + # family: Monofur Nerd Font + # family: TerminessTTF Nerd Font + family: SauceCodePro Nerd Font Mono + + # The `style` can be specified to pick a specific face. + style: Bold + + # Italic font face + italic: + # Font family + # + # If the italic family is not specified, it will fall back to the + # value specified for the normal font. + # family: SauceCodePro Nerd Font Mono + # family: CodeNewRoman Nerd Font + # family: RobotoMono Nerd Font + # family: Hack + # family: JetBrains Mono + # family: UbuntuMono Nerd Font + # family: Monofuritalic Nerd Font Mono + # family: TerminessTTF Nerd Font + family: SauceCodePro Nerd Font Mono + + # The `style` can be specified to pick a specific face. + style: Italic + + # Bold italic font face + bold_italic: + # Font family + # + # If the bold italic family is not specified, it will fall back to the + # value specified for the normal font. + # family: SauceCodePro Nerd Font Mono + # family: CodeNewRoman Nerd Font + # family: RobotoMono Nerd Font + # family: Hack + # family: JetBrains Mono + # family: UbuntuMono Nerd Font + # family: Monofuritalic Nerd Font Mono + # family: TerminessTTF Nerd Font + family: SauceCodePro Nerd Font Mono + + # The `style` can be specified to pick a specific face. + style: Bold Italic + + # Point size + size: 7.0 + + # Offset is the extra space around each character. `offset.y` can be thought of + # as modifying the line spacing, and `offset.x` as modifying the letter spacing. + offset: + x: 0 + y: 1 + + # Glyph offset determines the locations of the glyphs within their cells with + # the default being at the bottom. Increasing `x` moves the glyph to the right, + # increasing `y` moves the glyph upwards. + #glyph_offset: + # x: 0 + # y: 0 + + # Thin stroke font rendering (macOS only) + # + # Thin strokes are suitable for retina displays, but for non-retina screens + # it is recommended to set `use_thin_strokes` to `false` + # + # macOS >= 10.14.x: + # + # If the font quality on non-retina display looks bad then set + # `use_thin_strokes` to `true` and enable font smoothing by running the + # following command: + # `defaults write -g CGFontRenderingFontSmoothingDisabled -bool NO` + # + # This is a global setting and will require a log out or restart to take + # effect. + #use_thin_strokes: true + +# If `true`, bold text is drawn using the bright color variants. +draw_bold_text_with_bright_colors: true + +# Colors (Tomorrow Night Bright) +colors: + # Default colors + primary: + background: '#f8f8f2' + foreground: '#282a36' + + # Bright and dim foreground colors + # + # The dimmed foreground color is calculated automatically if it is not present. + # If the bright foreground color is not set, or `draw_bold_text_with_bright_colors` + # is `false`, the normal foreground color will be used. + #dim_foreground: '0x9a9a9a' + #bright_foreground: '0xffffff' + + # Cursor colors + # + # Colors which should be used to draw the terminal cursor. If these are unset, + # the cursor color will be the inverse of the cell color. + #cursor: + # text: '0x000000' + # cursor: '0xffffff' + + # Selection colors + # + # Colors which should be used to draw the selection area. If selection + # background is unset, selection color will be the inverse of the cell colors. + # If only text is unset the cell text color will remain the same. + selection: + text: '#ffffff' + background: '#44475a' + + # Normal colors + normal: + black: '#21222c' + red: '#ff5555' + green: '#50fa7b' + yellow: '#f1fa8c' + blue: '#bd93f9' + magenta: '#ff79c6' + cyan: '#8be9fd' + white: '#f8f8f2' + + # Bright colors + bright: + black: '#6272a4' + red: '#ff6e6e' + green: '#69ff94' + yellow: '#ffffa5' + blue: '#d6acff' + magenta: '#ff92df' + cyan: '#a4ffff' + white: '#ffffff' + +# Visual Bell +# +# Any time the BEL code is received, Alacritty "rings" the visual bell. Once +# rung, the terminal background will be set to white and transition back to the +# default background color. You can control the rate of this transition by +# setting the `duration` property (represented in milliseconds). You can also +# configure the transition function by setting the `animation` property. +# +# Values for `animation`: +# - Ease +# - EaseOut +# - EaseOutSine +# - EaseOutQuad +# - EaseOutCubic +# - EaseOutQuart +# - EaseOutQuint +# - EaseOutExpo +# - EaseOutCirc +# - Linear +# +# Specifying a `duration` of `0` will disable the visual bell. +#visual_bell: +# animation: EaseOutExpo +# duration: 0 +# color: '0xffffff' + +# Background opacity +# +# Window opacity as a floating point number from `0.0` to `1.0`. +# The value `0.0` is completely transparent and `1.0` is opaque. +# background_opacity: 1.0 +background_opacity: 0.75 + +#selection: + #semantic_escape_chars: ",│`|:\"' ()[]{}<>\t" + + # When set to `true`, selected text will be copied to the primary clipboard. + #save_to_clipboard: false + +# Allow terminal applications to change Alacritty's window title. +#dynamic_title: true + +cursor: + # Cursor style + # + # Values for `style`: + # - ▇ Block + # - _ Underline + # - | Beam + style: Underline + + # If this is `true`, the cursor will be rendered as a hollow box when the + # window is not focused. + unfocused_hollow: true + +# Live config reload (changes require restart) +live_config_reload: true + +# Shell +# +# You can set `shell.program` to the path of your favorite shell, e.g. `/bin/fish`. +# Entries in `shell.args` are passed unmodified as arguments to the shell. +# +# Default: +# - (macOS) /bin/bash --login +# - (Linux/BSD) user login shell +# - (Windows) powershell +#shell: +# program: /bin/bash +# args: +# - --login + +# Startup directory +# +# Directory the shell is started in. If this is unset, or `None`, the working +# directory of the parent process will be used. +working_directory: None + +# WinPTY backend (Windows only) +# +# Alacritty defaults to using the newer ConPTY backend if it is available, +# since it resolves a lot of bugs and is quite a bit faster. If it is not +# available, the the WinPTY backend will be used instead. +# +# Setting this option to `true` makes Alacritty use the legacy WinPTY backend, +# even if the ConPTY backend is available. +#winpty_backend: false + +# Send ESC (\x1b) before characters when alt is pressed. +#alt_send_esc: true + +#debug: + # Display the time it takes to redraw each frame. + #render_timer: false + + # Keep the log file after quitting Alacritty. + #persistent_logging: false + + # Log level + # + # Values for `log_level`: + # - None + # - Error + # - Warn + # - Info + # - Debug + # - Trace + #log_level: Warn + + # Print all received window events. + #print_events: false + + # Record all characters and escape sequences as test data. + #ref_test: false + +#mouse: + # Click settings + # + # The `double_click` and `triple_click` settings control the time + # alacritty should wait for accepting multiple clicks as one double + # or triple click. + #double_click: { threshold: 300 } + #triple_click: { threshold: 300 } + + # If this is `true`, the cursor is temporarily hidden when typing. + #hide_when_typing: false + + #url: + # URL launcher + # + # This program is executed when clicking on a text which is recognized as a URL. + # The URL is always added to the command as the last parameter. + # + # When set to `None`, URL launching will be disabled completely. + # + # Default: + # - (macOS) open + # - (Linux/BSD) xdg-open + # - (Windows) explorer + #launcher: + # program: xdg-open + # args: [] + + # URL modifiers + # + # These are the modifiers that need to be held down for opening URLs when clicking + # on them. The available modifiers are documented in the key binding section. + #modifiers: None + +# Mouse bindings +# +# Mouse bindings are specified as a list of objects, much like the key +# bindings further below. +# +# Each mouse binding will specify a: +# +# - `mouse`: +# +# - Middle +# - Left +# - Right +# - Numeric identifier such as `5` +# +# - `action` (see key bindings) +# +# And optionally: +# +# - `mods` (see key bindings) +#mouse_bindings: +# - { mouse: Middle, action: PasteSelection } + +# Key bindings +# +# Key bindings are specified as a list of objects. For example, this is the +# default paste binding: +# +# `- { key: V, mods: Control|Shift, action: Paste }` +# +# Each key binding will specify a: +# +# - `key`: Identifier of the key pressed +# +# - A-Z +# - F1-F24 +# - Key0-Key9 +# +# A full list with available key codes can be found here: +# https://docs.rs/glutin/*/glutin/event/enum.VirtualKeyCode.html#variants +# +# Instead of using the name of the keys, the `key` field also supports using +# the scancode of the desired key. Scancodes have to be specified as a +# decimal number. This command will allow you to display the hex scancodes +# for certain keys: +# +# `showkey --scancodes`. +# +# Then exactly one of: +# +# - `chars`: Send a byte sequence to the running application +# +# The `chars` field writes the specified string to the terminal. This makes +# it possible to pass escape sequences. To find escape codes for bindings +# like `PageUp` (`"\x1b[5~"`), you can run the command `showkey -a` outside +# of tmux. Note that applications use terminfo to map escape sequences back +# to keys. It is therefore required to update the terminfo when changing an +# escape sequence. +# +# - `action`: Execute a predefined action +# +# - Copy +# - Paste +# - PasteSelection +# - IncreaseFontSize +# - DecreaseFontSize +# - ResetFontSize +# - ScrollPageUp +# - ScrollPageDown +# - ScrollLineUp +# - ScrollLineDown +# - ScrollToTop +# - ScrollToBottom +# - ClearHistory +# - Hide +# - Minimize +# - Quit +# - ToggleFullscreen +# - SpawnNewInstance +# - ClearLogNotice +# - ReceiveChar +# - None +# +# (macOS only): +# - ToggleSimpleFullscreen: Enters fullscreen without occupying another space +# +# - `command`: Fork and execute a specified command plus arguments +# +# The `command` field must be a map containing a `program` string and an +# `args` array of command line parameter strings. For example: +# `{ program: "alacritty", args: ["-e", "vttest"] }` +# +# And optionally: +# +# - `mods`: Key modifiers to filter binding actions +# +# - Command +# - Control +# - Option +# - Super +# - Shift +# - Alt +# +# Multiple `mods` can be combined using `|` like this: +# `mods: Control|Shift`. +# Whitespace and capitalization are relevant and must match the example. +# +# - `mode`: Indicate a binding for only specific terminal reported modes +# +# This is mainly used to send applications the correct escape sequences +# when in different modes. +# +# - AppCursor +# - AppKeypad +# - Alt +# +# A `~` operator can be used before a mode to apply the binding whenever +# the mode is *not* active, e.g. `~Alt`. +# +# Bindings are always filled by default, but will be replaced when a new +# binding with the same triggers is defined. To unset a default binding, it can +# be mapped to the `ReceiveChar` action. Alternatively, you can use `None` for +# a no-op if you do not wish to receive input characters for that binding. +key_bindings: + # (Windows, Linux, and BSD only) + - { key: V, mods: Control|Shift, action: Paste } + - { key: C, mods: Control|Shift, action: Copy } + - { key: F, mods: Control|Shift, action: SearchForward } + - { key: B, mods: Control|Shift, action: SearchBackward } + - { key: C, mods: Control|Shift, action: ClearSelection } + - { key: Insert, mods: Shift, action: PasteSelection } + - { key: Key0, mods: Control, action: ResetFontSize } + - { key: Equals, mods: Control, action: IncreaseFontSize } + - { key: Plus, mods: Control, action: IncreaseFontSize } + - { key: NumpadAdd, mods: Control, action: IncreaseFontSize } + - { key: Minus, mods: Control, action: DecreaseFontSize } + - { key: NumpadSubtract, mods: Control, action: DecreaseFontSize } + + - { key: Paste, action: Paste } + - { key: Copy, action: Copy } + - { key: L, mods: Control, action: ClearLogNotice } + - { key: L, mods: Control, chars: "\x0c" } + - { key: PageUp, mods: Shift, action: ScrollPageUp, mode: ~Alt } + - { key: PageDown, mods: Shift, action: ScrollPageDown, mode: ~Alt } + - { key: Home, mods: Shift, action: ScrollToTop, mode: ~Alt } + - { key: End, mods: Shift, action: ScrollToBottom, mode: ~Alt } diff --git a/.config/autorandr/i3/config b/.config/autorandr/i3/config new file mode 100644 index 000000000..47491a819 --- /dev/null +++ b/.config/autorandr/i3/config @@ -0,0 +1,15 @@ +output VIRTUAL1 +off +output DP-1-0 +off +output eDP-1 +crtc 0 +mode 1920x1080 +pos 0x0 +primary +rate 120.21 +output HDMI-1-0 +crtc 4 +mode 1920x1080 +pos 1920x0 +rate 60.00 diff --git a/.config/autorandr/i3/setup b/.config/autorandr/i3/setup new file mode 100644 index 000000000..75a6558e1 --- /dev/null +++ b/.config/autorandr/i3/setup @@ -0,0 +1,2 @@ +HDMI-1-0 00ffffffffffff0004699324010101013519010380351e78ea2cc5a45650a1280f5054bfef00714f818081409500a940b300d1c00101023a801871382d40582c4500132b2100001e000000fd00324c1e5311000a202020202020000000fc0056453234370a20202020202020000000ff0046434c4d51533132313739390a018a02031ef14b900504030201111213141f230907078301000065030c0010001a3680a070381e4030203500132b2100001a662156aa51001e30468f3300132b2100001e011d007251d01e206e285500132b2100001e8c0ad08a20e02d10103e9600132b21000018011d8018711c1620582c2500132b2100009f0000000000000039 +eDP-1 00ffffffffffff0006afedd100000000221d0104a52213780348358f575992291e505400000001010101010101010101010101010101546f809c70383e406c30aa0058c1100000180000000f0000000000000000000000000020000000fd003c788a8a1d010a202020202020000000fe004231353648414e31332e31200a00a9 diff --git a/.config/autorandr/postswitch b/.config/autorandr/postswitch new file mode 100755 index 000000000..c0a346ff1 --- /dev/null +++ b/.config/autorandr/postswitch @@ -0,0 +1,4 @@ +#!/bin/bash + +~/.config/polybar/launch.sh +~/.fehbg \ No newline at end of file diff --git a/.config/autostart/ClipMenu.desktop b/.config/autostart/ClipMenu.desktop new file mode 100644 index 000000000..07f030e2b --- /dev/null +++ b/.config/autostart/ClipMenu.desktop @@ -0,0 +1,13 @@ +[Desktop Entry] +Encoding=UTF-8 +Version=0.9.4 +Type=Application +Name=ClipMenu +Comment=Clipboard management using instamenu +Exec=clipmenud +OnlyShowIn=XFCE; +RunHook=0 +StartupNotify=false +Terminal=false +Hidden=false + diff --git a/.config/autostart/ProtonMail Bridge.desktop b/.config/autostart/ProtonMail Bridge.desktop new file mode 100644 index 000000000..867e93e14 --- /dev/null +++ b/.config/autostart/ProtonMail Bridge.desktop @@ -0,0 +1,5 @@ +[Desktop Entry] +Type=Application +Name=ProtonMail Bridge +Exec="/opt/protonmail-bridge/proton-bridge" "--no-window" +X-GNOME-Autostart-enabled=true diff --git a/.config/autostart/i3-gaps.desktop b/.config/autostart/i3-gaps.desktop new file mode 100644 index 000000000..88c9bf050 --- /dev/null +++ b/.config/autostart/i3-gaps.desktop @@ -0,0 +1,13 @@ +[Desktop Entry] +Encoding=UTF-8 +Version=0.9.4 +Type=Application +Name=i3-gaps +Comment=A fork of i3wm tiling window manager with more features, including gaps +Exec=i3 +OnlyShowIn=XFCE; +RunHook=0 +StartupNotify=false +Terminal=false +Hidden=false + diff --git a/.config/balena-etcher-electron/Cache/1607ac23e0e660d9_0 b/.config/balena-etcher-electron/Cache/1607ac23e0e660d9_0 new file mode 100644 index 000000000..fc025d792 Binary files /dev/null and b/.config/balena-etcher-electron/Cache/1607ac23e0e660d9_0 differ diff --git a/.config/balena-etcher-electron/Cache/a8c54544e7898eb6_0 b/.config/balena-etcher-electron/Cache/a8c54544e7898eb6_0 new file mode 100644 index 000000000..4c88a0294 Binary files /dev/null and b/.config/balena-etcher-electron/Cache/a8c54544e7898eb6_0 differ diff --git a/.config/balena-etcher-electron/Cache/index b/.config/balena-etcher-electron/Cache/index new file mode 100644 index 000000000..79bd403ac Binary files /dev/null and b/.config/balena-etcher-electron/Cache/index differ diff --git a/.config/balena-etcher-electron/Cache/index-dir/the-real-index b/.config/balena-etcher-electron/Cache/index-dir/the-real-index new file mode 100644 index 000000000..35f4ecb39 Binary files /dev/null and b/.config/balena-etcher-electron/Cache/index-dir/the-real-index differ diff --git a/.config/balena-etcher-electron/Code Cache/js/index b/.config/balena-etcher-electron/Code Cache/js/index new file mode 100644 index 000000000..79bd403ac Binary files /dev/null and b/.config/balena-etcher-electron/Code Cache/js/index differ diff --git a/.config/balena-etcher-electron/Code Cache/js/index-dir/the-real-index b/.config/balena-etcher-electron/Code Cache/js/index-dir/the-real-index new file mode 100644 index 000000000..41268bf25 Binary files /dev/null and b/.config/balena-etcher-electron/Code Cache/js/index-dir/the-real-index differ diff --git a/.config/balena-etcher-electron/Code Cache/wasm/index b/.config/balena-etcher-electron/Code Cache/wasm/index new file mode 100644 index 000000000..79bd403ac Binary files /dev/null and b/.config/balena-etcher-electron/Code Cache/wasm/index differ diff --git a/.config/balena-etcher-electron/Code Cache/wasm/index-dir/the-real-index b/.config/balena-etcher-electron/Code Cache/wasm/index-dir/the-real-index new file mode 100644 index 000000000..41268bf25 Binary files /dev/null and b/.config/balena-etcher-electron/Code Cache/wasm/index-dir/the-real-index differ diff --git a/.config/balena-etcher-electron/Cookies b/.config/balena-etcher-electron/Cookies new file mode 100644 index 000000000..7b055d51d Binary files /dev/null and b/.config/balena-etcher-electron/Cookies differ diff --git a/.config/balena-etcher-electron/Cookies-journal b/.config/balena-etcher-electron/Cookies-journal new file mode 100644 index 000000000..e69de29bb diff --git a/.config/balena-etcher-electron/Dictionaries/en-GB-9-0.bdic b/.config/balena-etcher-electron/Dictionaries/en-GB-9-0.bdic new file mode 100644 index 000000000..2baa24821 Binary files /dev/null and b/.config/balena-etcher-electron/Dictionaries/en-GB-9-0.bdic differ diff --git a/.config/balena-etcher-electron/GPUCache/data_0 b/.config/balena-etcher-electron/GPUCache/data_0 new file mode 100644 index 000000000..d76fb77e9 Binary files /dev/null and b/.config/balena-etcher-electron/GPUCache/data_0 differ diff --git a/.config/balena-etcher-electron/GPUCache/data_1 b/.config/balena-etcher-electron/GPUCache/data_1 new file mode 100644 index 000000000..1112b20da Binary files /dev/null and b/.config/balena-etcher-electron/GPUCache/data_1 differ diff --git a/.config/balena-etcher-electron/GPUCache/data_2 b/.config/balena-etcher-electron/GPUCache/data_2 new file mode 100644 index 000000000..c7e2eb9ad Binary files /dev/null and b/.config/balena-etcher-electron/GPUCache/data_2 differ diff --git a/.config/balena-etcher-electron/GPUCache/data_3 b/.config/balena-etcher-electron/GPUCache/data_3 new file mode 100644 index 000000000..5eec97358 Binary files /dev/null and b/.config/balena-etcher-electron/GPUCache/data_3 differ diff --git a/.config/balena-etcher-electron/GPUCache/index b/.config/balena-etcher-electron/GPUCache/index new file mode 100644 index 000000000..e75f6f27d Binary files /dev/null and b/.config/balena-etcher-electron/GPUCache/index differ diff --git a/.config/balena-etcher-electron/Local Storage/leveldb/000003.log b/.config/balena-etcher-electron/Local Storage/leveldb/000003.log new file mode 100644 index 000000000..e69de29bb diff --git a/.config/balena-etcher-electron/Local Storage/leveldb/CURRENT b/.config/balena-etcher-electron/Local Storage/leveldb/CURRENT new file mode 100644 index 000000000..7ed683d17 --- /dev/null +++ b/.config/balena-etcher-electron/Local Storage/leveldb/CURRENT @@ -0,0 +1 @@ +MANIFEST-000001 diff --git a/.config/balena-etcher-electron/Local Storage/leveldb/LOCK b/.config/balena-etcher-electron/Local Storage/leveldb/LOCK new file mode 100644 index 000000000..e69de29bb diff --git a/.config/balena-etcher-electron/Local Storage/leveldb/LOG b/.config/balena-etcher-electron/Local Storage/leveldb/LOG new file mode 100644 index 000000000..fcaa488f0 --- /dev/null +++ b/.config/balena-etcher-electron/Local Storage/leveldb/LOG @@ -0,0 +1,3 @@ +2021/01/06-19:12:43.610 1af06 Reusing MANIFEST /home/dt/.config/balena-etcher-electron/Local Storage/leveldb/MANIFEST-000001 +2021/01/06-19:12:43.610 1af06 Recovering log #3 +2021/01/06-19:12:43.610 1af06 Reusing old log /home/dt/.config/balena-etcher-electron/Local Storage/leveldb/000003.log diff --git a/.config/balena-etcher-electron/Local Storage/leveldb/LOG.old b/.config/balena-etcher-electron/Local Storage/leveldb/LOG.old new file mode 100644 index 000000000..509dddfaf --- /dev/null +++ b/.config/balena-etcher-electron/Local Storage/leveldb/LOG.old @@ -0,0 +1,3 @@ +2021/01/06-19:12:19.699 1ad1f Reusing MANIFEST /home/dt/.config/balena-etcher-electron/Local Storage/leveldb/MANIFEST-000001 +2021/01/06-19:12:19.700 1ad1f Recovering log #3 +2021/01/06-19:12:19.700 1ad1f Reusing old log /home/dt/.config/balena-etcher-electron/Local Storage/leveldb/000003.log diff --git a/.config/balena-etcher-electron/Local Storage/leveldb/MANIFEST-000001 b/.config/balena-etcher-electron/Local Storage/leveldb/MANIFEST-000001 new file mode 100644 index 000000000..18e5cab72 Binary files /dev/null and b/.config/balena-etcher-electron/Local Storage/leveldb/MANIFEST-000001 differ diff --git a/.config/balena-etcher-electron/Network Persistent State b/.config/balena-etcher-electron/Network Persistent State new file mode 100644 index 000000000..da99d9c8b --- /dev/null +++ b/.config/balena-etcher-electron/Network Persistent State @@ -0,0 +1 @@ +{"net":{"http_server_properties":{"servers":[{"isolation":[],"server":"https://redirector.gvt1.com","supports_spdy":true}],"version":5},"network_qualities":{"CAASABiAgICA+P////8B":"4G","CAISABiAgICA+P////8B":"4G"}}} \ No newline at end of file diff --git a/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/02f710c51e1d358c_0 b/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/02f710c51e1d358c_0 new file mode 100644 index 000000000..644c829e2 Binary files /dev/null and b/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/02f710c51e1d358c_0 differ diff --git a/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/14d5139f09642ae7_0 b/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/14d5139f09642ae7_0 new file mode 100644 index 000000000..c9bb52e7f Binary files /dev/null and b/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/14d5139f09642ae7_0 differ diff --git a/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/18efbe29acffe740_0 b/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/18efbe29acffe740_0 new file mode 100644 index 000000000..09d908904 Binary files /dev/null and b/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/18efbe29acffe740_0 differ diff --git a/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/208193a4c5e3139c_0 b/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/208193a4c5e3139c_0 new file mode 100644 index 000000000..c68d69074 Binary files /dev/null and b/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/208193a4c5e3139c_0 differ diff --git a/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/2a0180585a187e12_0 b/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/2a0180585a187e12_0 new file mode 100644 index 000000000..e526dc280 Binary files /dev/null and b/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/2a0180585a187e12_0 differ diff --git a/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/4fc4f252d85eb52c_0 b/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/4fc4f252d85eb52c_0 new file mode 100644 index 000000000..387fb5b0a Binary files /dev/null and b/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/4fc4f252d85eb52c_0 differ diff --git a/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/57f9a27e5d57daf4_0 b/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/57f9a27e5d57daf4_0 new file mode 100644 index 000000000..78dd6d2af Binary files /dev/null and b/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/57f9a27e5d57daf4_0 differ diff --git a/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/5fc4d2d6b9257e72_0 b/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/5fc4d2d6b9257e72_0 new file mode 100644 index 000000000..d294b9df5 Binary files /dev/null and b/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/5fc4d2d6b9257e72_0 differ diff --git a/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/6218a58fb9f2d34d_0 b/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/6218a58fb9f2d34d_0 new file mode 100644 index 000000000..a7173ecf2 Binary files /dev/null and b/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/6218a58fb9f2d34d_0 differ diff --git a/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/64b11c961b3fc1c1_0 b/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/64b11c961b3fc1c1_0 new file mode 100644 index 000000000..930ebb2bd Binary files /dev/null and b/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/64b11c961b3fc1c1_0 differ diff --git a/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/6c2731b5399753e0_0 b/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/6c2731b5399753e0_0 new file mode 100644 index 000000000..649f1ddee Binary files /dev/null and b/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/6c2731b5399753e0_0 differ diff --git a/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/7f63ae6a57aec28b_0 b/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/7f63ae6a57aec28b_0 new file mode 100644 index 000000000..202e881c9 Binary files /dev/null and b/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/7f63ae6a57aec28b_0 differ diff --git a/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/86a216a25851d9b9_0 b/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/86a216a25851d9b9_0 new file mode 100644 index 000000000..2408b37fc Binary files /dev/null and b/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/86a216a25851d9b9_0 differ diff --git a/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/a4180ce667de2c37_0 b/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/a4180ce667de2c37_0 new file mode 100644 index 000000000..9096b76f5 Binary files /dev/null and b/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/a4180ce667de2c37_0 differ diff --git a/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/aa0a8f56d5878db5_0 b/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/aa0a8f56d5878db5_0 new file mode 100644 index 000000000..f38162481 Binary files /dev/null and b/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/aa0a8f56d5878db5_0 differ diff --git a/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/b88070a62f7c86ba_0 b/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/b88070a62f7c86ba_0 new file mode 100644 index 000000000..224884b95 Binary files /dev/null and b/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/b88070a62f7c86ba_0 differ diff --git a/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/ba6ddd2b2d5faa0f_0 b/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/ba6ddd2b2d5faa0f_0 new file mode 100644 index 000000000..d45e47af6 Binary files /dev/null and b/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/ba6ddd2b2d5faa0f_0 differ diff --git a/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/c34aeb27e858d0b2_0 b/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/c34aeb27e858d0b2_0 new file mode 100644 index 000000000..a27858467 Binary files /dev/null and b/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/c34aeb27e858d0b2_0 differ diff --git a/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/d2f5424f50b0779b_0 b/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/d2f5424f50b0779b_0 new file mode 100644 index 000000000..3b50515cb Binary files /dev/null and b/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/d2f5424f50b0779b_0 differ diff --git a/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/d8a37b8d9f4874ff_0 b/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/d8a37b8d9f4874ff_0 new file mode 100644 index 000000000..6a499b293 Binary files /dev/null and b/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/d8a37b8d9f4874ff_0 differ diff --git a/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/daaec9670e3e5c7f_0 b/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/daaec9670e3e5c7f_0 new file mode 100644 index 000000000..1f4c9f683 Binary files /dev/null and b/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/daaec9670e3e5c7f_0 differ diff --git a/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/e396eab2c2f954ad_0 b/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/e396eab2c2f954ad_0 new file mode 100644 index 000000000..e9b554d80 Binary files /dev/null and b/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/e396eab2c2f954ad_0 differ diff --git a/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/f5dffaa20016e866_0 b/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/f5dffaa20016e866_0 new file mode 100644 index 000000000..4b80daf83 Binary files /dev/null and b/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/f5dffaa20016e866_0 differ diff --git a/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/index b/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/index new file mode 100644 index 000000000..79bd403ac Binary files /dev/null and b/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/index differ diff --git a/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/index-dir/the-real-index b/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/index-dir/the-real-index new file mode 100644 index 000000000..4ad012de8 Binary files /dev/null and b/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/js/index-dir/the-real-index differ diff --git a/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/wasm/index b/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/wasm/index new file mode 100644 index 000000000..79bd403ac Binary files /dev/null and b/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/wasm/index differ diff --git a/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/wasm/index-dir/the-real-index b/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/wasm/index-dir/the-real-index new file mode 100644 index 000000000..011e292a2 Binary files /dev/null and b/.config/balena-etcher-electron/Partitions/success-banner/Code Cache/wasm/index-dir/the-real-index differ diff --git a/.config/balena-etcher-electron/Partitions/success-banner/Cookies b/.config/balena-etcher-electron/Partitions/success-banner/Cookies new file mode 100644 index 000000000..5ddc57eaa Binary files /dev/null and b/.config/balena-etcher-electron/Partitions/success-banner/Cookies differ diff --git a/.config/balena-etcher-electron/Partitions/success-banner/Cookies-journal b/.config/balena-etcher-electron/Partitions/success-banner/Cookies-journal new file mode 100644 index 000000000..e69de29bb diff --git a/.config/balena-etcher-electron/Partitions/success-banner/GPUCache/data_0 b/.config/balena-etcher-electron/Partitions/success-banner/GPUCache/data_0 new file mode 100644 index 000000000..d76fb77e9 Binary files /dev/null and b/.config/balena-etcher-electron/Partitions/success-banner/GPUCache/data_0 differ diff --git a/.config/balena-etcher-electron/Partitions/success-banner/GPUCache/data_1 b/.config/balena-etcher-electron/Partitions/success-banner/GPUCache/data_1 new file mode 100644 index 000000000..105e703a5 Binary files /dev/null and b/.config/balena-etcher-electron/Partitions/success-banner/GPUCache/data_1 differ diff --git a/.config/balena-etcher-electron/Partitions/success-banner/GPUCache/data_2 b/.config/balena-etcher-electron/Partitions/success-banner/GPUCache/data_2 new file mode 100644 index 000000000..c7e2eb9ad Binary files /dev/null and b/.config/balena-etcher-electron/Partitions/success-banner/GPUCache/data_2 differ diff --git a/.config/balena-etcher-electron/Partitions/success-banner/GPUCache/data_3 b/.config/balena-etcher-electron/Partitions/success-banner/GPUCache/data_3 new file mode 100644 index 000000000..5eec97358 Binary files /dev/null and b/.config/balena-etcher-electron/Partitions/success-banner/GPUCache/data_3 differ diff --git a/.config/balena-etcher-electron/Partitions/success-banner/GPUCache/index b/.config/balena-etcher-electron/Partitions/success-banner/GPUCache/index new file mode 100644 index 000000000..e437060db Binary files /dev/null and b/.config/balena-etcher-electron/Partitions/success-banner/GPUCache/index differ diff --git a/.config/balena-etcher-electron/Partitions/success-banner/Local Storage/leveldb/000003.log b/.config/balena-etcher-electron/Partitions/success-banner/Local Storage/leveldb/000003.log new file mode 100644 index 000000000..69ec55d75 Binary files /dev/null and b/.config/balena-etcher-electron/Partitions/success-banner/Local Storage/leveldb/000003.log differ diff --git a/.config/balena-etcher-electron/Partitions/success-banner/Local Storage/leveldb/CURRENT b/.config/balena-etcher-electron/Partitions/success-banner/Local Storage/leveldb/CURRENT new file mode 100644 index 000000000..7ed683d17 --- /dev/null +++ b/.config/balena-etcher-electron/Partitions/success-banner/Local Storage/leveldb/CURRENT @@ -0,0 +1 @@ +MANIFEST-000001 diff --git a/.config/balena-etcher-electron/Partitions/success-banner/Local Storage/leveldb/LOCK b/.config/balena-etcher-electron/Partitions/success-banner/Local Storage/leveldb/LOCK new file mode 100644 index 000000000..e69de29bb diff --git a/.config/balena-etcher-electron/Partitions/success-banner/Local Storage/leveldb/LOG b/.config/balena-etcher-electron/Partitions/success-banner/Local Storage/leveldb/LOG new file mode 100644 index 000000000..03e708bd7 --- /dev/null +++ b/.config/balena-etcher-electron/Partitions/success-banner/Local Storage/leveldb/LOG @@ -0,0 +1 @@ +2021/01/06-19:13:12.368 1af06 Reusing MANIFEST /home/dt/.config/balena-etcher-electron/Partitions/success-banner/Local Storage/leveldb/MANIFEST-000001 diff --git a/.config/balena-etcher-electron/Partitions/success-banner/Local Storage/leveldb/MANIFEST-000001 b/.config/balena-etcher-electron/Partitions/success-banner/Local Storage/leveldb/MANIFEST-000001 new file mode 100644 index 000000000..18e5cab72 Binary files /dev/null and b/.config/balena-etcher-electron/Partitions/success-banner/Local Storage/leveldb/MANIFEST-000001 differ diff --git a/.config/balena-etcher-electron/Partitions/success-banner/Network Persistent State b/.config/balena-etcher-electron/Partitions/success-banner/Network Persistent State new file mode 100644 index 000000000..a8c4585d0 --- /dev/null +++ b/.config/balena-etcher-electron/Partitions/success-banner/Network Persistent State @@ -0,0 +1 @@ +{"net":{"http_server_properties":{"servers":[{"isolation":[],"server":"https://code.jquery.com","supports_spdy":true},{"isolation":[],"server":"https://assets.balena.io","supports_spdy":true},{"isolation":[],"server":"https://stats.g.doubleclick.net","supports_spdy":true},{"isolation":[],"server":"https://api.balena-cloud.com","supports_spdy":true},{"isolation":[],"server":"https://fonts.googleapis.com","supports_spdy":true},{"isolation":[],"server":"https://www.google-analytics.com","supports_spdy":true},{"isolation":[],"server":"https://www.balena.io","supports_spdy":true},{"isolation":[],"server":"https://api.mixpanel.com","supports_spdy":true},{"isolation":[],"server":"https://d1l6p2sc9645hc.cloudfront.net","supports_spdy":true}],"version":5},"network_qualities":{"CAASABiAgICA+P////8B":"4G","CAISABiAgICA+P////8B":"4G"}}} \ No newline at end of file diff --git a/.config/balena-etcher-electron/Partitions/success-banner/Preferences b/.config/balena-etcher-electron/Partitions/success-banner/Preferences new file mode 100644 index 000000000..01c56288f --- /dev/null +++ b/.config/balena-etcher-electron/Partitions/success-banner/Preferences @@ -0,0 +1 @@ +{"spellcheck":{"dictionaries":["en-GB"],"dictionary":""}} \ No newline at end of file diff --git a/.config/balena-etcher-electron/Partitions/success-banner/Session Storage/000003.log b/.config/balena-etcher-electron/Partitions/success-banner/Session Storage/000003.log new file mode 100644 index 000000000..da7361ae0 Binary files /dev/null and b/.config/balena-etcher-electron/Partitions/success-banner/Session Storage/000003.log differ diff --git a/.config/balena-etcher-electron/Partitions/success-banner/Session Storage/CURRENT b/.config/balena-etcher-electron/Partitions/success-banner/Session Storage/CURRENT new file mode 100644 index 000000000..7ed683d17 --- /dev/null +++ b/.config/balena-etcher-electron/Partitions/success-banner/Session Storage/CURRENT @@ -0,0 +1 @@ +MANIFEST-000001 diff --git a/.config/balena-etcher-electron/Partitions/success-banner/Session Storage/LOCK b/.config/balena-etcher-electron/Partitions/success-banner/Session Storage/LOCK new file mode 100644 index 000000000..e69de29bb diff --git a/.config/balena-etcher-electron/Partitions/success-banner/Session Storage/LOG b/.config/balena-etcher-electron/Partitions/success-banner/Session Storage/LOG new file mode 100644 index 000000000..839d5eb39 --- /dev/null +++ b/.config/balena-etcher-electron/Partitions/success-banner/Session Storage/LOG @@ -0,0 +1 @@ +2021/01/06-19:15:58.597 1af07 Reusing MANIFEST /home/dt/.config/balena-etcher-electron/Partitions/success-banner/Session Storage/MANIFEST-000001 diff --git a/.config/balena-etcher-electron/Partitions/success-banner/Session Storage/MANIFEST-000001 b/.config/balena-etcher-electron/Partitions/success-banner/Session Storage/MANIFEST-000001 new file mode 100644 index 000000000..18e5cab72 Binary files /dev/null and b/.config/balena-etcher-electron/Partitions/success-banner/Session Storage/MANIFEST-000001 differ diff --git a/.config/balena-etcher-electron/Partitions/success-banner/TransportSecurity b/.config/balena-etcher-electron/Partitions/success-banner/TransportSecurity new file mode 100644 index 000000000..8ce25d14d --- /dev/null +++ b/.config/balena-etcher-electron/Partitions/success-banner/TransportSecurity @@ -0,0 +1,32 @@ +{ + "DE+wzTfHGijR/GSGeAY4LOIQxJxF4QxTPZtgl53M+nk=": { + "expiry": 1610565360.229567, + "mode": "force-https", + "sts_include_subdomains": true, + "sts_observed": 1609960560.229569 + }, + "JDwyCEcdfUMR74luGKUvghJv6ppP8/qQijiRTDI9CLw=": { + "expiry": 1641496559.958907, + "mode": "force-https", + "sts_include_subdomains": false, + "sts_observed": 1609960559.958908 + }, + "LAZkYS46RVRcFiZAzmUJrz6TJHBd4nwE6VxPWfPLYHs=": { + "expiry": 1620846794.57784, + "mode": "force-https", + "sts_include_subdomains": true, + "sts_observed": 1609960394.577843 + }, + "fJjUrPqhktMfiTHJX3Q0pJi/P12Q72DBgzzJqjlNC4o=": { + "expiry": 1620846959.887782, + "mode": "force-https", + "sts_include_subdomains": true, + "sts_observed": 1609960559.887784 + }, + "nAuqgR4iEWti7SOdT3UHPl6rmZU/DeaIm38P2O2OkgA=": { + "expiry": 1641496559.699657, + "mode": "force-https", + "sts_include_subdomains": false, + "sts_observed": 1609960559.699658 + } +} diff --git a/.config/balena-etcher-electron/Preferences b/.config/balena-etcher-electron/Preferences new file mode 100644 index 000000000..01c56288f --- /dev/null +++ b/.config/balena-etcher-electron/Preferences @@ -0,0 +1 @@ +{"spellcheck":{"dictionaries":["en-GB"],"dictionary":""}} \ No newline at end of file diff --git a/.config/balena-etcher-electron/Session Storage/000003.log b/.config/balena-etcher-electron/Session Storage/000003.log new file mode 100644 index 000000000..c270ad2ca Binary files /dev/null and b/.config/balena-etcher-electron/Session Storage/000003.log differ diff --git a/.config/balena-etcher-electron/Session Storage/CURRENT b/.config/balena-etcher-electron/Session Storage/CURRENT new file mode 100644 index 000000000..7ed683d17 --- /dev/null +++ b/.config/balena-etcher-electron/Session Storage/CURRENT @@ -0,0 +1 @@ +MANIFEST-000001 diff --git a/.config/balena-etcher-electron/Session Storage/LOCK b/.config/balena-etcher-electron/Session Storage/LOCK new file mode 100644 index 000000000..e69de29bb diff --git a/.config/balena-etcher-electron/Session Storage/LOG b/.config/balena-etcher-electron/Session Storage/LOG new file mode 100644 index 000000000..b282a7591 --- /dev/null +++ b/.config/balena-etcher-electron/Session Storage/LOG @@ -0,0 +1,3 @@ +2021/01/06-19:12:52.165 1af09 Reusing MANIFEST /home/dt/.config/balena-etcher-electron/Session Storage/MANIFEST-000001 +2021/01/06-19:12:52.165 1af09 Recovering log #3 +2021/01/06-19:12:52.165 1af09 Reusing old log /home/dt/.config/balena-etcher-electron/Session Storage/000003.log diff --git a/.config/balena-etcher-electron/Session Storage/LOG.old b/.config/balena-etcher-electron/Session Storage/LOG.old new file mode 100644 index 000000000..f70fdb1d1 --- /dev/null +++ b/.config/balena-etcher-electron/Session Storage/LOG.old @@ -0,0 +1,3 @@ +2021/01/06-19:12:20.229 1ad34 Reusing MANIFEST /home/dt/.config/balena-etcher-electron/Session Storage/MANIFEST-000001 +2021/01/06-19:12:20.229 1ad34 Recovering log #3 +2021/01/06-19:12:20.229 1ad34 Reusing old log /home/dt/.config/balena-etcher-electron/Session Storage/000003.log diff --git a/.config/balena-etcher-electron/Session Storage/MANIFEST-000001 b/.config/balena-etcher-electron/Session Storage/MANIFEST-000001 new file mode 100644 index 000000000..18e5cab72 Binary files /dev/null and b/.config/balena-etcher-electron/Session Storage/MANIFEST-000001 differ diff --git a/.config/bashtop/bashtop.cfg b/.config/bashtop/bashtop.cfg new file mode 100644 index 000000000..872c642a6 --- /dev/null +++ b/.config/bashtop/bashtop.cfg @@ -0,0 +1,52 @@ +#? Config file for bashtop v. 0.9.25 + +#* Color theme, looks for a .theme file in "$HOME/.config/bashtop/themes" and "$HOME/.config/bashtop/user_themes" +#* Should be prefixed with either "themes/" or "user_themes/" depending on location, "Default" for builtin default theme +color_theme="themes/monokai" + +#* Update time in milliseconds, increases automatically if set below internal loops processing time, recommended 2000 ms or above for better sample times for graphs +update_ms="500" + +#* Processes sorting, "pid" "program" "arguments" "threads" "user" "memory" "cpu lazy" "cpu responsive" +#* "cpu lazy" updates sorting over time, "cpu responsive" updates sorting directly +proc_sorting="memory" + +#* Reverse sorting order, "true" or "false" +proc_reversed="false" + +#* Show processes as a tree +proc_tree="false" + +#* Check cpu temperature, only works if "sensors", "vcgencmd" or "osx-cpu-temp" commands is available +check_temp="false" + +#* Draw a clock at top of screen, formatting according to strftime, empty string to disable +draw_clock="%X" + +#* Update main ui when menus are showing, set this to false if the menus is flickering too much for comfort +background_update="true" + +#* Custom cpu model name, empty string to disable +custom_cpu_name="" + +#* Enable error logging to "$HOME/.config/bashtop/error.log", "true" or "false" +error_logging="true" + +#* Show color gradient in process list, "true" or "false" +proc_gradient="true" + +#* If process cpu usage should be of the core it's running on or usage of the total available cpu power +proc_per_core="true" + +#* Optional filter for shown disks, should be names of mountpoints, "root" replaces "/", separate multiple values with space +disks_filter="" + +#* Enable check for new version from github.com/aristocratos/bashtop at start +update_check="true" + +#* Enable graphs with double the horizontal resolution, increases cpu usage +hires_graphs="true" + +#* Enable the use of psutil python3 module for data collection, default on OSX +use_psutil="true" + diff --git a/.config/bashtop/themes/default_black.theme b/.config/bashtop/themes/default_black.theme new file mode 100644 index 000000000..3a590a732 --- /dev/null +++ b/.config/bashtop/themes/default_black.theme @@ -0,0 +1,89 @@ +#Bashtop theme with default colors and black background +#by aristocratos + +# Colors should be in 6 or 2 character hexadecimal or single spaced rgb decimal: "#RRGGBB", "#BW" or "0-255 0-255 0-255" +# example for white: "#FFFFFF", "#ff" or "255 255 255". + +# All graphs and meters can be gradients +# For single color graphs leave "mid" and "end" variable empty. +# Use "start" and "end" variables for two color gradient +# Use "start", "mid" and "end" for three color gradient + +# Main background, empty for terminal default, need to be empty if you want transparent background +theme[main_bg]="#00" + +# Main text color +theme[main_fg]="#cc" + +# Title color for boxes +theme[title]="#ee" + +# Higlight color for keyboard shortcuts +theme[hi_fg]="#90" + +# Background color of selected item in processes box +theme[selected_bg]="#7e2626" + +# Foreground color of selected item in processes box +theme[selected_fg]="#ee" + +# Color of inactive/disabled text +theme[inactive_fg]="#40" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#0de756" + +# Cpu box outline color +theme[cpu_box]="#3d7b46" + +# Memory/disks box outline color +theme[mem_box]="#8a882e" + +# Net up/down box outline color +theme[net_box]="#423ba5" + +# Processes box outline color +theme[proc_box]="#923535" + +# Box divider line and small boxes line color +theme[div_line]="#30" + +# Temperature graph colors +theme[temp_start]="#4897d4" +theme[temp_mid]="#5474e8" +theme[temp_end]="#ff40b6" + +# CPU graph colors +theme[cpu_start]="#50f095" +theme[cpu_mid]="#f2e266" +theme[cpu_end]="#fa1e1e" + +# Mem/Disk free meter +theme[free_start]="#223014" +theme[free_mid]="#b5e685" +theme[free_end]="#dcff85" + +# Mem/Disk cached meter +theme[cached_start]="#0b1a29" +theme[cached_mid]="#74e6fc" +theme[cached_end]="#26c5ff" + +# Mem/Disk available meter +theme[available_start]="#292107" +theme[available_mid]="#ffd77a" +theme[available_end]="#ffb814" + +# Mem/Disk used meter +theme[used_start]="#3b1f1c" +theme[used_mid]="#d9626d" +theme[used_end]="#ff4769" + +# Download graph colors +theme[download_start]="#231a63" +theme[download_mid]="#4f43a3" +theme[download_end]="#b0a9de" + +# Upload graph colors +theme[upload_start]="#510554" +theme[upload_mid]="#7d4180" +theme[upload_end]="#dcafde" \ No newline at end of file diff --git a/.config/bashtop/themes/flat-remix-light.theme b/.config/bashtop/themes/flat-remix-light.theme new file mode 100644 index 000000000..db1afe41a --- /dev/null +++ b/.config/bashtop/themes/flat-remix-light.theme @@ -0,0 +1,89 @@ +#Bashtop theme with flat-remix colors +#by Daniel Ruiz de Alegría + +# Colors should be in 6 or 2 character hexadecimal or single spaced rgb decimal: "#RRGGBB", "#BW" or "0-255 0-255 0-255" +# example for white: "#ffffff", "#ff" or "255 255 255". + +# All graphs and meters can be gradients +# For single color graphs leave "mid" and "end" variable empty. +# Use "start" and "end" variables for two color gradient +# Use "start", "mid" and "end" for three color gradient + +# Main background, empty for terminal default, need to be empty if you want transparent background +theme[main_bg]="#e4e4e7" + +# Main text color +theme[main_fg]="#737680" + +# Title color for boxes +theme[title]="#272a34" + +# Higlight color for keyboard shortcuts +theme[hi_fg]="#90" + +# Background color of selected item in processes box +theme[selected_bg]="#b8174c" + +# Foreground color of selected item in processes box +theme[selected_fg]="#ff" + +# Color of inactive/disabled text +theme[inactive_fg]="#40" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#367bf0" + +# Cpu box outline color +theme[cpu_box]="#367bf0" + +# Memory/disks box outline color +theme[mem_box]="#19a187" + +# Net up/down box outline color +theme[net_box]="#fd3535" + +# Processes box outline color +theme[proc_box]="#4aaee6" + +# Box divider line and small boxes line color +theme[div_line]="#50" + +# Temperature graph colors +theme[temp_start]="#367bf0" +theme[temp_mid]="#b8174c" +theme[temp_end]="#d41919" + +# CPU graph colors +theme[cpu_start]="#367bf0" +theme[cpu_mid]="#4aaee6" +theme[cpu_end]="#54bd8e" + +# Mem/Disk free meter +theme[free_start]="#811035" +theme[free_mid]="#b8174c" +theme[free_end]="#d41919" + +# Mem/Disk cached meter +theme[cached_start]="#2656a8" +theme[cached_mid]="#4aaee6" +theme[cached_end]="#23bac2" + +# Mem/Disk available meter +theme[available_start]="#fea44c" +theme[available_mid]="#fd7d00" +theme[available_end]="#fe7171" + +# Mem/Disk used meter +theme[used_start]="#12715f" +theme[used_mid]="#19a187" +theme[used_end]="#23bac2" + +# Download graph colors +theme[download_start]="#367bf0" +theme[download_mid]="#19a187" +theme[download_end]="#4aaee6" + +# Upload graph colors +theme[upload_start]="#8c42ab" +theme[upload_mid]="#b8174c" +theme[upload_end]="#d41919" diff --git a/.config/bashtop/themes/flat-remix.theme b/.config/bashtop/themes/flat-remix.theme new file mode 100644 index 000000000..54585e7b3 --- /dev/null +++ b/.config/bashtop/themes/flat-remix.theme @@ -0,0 +1,89 @@ +#Bashtop theme with flat-remix colors +#by Daniel Ruiz de Alegría + +# Colors should be in 6 or 2 character hexadecimal or single spaced rgb decimal: "#RRGGBB", "#BW" or "0-255 0-255 0-255" +# example for white: "#ffffff", "#ff" or "255 255 255". + +# All graphs and meters can be gradients +# For single color graphs leave "mid" and "end" variable empty. +# Use "start" and "end" variables for two color gradient +# Use "start", "mid" and "end" for three color gradient + +# Main background, empty for terminal default, need to be empty if you want transparent background +theme[main_bg]="" + +# Main text color +theme[main_fg]="#E6E6E6" + +# Title color for boxes +theme[title]="#ff" + +# Higlight color for keyboard shortcuts +theme[hi_fg]="#90" + +# Background color of selected item in processes box +theme[selected_bg]="#b8174c" + +# Foreground color of selected item in processes box +theme[selected_fg]="#ff" + +# Color of inactive/disabled text +theme[inactive_fg]="#40" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#367bf0" + +# Cpu box outline color +theme[cpu_box]="#367bf0" + +# Memory/disks box outline color +theme[mem_box]="#19a187" + +# Net up/down box outline color +theme[net_box]="#fd3535" + +# Processes box outline color +theme[proc_box]="#4aaee6" + +# Box divider line and small boxes line color +theme[div_line]="#50" + +# Temperature graph colors +theme[temp_start]="#367bf0" +theme[temp_mid]="#b8174c" +theme[temp_end]="#d41919" + +# CPU graph colors +theme[cpu_start]="#367bf0" +theme[cpu_mid]="#4aaee6" +theme[cpu_end]="#54bd8e" + +# Mem/Disk free meter +theme[free_start]="#811035" +theme[free_mid]="#b8174c" +theme[free_end]="#d41919" + +# Mem/Disk cached meter +theme[cached_start]="#2656a8" +theme[cached_mid]="#4aaee6" +theme[cached_end]="#23bac2" + +# Mem/Disk available meter +theme[available_start]="#fea44c" +theme[available_mid]="#fd7d00" +theme[available_end]="#fe7171" + +# Mem/Disk used meter +theme[used_start]="#12715f" +theme[used_mid]="#19a187" +theme[used_end]="#23bac2" + +# Download graph colors +theme[download_start]="#367bf0" +theme[download_mid]="#19a187" +theme[download_end]="#4aaee6" + +# Upload graph colors +theme[upload_start]="#8c42ab" +theme[upload_mid]="#b8174c" +theme[upload_end]="#d41919" diff --git a/.config/bashtop/themes/greyscale.theme b/.config/bashtop/themes/greyscale.theme new file mode 100644 index 000000000..442a82f9d --- /dev/null +++ b/.config/bashtop/themes/greyscale.theme @@ -0,0 +1,89 @@ +#Bashtop grayscale theme +#by aristocratos + +# Colors should be in 6 or 2 character hexadecimal or single spaced rgb decimal: "#RRGGBB", "#BW" or "0-255 0-255 0-255" +# example for white: "#FFFFFF", "#ff" or "255 255 255". + +# All graphs and meters can be gradients +# For single color graphs leave "mid" and "end" variable empty. +# Use "start" and "end" variables for two color gradient +# Use "start", "mid" and "end" for three color gradient + +# Main background, empty for terminal default, need to be empty if you want transparent background +theme[main_bg]="#00" + +# Main text color +theme[main_fg]="#bb" + +# Title color for boxes +theme[title]="#cc" + +# Higlight color for keyboard shortcuts +theme[hi_fg]="#90" + +# Background color of selected item in processes box +theme[selected_bg]="#ff" + +# Foreground color of selected item in processes box +theme[selected_fg]="#00" + +# Color of inactive/disabled text +theme[inactive_fg]="#30" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#90" + +# Cpu box outline color +theme[cpu_box]="#90" + +# Memory/disks box outline color +theme[mem_box]="#90" + +# Net up/down box outline color +theme[net_box]="#90" + +# Processes box outline color +theme[proc_box]="#90" + +# Box divider line and small boxes line color +theme[div_line]="#30" + +# Temperature graph colors +theme[temp_start]="#50" +theme[temp_mid]="" +theme[temp_end]="#ff" + +# CPU graph colors +theme[cpu_start]="#50" +theme[cpu_mid]="" +theme[cpu_end]="#ff" + +# Mem/Disk free meter +theme[free_start]="#50" +theme[free_mid]="" +theme[free_end]="#ff" + +# Mem/Disk cached meter +theme[cached_start]="#50" +theme[cached_mid]="" +theme[cached_end]="#ff" + +# Mem/Disk available meter +theme[available_start]="#50" +theme[available_mid]="" +theme[available_end]="#ff" + +# Mem/Disk used meter +theme[used_start]="#50" +theme[used_mid]="" +theme[used_end]="#ff" + +# Download graph colors +theme[download_start]="#30" +theme[download_mid]="" +theme[download_end]="#ff" + +# Upload graph colors +theme[upload_start]="#30" +theme[upload_mid]="" +theme[upload_end]="#ff" \ No newline at end of file diff --git a/.config/bashtop/themes/gruvbox_dark.theme b/.config/bashtop/themes/gruvbox_dark.theme new file mode 100644 index 000000000..0399b03b6 --- /dev/null +++ b/.config/bashtop/themes/gruvbox_dark.theme @@ -0,0 +1,89 @@ +#Bashtop gruvbox (https://github.com/morhetz/gruvbox) theme +#by BachoSeven + +# Colors should be in 6 or 2 character hexadecimal or single spaced rgb decimal: "#RRGGBB", "#BW" or "0-255 0-255 0-255" +# example for white: "#FFFFFF", "#ff" or "255 255 255". + +# All graphs and meters can be gradients +# For single color graphs leave "mid" and "end" variable empty. +# Use "start" and "end" variables for two color gradient +# Use "start", "mid" and "end" for three color gradient + +# Main background, empty for terminal default, need to be empty if you want transparent background +theme[main_bg]="#1d2021" + +# Main text color +theme[main_fg]="#a89984" + +# Title color for boxes +theme[title]="#ebdbb2" + +# Higlight color for keyboard shortcuts +theme[hi_fg]="#d79921" + +# Background color of selected items +theme[selected_bg]="#282828" + +# Foreground color of selected items +theme[selected_fg]="#fabd2f" + +# Color of inactive/disabled text +theme[inactive_fg]="#282828" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#98971a" + +# Cpu box outline color +theme[cpu_box]="#a89984" + +# Memory/disks box outline color +theme[mem_box]="#a89984" + +# Net up/down box outline color +theme[net_box]="#a89984" + +# Processes box outline color +theme[proc_box]="#a89984" + +# Box divider line and small boxes line color +theme[div_line]="#a89984" + +# Temperature graph colors +theme[temp_start]="#458588" +theme[temp_mid]="#d3869b" +theme[temp_end]="#fb4394" + +# CPU graph colors +theme[cpu_start]="#b8bb26" +theme[cpu_mid]="#d79921" +theme[cpu_end]="#fb4934" + +# Mem/Disk free meter +theme[free_start]="#4e5900" +theme[free_mid]="" +theme[free_end]="#98971a" + +# Mem/Disk cached meter +theme[cached_start]="#458588" +theme[cached_mid]="" +theme[cached_end]="#83a598" + +# Mem/Disk available meter +theme[available_start]="#d79921" +theme[available_mid]="" +theme[available_end]="#fabd2f" + +# Mem/Disk used meter +theme[used_start]="#cc241d" +theme[used_mid]="" +theme[used_end]="#fb4934" + +# Download graph colors +theme[download_start]="#3d4070" +theme[download_mid]="#6c71c4" +theme[download_end]="#a3a8f7" + +# Upload graph colors +theme[upload_start]="#701c45" +theme[upload_mid]="#b16286" +theme[upload_end]="#d3869b" diff --git a/.config/bashtop/themes/monokai.theme b/.config/bashtop/themes/monokai.theme new file mode 100644 index 000000000..6cdec1a20 --- /dev/null +++ b/.config/bashtop/themes/monokai.theme @@ -0,0 +1,89 @@ +#Bashtop monokai theme +#by aristocratos + +# Colors should be in 6 or 2 character hexadecimal or single spaced rgb decimal: "#RRGGBB", "#BW" or "0-255 0-255 0-255" +# example for white: "#FFFFFF", "#ff" or "255 255 255". + +# All graphs and meters can be gradients +# For single color graphs leave "mid" and "end" variable empty. +# Use "start" and "end" variables for two color gradient +# Use "start", "mid" and "end" for three color gradient + +# Main background, empty for terminal default, need to be empty if you want transparent background +theme[main_bg]="" + +# Main text color +theme[main_fg]="#F8F8F2" + +# Title color for boxes +theme[title]="#F8F8F2" + +# Higlight color for keyboard shortcuts +theme[hi_fg]="#F92672" + +# Background color of selected item in processes box +theme[selected_bg]="#7a1137" + +# Foreground color of selected item in processes box +theme[selected_fg]="#F8F8F2" + +# Color of inactive/disabled text +theme[inactive_fg]="#595647" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#A6E22E" + +# Cpu box outline color +theme[cpu_box]="#75715E" + +# Memory/disks box outline color +theme[mem_box]="#75715E" + +# Net up/down box outline color +theme[net_box]="#75715E" + +# Processes box outline color +theme[proc_box]="#75715E" + +# Box divider line and small boxes line color +theme[div_line]="#595647" + +# Temperature graph colors +theme[temp_start]="#7976B7" +theme[temp_mid]="#D8B8B2" +theme[temp_end]="#F92672" + +# CPU graph colors +theme[cpu_start]="#A6E22E" +theme[cpu_mid]="#F8F8F2" #b05475" +theme[cpu_end]="#F92672" + +# Mem/Disk free meter +theme[free_start]="#75715E" +theme[free_mid]="#a9c474" +theme[free_end]="#e2f5bc" + +# Mem/Disk cached meter +theme[cached_start]="#75715E" +theme[cached_mid]="#66D9EF" +theme[cached_end]="#aae7f2" + +# Mem/Disk available meter +theme[available_start]="#75715E" +theme[available_mid]="#E6DB74" +theme[available_end]="#f2ecb6" + +# Mem/Disk used meter +theme[used_start]="#75715E" +theme[used_mid]="#F92672" +theme[used_end]="#ff87b2" + +# Download graph colors +theme[download_start]="#2d2042" +theme[download_mid]="#7352a8" +theme[download_end]="#ccaefc" + +# Upload graph colors +theme[upload_start]="#570d33" +theme[upload_mid]="#cf277d" +theme[upload_end]="#fa91c7" diff --git a/.config/bashtop/themes/nord.theme b/.config/bashtop/themes/nord.theme new file mode 100644 index 000000000..07c43c278 --- /dev/null +++ b/.config/bashtop/themes/nord.theme @@ -0,0 +1,89 @@ +#Bashtop theme with nord palette (https://www.nordtheme.com) +#by Justin Zobel + +# Colors should be in 6 or 2 character hexadecimal or single spaced rgb decimal: "#RRGGBB", "#BW" or "0-255 0-255 0-255" +# example for white: "#ffffff", "#ff" or "255 255 255". + +# All graphs and meters can be gradients +# For single color graphs leave "mid" and "end" variable empty. +# Use "start" and "end" variables for two color gradient +# Use "start", "mid" and "end" for three color gradient + +# Main background, empty for terminal default, need to be empty if you want transparent background +theme[main_bg]="#2E3440" + +# Main text color +theme[main_fg]="#D8DEE9" + +# Title color for boxes +theme[title]="#8FBCBB" + +# Higlight color for keyboard shortcuts +theme[hi_fg]="#5E81AC" + +# Background color of selected item in processes box +theme[selected_bg]="#4C566A" + +# Foreground color of selected item in processes box +theme[selected_fg]="#ECEFF4" + +# Color of inactive/disabled text +theme[inactive_fg]="#4C566A" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#5E81AC" + +# Cpu box outline color +theme[cpu_box]="#4C566A" + +# Memory/disks box outline color +theme[mem_box]="#4C566A" + +# Net up/down box outline color +theme[net_box]="#4C566A" + +# Processes box outline color +theme[proc_box]="#4C566A" + +# Box divider line and small boxes line color +theme[div_line]="#4C566A" + +# Temperature graph colors +theme[temp_start]="#81A1C1" +theme[temp_mid]="#88C0D0" +theme[temp_end]="#ECEFF4" + +# CPU graph colors +theme[cpu_start]="#81A1C1" +theme[cpu_mid]="#88C0D0" +theme[cpu_end]="#ECEFF4" + +# Mem/Disk free meter +theme[free_start]="#81A1C1" +theme[free_mid]="#88C0D0" +theme[free_end]="#ECEFF4" + +# Mem/Disk cached meter +theme[cached_start]="#81A1C1" +theme[cached_mid]="#88C0D0" +theme[cached_end]="#ECEFF4" + +# Mem/Disk available meter +theme[available_start]="#81A1C1" +theme[available_mid]="#88C0D0" +theme[available_end]="#ECEFF4" + +# Mem/Disk used meter +theme[used_start]="#81A1C1" +theme[used_mid]="#88C0D0" +theme[used_end]="#ECEFF4" + +# Download graph colors +theme[download_start]="#81A1C1" +theme[download_mid]="#88C0D0" +theme[download_end]="#ECEFF4" + +# Upload graph colors +theme[upload_start]="#81A1C1" +theme[upload_mid]="#88C0D0" +theme[upload_end]="#ECEFF4" diff --git a/.config/bashtop/themes/solarized_dark.theme b/.config/bashtop/themes/solarized_dark.theme new file mode 100644 index 000000000..606982329 --- /dev/null +++ b/.config/bashtop/themes/solarized_dark.theme @@ -0,0 +1,89 @@ +#Bashtop solarized theme +#by aristocratos + +# Colors should be in 6 or 2 character hexadecimal or single spaced rgb decimal: "#RRGGBB", "#BW" or "0-255 0-255 0-255" +# example for white: "#FFFFFF", "#ff" or "255 255 255". + +# All graphs and meters can be gradients +# For single color graphs leave "mid" and "end" variable empty. +# Use "start" and "end" variables for two color gradient +# Use "start", "mid" and "end" for three color gradient + +# Main background, empty for terminal default, need to be empty if you want transparent background +theme[main_bg]="#002b36" + +# Main text color +theme[main_fg]="#eee8d5" + +# Title color for boxes +theme[title]="#fdf6e3" + +# Higlight color for keyboard shortcuts +theme[hi_fg]="#b58900" + +# Background color of selected items +theme[selected_bg]="#073642" + +# Foreground color of selected items +theme[selected_fg]="#d6a200" + +# Color of inactive/disabled text +theme[inactive_fg]="#073642" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#bad600" + +# Cpu box outline color +theme[cpu_box]="#586e75" + +# Memory/disks box outline color +theme[mem_box]="#586e75" + +# Net up/down box outline color +theme[net_box]="#586e75" + +# Processes box outline color +theme[proc_box]="#586e75" + +# Box divider line and small boxes line color +theme[div_line]="#586e75" + +# Temperature graph colors +theme[temp_start]="#268bd2" +theme[temp_mid]="#ccb5f7" +theme[temp_end]="#fc5378" + +# CPU graph colors +theme[cpu_start]="#adc700" +theme[cpu_mid]="#d6a200" +theme[cpu_end]="#e65317" + +# Mem/Disk free meter +theme[free_start]="#4e5900" +theme[free_mid]="" +theme[free_end]="#bad600" + +# Mem/Disk cached meter +theme[cached_start]="#114061" +theme[cached_mid]="" +theme[cached_end]="#268bd2" + +# Mem/Disk available meter +theme[available_start]="#705500" +theme[available_mid]="" +theme[available_end]="#edb400" + +# Mem/Disk used meter +theme[used_start]="#6e1718" +theme[used_mid]="" +theme[used_end]="#e02f30" + +# Download graph colors +theme[download_start]="#3d4070" +theme[download_mid]="#6c71c4" +theme[download_end]="#a3a8f7" + +# Upload graph colors +theme[upload_start]="#701c45" +theme[upload_mid]="#d33682" +theme[upload_end]="#f56caf" \ No newline at end of file diff --git a/.config/bashtop/themes/whiteout.theme b/.config/bashtop/themes/whiteout.theme new file mode 100644 index 000000000..23c8ebea7 --- /dev/null +++ b/.config/bashtop/themes/whiteout.theme @@ -0,0 +1,89 @@ +#Bashtop "whiteout" theme +#by aristocratos + +# Colors should be in 6 or 2 character hexadecimal or single spaced rgb decimal: "#RRGGBB", "#BW" or "0-255 0-255 0-255" +# example for white: "#FFFFFF", "#ff" or "255 255 255". + +# All graphs and meters can be gradients +# For single color graphs leave "mid" and "end" variable empty. +# Use "start" and "end" variables for two color gradient +# Use "start", "mid" and "end" for three color gradient + +# Main background, empty for terminal default, need to be empty if you want transparent background +theme[main_bg]="#ff" + +# Main text color +theme[main_fg]="#30" + +# Title color for boxes +theme[title]="#10" + +# Higlight color for keyboard shortcuts +theme[hi_fg]="#284d75" + +# Background color of selected item in processes box +theme[selected_bg]="#15283d" + +# Foreground color of selected item in processes box +theme[selected_fg]="#ff" + +# Color of inactive/disabled text +theme[inactive_fg]="#dd" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#03521d" + +# Cpu box outline color +theme[cpu_box]="#1a361e" + +# Memory/disks box outline color +theme[mem_box]="#3d3c14" + +# Net up/down box outline color +theme[net_box]="#1a1742" + +# Processes box outline color +theme[proc_box]="#3b1515" + +# Box divider line and small boxes line color +theme[div_line]="#80" + +# Temperature graph colors +theme[temp_start]="#184567" +theme[temp_mid]="#122c87" +theme[temp_end]="#9e0061" + +# CPU graph colors +theme[cpu_start]="#0b8e44" +theme[cpu_mid]="#a49104" +theme[cpu_end]="#8d0202" + +# Mem/Disk free meter +theme[free_start]="#b0d090" +theme[free_mid]="#70ba26" +theme[free_end]="#496600" + +# Mem/Disk cached meter +theme[cached_start]="#26c5ff" +theme[cached_mid]="#74e6fc" +theme[cached_end]="#0b1a29" + +# Mem/Disk available meter +theme[available_start]="#ffb814" +theme[available_mid]="#ffd77a" +theme[available_end]="#292107" + +# Mem/Disk used meter +theme[used_start]="#ff4769" +theme[used_mid]="#d9626d" +theme[used_end]="#3b1f1c" + +# Download graph colors +theme[download_start]="#8d82de" +theme[download_mid]="#413786" +theme[download_end]="#130f29" + +# Upload graph colors +theme[upload_start]="#f590f9" +theme[upload_mid]="#722e76" +theme[upload_end]="#2b062d" \ No newline at end of file diff --git a/.config/bashtop/user_themes/monokai.theme b/.config/bashtop/user_themes/monokai.theme new file mode 100644 index 000000000..6cdec1a20 --- /dev/null +++ b/.config/bashtop/user_themes/monokai.theme @@ -0,0 +1,89 @@ +#Bashtop monokai theme +#by aristocratos + +# Colors should be in 6 or 2 character hexadecimal or single spaced rgb decimal: "#RRGGBB", "#BW" or "0-255 0-255 0-255" +# example for white: "#FFFFFF", "#ff" or "255 255 255". + +# All graphs and meters can be gradients +# For single color graphs leave "mid" and "end" variable empty. +# Use "start" and "end" variables for two color gradient +# Use "start", "mid" and "end" for three color gradient + +# Main background, empty for terminal default, need to be empty if you want transparent background +theme[main_bg]="" + +# Main text color +theme[main_fg]="#F8F8F2" + +# Title color for boxes +theme[title]="#F8F8F2" + +# Higlight color for keyboard shortcuts +theme[hi_fg]="#F92672" + +# Background color of selected item in processes box +theme[selected_bg]="#7a1137" + +# Foreground color of selected item in processes box +theme[selected_fg]="#F8F8F2" + +# Color of inactive/disabled text +theme[inactive_fg]="#595647" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#A6E22E" + +# Cpu box outline color +theme[cpu_box]="#75715E" + +# Memory/disks box outline color +theme[mem_box]="#75715E" + +# Net up/down box outline color +theme[net_box]="#75715E" + +# Processes box outline color +theme[proc_box]="#75715E" + +# Box divider line and small boxes line color +theme[div_line]="#595647" + +# Temperature graph colors +theme[temp_start]="#7976B7" +theme[temp_mid]="#D8B8B2" +theme[temp_end]="#F92672" + +# CPU graph colors +theme[cpu_start]="#A6E22E" +theme[cpu_mid]="#F8F8F2" #b05475" +theme[cpu_end]="#F92672" + +# Mem/Disk free meter +theme[free_start]="#75715E" +theme[free_mid]="#a9c474" +theme[free_end]="#e2f5bc" + +# Mem/Disk cached meter +theme[cached_start]="#75715E" +theme[cached_mid]="#66D9EF" +theme[cached_end]="#aae7f2" + +# Mem/Disk available meter +theme[available_start]="#75715E" +theme[available_mid]="#E6DB74" +theme[available_end]="#f2ecb6" + +# Mem/Disk used meter +theme[used_start]="#75715E" +theme[used_mid]="#F92672" +theme[used_end]="#ff87b2" + +# Download graph colors +theme[download_start]="#2d2042" +theme[download_mid]="#7352a8" +theme[download_end]="#ccaefc" + +# Upload graph colors +theme[upload_start]="#570d33" +theme[upload_mid]="#cf277d" +theme[upload_end]="#fa91c7" diff --git a/.config/bleachbit/bleachbit.ini b/.config/bleachbit/bleachbit.ini new file mode 100644 index 000000000..828038c67 --- /dev/null +++ b/.config/bleachbit/bleachbit.ini @@ -0,0 +1,29 @@ +[bleachbit] +auto_hide = True +check_beta = False +check_online_updates = True +dark_mode = True +delete_confirmation = True +debug = False +exit_done = False +shred = False +units_iec = False +window_fullscreen = False +window_maximized = False +first_start = False +version = 4.0.0 +window_x = 963 +window_y = 33 +window_width = 948 +window_height = 970 +hashsalt = e1391ea689f21f403edc31837c88b6a3fb783bb2f5a26d3afdb329b597ca2c90e5834b1e7ff951a7044f357cd8e1850774449bf40e0e86c4789dd2d633811ecb + +[hashpath] + +[list/shred_drives] +0 = /home/dt/.cache +1 = /tmp + +[preserve_languages] +en = True + diff --git a/.config/bpytop/bpytop.conf b/.config/bpytop/bpytop.conf new file mode 100644 index 000000000..edbe60b9c --- /dev/null +++ b/.config/bpytop/bpytop.conf @@ -0,0 +1,115 @@ +#? Config file for bpytop v. 1.0.57 + +#* Color theme, looks for a .theme file in "/usr/[local/]share/bpytop/themes" and "~/.config/bpytop/themes", "Default" for builtin default theme. +#* Prefix name by a plus sign (+) for a theme located in user themes folder, i.e. color_theme="+monokai" +color_theme="Default" + +#* If the theme set background should be shown, set to False if you want terminal background transparency +theme_background=False + +#* Sets if 24-bit truecolor should be used, will convert 24-bit colors to 256 color (6x6x6 color cube) if false. +truecolor=True + +#* Manually set which boxes to show. Available values are "cpu mem net proc", seperate values with whitespace. +shown_boxes="cpu mem net proc" + +#* Update time in milliseconds, increases automatically if set below internal loops processing time, recommended 2000 ms or above for better sample times for graphs. +update_ms=500 + +#* Processes update multiplier, sets how often the process list is updated as a multiplier of "update_ms". +#* Set to 2 or higher to greatly decrease bpytop cpu usage. (Only integers) +proc_update_mult=2 + +#* Processes sorting, "pid" "program" "arguments" "threads" "user" "memory" "cpu lazy" "cpu responsive", +#* "cpu lazy" updates top process over time, "cpu responsive" updates top process directly. +proc_sorting="memory" + +#* Reverse sorting order, True or False. +proc_reversed=False + +#* Show processes as a tree +proc_tree=False + +#* Which depth the tree view should auto collapse processes at +tree_depth=3 + +#* Use the cpu graph colors in the process list. +proc_colors=True + +#* Use a darkening gradient in the process list. +proc_gradient=True + +#* If process cpu usage should be of the core it's running on or usage of the total available cpu power. +proc_per_core=False + +#* Show process memory as bytes instead of percent +proc_mem_bytes=True + +#* Check cpu temperature, needs "osx-cpu-temp" on MacOS X. +check_temp=True + +#* Which sensor to use for cpu temperature, use options menu to select from list of available sensors. +cpu_sensor=Auto + +#* Show temperatures for cpu cores also if check_temp is True and sensors has been found +show_coretemp=True + +#* Draw a clock at top of screen, formatting according to strftime, empty string to disable. +draw_clock="%X" + +#* Update main ui in background when menus are showing, set this to false if the menus is flickering too much for comfort. +background_update=True + +#* Custom cpu model name, empty string to disable. +custom_cpu_name="" + +#* Optional filter for shown disks, should be full path of a mountpoint, separate multiple values with a comma ",". +#* Begin line with "exclude=" to change to exclude filter, oterwise defaults to "most include" filter. Example: disks_filter="exclude=/boot, /home/user" +disks_filter="" + +#* Show graphs instead of meters for memory values. +mem_graphs=False + +#* If swap memory should be shown in memory box. +show_swap=True + +#* Show swap as a disk, ignores show_swap value above, inserts itself after first disk. +swap_disk=False + +#* If mem box should be split to also show disks info. +show_disks=True + +#* Filter out non physical disks. Set this to False to include network disks, RAM disks and similar. +only_physical=True + +#* Read disks list from /etc/fstab. This also disables only_physical. +use_fstab=False + +#* Set fixed values for network graphs, default "10M" = 10 Mibibytes, possible units "K", "M", "G", append with "bit" for bits instead of bytes, i.e "100mbit" +net_download="10M" +net_upload="10M" + +#* Start in network graphs auto rescaling mode, ignores any values set above and rescales down to 10 Kibibytes at the lowest. +net_auto=True + +#* Sync the scaling for download and upload to whichever currently has the highest scale +net_sync=False + +#* If the network graphs color gradient should scale to bandwith usage or auto scale, bandwith usage is based on "net_download" and "net_upload" values +net_color_fixed=False + +#* Starts with the Network Interface specified here. +net_iface="" + +#* Show battery stats in top right if battery is present +show_battery=True + +#* Show init screen at startup, the init screen is purely cosmetical +show_init=True + +#* Enable check for new version from github.com/aristocratos/bpytop at start. +update_check=True + +#* Set loglevel for "~/.config/bpytop/error.log" levels are: "ERROR" "WARNING" "INFO" "DEBUG". +#* The level set includes all lower levels, i.e. "DEBUG" will show all logging info. +log_level=WARNING diff --git a/.config/catfish/catfish.rc b/.config/catfish/catfish.rc new file mode 100644 index 000000000..860b7f136 --- /dev/null +++ b/.config/catfish/catfish.rc @@ -0,0 +1,8 @@ +show-hidden-files=false +show-sidebar=false +close-after-select=false +window-width=950 +window-height=974 +window-x=962 +window-y=32 +exclude-paths=/dev;~/.cache;~/.gvfs; diff --git a/.config/cef_user_data/Dictionaries/en-GB-7-1.bdic b/.config/cef_user_data/Dictionaries/en-GB-7-1.bdic new file mode 100644 index 000000000..5496125fb Binary files /dev/null and b/.config/cef_user_data/Dictionaries/en-GB-7-1.bdic differ diff --git a/.config/cef_user_data/Dictionaries/en-GB-8-0.bdic b/.config/cef_user_data/Dictionaries/en-GB-8-0.bdic new file mode 100644 index 000000000..42efa736d Binary files /dev/null and b/.config/cef_user_data/Dictionaries/en-GB-8-0.bdic differ diff --git a/.config/ckb-next/ckb-next.conf b/.config/ckb-next/ckb-next.conf new file mode 100644 index 000000000..575b71ce2 --- /dev/null +++ b/.config/ckb-next/ckb-next.conf @@ -0,0 +1,754 @@ +[Devices] +0E029022AF4C18835CBDCC7EF5001BC3\CurrentProfile={BA7FC152-2D51-4C26-A7A6-A036CC93D924} +0E029022AF4C18835CBDCC7EF5001BC3\Profiles={BA7FC152-2D51-4C26-A7A6-A036CC93D924} +0E029022AF4C18835CBDCC7EF5001BC3\hwLayout=gb +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Binding\KeyMap=K68 GB +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Binding\UseRealNames=true +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Binding\WinLock=false +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\GUID={11C11AE3-3195-4DFC-B8AC-2FEA703414E5} +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\HwModified=2a5c3bfd +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Animations\List={B60A7D3A-AAC6-4676-8471-D602455A1134}, {2657142D-4909-4A65-8E2C-B12AB77827F5} +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Animations\%7B2657142D-4909-4A65-8E2C-B12AB77827F5%7D\BlendMode=Normal +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Animations\%7B2657142D-4909-4A65-8E2C-B12AB77827F5%7D\Keys=space, down, quote, bspace, dot, rwin, rmenu, prev, tab, right, num0, num1, num2, num3, num4, num5, play, num6, colon, num7, num8, ralt, num9, esc, numslash, slash, prtscn, mute, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, bslash_iso, light, m1, m2, m3, home, rctrl, numplus, grave, a, b, pause, c, stop, d, e, f, g, f1, h, f2, i, g10, f3, rbrace, j, g11, f4, k, g12, f5, l, g13, f6, m, g14, f7, n, g15, f8, o, g16, f9, p, g17, q, g18, r, lwin, s, numminus, minus, t, u, up, v, w, x, y, z, end, rshift, mr, ins, comma, numdot, lctrl, g1, g2, g3, g4, g5, g6, g7, g8, g9, lbrace, lalt, numstar, lshift, numlock, f10, f11, f12, pgdn, hash, del, pgup, caps, lock, equal, left, numenter, next, enter, scroll, bslash +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Animations\%7B2657142D-4909-4A65-8E2C-B12AB77827F5%7D\Name=Type Lighting +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Animations\%7B2657142D-4909-4A65-8E2C-B12AB77827F5%7D\Opacity=1 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Animations\%7B2657142D-4909-4A65-8E2C-B12AB77827F5%7D\Parameters\color=ffffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Animations\%7B2657142D-4909-4A65-8E2C-B12AB77827F5%7D\Parameters\delay=0 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Animations\%7B2657142D-4909-4A65-8E2C-B12AB77827F5%7D\Parameters\duration=1.000000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Animations\%7B2657142D-4909-4A65-8E2C-B12AB77827F5%7D\Parameters\kpdelay=0 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Animations\%7B2657142D-4909-4A65-8E2C-B12AB77827F5%7D\Parameters\kphold=1 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Animations\%7B2657142D-4909-4A65-8E2C-B12AB77827F5%7D\Parameters\kpmode=0 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Animations\%7B2657142D-4909-4A65-8E2C-B12AB77827F5%7D\Parameters\kpmodestop=false +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Animations\%7B2657142D-4909-4A65-8E2C-B12AB77827F5%7D\Parameters\kprelease=false +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Animations\%7B2657142D-4909-4A65-8E2C-B12AB77827F5%7D\Parameters\kprepeat=1 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Animations\%7B2657142D-4909-4A65-8E2C-B12AB77827F5%7D\Parameters\kpstop=0 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Animations\%7B2657142D-4909-4A65-8E2C-B12AB77827F5%7D\Parameters\kptrigger=1 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Animations\%7B2657142D-4909-4A65-8E2C-B12AB77827F5%7D\Parameters\randomize=0 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Animations\%7B2657142D-4909-4A65-8E2C-B12AB77827F5%7D\Parameters\repeat=1 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Animations\%7B2657142D-4909-4A65-8E2C-B12AB77827F5%7D\Parameters\stop=-1 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Animations\%7B2657142D-4909-4A65-8E2C-B12AB77827F5%7D\Parameters\trigger=0 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Animations\%7B2657142D-4909-4A65-8E2C-B12AB77827F5%7D\ScriptGuid={54DD2975-E192-457D-BCFC-D912A24E33B4} +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Animations\%7B2657142D-4909-4A65-8E2C-B12AB77827F5%7D\ScriptName=Gradient +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Animations\%7B2657142D-4909-4A65-8E2C-B12AB77827F5%7D\UseRealNames=true +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Animations\%7BB60A7D3A-AAC6-4676-8471-D602455A1134%7D\BlendMode=Normal +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Animations\%7BB60A7D3A-AAC6-4676-8471-D602455A1134%7D\Keys=space, quote, bspace, dot, rwin, rmenu, prev, tab, num0, num1, num2, num3, num4, num5, play, num6, colon, num7, num8, ralt, num9, esc, numslash, slash, prtscn, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, bslash_iso, home, rctrl, numplus, grave, b, pause, c, stop, e, f, g, f1, h, f2, i, g10, f3, rbrace, j, g11, f4, k, g12, f5, l, g13, f6, m, g14, f7, n, g15, f8, o, g16, f9, p, g17, q, g18, r, lwin, numminus, minus, t, u, v, x, y, z, end, rshift, ins, comma, numdot, lctrl, g1, g2, g3, g4, g5, g6, g7, g8, g9, lbrace, lalt, numstar, lshift, numlock, f10, f11, f12, pgdn, hash, del, pgup, caps, equal, numenter, next, enter, scroll, bslash, front, wheel, dpi, thumb, back +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Animations\%7BB60A7D3A-AAC6-4676-8471-D602455A1134%7D\Name=Wave +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Animations\%7BB60A7D3A-AAC6-4676-8471-D602455A1134%7D\Opacity=1 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Animations\%7BB60A7D3A-AAC6-4676-8471-D602455A1134%7D\Parameters\angle=120 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Animations\%7BB60A7D3A-AAC6-4676-8471-D602455A1134%7D\Parameters\color=0:ffff0000 17:ffffff00 33:ff00ff00 50:ff00ffff 67:ff0000ff 83:ffff00ff 100:ffff0000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Animations\%7BB60A7D3A-AAC6-4676-8471-D602455A1134%7D\Parameters\delay=0 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Animations\%7BB60A7D3A-AAC6-4676-8471-D602455A1134%7D\Parameters\duration=3 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Animations\%7BB60A7D3A-AAC6-4676-8471-D602455A1134%7D\Parameters\kpdelay=0 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Animations\%7BB60A7D3A-AAC6-4676-8471-D602455A1134%7D\Parameters\kpmode=0 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Animations\%7BB60A7D3A-AAC6-4676-8471-D602455A1134%7D\Parameters\kpmodestop=false +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Animations\%7BB60A7D3A-AAC6-4676-8471-D602455A1134%7D\Parameters\kprelease=false +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Animations\%7BB60A7D3A-AAC6-4676-8471-D602455A1134%7D\Parameters\kprepeat=3 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Animations\%7BB60A7D3A-AAC6-4676-8471-D602455A1134%7D\Parameters\kpstop=0 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Animations\%7BB60A7D3A-AAC6-4676-8471-D602455A1134%7D\Parameters\kptrigger=0 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Animations\%7BB60A7D3A-AAC6-4676-8471-D602455A1134%7D\Parameters\length=100.000000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Animations\%7BB60A7D3A-AAC6-4676-8471-D602455A1134%7D\Parameters\repeat=3 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Animations\%7BB60A7D3A-AAC6-4676-8471-D602455A1134%7D\Parameters\stop=-1 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Animations\%7BB60A7D3A-AAC6-4676-8471-D602455A1134%7D\Parameters\symmetric=0 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Animations\%7BB60A7D3A-AAC6-4676-8471-D602455A1134%7D\Parameters\trigger=1 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Animations\%7BB60A7D3A-AAC6-4676-8471-D602455A1134%7D\ScriptGuid={E0BBA19E-C328-4C0E-8E3C-A06D5722B4FC} +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Animations\%7BB60A7D3A-AAC6-4676-8471-D602455A1134%7D\ScriptName=Wave +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Animations\%7BB60A7D3A-AAC6-4676-8471-D602455A1134%7D\UseRealNames=true +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Brightness=0 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\KeyMap=K68 GB +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\0=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\1=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\2=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\3=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\4=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\5=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\6=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\7=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\8=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\9=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\a=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\b=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\back=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\bslash=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\bslash_iso=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\bspace=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\c=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\caps=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\colon=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\comma=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\d=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\del=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\dot=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\down=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\dpi=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\e=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\end=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\enter=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\equal=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\esc=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\f=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\f1=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\f10=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\f11=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\f12=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\f2=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\f3=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\f4=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\f5=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\f6=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\f7=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\f8=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\f9=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\front=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\g=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\g1=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\g10=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\g11=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\g12=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\g13=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\g14=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\g15=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\g16=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\g17=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\g18=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\g2=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\g3=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\g4=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\g5=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\g6=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\g7=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\g8=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\g9=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\grave=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\h=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\hash=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\home=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\i=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\ins=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\j=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\k=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\l=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\lalt=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\lbrace=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\lctrl=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\left=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\light=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\lock=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\lshift=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\lwin=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\m=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\m1=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\m2=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\m3=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\minus=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\mr=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\mute=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\n=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\next=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\num0=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\num1=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\num2=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\num3=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\num4=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\num5=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\num6=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\num7=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\num8=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\num9=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\numdot=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\numenter=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\numlock=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\numminus=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\numplus=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\numslash=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\numstar=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\o=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\p=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\pause=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\pgdn=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\pgup=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\play=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\prev=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\prtscn=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\q=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\quote=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\r=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\ralt=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\rbrace=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\rctrl=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\right=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\rmenu=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\rshift=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\rwin=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\s=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\scroll=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\slash=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\space=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\stop=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\t=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\tab=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\thumb=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\u=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\up=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\v=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\voldn=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\volup=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\w=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\wheel=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\x=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\y=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\z=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\UseRealNames=true +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Modified=70daa3ba +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Name=Rainbow +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Performance\AngleSnap=false +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Performance\DPI\0=@Point(400 400) +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Performance\DPI\0RGB=#ffff0000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Performance\DPI\1=@Point(450 450) +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Performance\DPI\1Disabled=false +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Performance\DPI\1RGB=#ffffc000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Performance\DPI\2=@Point(800 800) +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Performance\DPI\2Disabled=false +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Performance\DPI\2RGB=#ffffff00 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Performance\DPI\3=@Point(1500 1500) +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Performance\DPI\3Disabled=false +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Performance\DPI\3RGB=#ff00ff00 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Performance\DPI\4=@Point(3000 3000) +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Performance\DPI\4Disabled=false +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Performance\DPI\4RGB=#ff00ffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Performance\DPI\5=@Point(6000 6000) +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Performance\DPI\5Disabled=false +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Performance\DPI\5RGB=#ffffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Performance\DPI\6RGB=#ffc0c0c0 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Performance\DPI\CurIdx=1 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Performance\Indicators\0\Enable=false +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Performance\Indicators\0\Hardware=0 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Performance\Indicators\0\RGB0=#ff00ff00 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Performance\Indicators\0\RGB1=#ff000000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Performance\Indicators\1\Enable=false +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Performance\Indicators\1\Hardware=0 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Performance\Indicators\1\RGB0=#ff00ff00 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Performance\Indicators\1\RGB1=#ff000000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Performance\Indicators\2\Enable=false +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Performance\Indicators\2\Hardware=0 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Performance\Indicators\2\RGB0=#ff00ff00 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Performance\Indicators\2\RGB1=#ff000000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Performance\Indicators\3\Enable=true +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Performance\Indicators\3\RGB0=#00ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Performance\Indicators\3\RGB1=#ff000000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Performance\Indicators\4\Enable=true +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Performance\Indicators\4\RGB0=#ffff0000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Performance\Indicators\4\RGB1=#ff000000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Performance\Indicators\5\Enable=true +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Performance\Indicators\5\RGB0=#ffff0000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Performance\Indicators\5\RGB1=#ffffff00 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Performance\Indicators\5\RGB2=#ffffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Performance\Indicators\6\Enable=true +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Performance\Indicators\6\RGB0=#ffffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Performance\Indicators\6\RGB1=#ff000000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Performance\Indicators\7\Enable=true +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Performance\Indicators\7\RGB0=#00ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Performance\Indicators\7\RGB1=#ff000000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Performance\Indicators\7\RGB2=#ff000000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Performance\Indicators\DPI=true +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Performance\LiftHeight=3 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Performance\MuteDevice=sink +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\WindowInfo\enabled=false +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Binding\KeyMap=K68 GB +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Binding\UseRealNames=true +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Binding\WinLock=false +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\GUID={982F6B59-8399-4FA6-8AF4-3BC63A62D9AD} +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\HwModified=d6674c5 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Animations\List={9EA4750E-790A-4DCE-90D0-CAAB36CCA693} +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Animations\%7B9EA4750E-790A-4DCE-90D0-CAAB36CCA693%7D\BlendMode=Normal +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Animations\%7B9EA4750E-790A-4DCE-90D0-CAAB36CCA693%7D\Keys=space, down, quote, dot, right, colon, slash, bslash_iso, a, b, c, d, e, f, g, h, i, rbrace, j, k, l, m, n, o, p, q, r, s, t, u, up, v, w, x, y, z, comma, lbrace, hash, left, bslash, front, wheel, dpi, thumb, back +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Animations\%7B9EA4750E-790A-4DCE-90D0-CAAB36CCA693%7D\Name=Breath +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Animations\%7B9EA4750E-790A-4DCE-90D0-CAAB36CCA693%7D\Opacity=1 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Animations\%7B9EA4750E-790A-4DCE-90D0-CAAB36CCA693%7D\Parameters\color=0:00ffffff 50:ffffffff 100:00ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Animations\%7B9EA4750E-790A-4DCE-90D0-CAAB36CCA693%7D\Parameters\delay=0 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Animations\%7B9EA4750E-790A-4DCE-90D0-CAAB36CCA693%7D\Parameters\duration=5 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Animations\%7B9EA4750E-790A-4DCE-90D0-CAAB36CCA693%7D\Parameters\kpdelay=0 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Animations\%7B9EA4750E-790A-4DCE-90D0-CAAB36CCA693%7D\Parameters\kphold=1 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Animations\%7B9EA4750E-790A-4DCE-90D0-CAAB36CCA693%7D\Parameters\kpmode=0 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Animations\%7B9EA4750E-790A-4DCE-90D0-CAAB36CCA693%7D\Parameters\kpmodestop=false +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Animations\%7B9EA4750E-790A-4DCE-90D0-CAAB36CCA693%7D\Parameters\kprelease=false +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Animations\%7B9EA4750E-790A-4DCE-90D0-CAAB36CCA693%7D\Parameters\kprepeat=5 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Animations\%7B9EA4750E-790A-4DCE-90D0-CAAB36CCA693%7D\Parameters\kpstop=0 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Animations\%7B9EA4750E-790A-4DCE-90D0-CAAB36CCA693%7D\Parameters\kptrigger=0 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Animations\%7B9EA4750E-790A-4DCE-90D0-CAAB36CCA693%7D\Parameters\randomize=0 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Animations\%7B9EA4750E-790A-4DCE-90D0-CAAB36CCA693%7D\Parameters\repeat=5 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Animations\%7B9EA4750E-790A-4DCE-90D0-CAAB36CCA693%7D\Parameters\stop=-1 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Animations\%7B9EA4750E-790A-4DCE-90D0-CAAB36CCA693%7D\Parameters\trigger=1 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Animations\%7B9EA4750E-790A-4DCE-90D0-CAAB36CCA693%7D\ScriptGuid={54DD2975-E192-457D-BCFC-D912A24E33B4} +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Animations\%7B9EA4750E-790A-4DCE-90D0-CAAB36CCA693%7D\ScriptName=Gradient +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Animations\%7B9EA4750E-790A-4DCE-90D0-CAAB36CCA693%7D\UseRealNames=true +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Brightness=0 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\KeyMap=K68 GB +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\0=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\1=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\2=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\3=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\4=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\5=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\6=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\7=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\8=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\9=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\a=#ff0000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\b=#ff0000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\back=#ff0000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\bslash=#ff0000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\bslash_iso=#ff0000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\bspace=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\c=#ff0000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\caps=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\colon=#ff0000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\comma=#ff0000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\d=#ff0000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\del=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\dot=#ff0000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\down=#ff0000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\dpi=#ff0000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\e=#ff0000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\end=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\enter=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\equal=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\esc=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\f=#ff0000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\f1=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\f10=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\f11=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\f12=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\f2=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\f3=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\f4=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\f5=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\f6=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\f7=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\f8=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\f9=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\front=#ff0000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\g=#ff0000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\g1=#ff8080 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\g10=#ff8080 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\g11=#ff8080 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\g12=#ff8080 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\g13=#ff8080 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\g14=#ff8080 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\g15=#ff8080 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\g16=#ff8080 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\g17=#ff8080 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\g18=#ff8080 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\g2=#ff8080 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\g3=#ff8080 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\g4=#ff8080 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\g5=#ff8080 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\g6=#ff8080 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\g7=#ff8080 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\g8=#ff8080 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\g9=#ff8080 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\grave=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\h=#ff0000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\hash=#ff0000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\home=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\i=#ff0000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\ins=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\j=#ff0000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\k=#ff0000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\l=#ff0000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\lalt=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\lbrace=#ff0000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\lctrl=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\left=#ff0000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\light=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\lock=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\lshift=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\lwin=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\m=#ff0000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\m1=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\m2=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\m3=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\minus=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\mr=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\mute=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\n=#ff0000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\next=#ff8080 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\num0=#ff8080 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\num1=#ff8080 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\num2=#ff8080 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\num3=#ff8080 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\num4=#ff8080 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\num5=#ff8080 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\num6=#ff8080 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\num7=#ff8080 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\num8=#ff8080 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\num9=#ff8080 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\numdot=#ff8080 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\numenter=#ff8080 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\numlock=#ff8080 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\numminus=#ff8080 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\numplus=#ff8080 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\numslash=#ff8080 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\numstar=#ff8080 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\o=#ff0000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\p=#ff0000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\pause=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\pgdn=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\pgup=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\play=#ff8080 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\prev=#ff8080 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\prtscn=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\q=#ff0000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\quote=#ff0000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\r=#ff0000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\ralt=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\rbrace=#ff0000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\rctrl=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\right=#ff0000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\rmenu=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\rshift=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\rwin=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\s=#ff0000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\scroll=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\slash=#ff0000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\space=#ff0000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\stop=#ff8080 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\t=#ff0000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\tab=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\thumb=#ff0000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\u=#ff0000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\up=#ff0000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\v=#ff0000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\voldn=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\volup=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\w=#ff0000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\wheel=#ff0000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\x=#ff0000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\y=#ff0000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\z=#ff0000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\UseRealNames=true +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Modified=90955495 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Name=Breathing +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Performance\AngleSnap=false +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Performance\DPI\0=@Point(400 400) +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Performance\DPI\0RGB=#ffff0000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Performance\DPI\1=@Point(450 450) +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Performance\DPI\1Disabled=false +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Performance\DPI\1RGB=#ffffc000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Performance\DPI\2=@Point(800 800) +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Performance\DPI\2Disabled=false +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Performance\DPI\2RGB=#ffffff00 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Performance\DPI\3=@Point(1500 1500) +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Performance\DPI\3Disabled=false +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Performance\DPI\3RGB=#ff00ff00 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Performance\DPI\4=@Point(3000 3000) +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Performance\DPI\4Disabled=false +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Performance\DPI\4RGB=#ff00ffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Performance\DPI\5=@Point(6000 6000) +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Performance\DPI\5Disabled=false +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Performance\DPI\5RGB=#ffffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Performance\DPI\6RGB=#ffc0c0c0 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Performance\DPI\CurIdx=1 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Performance\Indicators\0\Enable=false +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Performance\Indicators\0\Hardware=0 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Performance\Indicators\0\RGB0=#ff00ff00 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Performance\Indicators\0\RGB1=#ff000000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Performance\Indicators\1\Enable=false +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Performance\Indicators\1\Hardware=0 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Performance\Indicators\1\RGB0=#ff00ff00 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Performance\Indicators\1\RGB1=#ff000000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Performance\Indicators\2\Enable=false +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Performance\Indicators\2\Hardware=0 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Performance\Indicators\2\RGB0=#ff00ff00 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Performance\Indicators\2\RGB1=#ff000000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Performance\Indicators\3\Enable=true +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Performance\Indicators\3\RGB0=#00ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Performance\Indicators\3\RGB1=#ff000000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Performance\Indicators\4\Enable=true +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Performance\Indicators\4\RGB0=#ffff0000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Performance\Indicators\4\RGB1=#ff000000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Performance\Indicators\5\Enable=true +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Performance\Indicators\5\RGB0=#ffff0000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Performance\Indicators\5\RGB1=#ffffff00 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Performance\Indicators\5\RGB2=#ffffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Performance\Indicators\6\Enable=true +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Performance\Indicators\6\RGB0=#ffffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Performance\Indicators\6\RGB1=#ff000000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Performance\Indicators\7\Enable=true +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Performance\Indicators\7\RGB0=#00ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Performance\Indicators\7\RGB1=#ff000000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Performance\Indicators\7\RGB2=#ff000000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Performance\Indicators\DPI=false +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Performance\LiftHeight=3 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Performance\MuteDevice=sink +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\WindowInfo\enabled=false +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Binding\KeyMap=K68 GB +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Binding\UseRealNames=true +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Binding\WinLock=false +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\GUID={57C94A3A-80E6-4182-B067-6D4A14AD497C} +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\HwModified=417c3862 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Animations\List={51E79A62-3C5C-4732-925C-098499E81A21}, {913D4ABD-246C-4008-9CFB-F4B91CC991F1} +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Animations\%7B51E79A62-3C5C-4732-925C-098499E81A21%7D\BlendMode=Multiply +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Animations\%7B51E79A62-3C5C-4732-925C-098499E81A21%7D\Keys=space, down, quote, bspace, dot, rwin, rmenu, prev, tab, right, num0, num1, num2, num3, num4, num5, play, num6, colon, num7, num8, ralt, num9, esc, numslash, slash, prtscn, mute, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, bslash_iso, light, m1, m2, m3, home, rctrl, numplus, grave, a, b, pause, c, stop, d, e, f, g, f1, h, f2, i, g10, f3, rbrace, j, g11, f4, k, g12, f5, l, g13, f6, m, g14, f7, n, g15, f8, o, g16, f9, p, g17, q, g18, r, lwin, s, numminus, minus, t, u, up, v, w, x, y, z, end, rshift, mr, ins, comma, numdot, lctrl, g1, g2, g3, g4, g5, g6, g7, g8, g9, lbrace, lalt, numstar, lshift, numlock, f10, f11, f12, pgdn, hash, del, pgup, caps, lock, equal, left, numenter, next, enter, scroll, bslash, front, wheel, dpi, thumb, back +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Animations\%7B51E79A62-3C5C-4732-925C-098499E81A21%7D\Name=Random +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Animations\%7B51E79A62-3C5C-4732-925C-098499E81A21%7D\Opacity=1 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Animations\%7B51E79A62-3C5C-4732-925C-098499E81A21%7D\Parameters\delay=0 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Animations\%7B51E79A62-3C5C-4732-925C-098499E81A21%7D\Parameters\duration=0.5 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Animations\%7B51E79A62-3C5C-4732-925C-098499E81A21%7D\Parameters\fade=0 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Animations\%7B51E79A62-3C5C-4732-925C-098499E81A21%7D\Parameters\kpdelay=0 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Animations\%7B51E79A62-3C5C-4732-925C-098499E81A21%7D\Parameters\kpmode=1 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Animations\%7B51E79A62-3C5C-4732-925C-098499E81A21%7D\Parameters\kpmodestop=false +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Animations\%7B51E79A62-3C5C-4732-925C-098499E81A21%7D\Parameters\kprelease=false +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Animations\%7B51E79A62-3C5C-4732-925C-098499E81A21%7D\Parameters\kpstop=-1 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Animations\%7B51E79A62-3C5C-4732-925C-098499E81A21%7D\Parameters\kptrigger=0 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Animations\%7B51E79A62-3C5C-4732-925C-098499E81A21%7D\Parameters\stop=-1 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Animations\%7B51E79A62-3C5C-4732-925C-098499E81A21%7D\Parameters\trigger=1 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Animations\%7B51E79A62-3C5C-4732-925C-098499E81A21%7D\Parameters\useopacity=0 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Animations\%7B51E79A62-3C5C-4732-925C-098499E81A21%7D\ScriptGuid={22418DA4-A181-4B93-A4D3-03682BA283D2} +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Animations\%7B51E79A62-3C5C-4732-925C-098499E81A21%7D\ScriptName=Random +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Animations\%7B51E79A62-3C5C-4732-925C-098499E81A21%7D\UseRealNames=true +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Animations\%7B913D4ABD-246C-4008-9CFB-F4B91CC991F1%7D\BlendMode=Add +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Animations\%7B913D4ABD-246C-4008-9CFB-F4B91CC991F1%7D\Keys=space, down, quote, bspace, dot, rwin, rmenu, prev, tab, right, num0, num1, num2, num3, num4, num5, play, num6, colon, num7, num8, ralt, num9, esc, numslash, slash, prtscn, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, bslash_iso, home, rctrl, numplus, grave, a, b, pause, c, stop, d, e, f, g, f1, h, f2, i, g10, f3, rbrace, j, g11, f4, k, g12, f5, l, g13, f6, m, g14, f7, n, g15, f8, o, g16, f9, p, g17, q, g18, r, lwin, s, numminus, minus, t, u, up, v, w, x, y, z, end, rshift, ins, comma, numdot, lctrl, g1, g2, g3, g4, g5, g6, g7, g8, g9, lbrace, lalt, numstar, lshift, numlock, f10, f11, f12, pgdn, hash, del, pgup, caps, equal, left, numenter, next, enter, scroll, bslash +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Animations\%7B913D4ABD-246C-4008-9CFB-F4B91CC991F1%7D\Name=Ripple +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Animations\%7B913D4ABD-246C-4008-9CFB-F4B91CC991F1%7D\Opacity=1 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Animations\%7B913D4ABD-246C-4008-9CFB-F4B91CC991F1%7D\Parameters\color=0:ffff007f 100:00ff007f +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Animations\%7B913D4ABD-246C-4008-9CFB-F4B91CC991F1%7D\Parameters\delay=0 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Animations\%7B913D4ABD-246C-4008-9CFB-F4B91CC991F1%7D\Parameters\duration=1 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Animations\%7B913D4ABD-246C-4008-9CFB-F4B91CC991F1%7D\Parameters\kpdelay=0 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Animations\%7B913D4ABD-246C-4008-9CFB-F4B91CC991F1%7D\Parameters\kpmode=0 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Animations\%7B913D4ABD-246C-4008-9CFB-F4B91CC991F1%7D\Parameters\kpmodestop=false +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Animations\%7B913D4ABD-246C-4008-9CFB-F4B91CC991F1%7D\Parameters\kprelease=false +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Animations\%7B913D4ABD-246C-4008-9CFB-F4B91CC991F1%7D\Parameters\kprepeat=1 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Animations\%7B913D4ABD-246C-4008-9CFB-F4B91CC991F1%7D\Parameters\kpstop=0 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Animations\%7B913D4ABD-246C-4008-9CFB-F4B91CC991F1%7D\Parameters\kptrigger=1 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Animations\%7B913D4ABD-246C-4008-9CFB-F4B91CC991F1%7D\Parameters\length=10 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Animations\%7B913D4ABD-246C-4008-9CFB-F4B91CC991F1%7D\Parameters\randomize=0 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Animations\%7B913D4ABD-246C-4008-9CFB-F4B91CC991F1%7D\Parameters\repeat=1 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Animations\%7B913D4ABD-246C-4008-9CFB-F4B91CC991F1%7D\Parameters\stop=-1 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Animations\%7B913D4ABD-246C-4008-9CFB-F4B91CC991F1%7D\Parameters\symmetric=1 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Animations\%7B913D4ABD-246C-4008-9CFB-F4B91CC991F1%7D\Parameters\trigger=0 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Animations\%7B913D4ABD-246C-4008-9CFB-F4B91CC991F1%7D\Parameters\x_offset=0.000000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Animations\%7B913D4ABD-246C-4008-9CFB-F4B91CC991F1%7D\Parameters\y_offset=0.000000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Animations\%7B913D4ABD-246C-4008-9CFB-F4B91CC991F1%7D\ScriptGuid={097D69F0-70B2-48B8-AFE2-25A1CDB02C9D} +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Animations\%7B913D4ABD-246C-4008-9CFB-F4B91CC991F1%7D\ScriptName=Ripple +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Animations\%7B913D4ABD-246C-4008-9CFB-F4B91CC991F1%7D\UseRealNames=true +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Brightness=0 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\KeyMap=K68 GB +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\0=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\1=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\2=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\3=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\4=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\5=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\6=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\7=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\8=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\9=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\a=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\b=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\back=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\bslash=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\bslash_iso=#9700ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\bspace=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\c=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\caps=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\colon=#9700ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\comma=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\d=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\del=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\dot=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\down=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\dpi=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\e=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\end=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\enter=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\equal=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\esc=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\f=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\f1=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\f10=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\f11=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\f12=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\f2=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\f3=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\f4=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\f5=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\f6=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\f7=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\f8=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\f9=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\front=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\g=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\g1=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\g10=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\g11=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\g12=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\g13=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\g14=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\g15=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\g16=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\g17=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\g18=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\g2=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\g3=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\g4=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\g5=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\g6=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\g7=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\g8=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\g9=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\grave=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\h=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\hash=#9700ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\home=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\i=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\ins=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\j=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\k=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\l=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\lalt=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\lbrace=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\lctrl=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\left=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\light=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\lock=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\lshift=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\lwin=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\m=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\m1=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\m2=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\m3=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\minus=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\mr=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\mute=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\n=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\next=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\num0=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\num1=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\num2=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\num3=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\num4=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\num5=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\num6=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\num7=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\num8=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\num9=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\numdot=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\numenter=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\numlock=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\numminus=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\numplus=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\numslash=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\numstar=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\o=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\p=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\pause=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\pgdn=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\pgup=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\play=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\prev=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\prtscn=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\q=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\quote=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\r=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\ralt=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\rbrace=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\rctrl=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\right=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\rmenu=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\rshift=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\rwin=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\s=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\scroll=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\slash=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\space=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\stop=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\t=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\tab=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\thumb=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\u=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\up=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\v=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\voldn=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\volup=#ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\w=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\wheel=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\x=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\y=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\z=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\UseRealNames=true +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Modified=652e729a +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Name=Trippy +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Performance\AngleSnap=false +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Performance\DPI\0=@Point(400 400) +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Performance\DPI\0RGB=#ffff0000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Performance\DPI\1=@Point(450 450) +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Performance\DPI\1Disabled=false +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Performance\DPI\1RGB=#ff4000ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Performance\DPI\2=@Point(800 800) +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Performance\DPI\2Disabled=false +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Performance\DPI\2RGB=#ff8000ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Performance\DPI\3=@Point(1500 1500) +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Performance\DPI\3Disabled=false +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Performance\DPI\3RGB=#ffff00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Performance\DPI\4=@Point(3000 3000) +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Performance\DPI\4Disabled=false +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Performance\DPI\4RGB=#ffff80ff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Performance\DPI\5=@Point(6000 6000) +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Performance\DPI\5Disabled=false +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Performance\DPI\5RGB=#ffffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Performance\DPI\6RGB=#ff000000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Performance\DPI\CurIdx=1 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Performance\Indicators\0\Enable=false +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Performance\Indicators\0\Hardware=0 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Performance\Indicators\0\RGB0=#ff00ff00 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Performance\Indicators\0\RGB1=#ff000000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Performance\Indicators\1\Enable=false +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Performance\Indicators\1\Hardware=0 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Performance\Indicators\1\RGB0=#ff00ff00 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Performance\Indicators\1\RGB1=#ff000000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Performance\Indicators\2\Enable=false +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Performance\Indicators\2\Hardware=0 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Performance\Indicators\2\RGB0=#ff00ff00 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Performance\Indicators\2\RGB1=#ff000000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Performance\Indicators\3\Enable=true +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Performance\Indicators\3\RGB0=#00ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Performance\Indicators\3\RGB1=#ff000000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Performance\Indicators\4\Enable=true +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Performance\Indicators\4\RGB0=#ffff0000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Performance\Indicators\4\RGB1=#ff000000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Performance\Indicators\5\Enable=true +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Performance\Indicators\5\RGB0=#ffff0000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Performance\Indicators\5\RGB1=#ffffff00 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Performance\Indicators\5\RGB2=#ffffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Performance\Indicators\6\Enable=true +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Performance\Indicators\6\RGB0=#ffffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Performance\Indicators\6\RGB1=#ff000000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Performance\Indicators\7\Enable=true +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Performance\Indicators\7\RGB0=#00ffffff +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Performance\Indicators\7\RGB1=#ff000000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Performance\Indicators\7\RGB2=#ff000000 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Performance\Indicators\DPI=true +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Performance\LiftHeight=3 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Performance\MuteDevice=sink +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\WindowInfo\enabled=false +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\CurrentMode={11C11AE3-3195-4DFC-B8AC-2FEA703414E5} +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\HwModified=40b6f054 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\ModeCount=3 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\Modified=a3a743a0 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\Name=Demo + +[Popups] +BGWarning=true + +[Program] +CkbMigrationChecked=true +CkbNextIniMigrationChecked=true +GlobalBrightness=-1 +NewDidLoginItem=true +RGBIcon=true +SettingsVersion=1 +StartDelay=true +SuppressTrayIcon=false + +[UI] +Light\ShowBaseOnly=false diff --git a/.config/conky/conky-sessionfile b/.config/conky/conky-sessionfile new file mode 100644 index 000000000..a5d7932d9 --- /dev/null +++ b/.config/conky/conky-sessionfile @@ -0,0 +1,2 @@ +conky -c /home/dt/.config/conky/conky_left.conkyrc & sleep 1s +conky -c /home/dt/.config/conky/conky_right.conkyrc & sleep 1s diff --git a/.config/conky/conky_left.conkyrc b/.config/conky/conky_left.conkyrc new file mode 100644 index 000000000..67fa732e1 --- /dev/null +++ b/.config/conky/conky_left.conkyrc @@ -0,0 +1,163 @@ +--[[ +#===================================================================================== +# arcolinux +# Date : package-date +# Author : Erik Dubois at http://www.erikdubois.be +# Version : package-version +# License : Distributed under the terms of GNU GPL version 2 or later +# Documentation : http://erikdubois.be/ +#====================================================================================== +# CONKY +# For commands in conky.config section: +# http://conky.sourceforge.net/config_settings.html +# +# For commands in conky.text section: +# http://conky.sourceforge.net/variables.html +# +# A PDF with all variables is provided +#===================================================================================== +# FONTS +# To avoid copyright infringements you will have to download +# and install the fonts yourself sometimes. +#===================================================================================== +# GENERAL INFO ABOUT FONTS +# Go and look for a nice font on sites like http://www.dafont.com/ +# Download and unzip - double click the font to install it (font-manager must be installed) +# No font-manager then put fonts in ~/.fonts +# Change the font name in the conky +# The name can be known with a command in the terminal: fc-list | grep "part of name" +# Change width and height of the conky according to font +# Reboot your system or fc-cache -fv in terminal +# Enjoy +#===================================================================================== +# FONTS FOR THIS CONKY +# http://www.dafont.com/style-bats.font +#====================================================================================== +# Titus Modifications +#====================================================================================== +# Changed time from Roboto to GE Inspira which is a base Conky Gotham Addon +# Changed Drives from 2 to 3 +# Modified one_window_type from desktop to normal for KDE compatibility +# Modified Ethernet settings +# Modified Pink Lines to Bright Blue +# Removed Extra symbols and incorrect formatting +#====================================================================================== + +]] + +conky.config = { + + --Various settings + + background = true, -- forked to background + cpu_avg_samples = 2, -- The number of samples to average for CPU monitoring. + diskio_avg_samples = 10, -- The number of samples to average for disk I/O monitoring. + double_buffer = true, -- Use the Xdbe extension? (eliminates flicker) + if_up_strictness = 'address', -- how strict if testing interface is up - up, link or address + net_avg_samples = 2, -- The number of samples to average for net data + no_buffers = true, -- Subtract (file system) buffers from used memory? + temperature_unit = 'celsius', -- fahrenheit or celsius + text_buffer_size = 2048, -- size of buffer for display of content of large variables - default 256 + update_interval = 1, -- update interval + imlib_cache_size = 0, -- disable image cache to get a new spotify cover per song + + + --Placement + alignment = 'bottom_left', -- top_left,top_middle,top_right, + -- bottom_left,bottom_middle,bottom_right, + -- middle_left,middle_middle,middle_right,none + xinerama_head = 2, + + --Arch Duoscreen + gap_x = 1945, -- pixels between right or left border + gap_y = 55, -- pixels between bottom or top border + minimum_height = 200, -- minimum height of window + minimum_width = 300, -- minimum height of window + maximum_width = 300, -- maximum height of window + + --Graphical + + border_inner_margin = 10, -- margin between border and text + border_outer_margin = 5, -- margin between border and edge of window + border_width = 0, -- border width in pixels + default_bar_width = 80, -- default is 0 - full width + default_bar_height = 10, -- default is 6 + default_gauge_height = 25, -- default is 25 + default_gauge_width =40, -- default is 40 + default_graph_height = 40, -- default is 25 + default_graph_width = 0, -- default is 0 - full width + default_shade_color = '#000000', -- default shading colour + default_outline_color = '#000000', -- default outline colour + draw_borders = false, -- draw borders around text + draw_graph_borders = true, -- draw borders around graphs + draw_shades = false, -- draw shades + draw_outline = false, -- draw outline + stippled_borders = 0, -- dashing the border + + --Textual + + extra_newline = false, -- extra newline at the end - for asesome's wiboxes + format_human_readable = true, -- KiB, MiB rather then number of bytes + font = 'Roboto Mono:size=8', -- font for complete conky unless in code defined + max_text_width = 0, -- 0 will make sure line does not get broken if width too smal + max_user_text = 16384, -- max text in conky default 16384 + override_utf8_locale = true, -- force UTF8 requires xft + short_units = true, -- shorten units from KiB to k + top_name_width = 21, -- width for $top name value default 15 + top_name_verbose = false, -- If true, top name shows the full command line of each process - Default value is false. + uppercase = false, -- uppercase or not + use_spacer = 'none', -- adds spaces around certain objects to align - default none + use_xft = true, -- xft font - anti-aliased font + xftalpha = 1, -- alpha of the xft font - between 0-1 + + --Windows + + own_window = true, -- create your own window to draw + own_window_class = 'Conky', -- sets the class name for conky window + own_window_argb_value = 200, -- real transparency - composite manager required 0-255 + own_window_argb_visual = true, -- use ARGB - composite manager required + own_window_colour = '#000000', -- set colour if own_window_transparent no + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + -- if own_window true - just hints - own_window_type sets it + own_window_transparent = false, -- if own_window_argb_visual is true sets background opacity 0% + own_window_title = 'shortcut_keys_conky', -- set the name manually - default conky "hostname" + own_window_type = 'override', -- if own_window true options are: normal/override/dock/desktop/panel + + + --Colours + + default_color = '#D9DDE2', -- default color and border color + color1 = '#FF0000', + color2 = '#597AA1', + color3 = '#cccccc', + color4 = '#D9BC83', + color5 = '#00BFFF', + color6 = '#FFFFFF', + + --Signal Colours + color7 = '#1F7411', --green + color8 = '#FFA726', --orange + color9 = '#F1544B', --firebrick + + --Lua + + +}; + +conky.text = [[ +${color5}${font Roboto:size=9}S H O R T C U T K E Y S ${hr 2}${font}${color} +${color9}[Super]+F1${alignr}${color}Hotkeys${color} +${color9}[Super]+F11${alignr}${color}Rofi Full${color} +${color9}[Super]+F12${alignr}${color}Rofi Small${color} +${color9}[Super]+Enter${alignr}${color}Terminal${color} +${color9}[Super]+[Ctrl]+F${alignr}${color}File Editor${color} +${color9}[Super]+[Ctrl]+B${alignr}${color}Browser${color} +${color9}[Super]+[Ctrl]+E${alignr}${color}Element${color} +${color9}[Super]+[Ctrl]+T${alignr}${color}Email${color} +${color9}[Super]+[Shift]+X${alignr}${color}Lock${color} +${color9}[PrtSc]${alignr}${color}Screenshot${color} +${color9}[Ctrl]+[Alt]+S${alignr}${color}Settings${color} +${color9}[Super]+Q${alignr}${color}Kill Target${color} +${color5}${font Roboto:size=9}D I S T R O ${hr 2}${color} +${color9}${execi 6000 lsb_release -d | grep 'Descr'|awk {'print $2 " " $3" " $4" " $5'}}${alignr}${color}${execi 6000 lsb_release -a | grep 'Release'|awk {'print $2""$3""$4""$5'}}${color} +]]; diff --git a/.config/conky/conky_right.conkyrc b/.config/conky/conky_right.conkyrc new file mode 100644 index 000000000..3fb327a34 --- /dev/null +++ b/.config/conky/conky_right.conkyrc @@ -0,0 +1,200 @@ +--[[ +#===================================================================================== +# arcolinux +# Date : package-date +# Author : Erik Dubois at http://www.erikdubois.be +# Version : package-version +# License : Distributed under the terms of GNU GPL version 2 or later +# Documentation : http://erikdubois.be/ +#====================================================================================== +# CONKY +# For commands in conky.config section: +# http://conky.sourceforge.net/config_settings.html +# +# For commands in conky.text section: +# http://conky.sourceforge.net/variables.html +# +# A PDF with all variables is provided +#===================================================================================== +# FONTS +# To avoid copyright infringements you will have to download +# and install the fonts yourself sometimes. +#===================================================================================== +# GENERAL INFO ABOUT FONTS +# Go and look for a nice font on sites like http://www.dafont.com/ +# Download and unzip - double click the font to install it (font-manager must be installed) +# No font-manager then put fonts in ~/.fonts +# Change the font name in the conky +# The name can be known with a command in the terminal: fc-list | grep "part of name" +# Change width and height of the conky according to font +# Reboot your system or fc-cache -fv in terminal +# Enjoy +#===================================================================================== +# FONTS FOR THIS CONKY +# http://www.dafont.com/style-bats.font +#====================================================================================== +# Titus Modifications +#====================================================================================== +# Changed time from Roboto to GE Inspira which is a base Conky Gotham Addon +# Changed Drives from 2 to 3 +# Modified one_window_type from desktop to normal for KDE compatibility +# Modified Ethernet settings +# Modified Pink Lines to Bright Blue +# Removed Extra symbols and incorrect formatting +#====================================================================================== + +]] + +conky.config = { + + --Various settings + + background = true, -- forked to background + cpu_avg_samples = 2, -- The number of samples to average for CPU monitoring. + diskio_avg_samples = 10, -- The number of samples to average for disk I/O monitoring. + double_buffer = true, -- Use the Xdbe extension? (eliminates flicker) + if_up_strictness = 'address', -- how strict if testing interface is up - up, link or address + net_avg_samples = 2, -- The number of samples to average for net data + no_buffers = true, -- Subtract (file system) buffers from used memory? + temperature_unit = 'celsius', -- fahrenheit or celsius + text_buffer_size = 2048, -- size of buffer for display of content of large variables - default 256 + update_interval = 1, -- update interval + imlib_cache_size = 0, -- disable image cache to get a new spotify cover per song + + + --Placement + alignment = 'bottom_right', -- top_left,top_middle,top_right, + -- bottom_left,bottom_middle,bottom_right, + -- middle_left,middle_middle,middle_right,none + xinerama_head = 2, + + --Arch Duoscreen + --gap_x = -1910, + gap_x = 25, -- pixels between right or left border + gap_y = 55, -- pixels between bottom or top border + minimum_height = 600, -- minimum height of window + minimum_width = 350, -- minimum height of window + maximum_width = 350, -- maximum height of window + + --Graphical + + border_inner_margin = 10, -- margin between border and text + border_outer_margin = 5, -- margin between border and edge of window + border_width = 0, -- border width in pixels + default_bar_width = 80, -- default is 0 - full width + default_bar_height = 10, -- default is 6 + default_gauge_height = 25, -- default is 25 + default_gauge_width =40, -- default is 40 + default_graph_height = 40, -- default is 25 + default_graph_width = 0, -- default is 0 - full width + default_shade_color = '#000000', -- default shading colour + default_outline_color = '#000000', -- default outline colour + draw_borders = false, -- draw borders around text + draw_graph_borders = true, -- draw borders around graphs + draw_shades = false, -- draw shades + draw_outline = false, -- draw outline + stippled_borders = 0, -- dashing the border + + --Textual + + extra_newline = false, -- extra newline at the end - for asesome's wiboxes + format_human_readable = true, -- KiB, MiB rather then number of bytes + font = 'Roboto Mono:size=8', -- font for complete conky unless in code defined + max_text_width = 0, -- 0 will make sure line does not get broken if width too smal + max_user_text = 16384, -- max text in conky default 16384 + override_utf8_locale = true, -- force UTF8 requires xft + short_units = true, -- shorten units from KiB to k + top_name_width = 21, -- width for $top name value default 15 + top_name_verbose = false, -- If true, top name shows the full command line of each process - Default value is false. + uppercase = false, -- uppercase or not + use_spacer = 'none', -- adds spaces around certain objects to align - default none + use_xft = true, -- xft font - anti-aliased font + xftalpha = 1, -- alpha of the xft font - between 0-1 + + --Windows + + own_window = true, -- create your own window to draw + own_window_class = 'Conky', -- sets the class name for conky window + own_window_argb_value = 200, -- real transparency - composite manager required 0-255 + own_window_argb_visual = true, -- use ARGB - composite manager required + own_window_colour = '#000000', -- set colour if own_window_transparent no + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + -- if own_window true - just hints - own_window_type sets it + own_window_transparent = false, -- if own_window_argb_visual is true sets background opacity 0% + own_window_title = 'system_conky', -- set the name manually - default conky "hostname" + own_window_type = 'override', -- if own_window true options are: normal/override/dock/desktop/panel + + + --Colours + + default_color = '#D9DDE2', -- default color and border color + color1 = '#FF0000', + color2 = '#597AA1', + color3 = '#cccccc', + color4 = '#D9BC83', + color5 = '#00BFFF', + color6 = '#FFFFFF', + + --Signal Colours + color7 = '#1F7411', --green + color8 = '#FFA726', --orange + color9 = '#F1544B', --firebrick + + --Lua + + +}; + +conky.text = [[ +${color6}${voffset 4}${font GE Inspira:size=33}${alignc}${time %l}:${time %M} ${time %p}${font}${color} +${color6}${voffset 4}${font GE Inspira:size=10}${alignc}${time %A} ${time %B} ${time %e}, ${time %Y}${font}${color} + +${color5}${font Roboto:size=9}S Y S T E M ${hr 2}${font}${color} +${color9}Hostname:${color} ${alignr}${user_names}@${nodename} +${color9}Distro:${color} ${alignr}${execi 6000 lsb_release -d | grep 'Descr'|awk {'print $2 " " $3" " $4" " $5'}}${execi 6000 lsb_release -a | grep 'Release'|awk {'print $2""$3""$4""$5'}}${color} +${color9}Kernel:${color} ${alignr}${exec uname} ${exec uname -r} +${color9}Uptime:${color} ${alignr}${uptime} +${color5}${font Roboto:size=9}P R O C E S S O R S ${hr 2}${font}${color} +${color9}CPU Freq:${color} $alignr${freq}MHz +${color9}CPU Temp:${color} $alignr${execi 10 sensors | grep 'Core 0' | awk {'print $3'}} +${color9}History:${color} ${alignr}${cpugraph 8,100} +${color9}${offset 30}CPU Core 1:${color} ${alignr}${offset -10}${cpu cpu1}%${alignr}${cpubar cpu1} +${color9}${offset 30}CPU Core 2:${color} ${alignr}${offset -10}${cpu cpu2}%${alignr}${cpubar cpu2} +${color9}${offset 30}CPU Core 3:${color} ${alignr}${offset -10}${cpu cpu3}%${alignr}${cpubar cpu3} +${color9}${offset 30}CPU Core 4:${color} ${alignr}${offset -10}${cpu cpu4}%${alignr}${cpubar cpu4} +${color9}Top Processes${goto 222}cpu%${goto 274}mem%${color} +${voffset 4} 1 - ${top name 1}${alignr}${goto 170} ${goto 222}${top cpu 1} ${goto 274}${top mem 1} + 2 - ${top name 2}${alignr} ${goto 222}${top cpu 2} ${goto 274}${top mem 2} + 3 - ${top name 3}${alignr} ${goto 222}${top cpu 3} ${goto 274}${top mem 3} + 4 - ${top name 4}${alignr} ${goto 222}${top cpu 4} ${goto 274}${top mem 4} + 5 - ${top name 5}${alignr} ${goto 222}${top cpu 5} ${goto 274}${top mem 5} +${color5}${font Roboto:size=9}M E M O R Y ${hr 2}${font}${color} +${color9}RAM: ${color}${alignr}${offset -10}${mem} / ${memmax}${alignr}${membar} +${color9}Swap:${color} ${alignr}${offset -10}${swap} / ${swapmax}${alignr}${swapbar} +${color9}Top Processes${goto 222}cpu%${goto 274}mem%${color} +${voffset 4} 1 - ${top_mem name 1}${alignr}${goto 170} ${goto 222}${top_mem cpu 1} ${goto 274}${top_mem mem 1} + 2 - ${top_mem name 2}${alignr}${goto 170} ${goto 222}${top_mem cpu 2} ${goto 274}${top_mem mem 2} + 3 - ${top_mem name 3}${alignr}${goto 170} ${goto 222}${top_mem cpu 3} ${goto 274}${top_mem mem 3} + 4 - ${top_mem name 4}${alignr}${goto 170} ${goto 222}${top_mem cpu 4} ${goto 274}${top_mem mem 4} + 5 - ${top_mem name 5}${alignr}${goto 170} ${goto 222}${top_mem cpu 5} ${goto 274}${top_mem mem 5} +${color5}${font Roboto:size=9}D R I V E S ${hr 2}${font}${color} +${offset 30}${color9}Root - SSD:${color} ${alignr}${offset -10}U: ${fs_used /} / M: ${fs_size /}${alignr}${fs_bar} +${offset 30}${color9}I/O Read:${color} ${alignr}${offset -10}${diskio_read /dev/sda3}${alignr}${diskiograph_read sda3 8,100} +${offset 30}${color9}I/O Write:${color} ${alignr}${offset -10}${diskio_write /dev/sda3}${alignr}${diskiograph_write sda3 8,100} + +${offset 30}${color9}Home - SSD:${color} ${alignr}${offset -10}U: ${fs_used /home/dt} / M: ${fs_size /home/dt}${alignr}${fs_bar} +${offset 30}${color9}I/O Read:${color} ${alignr}${offset -10}${diskio_read /dev/sda2}${alignr}${diskiograph_read sda2 8,100} +${offset 30}${color9}I/O Write:${color} ${alignr}${offset -10}${diskio_write /dev/sda2}${alignr}${diskiograph_write sda2 8,100} + +${offset 30}${color9}Storage - 750GB:${color} ${alignr}${offset -10}U: ${fs_used /run/media/dt/750GB} / M: ${fs_size /run/media/dt/750GB}${alignr}${fs_bar /run/media/dt/750GB} +${offset 30}${color9}I/O Read:${color} ${alignr}${offset -10}${diskio_read /dev/sdb1}${alignr}${diskiograph_read sdb1 8,100} +${offset 30}${color9}I/O Write:${color} ${alignr}${offset -10}${diskio_write /dev/sdb1}${alignr}${diskiograph_write sdb1 8,100} + +${offset 30}${color9}Storage - 500GB:${color} ${alignr}${offset -10}U: ${fs_used /run/media/dt/500GB} / M: ${fs_size /run/media/dt/500GB}${alignr}${fs_bar /run/media/dt/500GB} +${offset 30}${color9}I/O Read:${color} ${alignr}${offset -10}${diskio_read /dev/sdc1}${alignr}${diskiograph_read sdc1 8,100} +${offset 30}${color9}I/O Write:${color} ${alignr}${offset -10}${diskio_write /dev/sdc1}${alignr}${diskiograph_write sdc1 8,100} +${color5}${color5}${font Roboto:size=9}N E T W O R K ${hr 2}${font}${color} +${color9}${offset 30}IP Address: ${color} ${alignr}${offset -10$}${addrs wlp0s20f3} +${color9}${offset 30}Eth Up:${color} ${alignr}${offset -10$}${upspeed wlp0s20f3}${alignr}${upspeedgraph wlp0s20f3 8,100} +${color9}${offset 30}Eth Down:${color} ${alignr}${offset -10$}${downspeed wlp0s20f3}${alignr}${downspeedgraph wlp0s20f3 8,100} +]]; diff --git a/.config/cynfetch/config.conf b/.config/cynfetch/config.conf new file mode 100644 index 000000000..9aac3ba6b --- /dev/null +++ b/.config/cynfetch/config.conf @@ -0,0 +1,754 @@ +# See this wiki page for more info: +# https://github.com/dylanaraps/cynfetch/wiki/Customizing-Info +print_info() { + info title + info underline + + info "OS" distro + info "Host" model + info "Kernel" kernel + info "Uptime" uptime + info "Packages" packages + info "Shell" shell + info "Resolution" resolution + info "DE" de + info "WM" wm + info "WM Theme" wm_theme + info "Theme" theme + info "Icons" icons + info "Terminal" term + info "Terminal Font" term_font + info "CPU" cpu + info "GPU" gpu + info "Memory" memory + + # info "GPU Driver" gpu_driver # Linux/macOS only + # info "CPU Usage" cpu_usage + # info "Disk" disk + # info "Battery" battery + # info "Font" font + # info "Song" song + # info "Local IP" local_ip + # info "Public IP" public_ip + # info "Users" users + # info "Locale" locale # This only works on glibc systems. + + info line_break + info cols + info line_break +} + + +# Kernel + + +# Shorten the output of the kernel function. +# +# Default: 'on' +# Values: 'on', 'off' +# Flag: --kernel_shorthand +# Supports: Everything except *BSDs (except PacBSD and PC-BSD) +# +# Example: +# on: '4.8.9-1-ARCH' +# off: 'Linux 4.8.9-1-ARCH' +kernel_shorthand="off" + + +# Distro + + +# Shorten the output of the distro function +# +# Default: 'off' +# Values: 'on', 'off', 'tiny' +# Flag: --distro_shorthand +# Supports: Everything except Windows and Haiku +distro_shorthand="off" + +# Show/Hide OS Architecture. +# Show 'x86_64', 'x86' and etc in 'Distro:' output. +# +# Default: 'on' +# Values: 'on', 'off' +# Flag: --os_arch +# +# Example: +# on: 'Arch Linux x86_64' +# off: 'Arch Linux' +os_arch="on" + + +# Uptime + + +# Shorten the output of the uptime function +# +# Default: 'on' +# Values: 'on', 'off', 'tiny' +# Flag: --uptime_shorthand +# +# Example: +# on: '2 days, 10 hours, 3 mins' +# off: '2 days, 10 hours, 3 minutes' +# tiny: '2d 10h 3m' +uptime_shorthand="off" + + +# Packages + + +# Show/Hide Package Manager names. +# +# Default: 'tiny' +# Values: 'on', 'tiny' 'off' +# Flag: --package_managers +# +# Example: +# on: '998 (pacman), 8 (flatpak), 4 (snap)' +# tiny: '908 (pacman, flatpak, snap)' +# off: '908' +package_managers="on" + + +# Shell + + +# Show the path to $SHELL +# +# Default: 'off' +# Values: 'on', 'off' +# Flag: --shell_path +# +# Example: +# on: '/bin/bash' +# off: 'bash' +shell_path="on" + +# Show $SHELL version +# +# Default: 'on' +# Values: 'on', 'off' +# Flag: --shell_version +# +# Example: +# on: 'bash 4.4.5' +# off: 'bash' +shell_version="on" + + +# CPU + + +# CPU speed type +# +# Default: 'bios_limit' +# Values: 'scaling_cur_freq', 'scaling_min_freq', 'scaling_max_freq', 'bios_limit'. +# Flag: --speed_type +# Supports: Linux with 'cpufreq' +# NOTE: Any file in '/sys/devices/system/cpu/cpu0/cpufreq' can be used as a value. +speed_type="bios_limit" + +# CPU speed shorthand +# +# Default: 'off' +# Values: 'on', 'off'. +# Flag: --speed_shorthand +# NOTE: This flag is not supported in systems with CPU speed less than 1 GHz +# +# Example: +# on: 'i7-6500U (4) @ 3.1GHz' +# off: 'i7-6500U (4) @ 3.100GHz' +speed_shorthand="on" + +# Enable/Disable CPU brand in output. +# +# Default: 'on' +# Values: 'on', 'off' +# Flag: --cpu_brand +# +# Example: +# on: 'Intel i7-6500U' +# off: 'i7-6500U (4)' +cpu_brand="on" + +# CPU Speed +# Hide/Show CPU speed. +# +# Default: 'on' +# Values: 'on', 'off' +# Flag: --cpu_speed +# +# Example: +# on: 'Intel i7-6500U (4) @ 3.1GHz' +# off: 'Intel i7-6500U (4)' +cpu_speed="on" + +# CPU Cores +# Display CPU cores in output +# +# Default: 'logical' +# Values: 'logical', 'physical', 'off' +# Flag: --cpu_cores +# Support: 'physical' doesn't work on BSD. +# +# Example: +# logical: 'Intel i7-6500U (4) @ 3.1GHz' (All virtual cores) +# physical: 'Intel i7-6500U (2) @ 3.1GHz' (All physical cores) +# off: 'Intel i7-6500U @ 3.1GHz' +cpu_cores="physical" + +# CPU Temperature +# Hide/Show CPU temperature. +# Note the temperature is added to the regular CPU function. +# +# Default: 'off' +# Values: 'C', 'F', 'off' +# Flag: --cpu_temp +# Supports: Linux, BSD +# NOTE: For FreeBSD and NetBSD-based systems, you'll need to enable +# coretemp kernel module. This only supports newer Intel processors. +# +# Example: +# C: 'Intel i7-6500U (4) @ 3.1GHz [27.2°C]' +# F: 'Intel i7-6500U (4) @ 3.1GHz [82.0°F]' +# off: 'Intel i7-6500U (4) @ 3.1GHz' +cpu_temp="C" + + +# GPU + + +# Enable/Disable GPU Brand +# +# Default: 'on' +# Values: 'on', 'off' +# Flag: --gpu_brand +# +# Example: +# on: 'AMD HD 7950' +# off: 'HD 7950' +gpu_brand="on" + +# Which GPU to display +# +# Default: 'all' +# Values: 'all', 'dedicated', 'integrated' +# Flag: --gpu_type +# Supports: Linux +# +# Example: +# all: +# GPU1: AMD HD 7950 +# GPU2: Intel Integrated Graphics +# +# dedicated: +# GPU1: AMD HD 7950 +# +# integrated: +# GPU1: Intel Integrated Graphics +gpu_type="all" + + +# Resolution + + +# Display refresh rate next to each monitor +# Default: 'off' +# Values: 'on', 'off' +# Flag: --refresh_rate +# Supports: Doesn't work on Windows. +# +# Example: +# on: '1920x1080 @ 60Hz' +# off: '1920x1080' +refresh_rate="on" + + +# Gtk Theme / Icons / Font + + +# Shorten output of GTK Theme / Icons / Font +# +# Default: 'off' +# Values: 'on', 'off' +# Flag: --gtk_shorthand +# +# Example: +# on: 'Numix, Adwaita' +# off: 'Numix [GTK2], Adwaita [GTK3]' +gtk_shorthand="off" + + +# Enable/Disable gtk2 Theme / Icons / Font +# +# Default: 'on' +# Values: 'on', 'off' +# Flag: --gtk2 +# +# Example: +# on: 'Numix [GTK2], Adwaita [GTK3]' +# off: 'Adwaita [GTK3]' +gtk2="on" + +# Enable/Disable gtk3 Theme / Icons / Font +# +# Default: 'on' +# Values: 'on', 'off' +# Flag: --gtk3 +# +# Example: +# on: 'Numix [GTK2], Adwaita [GTK3]' +# off: 'Numix [GTK2]' +gtk3="on" + + +# IP Address + + +# Website to ping for the public IP +# +# Default: 'http://ident.me' +# Values: 'url' +# Flag: --ip_host +public_ip_host="http://ident.me" + + + +# Disk + + +# Which disks to display. +# The values can be any /dev/sdXX, mount point or directory. +# NOTE: By default we only show the disk info for '/'. +# +# Default: '/' +# Values: '/', '/dev/sdXX', '/path/to/drive'. +# Flag: --disk_show +# +# Example: +# disk_show=('/' '/dev/sdb1'): +# 'Disk (/): 74G / 118G (66%)' +# 'Disk (/mnt/Videos): 823G / 893G (93%)' +# +# disk_show=('/'): +# 'Disk (/): 74G / 118G (66%)' +# +disk_show=('/') + +# Disk subtitle. +# What to append to the Disk subtitle. +# +# Default: 'mount' +# Values: 'mount', 'name', 'dir' +# Flag: --disk_subtitle +# +# Example: +# name: 'Disk (/dev/sda1): 74G / 118G (66%)' +# 'Disk (/dev/sdb2): 74G / 118G (66%)' +# +# mount: 'Disk (/): 74G / 118G (66%)' +# 'Disk (/mnt/Local Disk): 74G / 118G (66%)' +# 'Disk (/mnt/Videos): 74G / 118G (66%)' +# +# dir: 'Disk (/): 74G / 118G (66%)' +# 'Disk (Local Disk): 74G / 118G (66%)' +# 'Disk (Videos): 74G / 118G (66%)' +disk_subtitle="mount" + + +# Song + + +# Manually specify a music player. +# +# Default: 'auto' +# Values: 'auto', 'player-name' +# Flag: --music_player +# +# Available values for 'player-name': +# +# amarok +# audacious +# banshee +# bluemindo +# clementine +# cmus +# deadbeef +# deepin-music +# dragon +# elisa +# exaile +# gnome-music +# gmusicbrowser +# Google Play +# guayadeque +# iTunes +# juk +# lollypop +# mocp +# mopidy +# mpd +# pogo +# pragha +# qmmp +# quodlibet +# rhythmbox +# sayonara +# smplayer +# spotify +# tomahawk +# vlc +# xmms2d +# yarock +music_player="auto" + +# Format to display song information. +# +# Default: '%artist% - %album% - %title%' +# Values: '%artist%', '%album%', '%title%' +# Flag: --song_format +# +# Example: +# default: 'Song: Jet - Get Born - Sgt Major' +song_format="%artist% - %album% - %title%" + +# Print the Artist, Album and Title on separate lines +# +# Default: 'off' +# Values: 'on', 'off' +# Flag: --song_shorthand +# +# Example: +# on: 'Artist: The Fratellis' +# 'Album: Costello Music' +# 'Song: Chelsea Dagger' +# +# off: 'Song: The Fratellis - Costello Music - Chelsea Dagger' +song_shorthand="off" + +# 'mpc' arguments (specify a host, password etc). +# +# Default: '' +# Example: mpc_args=(-h HOST -P PASSWORD) +mpc_args=() + + +# Text Colors + + +# Text Colors +# +# Default: 'distro' +# Values: 'distro', 'num' 'num' 'num' 'num' 'num' 'num' +# Flag: --colors +# +# Each number represents a different part of the text in +# this order: 'title', '@', 'underline', 'subtitle', 'colon', 'info' +# +# Example: +# colors=(distro) - Text is colored based on Distro colors. +# colors=(4 6 1 8 8 6) - Text is colored in the order above. +colors=(distro) + + +# Text Options + + +# Toggle bold text +# +# Default: 'on' +# Values: 'on', 'off' +# Flag: --bold +bold="on" + +# Enable/Disable Underline +# +# Default: 'on' +# Values: 'on', 'off' +# Flag: --underline +underline_enabled="on" + +# Underline character +# +# Default: '-' +# Values: 'string' +# Flag: --underline_char +underline_char="-" + + +# Info Separator +# Replace the default separator with the specified string. +# +# Default: ':' +# Flag: --separator +# +# Example: +# separator="->": 'Shell-> bash' +# separator=" =": 'WM = instawm' +separator=":" + + +# Color Blocks + + +# Color block range +# The range of colors to print. +# +# Default: '0', '7' +# Values: 'num' +# Flag: --block_range +# +# Example: +# +# Display colors 0-7 in the blocks. (8 colors) +# cynfetch --block_range 0 7 +# +# Display colors 0-15 in the blocks. (16 colors) +# cynfetch --block_range 0 15 +block_range=(0 15) + +# Toggle color blocks +# +# Default: 'on' +# Values: 'on', 'off' +# Flag: --color_blocks +color_blocks="on" + +# Color block width in spaces +# +# Default: '3' +# Values: 'num' +# Flag: --block_width +block_width=3 + +# Color block height in lines +# +# Default: '1' +# Values: 'num' +# Flag: --block_height +block_height=1 + + +# Progress Bars + + +# Bar characters +# +# Default: '-', '=' +# Values: 'string', 'string' +# Flag: --bar_char +# +# Example: +# cynfetch --bar_char 'elapsed' 'total' +# cynfetch --bar_char '-' '=' +bar_char_elapsed="-" +bar_char_total="=" + +# Toggle Bar border +# +# Default: 'on' +# Values: 'on', 'off' +# Flag: --bar_border +bar_border="on" + +# Progress bar length in spaces +# Number of chars long to make the progress bars. +# +# Default: '15' +# Values: 'num' +# Flag: --bar_length +bar_length=15 + +# Progress bar colors +# When set to distro, uses your distro's logo colors. +# +# Default: 'distro', 'distro' +# Values: 'distro', 'num' +# Flag: --bar_colors +# +# Example: +# cynfetch --bar_colors 3 4 +# cynfetch --bar_colors distro 5 +bar_color_elapsed="distro" +bar_color_total="distro" + + +# Info display +# Display a bar with the info. +# +# Default: 'off' +# Values: 'bar', 'infobar', 'barinfo', 'off' +# Flags: --cpu_display +# --memory_display +# --battery_display +# --disk_display +# +# Example: +# bar: '[---=======]' +# infobar: 'info [---=======]' +# barinfo: '[---=======] info' +# off: 'info' +cpu_display="off" +memory_display="off" +battery_display="off" +disk_display="off" + + +# Backend Settings + + +# Image backend. +# +# Default: 'ascii' +# Values: 'ascii', 'caca', 'jp2a', 'iterm2', 'off', 'termpix', 'pixterm', 'tycat', 'w3m', 'kitty' +# Flag: --backend + +# Choose next line to have ascii - do not forget to hashtag out the image_source 10 lines down +image_backend="ascii" + +# Choose next line to have the logo - do not forget to delete the hashtag of one of the image_sources 10 lines down +#image_backend="w3m" + +# Image Source +# +# Which image or ascii file to display. +# +# Default: 'auto' +# Values: 'auto', 'ascii', 'wallpaper', '/path/to/img', '/path/to/ascii', '/path/to/dir/' +# Flag: --source +# +# NOTE: 'auto' will pick the best image source for whatever image backend is used. +# In ascii mode, distro ascii art will be used and in an image mode, your +# wallpaper will be used. +#image_source="auto" + +# Ascii Options + + +# Ascii distro +# Which distro's ascii art to display. +# +# Default: 'auto' +# Values: 'auto', 'distro_name' +# Flag: --ascii_distro +# +# NOTE: Arch and Ubuntu have 'old' logo variants. +# Change this to 'arch_old' or 'ubuntu_old' to use the old logos. +# NOTE: Ubuntu has flavor variants. +# Change this to 'Lubuntu', 'Xubuntu', 'Ubuntu-GNOME' or 'Ubuntu-Budgie' to use the flavors. +# NOTE: Arch, Crux and Gentoo have a smaller logo variant. +# Change this to 'arch_small', 'crux_small' or 'gentoo_small' to use the small logos. +ascii_distro="auto" + +# Ascii Colors +# +# Default: 'distro' +# Values: 'distro', 'num' 'num' 'num' 'num' 'num' 'num' +# Flag: --ascii_colors +# +# Example: +# ascii_colors=(distro) - Ascii is colored based on Distro colors. +# ascii_colors=(4 6 1 8 8 6) - Ascii is colored using these colors. +ascii_colors=(distro) + +# Bold ascii logo +# Whether or not to bold the ascii logo. +# +# Default: 'on' +# Values: 'on', 'off' +# Flag: --ascii_bold +ascii_bold="on" + + +# Image Options + + +# Image loop +# Setting this to on will make cynfetch redraw the image constantly until +# Ctrl+C is pressed. This fixes display issues in some terminal emulators. +# +# Default: 'off' +# Values: 'on', 'off' +# Flag: --loop +image_loop="off" + +# Thumbnail directory +# +# Default: '~/.cache/thumbnails/cynfetch' +# Values: 'dir' +thumbnail_dir="${XDG_CACHE_HOME:-${HOME}/.cache}/thumbnails/cynfetch" + +# Crop mode +# +# Default: 'normal' +# Values: 'normal', 'fit', 'fill' +# Flag: --crop_mode +# +# See this wiki page to learn about the fit and fill options. +# https://github.com/dylanaraps/cynfetch/wiki/What-is-Waifu-Crop%3F +crop_mode="normal" + +# Crop offset +# Note: Only affects 'normal' crop mode. +# +# Default: 'center' +# Values: 'northwest', 'north', 'northeast', 'west', 'center' +# 'east', 'southwest', 'south', 'southeast' +# Flag: --crop_offset +crop_offset="center" + +# Image size +# The image is half the terminal width by default. +# +# Default: 'auto' +# Values: 'auto', '00px', '00%', 'none' +# Flags: --image_size +# --size +image_size="300px" + +# Gap between image and text +# +# Default: '3' +# Values: 'num', '-num' +# Flag: --gap +#this is the setting for termite +#put a hashtag in front of next line for urxvt +#gap=-25 + +# Image offsets +# Only works with the w3m backend. +# +# Default: '0' +# Values: 'px' +# Flags: --xoffset +# --yoffset +yoffset=10 +xoffset=10 + +# Image background color +# Only works with the w3m backend. +# +# Default: '' +# Values: 'color', 'blue' +# Flag: --bg_color +background_color= + + +# Misc Options + +# Stdout mode +# Turn off all colors and disables image backend (ASCII/Image). +# Useful for piping into another command. +# Default: 'off' +# Values: 'on', 'off' +stdout="off" + +# Happy birthday ascii + +# Show HAPPY BIRTHDAY ascii art intead of distro's logo +# Default: 'on' +# Values: 'on', 'off' +# Flag: --user_bday +# Note: To input user's birthday (example: 12 June), use this command: cynfetch --birthday 12/06 +user_bday="on" diff --git a/.config/dconf/user b/.config/dconf/user new file mode 100644 index 000000000..a6dfa354c Binary files /dev/null and b/.config/dconf/user differ diff --git a/.config/dconf/user~0 b/.config/dconf/user~0 new file mode 100644 index 000000000..1893314d8 Binary files /dev/null and b/.config/dconf/user~0 differ diff --git a/.config/dunst/dunstrc b/.config/dunst/dunstrc new file mode 100644 index 000000000..1f35c77fe --- /dev/null +++ b/.config/dunst/dunstrc @@ -0,0 +1,416 @@ +[global] + ### Display ### + + # Which monitor should the notifications be displayed on. + monitor = 0 + + # Display notification on focused monitor. Possible modes are: + # mouse: follow mouse pointer + # keyboard: follow window with keyboard focus + # none: don't follow anything + # + # "keyboard" needs a window manager that exports the + # _NET_ACTIVE_WINDOW property. + # This should be the case for almost all modern window managers. + # + # If this option is set to mouse or keyboard, the monitor option + # will be ignored. + follow = none + + # The geometry of the window: + # [{width}]x{height}[+/-{x}+/-{y}] + # The geometry of the message window. + # The height is measured in number of notifications everything else + # in pixels. If the width is omitted but the height is given + # ("-geometry x2"), the message window expands over the whole screen + # (dmenu-like). If width is 0, the window expands to the longest + # message displayed. A positive x is measured from the left, a + # negative from the right side of the screen. Y is measured from + # the top and down respectively. + # The width can be negative. In this case the actual width is the + # screen width minus the width defined in within the geometry option. + geometry = "300x5-30+20" + + # Show how many messages are currently hidden (because of geometry). + indicate_hidden = yes + + # Shrink window if it's smaller than the width. Will be ignored if + # width is 0. + shrink = no + + # The transparency of the window. Range: [0; 100]. + # This option will only work if a compositing window manager is + # present (e.g. xcompmgr, compiz, etc.). + transparency = 0 + + # The height of the entire notification. If the height is smaller + # than the font height and padding combined, it will be raised + # to the font height and padding. + notification_height = 0 + + # Draw a line of "separator_height" pixel height between two + # notifications. + # Set to 0 to disable. + separator_height = 2 + + # Padding between text and separator. + padding = 8 + + # Horizontal padding. + horizontal_padding = 8 + + # Defines width in pixels of frame around the notification window. + # Set to 0 to disable. + frame_width = 3 + + # Defines color of the frame around the notification window. + frame_color = "#aaaaaa" + + # Define a color for the separator. + # possible values are: + # * auto: dunst tries to find a color fitting to the background; + # * foreground: use the same color as the foreground; + # * frame: use the same color as the frame; + # * anything else will be interpreted as a X color. + separator_color = frame + + # Sort messages by urgency. + sort = yes + + # Don't remove messages, if the user is idle (no mouse or keyboard input) + # for longer than idle_threshold seconds. + # Set to 0 to disable. + # A client can set the 'transient' hint to bypass this. See the rules + # section for how to disable this if necessary + idle_threshold = 120 + + ### Text ### + + font = Monospace 8 + + # The spacing between lines. If the height is smaller than the + # font height, it will get raised to the font height. + line_height = 0 + + # Possible values are: + # full: Allow a small subset of html markup in notifications: + # bold + # italic + # strikethrough + # underline + # + # For a complete reference see + # . + # + # strip: This setting is provided for compatibility with some broken + # clients that send markup even though it's not enabled on the + # server. Dunst will try to strip the markup but the parsing is + # simplistic so using this option outside of matching rules for + # specific applications *IS GREATLY DISCOURAGED*. + # + # no: Disable markup parsing, incoming notifications will be treated as + # plain text. Dunst will not advertise that it has the body-markup + # capability if this is set as a global setting. + # + # It's important to note that markup inside the format option will be parsed + # regardless of what this is set to. + markup = full + + # The format of the message. Possible variables are: + # %a appname + # %s summary + # %b body + # %i iconname (including its path) + # %I iconname (without its path) + # %p progress value if set ([ 0%] to [100%]) or nothing + # %n progress value if set without any extra characters + # %% Literal % + # Markup is allowed + format = "%s\n%b" + + # Alignment of message text. + # Possible values are "left", "center" and "right". + alignment = center + + # Show age of message if message is older than show_age_threshold + # seconds. + # Set to -1 to disable. + show_age_threshold = 60 + + # Split notifications into multiple lines if they don't fit into + # geometry. + word_wrap = yes + + # When word_wrap is set to no, specify where to make an ellipsis in long lines. + # Possible values are "start", "middle" and "end". + ellipsize = middle + + # Ignore newlines '\n' in notifications. + ignore_newline = no + + # Stack together notifications with the same content + stack_duplicates = true + + # Hide the count of stacked notifications with the same content + hide_duplicate_count = false + + # Display indicators for URLs (U) and actions (A). + show_indicators = yes + + ### Icons ### + + # Align icons left/right/off + icon_position = left + + # Scale larger icons down to this size, set to 0 to disable + max_icon_size = 32 + + # Paths to default icons. + icon_path = /usr/share/icons/gnome/16x16/status/:/usr/share/icons/gnome/16x16/devices/ + + ### History ### + + # Should a notification popped up from history be sticky or timeout + # as if it would normally do. + sticky_history = yes + + # Maximum amount of notifications kept in history + history_length = 20 + + ### Misc/Advanced ### + + # dmenu path. + dmenu = /usr/bin/dmenu -p dunst: + + # Browser for opening urls in context menu. + browser = /usr/bin/brave -new-tab + + # Always run rule-defined scripts, even if the notification is suppressed + always_run_script = true + + # Define the title of the windows spawned by dunst + title = Dunst + + # Define the class of the windows spawned by dunst + class = Dunst + + # Print a notification on startup. + # This is mainly for error detection, since dbus (re-)starts dunst + # automatically after a crash. + startup_notification = false + + # Manage dunst's desire for talking + # Can be one of the following values: + # crit: Critical features. Dunst aborts + # warn: Only non-fatal warnings + # mesg: Important Messages + # info: all unimportant stuff + # debug: all less than unimportant stuff + verbosity = mesg + + # Define the corner radius of the notification window + # in pixel size. If the radius is 0, you have no rounded + # corners. + # The radius will be automatically lowered if it exceeds half of the + # notification height to avoid clipping text and/or icons. + corner_radius = 0 + + ### Legacy + + # Use the Xinerama extension instead of RandR for multi-monitor support. + # This setting is provided for compatibility with older nVidia drivers that + # do not support RandR and using it on systems that support RandR is highly + # discouraged. + # + # By enabling this setting dunst will not be able to detect when a monitor + # is connected or disconnected which might break follow mode if the screen + # layout changes. + force_xinerama = false + + ### mouse + + # Defines action of mouse event + # Possible values are: + # * none: Don't do anything. + # * do_action: If the notification has exactly one action, or one is marked as default, + # invoke it. If there are multiple and no default, open the context menu. + # * close_current: Close current notification. + # * close_all: Close all notifications. + mouse_left_click = close_current + mouse_middle_click = do_action + mouse_right_click = close_all + +# Experimental features that may or may not work correctly. Do not expect them +# to have a consistent behaviour across releases. +[experimental] + # Calculate the dpi to use on a per-monitor basis. + # If this setting is enabled the Xft.dpi value will be ignored and instead + # dunst will attempt to calculate an appropriate dpi value for each monitor + # using the resolution and physical size. This might be useful in setups + # where there are multiple screens with very different dpi values. + per_monitor_dpi = false + +[shortcuts] + + # Shortcuts are specified as [modifier+][modifier+]...key + # Available modifiers are "ctrl", "mod1" (the alt-key), "mod2", + # "mod3" and "mod4" (windows-key). + # Xev might be helpful to find names for keys. + + # Close notification. + close = ctrl+space + + # Close all notifications. + close_all = ctrl+shift+space + + # Redisplay last message(s). + # On the US keyboard layout "grave" is normally above TAB and left + # of "1". Make sure this key actually exists on your keyboard layout, + # e.g. check output of 'xmodmap -pke' + history = ctrl+grave + + # Context menu. + context = ctrl+shift+period + +[urgency_low] + # IMPORTANT: colors have to be defined in quotation marks. + # Otherwise the "#" and following would be interpreted as a comment. + frame_color = "#3B7C87" + foreground = "#3B7C87" + background = "#1e2429" + timeout = 4 + # Icon for notifications with low urgency, uncomment to enable + #icon = /path/to/icon + +[urgency_normal] + frame_color = "#5B8234" + foreground = "#5B8234" + background = "#1e2429" + timeout = 8 + # Icon for notifications with normal urgency, uncomment to enable + #icon = /path/to/icon + +[urgency_critical] + frame_color = "#B7472A" + foreground = "#B7472A" + background = "#1e2429" + timeout = 10 + # Icon for notifications with critical urgency, uncomment to enable + #icon = /path/to/icon + +# Every section that isn't one of the above is interpreted as a rules to +# override settings for certain messages. +# +# Messages can be matched by +# appname (discouraged, see desktop_entry) +# body +# category +# desktop_entry +# icon +# match_transient +# msg_urgency +# stack_tag +# summary +# +# and you can override the +# background +# foreground +# format +# frame_color +# fullscreen +# new_icon +# set_stack_tag +# set_transient +# timeout +# urgency +# +# Shell-like globbing will get expanded. +# +# Instead of the appname filter, it's recommended to use the desktop_entry filter. +# GLib based applications export their desktop-entry name. In comparison to the appname, +# the desktop-entry won't get localized. +# +# SCRIPTING +# You can specify a script that gets run when the rule matches by +# setting the "script" option. +# The script will be called as follows: +# script appname summary body icon urgency +# where urgency can be "LOW", "NORMAL" or "CRITICAL". +# +# NOTE: if you don't want a notification to be displayed, set the format +# to "". +# NOTE: It might be helpful to run dunst -print in a terminal in order +# to find fitting options for rules. + +# Disable the transient hint so that idle_threshold cannot be bypassed from the +# client +#[transient_disable] +# match_transient = yes +# set_transient = no +# +# Make the handling of transient notifications more strict by making them not +# be placed in history. +#[transient_history_ignore] +# match_transient = yes +# history_ignore = yes + +# fullscreen values +# show: show the notifications, regardless if there is a fullscreen window opened +# delay: displays the new notification, if there is no fullscreen window active +# If the notification is already drawn, it won't get undrawn. +# pushback: same as delay, but when switching into fullscreen, the notification will get +# withdrawn from screen again and will get delayed like a new notification +#[fullscreen_delay_everything] +# fullscreen = delay +#[fullscreen_show_critical] +# msg_urgency = critical +# fullscreen = show + +#[espeak] +# summary = "*" +# script = dunst_espeak.sh + +#[script-test] +# summary = "*script*" +# script = dunst_test.sh + +#[ignore] +# # This notification will not be displayed +# summary = "foobar" +# format = "" + +#[history-ignore] +# # This notification will not be saved in history +# summary = "foobar" +# history_ignore = yes + +#[skip-display] +# # This notification will not be displayed, but will be included in the history +# summary = "foobar" +# skip_display = yes + +#[signed_on] +# appname = Pidgin +# summary = "*signed on*" +# urgency = low +# +#[signed_off] +# appname = Pidgin +# summary = *signed off* +# urgency = low +# +#[says] +# appname = Pidgin +# summary = *says* +# urgency = critical +# +#[twitter] +# appname = Pidgin +# summary = *twitter.com* +# urgency = normal +# +#[stack-volumes] +# appname = "some_volume_notifiers" +# set_stack_tag = "volume" +# +# vim: ft=cfg \ No newline at end of file diff --git a/.config/filezilla/filezilla.xml b/.config/filezilla/filezilla.xml new file mode 100644 index 000000000..6bf8f0adf --- /dev/null +++ b/.config/filezilla/filezilla.xml @@ -0,0 +1,164 @@ + + + + 1 + 0 + 6000 + 7000 + 0 + 0 + + http://ip.filezilla-project.org/ip.php + + 1 + 0 + 20 + 0 + 0 + + + 1 + 2 + 5 + 0 + 1000 + 100 + 0 + 0 + 0 + 0 + 4194304 + 262144 + 0 + 0 + + + + + + 0 + 0 + + 0 + + + + 10 + 0 + 0 + 1 + 1 + 15 + 600 + 2 + 0 + am|asp|bat|c|cfm|cgi|conf|cpp|css|dhtml|diz|h|hpp|htm|html|in|inc|java|js|jsp|lua|m4|mak|md5|nfo|nsi|pas|patch|pem|php|phtml|pl|po|py|qmail|sh|sha1|sha256|sha512|shtml|sql|svg|tcl|tpl|txt|vbs|xhtml|xml|xrc + 1 + 1 + + 0 + 0 + 1 + 7 + + + + 0 + 0 + 0 + 0 + 0 + 3.46.3 + + + 1 + 1 + 0 + 0 + 0 + 1 + 0 + 180 60 180 80 60 150 + 170 80 120 120 + 150 75 80 100 80 85 + 0 1926 32 1906 928 + 97 -130 500000000 235 235 500000000 + 0 0 + 0 0 + + + 1 + 1 + + 0 + 1 + + 1 + 1 + 0 2357 275 1044 528 + default + 125 + 0 + 0/New site + 1111 + 111111 + 0,1,2,3 + 0,1,2,3,4,5 + 1 + 0 + 1 + 0 + 0 + 0 + 0 + + + + + 0 + + 1 + 1 + + 1 + _ + 1 + + 0 + 0 + 0 + 0 + 0 + 0 + 1 + + 0 + 0 + + /home/dt/.config/filezilla/ + 1 + 0 + + + + + 212.71.252.77 + 22 + 1 + 0 + root + 2 + 0 + MODE_DEFAULT + 0 + Auto + 0 + New site + 0/New site + + /mnt/750GB/Other Junk/Backup/Minecraft/Worlds/BuildTools/ + + + + + diff --git a/.config/filezilla/layout.xml b/.config/filezilla/layout.xml new file mode 100644 index 000000000..6db701206 --- /dev/null +++ b/.config/filezilla/layout.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/.config/filezilla/lockfile b/.config/filezilla/lockfile new file mode 100644 index 000000000..e69de29bb diff --git a/.config/filezilla/queue.sqlite3 b/.config/filezilla/queue.sqlite3 new file mode 100644 index 000000000..7f16a2d9a Binary files /dev/null and b/.config/filezilla/queue.sqlite3 differ diff --git a/.config/filezilla/recentservers.xml b/.config/filezilla/recentservers.xml new file mode 100644 index 000000000..3bf42586c --- /dev/null +++ b/.config/filezilla/recentservers.xml @@ -0,0 +1,18 @@ + + + + + 212.71.252.77 + 21 + 0 + 0 + root + 2 + 0 + MODE_DEFAULT + 0 + Auto + 0 + + + diff --git a/.config/filezilla/sitemanager.xml b/.config/filezilla/sitemanager.xml new file mode 100644 index 000000000..c6d08bcac --- /dev/null +++ b/.config/filezilla/sitemanager.xml @@ -0,0 +1,25 @@ + + + + + 212.71.252.77 + 22 + 1 + 0 + root + 2 + 0 + MODE_DEFAULT + 0 + Auto + 0 + New site + + 0 + + + 0 + 0 + + + diff --git a/.config/filezilla/trustedcerts.xml b/.config/filezilla/trustedcerts.xml new file mode 100644 index 000000000..f1958fcaf --- /dev/null +++ b/.config/filezilla/trustedcerts.xml @@ -0,0 +1,6 @@ + + + + 212.71.252.77 + + diff --git a/.config/fish/config.fish b/.config/fish/config.fish new file mode 100644 index 000000000..deb5339c6 --- /dev/null +++ b/.config/fish/config.fish @@ -0,0 +1,280 @@ +function fish_greeting + neofetch +end + +# Check ports for current user +function ports + sudo netstat -tulanp +end + +# Do a quick speedtest +function speedtest + speedtest-cli --server 2406 --simple +end + +#set permissions for user +function setperm --argument-names "filename" + sudo chown dt:dt $filename +end + +#list comamnds +function l --argument-names "filename" + lsd $filename +end + +function ls --argument-names "filename" + lsd $filename +end + +function la + ls -a +end + +function ll + ls -l +end + +function lla + ls -la +end + +function lt + ls --tree +end + +function lg --argument-names "filename" + ls -A | egrep $filename +end + +# Update Repo +function pacman + command sudo pacman $argv +end + +function update + pacman -Syyu +end + +function yay-update + yay -Syyu +end + +#clear command +function clear + command clear && fish +end + +#pacman unlock +function unlock + sudo rm /var/lib/pacman/db.lck +end + +#free +function free + command free -mt +end + +#continue download +function wget + command wget -c $argv +end + +#grub update +function update-grub + sudo grub-mkconfig -o /boot/grub/grub.cfg +end + +#youtube-dl commands +function yta-aac --argument-names "filename" + youtube-dl --extract-audio --audio-format aac $filename +end + +function yta-best --argument-names "filename" + youtube-dl --extract-audio --audio-format best $filename +end + +function yta-m4a --argument-names "filename" + youtube-dl --extract-audio --audio-format m4a $filename +end + +function yta-mp3 --argument-names "filename" + youtube-dl --extract-audio --audio-format mp3 $filename +end + +function yta-wav --argument-names "filename" + youtube-dl --extract-audio --audio-format wav $filename +end + +#check aur and arch packages +function checkarch + pacman -Qqetn >~/package_list.txt +end + +function checkaur + pacman -Qqetm >~/package_list_aur.txt +end + +#rsync commands +function rsync-move --argument-names "filename" + rsync -avz --progress -h --remove-source-files $filename +end + +function rsync-synchronize --argument-names "filename" + rsync -avzu --delete --progress -h $filename +end + +function rsync-update --argument-names "filename" + rsync -avzu --progress -h $filename +end + +function rsync-copy --argument-names "filename" + rsync -avz --progress -h $filename +end + +#github commands +function g --argument-names "git" + git $git +end + +function gadd --argument-names "git" + git add $git +end + +function gbranch --argument-names "git" + git branch $git +end + +function gcommit --argument-names "git" + git commit -S -v $git +end + +function gcommitmsg --argument-names "git" + git commit -S -m $git +end + +function gclone --argument-names "git" + git clone $git +end + +function gclean --argument-names "git" + git clean -id $git +end + +function gdiff --argument-names "git" + git diff $git +end + +function gfetch --argument-names "git" + git fetch $git +end + +function ghelp --argument-names "git" + git help $git +end + +function gpull --argument-names "git" + git pull $git +end + + +function gmerge --argument-names "git" + git merge $git +end + +function gpush --argument-names "git" + git push $git +end + +function gremote --argument-names "git" + git remote $git +end + +function grebase --argument-names "git" + git rebase $git +end + +function grevert --argument-names "git" + git revert $git +end + +function greset --argument-names "git" + git reset $git +end + +function grm --argument-names "git" + git rm $git +end + +function gremote --argument-names "git" + git remote remove $git +end + +function grestore --argument-names "git" + git restore $git +end + +function greset --argument-names "git" + git reset -- $git +end + +function gshow --argument-names "git" + git show $git +end + +function gstatus --argument-names "git" + git status $git +end + +function gstash --argument-names "git" + git stash $git +end + +function updaterepo --argument-names "type" + while true + read -l -P "Are you sure you want to update arch repo? [y/N] " confirm + + switch $confirm + case Y y + cd ~/.gitlabs/Arch.TheRepo.Club/ + ./git-v1.sh $type + cd $dirprev[1] + echoResponce "Arch repo has been updated." + return + case "" N n + return + end + end +end + +function updatereadme + while true + read -l -P "Are you sure you want to update arch readme? [y/N] " confirm + + switch $confirm + case Y y + cd ~/.gitlabs/Arch.TheRepo.Club/docs/ + python updatereadme.py + cd $dirprev[1] + cd ~/.gitlabs/Arch.TheRepo.Club/x86_64/ + python updatereadme.py + cd $dirprev[1] + echoResponce "Arch readme has been updated." + return + case "" N n + return + end + end +end + +function echoResponce + set_color 0F0 + echo -n "✔ " + set_color FF0 + echo -n " $argv " + set_color 0F0 + echo -e " ✔" +end + +# Keybinding +bind \ec __history_previous_command +bind \e\e __sudope diff --git a/.config/fish/fish_variables b/.config/fish/fish_variables new file mode 100644 index 000000000..6230b4da7 --- /dev/null +++ b/.config/fish/fish_variables @@ -0,0 +1,35 @@ +# This file contains fish universal variable definitions. +# VERSION: 3.0 +SETUVAR __fish_init_2_39_8:\x1d +SETUVAR __fish_init_2_3_0:\x1d +SETUVAR __fish_initialized:3100 +SETUVAR fish_color_autosuggestion:555\x1ebrblack +SETUVAR fish_color_cancel:\x2dr +SETUVAR fish_color_command:\x2d\x2dbold +SETUVAR fish_color_comment:red +SETUVAR fish_color_cwd:green +SETUVAR fish_color_cwd_root:red +SETUVAR fish_color_end:brmagenta +SETUVAR fish_color_error:brred +SETUVAR fish_color_escape:bryellow\x1e\x2d\x2dbold +SETUVAR fish_color_history_current:\x2d\x2dbold +SETUVAR fish_color_host:normal +SETUVAR fish_color_host_remote:yellow +SETUVAR fish_color_match:\x2d\x2dbackground\x3dbrblue +SETUVAR fish_color_normal:normal +SETUVAR fish_color_operator:bryellow +SETUVAR fish_color_param:cyan +SETUVAR fish_color_quote:yellow +SETUVAR fish_color_redirection:brblue +SETUVAR fish_color_search_match:bryellow\x1e\x2d\x2dbackground\x3dbrblack +SETUVAR fish_color_selection:white\x1e\x2d\x2dbold\x1e\x2d\x2dbackground\x3dbrblack +SETUVAR fish_color_status:red +SETUVAR fish_color_user:brgreen +SETUVAR fish_color_valid_path:\x2d\x2dunderline +SETUVAR fish_greeting:Welcome\x20to\x20fish\x2c\x20the\x20friendly\x20interactive\x20shell +SETUVAR fish_key_bindings:fish_default_key_bindings +SETUVAR fish_pager_color_completion:\x1d +SETUVAR fish_pager_color_description:B3A06D\x1eyellow +SETUVAR fish_pager_color_prefix:white\x1e\x2d\x2dbold\x1e\x2d\x2dunderline +SETUVAR fish_pager_color_progress:brwhite\x1e\x2d\x2dbackground\x3dcyan +SETUVAR fish_prompt_pwd_dir_length:100 diff --git a/.config/fish/functions/__history_previous_command.fish b/.config/fish/functions/__history_previous_command.fish new file mode 100644 index 000000000..afc3a6899 --- /dev/null +++ b/.config/fish/functions/__history_previous_command.fish @@ -0,0 +1,4 @@ +function __history_previous_command + commandline -t $history[1] + commandline -f repaint +end \ No newline at end of file diff --git a/.config/fish/functions/__sudope.fish b/.config/fish/functions/__sudope.fish new file mode 100644 index 000000000..2e2866b3c --- /dev/null +++ b/.config/fish/functions/__sudope.fish @@ -0,0 +1,54 @@ +function __sudope -d "Quickly toggle sudo prefix" + + # Save the current command line and cursor position. + set -l command_buffer (commandline) + set -l cursor_position (commandline -C) + + # If the command line is empty, pull the last command from history. + if test -z "$command_buffer" + set command_buffer $history[1] + end + + # Parse the command line (first line only). + set -l command_parts (string match -ir '^(\s*)(sudo(\s+|$))?(.*)' $command_buffer[1]) + + # Handle multiline commands with extra care. + set -l command_lines_count (count $command_buffer) + test $command_lines_count -gt 1 + and set -l command_rest $command_buffer[2..$command_lines_count] + + switch (count $command_parts) + case 3 + # No "sudo". + + # Add "sudo" to the beginning of the command, after any leading whitespace (if present). + commandline -r (string join \n (string join '' $command_parts[2] 'sudo ' $command_parts[3]) $command_rest) + + # Push the cursor position ahead if necessary (+5 for 'sudo '). + test $cursor_position -ge (string length -- "$command_parts[2]") + and set cursor_position (math $cursor_position+5) + + # Place the cursor where it was (or where it should be). + commandline -C $cursor_position + + case 5 + # "sudo" is present in the beginning of the command. + + # Remove "sudo", leave any leading whitespace (if present). + commandline -r (string join \n (string join '' $command_parts[2 5]) $command_rest) + + # Push the cursor position back if appropriate ('sudo' and whitespace). + set -l lead_length (string length -- "$command_parts[2]") + set -l sudo_length (string length -- "$command_parts[3]") + if test $cursor_position -ge (math $lead_length+$sudo_length) + # The cursor was after "sudo". + set cursor_position (math $cursor_position-$sudo_length) + else if test $cursor_position -ge $lead_length + # The cursor was somewhere on "sudo". + set cursor_position $lead_length + end + + # Place the cursor where it was (or where it should be). + commandline -C -- $cursor_position + end +end diff --git a/.config/fish/functions/fish_prompt.fish b/.config/fish/functions/fish_prompt.fish new file mode 100644 index 000000000..b6d69e602 --- /dev/null +++ b/.config/fish/functions/fish_prompt.fish @@ -0,0 +1,216 @@ +# name: Agnoster +# agnoster's Theme - https://gist.github.com/3712874 +# A Powerline-inspired theme for FISH +# +# # README +# +# In order for this theme to render correctly, you will need a +# [Powerline-patched font](https://gist.github.com/1595572). + +## Set this options in your config.fish (if you want to :]) +set -g theme_display_user yes +set -g default_user your_normal_user + + + +set -g current_bg NONE +set segment_separator \uE0B0 +set right_segment_separator \uE0B2 +set segment_newline "❯ " +# =========================== +# Helper methods +# =========================== + +set -g __fish_git_prompt_showdirtystate 'yes' +set -g __fish_git_prompt_char_dirtystate '±' +set -g __fish_git_prompt_char_cleanstate '' + +function parse_git_dirty + set -l submodule_syntax + set submodule_syntax "--ignore-submodules=dirty" + set git_dirty (command git status -s $submodule_syntax 2> /dev/null) + if [ -n "$git_dirty" ] + if [ $__fish_git_prompt_showdirtystate = "yes" ] + echo -n "$__fish_git_prompt_char_dirtystate" + end + else + if [ $__fish_git_prompt_showdirtystate = "yes" ] + echo -n "$__fish_git_prompt_char_cleanstate" + end + end +end + + +# =========================== +# Segments functions +# =========================== + +function prompt_segment -d "Function to draw a segment" + set -l bg + set -l fg + if [ -n "$argv[1]" ] + set bg $argv[1] + else + set bg normal + end + if [ -n "$argv[2]" ] + set fg $argv[2] + else + set fg normal + end + if [ "$current_bg" != 'NONE' -a "$argv[1]" != "$current_bg" ] + set_color -b $bg + set_color $current_bg + echo -n "$segment_separator " + set_color -b $bg + set_color $fg + else + set_color -b $bg + set_color $fg + echo -n " " + end + set current_bg $argv[1] + if [ -n "$argv[3]" ] + echo -n -s $argv[3] " " + end +end + +function right_prompt_segment -d "Function to draw a segment" + set -l bg + set -l fg + if [ -n "$argv[1]" ] + set bg $argv[1] + else + set bg normal + end + if [ -n "$argv[2]" ] + set fg $argv[2] + else + set fg normal + end + if [ "$current_bg" != 'NONE' -a "$argv[1]" != "$current_bg" ] + set_color -b $fg + set_color $bg + echo -n " $right_segment_separator" + set_color -b $bg + set_color $fg + else + set_color -b $bg + set_color $fg + echo -n " " + end + set current_bg $argv[1] + if [ -n "$argv[3]" ] + echo -n $argv[3] " " + end +end + +function prompt_finish -d "Close open segments" + if [ -n $current_bg ] + set_color -b normal + set_color $current_bg + echo -n "$segment_separator " + end + set -g current_bg NONE +end + +function prompt_right_finish -d "Close open segments" + if [ -n $current_bg ] + set_color -b normal + set_color normal + end + set -g current_bg NONE +end + +function prompt_new -d "Add a new line" + set_color -b normal + set_color magenta + echo "" + echo "$segment_newline" +end + + +# =========================== +# Theme components +# =========================== + +function prompt_user -d "Display actual user if different from $default_user" + if [ "$theme_display_user" = "yes" ] + if [ "$USER" != "$default_user" -o -n "$SSH_CLIENT" ] + set USER_PROMPT (whoami)@(hostname) + prompt_segment black yellow $USER_PROMPT + end + end +end + +function prompt_dir -d "Display the actual directory" + prompt_segment blue black (prompt_pwd) +end + + + +function prompt_git -d "Display the actual git state" + set -l ref + set -l dirty + if command git rev-parse --is-inside-work-tree >/dev/null 2>&1 + set dirty (parse_git_dirty) + set ref (command git symbolic-ref HEAD 2> /dev/null) + set ref (command git symbolic-ref HEAD 2> /dev/null) + if [ $status -gt 0 ] + set -l branch (command git show-ref --head -s --abbrev |head -n1 2> /dev/null) + set ref "➦ $branch " + end + set branch_symbol \uE0A0 + set -l branch (echo $ref | sed "s-refs/heads/-$branch_symbol -") + if [ "$dirty" != "" ] + prompt_segment yellow black "$branch $dirty" + else + prompt_segment green black "$branch $dirty" + end + end +end + +function prompt_status -d "the symbols for a non zero exit status, root and background jobs" + if [ $RETVAL -ne 0 ] + prompt_segment black red "✘" + end + + # if superuser (uid == 0) + set -l uid (id -u $USER) + if [ $uid -eq 0 ] + prompt_segment black yellow "⚡" + end + + # Jobs display + if [ (jobs -l | wc -l) -gt 0 ] + prompt_segment black cyan "⚙" + end +end + +function prompt_took -d "the symbols for a non zero exit status, root and background jobs" + if test $CMD_DURATION + # Show duration of the last command in seconds + set duration (echo "$CMD_DURATION 1000" | awk '{printf "%.3fs", $1 / $2}') + right_prompt_segment black magenta "Took" + right_prompt_segment magenta black "$duration" + end +end + +# =========================== +# Apply theme +# =========================== + +function fish_prompt + set -g RETVAL $status + prompt_status + prompt_user + prompt_dir + prompt_git + prompt_finish + prompt_new +end + +function fish_right_prompt + prompt_took + prompt_right_finish +end \ No newline at end of file diff --git a/.config/geany/filedefs/filetypes.README b/.config/geany/filedefs/filetypes.README new file mode 100644 index 000000000..fe58ed101 --- /dev/null +++ b/.config/geany/filedefs/filetypes.README @@ -0,0 +1,2 @@ +Copy files from /usr/share/geany/filedefs to this directory to overwrite them. To use the defaults, just delete the file in this directory. +For more information read the documentation (in /usr/share/doc/geany/html/index.html or visit https://www.geany.org/). \ No newline at end of file diff --git a/.config/geany/geany.conf b/.config/geany/geany.conf new file mode 100644 index 000000000..1770f1c93 --- /dev/null +++ b/.config/geany/geany.conf @@ -0,0 +1,224 @@ +[geany] +default_open_path= +cmdline_new_files=true +notebook_double_click_hides_widgets=false +tab_close_switch_to_mru=false +tab_pos_sidebar=2 +sidebar_pos=0 +symbols_sort_mode=0 +msgwin_orientation=1 +highlighting_invert_all=false +pref_main_search_use_current_word=true +check_detect_indent=false +detect_indent_width=false +use_tab_to_indent=true +pref_editor_tab_width=4 +indent_mode=2 +indent_type=1 +virtualspace=1 +autocomplete_doc_words=false +completion_drops_rest_of_word=false +autocompletion_max_entries=30 +autocompletion_update_freq=250 +color_scheme= +scroll_lines_around_cursor=0 +mru_length=10 +disk_check_timeout=30 +show_editor_scrollbars=true +brace_match_ltgt=false +use_gtk_word_boundaries=true +complete_snippets_whilst_editing=false +indent_hard_tab_width=8 +editor_ime_interaction=0 +use_atomic_file_saving=false +gio_unsafe_save_backup=false +use_gio_unsafe_file_saving=true +keep_edit_history_on_reload=true +show_keep_edit_history_on_reload_msg=false +reload_clean_doc_on_file_change=false +save_config_on_file_change=true +extract_filetype_regex=-\\*-\\s*([^\\s]+)\\s*-\\*- +allow_always_save=false +find_selection_type=0 +replace_and_find_by_default=true +show_symbol_list_expanders=true +compiler_tab_autoscroll=true +statusbar_template=line: %l / %L col: %c sel: %s %w %t %mmode: %M encoding: %e filetype: %f scope: %S +new_document_after_close=false +msgwin_status_visible=true +msgwin_compiler_visible=true +msgwin_messages_visible=true +msgwin_scribble_visible=true +documents_show_paths=true +sidebar_page=0 +pref_main_load_session=true +pref_main_project_session=true +pref_main_project_file_in_basedir=false +pref_main_save_winpos=true +pref_main_save_wingeom=true +pref_main_confirm_exit=false +pref_main_suppress_status_messages=false +switch_msgwin_pages=false +beep_on_errors=true +auto_focus=false +sidebar_symbol_visible=true +sidebar_openfiles_visible=true +editor_font=Monospace 10 +tagbar_font=Sans 9 +msgwin_font=Monospace 9 +show_notebook_tabs=true +show_tab_cross=true +tab_order_ltr=true +tab_order_beside=false +tab_pos_editor=2 +tab_pos_msgwin=0 +use_native_windows_dialogs=false +show_indent_guide=false +show_white_space=false +show_line_endings=false +show_markers_margin=true +show_linenumber_margin=true +long_line_enabled=true +long_line_type=0 +long_line_column=72 +long_line_color=#C2EBC2 +symbolcompletion_max_height=10 +symbolcompletion_min_chars=4 +use_folding=true +unfold_all_children=false +use_indicators=true +line_wrapping=false +auto_close_xml_tags=true +complete_snippets=true +auto_complete_symbols=true +pref_editor_disable_dnd=false +pref_editor_smart_home_key=true +pref_editor_newline_strip=false +line_break_column=72 +auto_continue_multiline=true +comment_toggle_mark=~ +scroll_stop_at_last_line=true +autoclose_chars=0 +pref_editor_default_new_encoding=UTF-8 +pref_editor_default_open_encoding=none +default_eol_character=2 +pref_editor_new_line=true +pref_editor_ensure_convert_line_endings=false +pref_editor_replace_tabs=false +pref_editor_trail_space=false +pref_toolbar_show=true +pref_toolbar_append_to_menu=false +pref_toolbar_use_gtk_default_style=true +pref_toolbar_use_gtk_default_icon=true +pref_toolbar_icon_style=0 +pref_toolbar_icon_size=0 +pref_template_developer=DT +pref_template_company= +pref_template_mail=dt@dt-pc +pref_template_initial=D +pref_template_version=1.0 +pref_template_year=%Y +pref_template_date=%Y-%m-%d +pref_template_datetime=%d.%m.%Y %H:%M:%S %Z +context_action_cmd= +sidebar_visible=true +statusbar_visible=true +msgwindow_visible=true +fullscreen=false +color_picker_palette= +scribble_text=Type here what you want, use it as a notice/scratch board +scribble_pos=57 +treeview_position=156 +msgwindow_position=782 +geometry=962;32;950;1014;0; +custom_date_format= + +[build-menu] +number_ft_menu_items=0 +number_non_ft_menu_items=0 +number_exec_menu_items=0 + +[search] +pref_search_hide_find_dialog=false +pref_search_always_wrap=false +pref_search_current_file_dir=true +find_all_expanded=false +replace_all_expanded=false +position_find_x=333 +position_find_y=544 +position_replace_x=220 +position_replace_y=262 +position_fif_x=-1 +position_fif_y=-1 +fif_regexp=false +fif_case_sensitive=true +fif_match_whole_word=false +fif_invert_results=false +fif_recursive=false +fif_extra_options= +fif_use_extra_options=false +fif_files= +fif_files_mode=0 +find_regexp=false +find_regexp_multiline=false +find_case_sensitive=false +find_escape_sequences=false +find_match_whole_word=false +find_match_word_start=false +find_close_dialog=true +replace_regexp=false +replace_regexp_multiline=false +replace_case_sensitive=false +replace_escape_sequences=false +replace_match_whole_word=false +replace_match_word_start=false +replace_search_backwards=false +replace_close_dialog=true + +[plugins] +load_plugins=true +custom_plugin_path= +active_plugins=; + +[VTE] +send_cmd_prefix= +send_selection_unsafe=false +load_vte=true +font=Monospace 10 +scroll_on_key=true +scroll_on_out=true +enable_bash_keys=true +ignore_menu_bar_accel=false +follow_path=false +run_in_vte=false +skip_run_script=false +cursor_blinks=false +scrollback_lines=500 +shell=/bin/fish +colour_fore=#FFFFFF +colour_back=#000000 +last_dir=/home/dt + +[tools] +terminal_cmd=xterm -e "/bin/sh %c" +browser_cmd=firefox +grep_cmd=grep + +[printing] +print_cmd=lpr '%f' +use_gtk_printing=true +print_line_numbers=true +print_page_numbers=true +print_page_header=true +page_header_basename=false +page_header_datefmt=%c + +[project] +session_file= +project_file_path=/home/dt/projects + +[files] +recent_files=/home/dt/.config/i3/config;/home/dt/.aur/auracle-git/PKGBUILD;/home/dt/.gitlabs/Arch.TheRepo.Club/x86_64/updatereadme.py;/home/dt/.config/instamenu/scripts/instant-open-program.sh; +recent_projects= +current_page=0 +FILE_NAME_0=21720;Conf;0;EUTF-8;1;1;0;%2Fhome%2Fdt%2F.config%2Fi3%2Fconfig;0;4 diff --git a/.config/geany/keybindings.conf b/.config/geany/keybindings.conf new file mode 100644 index 000000000..e69de29bb diff --git a/.config/geany/templates/templates.README b/.config/geany/templates/templates.README new file mode 100644 index 000000000..3d25d1af2 --- /dev/null +++ b/.config/geany/templates/templates.README @@ -0,0 +1,2 @@ +There are several template files in this directory. For these templates you can use wildcards. +For more information read the documentation (in /usr/share/doc/geany/html/index.html or visit https://www.geany.org/). \ No newline at end of file diff --git a/.config/gh/config.yml b/.config/gh/config.yml new file mode 100644 index 000000000..68ca348aa --- /dev/null +++ b/.config/gh/config.yml @@ -0,0 +1,11 @@ +# What protocol to use when performing git operations. Supported values: ssh, https +git_protocol: https +# What editor gh should run when creating issues, pull requests, etc. If blank, will refer to environment. +editor: +# When to interactively prompt. This is a global config that cannot be overridden by hostname. Supported values: enabled, disabled +prompt: enabled +# A pager program to send command output to, e.g. "less". Set the value to "cat" to disable the pager. +pager: +# Aliases allow you to create nicknames for gh commands +aliases: + co: pr checkout diff --git a/.config/gitahead.com/GitAhead.conf b/.config/gitahead.com/GitAhead.conf new file mode 100644 index 000000000..9d80a242e --- /dev/null +++ b/.config/gitahead.com/GitAhead.conf @@ -0,0 +1,167 @@ +[General] +recent=/mnt/500GB/.gitlabs/DotFiles + +[accounts] +1\kind=0 +1\repos\1\full_name=EpicGames/ARTv2 +1\repos\1\https_url=https://wayne6324%40gmail.com@github.com/EpicGames/ARTv2.git +1\repos\1\name=ARTv2 +1\repos\1\ssh_url=git@github.com:EpicGames/ARTv2.git +1\repos\10\full_name=TheCynicalTeam/BTTVE4FFZV +1\repos\10\https_url=https://wayne6324%40gmail.com@github.com/TheCynicalTeam/BTTVE4FFZV.git +1\repos\10\name=BTTVE4FFZV +1\repos\10\ssh_url=git@github.com:TheCynicalTeam/BTTVE4FFZV.git +1\repos\11\full_name=TheCynicalTeam/char-map +1\repos\11\https_url=https://wayne6324%40gmail.com@github.com/TheCynicalTeam/char-map.git +1\repos\11\name=char-map +1\repos\11\ssh_url=git@github.com:TheCynicalTeam/char-map.git +1\repos\12\full_name=TheCynicalTeam/cynical.vim +1\repos\12\https_url=https://wayne6324%40gmail.com@github.com/TheCynicalTeam/cynical.vim.git +1\repos\12\name=cynical.vim +1\repos\12\ssh_url=git@github.com:TheCynicalTeam/cynical.vim.git +1\repos\13\full_name=TheCynicalTeam/discord-rewrite-bot +1\repos\13\https_url=https://wayne6324%40gmail.com@github.com/TheCynicalTeam/discord-rewrite-bot.git +1\repos\13\name=discord-rewrite-bot +1\repos\13\ssh_url=git@github.com:TheCynicalTeam/discord-rewrite-bot.git +1\repos\14\full_name=TheCynicalTeam/DotFiles +1\repos\14\https_url=https://wayne6324%40gmail.com@github.com/TheCynicalTeam/DotFiles.git +1\repos\14\name=DotFiles +1\repos\14\ssh_url=git@github.com:TheCynicalTeam/DotFiles.git +1\repos\15\full_name=TheCynicalTeam/i3-cheat +1\repos\15\https_url=https://wayne6324%40gmail.com@github.com/TheCynicalTeam/i3-cheat.git +1\repos\15\name=i3-cheat +1\repos\15\ssh_url=git@github.com:TheCynicalTeam/i3-cheat.git +1\repos\16\full_name=TheCynicalTeam/i3-maim +1\repos\16\https_url=https://wayne6324%40gmail.com@github.com/TheCynicalTeam/i3-maim.git +1\repos\16\name=i3-maim +1\repos\16\ssh_url=git@github.com:TheCynicalTeam/i3-maim.git +1\repos\17\full_name=TheCynicalTeam/i3-session +1\repos\17\https_url=https://wayne6324%40gmail.com@github.com/TheCynicalTeam/i3-session.git +1\repos\17\name=i3-session +1\repos\17\ssh_url=git@github.com:TheCynicalTeam/i3-session.git +1\repos\18\full_name=TheCynicalTeam/i3-swallow +1\repos\18\https_url=https://wayne6324%40gmail.com@github.com/TheCynicalTeam/i3-swallow.git +1\repos\18\name=i3-swallow +1\repos\18\ssh_url=git@github.com:TheCynicalTeam/i3-swallow.git +1\repos\19\full_name=TheCynicalTeam/i3_keybinds +1\repos\19\https_url=https://wayne6324%40gmail.com@github.com/TheCynicalTeam/i3_keybinds.git +1\repos\19\name=i3_keybinds +1\repos\19\ssh_url=git@github.com:TheCynicalTeam/i3_keybinds.git +1\repos\2\full_name=EpicGames/BlenderTools +1\repos\2\https_url=https://wayne6324%40gmail.com@github.com/EpicGames/BlenderTools.git +1\repos\2\name=BlenderTools +1\repos\2\ssh_url=git@github.com:EpicGames/BlenderTools.git +1\repos\20\full_name=TheCynicalTeam/instamenu +1\repos\20\https_url=https://wayne6324%40gmail.com@github.com/TheCynicalTeam/instamenu.git +1\repos\20\name=instamenu +1\repos\20\ssh_url=git@github.com:TheCynicalTeam/instamenu.git +1\repos\21\full_name=TheCynicalTeam/instamenu-extra +1\repos\21\https_url=https://wayne6324%40gmail.com@github.com/TheCynicalTeam/instamenu-extra.git +1\repos\21\name=instamenu-extra +1\repos\21\ssh_url=git@github.com:TheCynicalTeam/instamenu-extra.git +1\repos\22\full_name=TheCynicalTeam/instamenu-schemas +1\repos\22\https_url=https://wayne6324%40gmail.com@github.com/TheCynicalTeam/instamenu-schemas.git +1\repos\22\name=instamenu-schemas +1\repos\22\ssh_url=git@github.com:TheCynicalTeam/instamenu-schemas.git +1\repos\23\full_name=TheCynicalTeam/multimonitorlock +1\repos\23\https_url=https://wayne6324%40gmail.com@github.com/TheCynicalTeam/multimonitorlock.git +1\repos\23\name=multimonitorlock +1\repos\23\ssh_url=git@github.com:TheCynicalTeam/multimonitorlock.git +1\repos\24\full_name=TheCynicalTeam/multimonitorlock-gui +1\repos\24\https_url=https://wayne6324%40gmail.com@github.com/TheCynicalTeam/multimonitorlock-gui.git +1\repos\24\name=multimonitorlock-gui +1\repos\24\ssh_url=git@github.com:TheCynicalTeam/multimonitorlock-gui.git +1\repos\25\full_name=TheCynicalTeam/my-rest-api +1\repos\25\https_url=https://wayne6324%40gmail.com@github.com/TheCynicalTeam/my-rest-api.git +1\repos\25\name=my-rest-api +1\repos\25\ssh_url=git@github.com:TheCynicalTeam/my-rest-api.git +1\repos\26\full_name=TheCynicalTeam/nerdcommenter +1\repos\26\https_url=https://wayne6324%40gmail.com@github.com/TheCynicalTeam/nerdcommenter.git +1\repos\26\name=nerdcommenter +1\repos\26\ssh_url=git@github.com:TheCynicalTeam/nerdcommenter.git +1\repos\27\full_name=TheCynicalTeam/Phantombot-Custom-Scripts +1\repos\27\https_url=https://wayne6324%40gmail.com@github.com/TheCynicalTeam/Phantombot-Custom-Scripts.git +1\repos\27\name=Phantombot-Custom-Scripts +1\repos\27\ssh_url=git@github.com:TheCynicalTeam/Phantombot-Custom-Scripts.git +1\repos\28\full_name=TheCynicalTeam/picker +1\repos\28\https_url=https://wayne6324%40gmail.com@github.com/TheCynicalTeam/picker.git +1\repos\28\name=picker +1\repos\28\ssh_url=git@github.com:TheCynicalTeam/picker.git +1\repos\29\full_name=TheCynicalTeam/pyfetch +1\repos\29\https_url=https://wayne6324%40gmail.com@github.com/TheCynicalTeam/pyfetch.git +1\repos\29\name=pyfetch +1\repos\29\ssh_url=git@github.com:TheCynicalTeam/pyfetch.git +1\repos\3\full_name=EpicGames/Shave-And-A-Haircut +1\repos\3\https_url=https://wayne6324%40gmail.com@github.com/EpicGames/Shave-And-A-Haircut.git +1\repos\3\name=Shave-And-A-Haircut +1\repos\3\ssh_url=git@github.com:EpicGames/Shave-And-A-Haircut.git +1\repos\30\full_name=TheCynicalTeam/qt-logout +1\repos\30\https_url=https://wayne6324%40gmail.com@github.com/TheCynicalTeam/qt-logout.git +1\repos\30\name=qt-logout +1\repos\30\ssh_url=git@github.com:TheCynicalTeam/qt-logout.git +1\repos\31\full_name=TheCynicalTeam/qt5-color-widgets +1\repos\31\https_url=https://wayne6324%40gmail.com@github.com/TheCynicalTeam/qt5-color-widgets.git +1\repos\31\name=qt5-color-widgets +1\repos\31\ssh_url=git@github.com:TheCynicalTeam/qt5-color-widgets.git +1\repos\32\full_name=TheCynicalTeam/recycle-cli +1\repos\32\https_url=https://wayne6324%40gmail.com@github.com/TheCynicalTeam/recycle-cli.git +1\repos\32\name=recycle-cli +1\repos\32\ssh_url=git@github.com:TheCynicalTeam/recycle-cli.git +1\repos\33\full_name=TheCynicalTeam/reikirainbow.uk +1\repos\33\https_url=https://wayne6324%40gmail.com@github.com/TheCynicalTeam/reikirainbow.uk.git +1\repos\33\name=reikirainbow.uk +1\repos\33\ssh_url=git@github.com:TheCynicalTeam/reikirainbow.uk.git +1\repos\34\full_name=TheCynicalTeam/siji +1\repos\34\https_url=https://wayne6324%40gmail.com@github.com/TheCynicalTeam/siji.git +1\repos\34\name=siji +1\repos\34\ssh_url=git@github.com:TheCynicalTeam/siji.git +1\repos\35\full_name=TheCynicalTeam/TheCynicalTeam +1\repos\35\https_url=https://wayne6324%40gmail.com@github.com/TheCynicalTeam/TheCynicalTeam.git +1\repos\35\name=TheCynicalTeam +1\repos\35\ssh_url=git@github.com:TheCynicalTeam/TheCynicalTeam.git +1\repos\36\full_name=TheCynicalTeam/vscode-theme-cynical +1\repos\36\https_url=https://wayne6324%40gmail.com@github.com/TheCynicalTeam/vscode-theme-cynical.git +1\repos\36\name=vscode-theme-cynical +1\repos\36\ssh_url=git@github.com:TheCynicalTeam/vscode-theme-cynical.git +1\repos\37\full_name=TheCynicalTeam/wallpapers +1\repos\37\https_url=https://wayne6324%40gmail.com@github.com/TheCynicalTeam/wallpapers.git +1\repos\37\name=wallpapers +1\repos\37\ssh_url=git@github.com:TheCynicalTeam/wallpapers.git +1\repos\4\full_name=EpicGames/UGCExample +1\repos\4\https_url=https://wayne6324%40gmail.com@github.com/EpicGames/UGCExample.git +1\repos\4\name=UGCExample +1\repos\4\ssh_url=git@github.com:EpicGames/UGCExample.git +1\repos\5\full_name=EpicGames/UnrealEngine +1\repos\5\https_url=https://wayne6324%40gmail.com@github.com/EpicGames/UnrealEngine.git +1\repos\5\name=UnrealEngine +1\repos\5\ssh_url=git@github.com:EpicGames/UnrealEngine.git +1\repos\6\full_name=EpicGames/UnrealTournament +1\repos\6\https_url=https://wayne6324%40gmail.com@github.com/EpicGames/UnrealTournament.git +1\repos\6\name=UnrealTournament +1\repos\6\ssh_url=git@github.com:EpicGames/UnrealTournament.git +1\repos\7\full_name=kayosgirl/kayosgirl.github.io +1\repos\7\https_url=https://wayne6324%40gmail.com@github.com/kayosgirl/kayosgirl.github.io.git +1\repos\7\name=kayosgirl.github.io +1\repos\7\ssh_url=git@github.com:kayosgirl/kayosgirl.github.io.git +1\repos\8\full_name=purrfectkitty/purrfectkitty.github.io +1\repos\8\https_url=https://wayne6324%40gmail.com@github.com/purrfectkitty/purrfectkitty.github.io.git +1\repos\8\name=purrfectkitty.github.io +1\repos\8\ssh_url=git@github.com:purrfectkitty/purrfectkitty.github.io.git +1\repos\9\full_name=TheCynicalTeam/Arch.TheRepo.Club +1\repos\9\https_url=https://wayne6324%40gmail.com@github.com/TheCynicalTeam/Arch.TheRepo.Club.git +1\repos\9\name=Arch.TheRepo.Club +1\repos\9\ssh_url=git@github.com:TheCynicalTeam/Arch.TheRepo.Club.git +1\repos\size=37 +1\username=wayne6324@gmail.com +size=1 + +[remote] +expanded\Beanstalk=false +expanded\Bitbucket=false +expanded\GitHub=true +expanded\GitLab=false +expanded\wayne6324%40gmail.com=false + +[window] +prompt\directories=false +theme=Dark diff --git a/.config/godot/editor_settings-3.tres b/.config/godot/editor_settings-3.tres new file mode 100644 index 000000000..4633cfe38 --- /dev/null +++ b/.config/godot/editor_settings-3.tres @@ -0,0 +1,97 @@ +[gd_resource type="EditorSettings" load_steps=13 format=2] + +[sub_resource type="InputEventKey" id=1] +control = true +command = true +scancode = 78 +unicode = 78 + +[sub_resource type="InputEventKey" id=2] +scancode = 16777224 +unicode = 16777224 + +[sub_resource type="InputEventKey" id=3] +control = true +command = true +scancode = 68 +unicode = 68 + +[sub_resource type="InputEventKey" id=4] +alt = true +scancode = 16777231 +unicode = 16777231 + +[sub_resource type="InputEventKey" id=5] +alt = true +scancode = 16777233 +unicode = 16777233 + +[sub_resource type="InputEventKey" id=6] +alt = true +scancode = 16777232 +unicode = 16777232 + +[sub_resource type="InputEventKey" id=7] +control = true +command = true +scancode = 16777234 +unicode = 16777234 + +[sub_resource type="InputEventKey" id=8] +control = true +command = true +scancode = 16777232 +unicode = 16777232 + +[sub_resource type="InputEventKey" id=9] +scancode = 16777248 +unicode = 16777248 + +[sub_resource type="InputEventKey" id=10] +alt = true +scancode = 70 +unicode = 70 + +[sub_resource type="InputEventKey" id=11] +control = true +command = true +scancode = 72 +unicode = 72 + +[sub_resource type="InputEventKey" id=12] +alt = true +scancode = 86 +unicode = 86 + +[resource] +text_editor/highlighting/symbol_color = Color( 0.67, 0.785, 1, 1 ) +text_editor/highlighting/keyword_color = Color( 1, 0.44, 0.52, 1 ) +text_editor/highlighting/base_type_color = Color( 0.26, 1, 0.76, 1 ) +text_editor/highlighting/engine_type_color = Color( 0.556, 1, 0.856, 1 ) +text_editor/highlighting/user_type_color = Color( 0.778, 1, 0.928, 1 ) +text_editor/highlighting/comment_color = Color( 0.8, 0.8075, 0.8275, 0.5 ) +text_editor/highlighting/string_color = Color( 1, 0.925, 0.63, 1 ) +text_editor/highlighting/background_color = Color( 0.125, 0.14375, 0.19375, 1 ) +text_editor/highlighting/completion_background_color = Color( 0.2, 0.23, 0.31, 1 ) +text_editor/highlighting/completion_selected_color = Color( 1, 1, 1, 0.07 ) +text_editor/highlighting/completion_existing_color = Color( 1, 1, 1, 0.14 ) +text_editor/highlighting/completion_scroll_color = Color( 1, 1, 1, 0.07 ) +text_editor/highlighting/completion_font_color = Color( 0.8, 0.8075, 0.8275, 1 ) +text_editor/highlighting/text_color = Color( 0.8, 0.8075, 0.8275, 1 ) +text_editor/highlighting/line_number_color = Color( 0.8, 0.8075, 0.8275, 0.5 ) +text_editor/highlighting/safe_line_number_color = Color( 0.8, 0.969, 0.8275, 0.75 ) +text_editor/highlighting/caret_color = Color( 1, 1, 1, 1 ) +text_editor/highlighting/text_selected_color = Color( 0.1, 0.115, 0.155, 1 ) +text_editor/highlighting/brace_mismatch_color = Color( 1, 0.47, 0.42, 1 ) +text_editor/highlighting/current_line_color = Color( 1, 1, 1, 0.07 ) +text_editor/highlighting/line_length_guideline_color = Color( 0.2, 0.23, 0.31, 1 ) +text_editor/highlighting/word_highlighted_color = Color( 1, 1, 1, 0.07 ) +text_editor/highlighting/number_color = Color( 0.63, 1, 0.88, 1 ) +text_editor/highlighting/function_color = Color( 0.34, 0.7, 1, 1 ) +text_editor/highlighting/member_variable_color = Color( 0.736, 0.88, 1, 1 ) +text_editor/highlighting/mark_color = Color( 1, 0.47, 0.42, 0.3 ) +text_editor/highlighting/breakpoint_color = Color( 1, 0.47, 0.42, 1 ) +text_editor/highlighting/code_folding_color = Color( 1, 1, 1, 0.7 ) +text_editor/highlighting/search_result_color = Color( 1, 1, 1, 0.07 ) +asset_library/use_threads = true +shortcuts = [ "file_dialog/create_folder", SubResource( 1 ), "file_dialog/delete", SubResource( 2 ), "file_dialog/focus_path", SubResource( 3 ), "file_dialog/go_back", SubResource( 4 ), "file_dialog/go_forward", SubResource( 5 ), "file_dialog/go_up", SubResource( 6 ), "file_dialog/move_favorite_down", SubResource( 7 ), "file_dialog/move_favorite_up", SubResource( 8 ), "file_dialog/refresh", SubResource( 9 ), "file_dialog/toggle_favorite", SubResource( 10 ), "file_dialog/toggle_hidden_files", SubResource( 11 ), "file_dialog/toggle_mode", SubResource( 12 ) ] diff --git a/.config/godot/script_templates/empty.gd b/.config/godot/script_templates/empty.gd new file mode 100644 index 000000000..c3c8a183f --- /dev/null +++ b/.config/godot/script_templates/empty.gd @@ -0,0 +1,2 @@ +extends %BASE% + diff --git a/.config/godot/script_templates/no_comments.gd b/.config/godot/script_templates/no_comments.gd new file mode 100644 index 000000000..8f35b0b74 --- /dev/null +++ b/.config/godot/script_templates/no_comments.gd @@ -0,0 +1,5 @@ +extends %BASE% + + +func _ready()%VOID_RETURN%: +%TS%pass diff --git a/.config/gtk-2.0/gtkfilechooser.ini b/.config/gtk-2.0/gtkfilechooser.ini new file mode 100644 index 000000000..469ccf288 --- /dev/null +++ b/.config/gtk-2.0/gtkfilechooser.ini @@ -0,0 +1,12 @@ +[Filechooser Settings] +LocationMode=path-bar +ShowHidden=false +ExpandFolders=false +ShowSizeColumn=true +GeometryX=0 +GeometryY=0 +GeometryWidth=780 +GeometryHeight=585 +SortColumn=name +SortOrder=ascending +StartupMode=recent diff --git a/.config/gtk-3.0/bookmarks b/.config/gtk-3.0/bookmarks new file mode 100644 index 000000000..d806cff9d --- /dev/null +++ b/.config/gtk-3.0/bookmarks @@ -0,0 +1,7 @@ +file:///home/dt/.aur .aur +file:///home/dt/.gitlabs .gitlabs +file:///home/dt/.config .config +file:///home/dt/.makpkg .makpkg +file:///home/dt/.local .local +file:///mnt/750GB 750GB +file:///mnt/500GB 500GB diff --git a/.config/gtk-3.0/settings.ini b/.config/gtk-3.0/settings.ini new file mode 100644 index 000000000..b159f03b9 --- /dev/null +++ b/.config/gtk-3.0/settings.ini @@ -0,0 +1,16 @@ +[Settings] +gtk-theme-name=Dracula GTK +gtk-icon-theme-name=Papirus-Adapta-Maia +gtk-font-name=Sans 10 +gtk-cursor-theme-size=0 +gtk-toolbar-style=GTK_TOOLBAR_BOTH +gtk-toolbar-icon-size=GTK_ICON_SIZE_LARGE_TOOLBAR +gtk-button-images=1 +gtk-menu-images=1 +gtk-enable-event-sounds=1 +gtk-enable-input-feedback-sounds=1 +gtk-xft-antialias=1 +gtk-xft-hinting=1 +gtk-xft-hintstyle=hintfull +gtk-cursor-theme-name=xcursor-breeze-snow +gtk-xft-rgba=rgb diff --git a/.config/i3-cheat/settings.conf b/.config/i3-cheat/settings.conf new file mode 100644 index 000000000..7216757f5 --- /dev/null +++ b/.config/i3-cheat/settings.conf @@ -0,0 +1,3 @@ +[settings] +commands=False +config=~/.config/i3/config diff --git a/.config/i3/backgrounds/wallpaper.jpg b/.config/i3/backgrounds/wallpaper.jpg new file mode 100644 index 000000000..398596513 Binary files /dev/null and b/.config/i3/backgrounds/wallpaper.jpg differ diff --git a/.config/i3/backgrounds/wallpaper2.jpg b/.config/i3/backgrounds/wallpaper2.jpg new file mode 100644 index 000000000..0ddf9866b Binary files /dev/null and b/.config/i3/backgrounds/wallpaper2.jpg differ diff --git a/.config/i3/config b/.config/i3/config new file mode 100644 index 000000000..b2565226a --- /dev/null +++ b/.config/i3/config @@ -0,0 +1,1069 @@ +# i3 config file (v4) +#### +#### _____ _ ____ _ _ _ _ +#### |_ _| |__ ___ / ___| _ _ __ (_) ___ __ _| | | (_) __ _ ___ _ __ +#### | | | '_ \ / _ \ | | | | | '_ \| |/ __/ _` | | | | |/ _` |/ _ \ '__| +#### | | | | | | __/ |__| |_| | | | | | (_| (_| | | |___| | (_| | __/ | +#### |_| |_| |_|\___|\____\__, |_| |_|_|\___\__,_|_|_____|_|\__, |\___|_| +#### |___/ |___/ +#### + +################################################## +############# Set Custom Variables ############## +################################################## + +set $TerminalEmulator kitty +set $WebBrowser firefox +set $FileManager nemo +set $MailReader thunderbird +set $TextEditor notepadqq +set $EmacsEditor emacs +set $Hypervisor virt-manager +set $GitBrowser guitar + +##################################################################################################################### +##################################################################################################################### +################# Start of all the settings ################# +##################################################################################################################### +##################################################################################################################### + + +# KEY DEFINITIONS TO REMEMBER + +# $super = WINDOWS key or Super key or Mod4 +# $alt = ALT key +# Control = CTRL key +# Shift = SHIFT key +# Escape = ESCAPE key +# Return = ENTER or RETURN key +# KP_Enter = Keypad Enter +# Pause = PAUSE key +# Print = PRINT key +# Tab = TAB key + +exec --no-startup-id setxkbmap -option caps:escape +exec --no-startup-id instamenue_youtube_subs -d + +##################################################################################################################### +################# Define the variables/keys ################# +##################################################################################################################### + +# Key to rule them all : Super(Windows) or Alt key? + +# Mod4 = Windows or Super key on keyboard +# Mod1 = Alt key on keyboard + +set $super Mod4 +set $super_b bindsym Mod4 +set $alt Mod1 +set $alt_b bindsym Mod1 +set $control Ctrl +set $control_b bindsym Ctrl +set $shift Shift +set $shift_b bindsym Shift +set $exe exec --no-startup-id +set $exe_always exec_always --no-startup-id +set $print_b bindsym Print + +##################################################################################################################### +################# Define the movements keys - variables ################# +##################################################################################################################### + +#This is setup for qwerty +set $left h +set $down j +set $up k +set $right l + +##################################################################################################################### +################# Single and Dual screen ################# +##################################################################################################################### + +# setting variables for later use +# use xrandr and/or arandr to know the names of your monitors +# use this line to tell which monitor is on the right +$exe autorandr --force --load i3 + +# my current setup +set $firstMonitor eDP-1 +set $secondMonitor HDMI-1-0 + +set $ws1 "1: Terminal" +set $ws2 "2: Editor" +set $ws3 "3: Files" +set $ws4 "4: Graphics" +set $ws5 "5: Music" +set $ws6 "6: WebBrowser" +set $ws7 "7: Mail" +set $ws8 "8: Games" +set $ws9 "9: Chat" +set $ws0 "10: Settings" + +workspace $ws1 output $firstMonitor +workspace $ws2 output $firstMonitor +workspace $ws3 output $firstMonitor +workspace $ws4 output $firstMonitor +workspace $ws5 output $firstMonitor +workspace $ws6 output $secondMonitor +workspace $ws7 output $secondMonitor +workspace $ws8 output $secondMonitor +workspace $ws9 output $secondMonitor +workspace $ws0 output $secondMonitor + +# switch to workspace +## Category: i3-Workspaces; +# Description: workspace 1; +$super_b+1 \ + workspace $ws1 + +## Category: i3-Workspaces; +# Description: workspace 2; +$super_b+2 \ + workspace $ws2 + +## Category: i3-Workspaces; +# Description: workspace 3; +$super_b+3 \ + workspace $ws3 + +## Category: i3-Workspaces; +# Description: workspace 4; +$super_b+4 \ + workspace $ws4 + +## Category: i3-Workspaces; +# Description: workspace 5; +$super_b+5 \ + workspace $ws5 + +## Category: i3-Workspaces; +# Description: workspace 6; +$super_b+6 \ + workspace $ws6 + +## Category: i3-Workspaces; +# Description: workspace 7; +$super_b+7 \ + workspace $ws7 + +## Category: i3-Workspaces; +# Description: workspace 8; +$super_b+8 \ + workspace $ws8 + +## Category: i3-Workspaces; +# Description: workspace 9; +$super_b+9 \ + workspace $ws9 + +## Category: i3-Workspaces; +# Description: workspace 10; +$super_b+0 \ + workspace $ws0 + + +# Move focused container to workspace +## Category: i3-Workspaces; +# Description: Move focused container to workspace 1; +$super_b+$control+1 \ + move container to workspace $ws1 + +## Category: i3-Workspaces; +# Description: Move focused container to workspace 2; +$super_b+$control+2 \ + move container to workspace $ws2 + +## Category: i3-Workspaces; +# Description: Move focused container to workspace 3; +$super_b+$control+3 \ + move container to workspace $ws3 + +## Category: i3-Workspaces; +# Description: Move focused container to workspace 4; +$super_b+$control+4 \ + move container to workspace $ws4 + +## Category: i3-Workspaces; +# Description: Move focused container to workspace 5; +$super_b+$control+5 \ + move container to workspace $ws5 + +## Category: i3-Workspaces; +# Description: Move focused container to workspace 6; +$super_b+$control+6 \ + move container to workspace $ws6 + +## Category: i3-Workspaces; +# Description: Move focused container to workspace 7; +$super_b+$control+7 \ + move container to workspace $ws7 + +## Category: i3-Workspaces; +# Description: Move focused container to workspace 8; +$super_b+$control+8 \ + move container to workspace $ws8 + +## Category: i3-Workspaces; +# Description: Move focused container to workspace 9; +$super_b+$control+9 \ + move container to workspace $ws9 + +## Category: i3-Workspaces; +# Description: Move focused container to workspace 10; +$super_b+$control+0 \ + move container to workspace $ws0 + +# Move to workspace with focused container +## Category: i3-Workspaces; +# Description: Move to workspace with focused container 1; +$super_b+$shift+1 \ + move container to workspace $ws1; workspace $ws1 + +## Category: i3-Workspaces; +# Description: Move to workspace with focused container 2; +$super_b+$shift+2 \ + move container to workspace $ws2; workspace $ws2 + +## Category: i3-Workspaces; +# Description: Move to workspace with focused container 3; +$super_b+$shift+3 \ + move container to workspace $ws3; workspace $ws3 + +## Category: i3-Workspaces; +# Description: Move to workspace with focused container 4; +$super_b+$shift+4 \ + move container to workspace $ws4; workspace $ws4 + +## Category: i3-Workspaces; +# Description: Move to workspace with focused container 5; +$super_b+$shift+5 \ + move container to workspace $ws5; workspace $ws5 + +## Category: i3-Workspaces; +# Description: Move to workspace with focused container 6; +$super_b+$shift+6 \ + move container to workspace $ws6; workspace $ws6 + +## Category: i3-Workspaces; +# Description: Move to workspace with focused container 7; +$super_b+$shift+7 \ + move container to workspace $ws7; workspace $ws7 + +## Category: i3-Workspaces; +# Description: Move to workspace with focused container 8; +$super_b+$shift+8 \ + move container to workspace $ws8; workspace $ws8 + +## Category: i3-Workspaces; +# Description: Move to workspace with focused container 9; +$super_b+$shift+9 \ + move container to workspace $ws9; workspace $ws9 + +## Category: i3-Workspaces; +# Description: Move to workspace with focused container 10; +$super_b+$shift+0 \ + move container to workspace $ws0; workspace $ws0 + +##################################################################################################################### +################# Main Keybinds ################# +##################################################################################################################### + +## Category: Main Keybinds; +# Description: Show Keybinds; +$super_b+F1 \ + $exe i3-cheat + #$exe ~/.config/i3/scripts/keybinds.sh + +##################################################################################################################### +################# 3 menu's in arcolinux ################# +##################################################################################################################### + +## Category: Menus; +# Description: Edit Configs; +$super_b+F2 \ + $exe ~/.config/instamenu/scripts/instant-edit-configs.sh + +## Category: Menus; +# Description: i3 Layout Switcher; +$super_b+F3 \ + $exe ~/.config/instamenu/scripts/instant-i3-layout-switcher.sh + +## Category: Menus; +# Description: Select a Program; +$super_b+F4 \ + $exe ~/.config/instamenu/scripts/instant-open-program.sh + +## Category: Menus; +# Description: Select a workspace; +$super_b+F5 \ + $exe ~/.config/instamenu/scripts/instant-i3-switch-workspaces.sh + +## Category: Menus; +# Description: Create a workspace; +$super_b+F6 \ + $exe ~/.config/instamenu/scripts/instant-i3-empty-workspace.sh + +## Category: Menus; +# Description: Start GMrun; +$super_b+F7 \ + $exe gmrun + +## Category: i3-Config; +# Description: i3 Layout mainCenter; +$super_b+Escape \ + $exe ~/.config/instamenu/scripts/instant-i3-layout-switcher.sh mainCenter + +## Category: Menus; +# Description: Start SmartRun; +$super_b+F8 \ + $exe instamenue_smartrun + +## Category: Menus; +# Description: Start ClipMenu; +$super_b+F11 \ + $exe ~/.config/instamenu/scripts/instant-clip-menu.sh + +## Category: Menus; +# Description: Start InstaMenu; +$super_b+F12 \ + $exe instamenu_run -i -l 10 -w 600 -c -p "Launcher" -q "Launch a app" + +##################################################################################################################### +################# how to exit, logoff, suspend, ... ################# +##################################################################################################################### + +## Category: Main Keybinds; +# Description: Exit / Quit / Restart; +$super_b+$shift+e \ + $exe qt-logout + +## Category: Main Keybinds; +# Description: Exit / Quit / Restart; +$super_b+$shift+x \ + $exe qt-logout + +## Category: Main Keybinds; +# Description: Exit / Quit / Restart; +$super_b+x \ + $exe qt-logout + +##################################################################################################################### +################# reload changed configuration ################# +##################################################################################################################### + +## Category: i3-Config; +# Description: Restart i3 (preserves your layout/session); +$super_b+$shift+r \ + restart + +## Category: i3-Config; +# Description: Reload the configuration file; +$super_b+$shift+c \ + reload + +##################################################################################################################### +################# Stopping an application ################# +##################################################################################################################### + +## Category: i3-Config; +# Description: Kill focused window; +$super_b+q \ + kill + +## Category: i3-Config; +# Description: Kill focused window; +$super_b+$shift+q \ + kill + +#################################################################################################################### +################# Moving around in i3 ################# +##################################################################################################################### + +# Use Mouse+$super to drag floating windows to their wanted position +floating_modifier $super + +## Category: i3-Windows; +# Description: Toggle tiling / floating windows; +$super_b+$shift+space \ + floating toggle + +## Category: i3-Windows; +# Description: Change focus: left; +$super_b+$left \ + focus left + +## Category: i3-Windows; +# Description: Change focus: down; +$super_b+$down \ + focus down + +## Category: i3-Windows; +# Description: Change focus: up; +$super_b+$up \ + focus up + +## Category: i3-Windows; +# Description: Change focus: right; +$super_b+$right \ + focus right + +## Category: i3-Windows; +# Description: Move focused window: left; +$super_b+$shift+$left \ + move left + +## Category: i3-Windows; +# Description: Move focused window: down; +$super_b+$shift+$down \ + move down + +## Category: i3-Windows; +# Description: Move focused window: up; +$super_b+$shift+$up \ + move up + +## Category: i3-Windows; +# Description: Move focused window: right; +$super_b+$shift+$right \ + move right + +##################################################################################################################### +################# moving around workspaces ################# +##################################################################################################################### + +# next/previous workspace +## Category: i3-Windows; +# Description: Move to next workspace; +$alt_b+Tab \ + workspace next + +## Category: i3-Windows; +# Description: Move to prev workspace; +$alt_b+$shift+Tab \ + workspace prev + +## Category: i3-Windows; +# Description: Scroll though workspaces; +$super_b+Tab \ + workspace back_and_forth + +# switch to workspace with urgent window automatically +for_window [urgent=latest] focus + +##################################################################################################################### +################# Tiling parameters ################# +##################################################################################################################### + +# orientation for new workspaces +default_orientation auto + +## Category: i3-Windows; +# Description: Toggle split; +$super_b+t \ + split toggle + +## Category: i3-Windows; +# Description: Split in horizontal orientation; +$super_b+$alt+h \ + split h;exec notify-send 'tile horizontally' -a 'i3-wm' + +## Category: i3-Windows; +# Description: Split in vertical orientation; +$super_b+$alt+v \ + split v;exec notify-send 'tile vertically' -a 'i3-wm' + +## Category: i3-Windows; +# Description: Enter fullscreen mode for the focused container; +$super_b+f \ + fullscreen toggle + +# change container layout (stacked, tabbed, toggle split) +## Category: i3-Windows; +# Description: Change container layout: stacked; +$super_b+s \ + layout stacking + +## Category: i3-Windows; +# Description: Change container layout: tabbed; +$super_b+z \ + layout tabbed + +## Category: i3-Windows; +# Description: Change container layout: toggle split; +$super_b+e \ + layout toggle split + +## Category: i3-Windows; +# Description: Change focus between tiling / floating windows; +$super_b+space \ + focus mode_toggle + +## Category: i3-Windows; +# Description: Focus the parent container; +$super_b+a \ + focus parent + +## Category: i3-Windows; +# Description: Focus the child container; +$super_b+d \ + focus child + +##################################################################################################################### +################# resize ################# +##################################################################################################################### + +# Description: Resize window (you can also use the mouse for that); +$super_b+r \ + mode "resize" + +mode "resize" { + # These bindings trigger as soon as you enter the resize mode + + # Pressing left will shrink the window’s width. + # Pressing right will grow the window’s width. + # Pressing up will shrink the window’s height. + # Pressing down will grow the window’s height. + bindsym $left resize shrink width 10 px or 10 ppt + bindsym $down resize grow height 10 px or 10 ppt + bindsym $up resize shrink height 10 px or 10 ppt + bindsym $right resize grow width 10 px or 10 ppt + + # same bindings, but for the arrow keys + bindsym Left resize shrink width 10 px or 10 ppt + bindsym Down resize grow height 10 px or 10 ppt + bindsym Up resize shrink height 10 px or 10 ppt + bindsym Right resize grow width 10 px or 10 ppt + + # back to normal: Enter or Escape + bindsym Return mode "default" + bindsym Escape mode "default" +} + +##################################################################################################################### +################# choose the font ################# +##################################################################################################################### + +# Font for window titles. Will also be used by the bar unless a different font +# is used in the bar {} block below. +# choose your font +font pango:Noto Mono Regular 13 + +##################################################################################################################### +################# assign applications to workspaces ################# +##################################################################################################################### + +# Assign application to start on a specific workspace +# you can find the class with the program xprop + +# Workspace $ws1 Terminal +assign [class="(?i)Alacritty|Kitty"] → $ws1 + +# Workspace $ws2 Text Editor +assign [class="(?i)Emacs|NotePadQQ"] → $ws2 + +# Workspace $ws3 Files +assign [class="(?i)Nemo"] → $ws3 + +# Workspace $ws4 Graphics +assign [class="(?i)Aseprite|Krita"] → $ws4 + +# Workspace $ws5 Music +assign [class="(?i)Vlc"] → $ws5 + +# Workspace $ws6 WebBrowser +assign [class="(?i)Firefox"] → $ws6 + +# Workspace $ws7 Other Stuff +assign [class="(?i)Mail|Thunderbird"] → $ws7 + +# Workspace $ws8 file GitAhead +assign [class="(?i)Minecraft*|Steam*"] → $ws8 + +# Workspace $ws9 Chat +assign [class="(?i)Discord|Element"] → $ws9 + +# Workspace $ws0 Settings +assign [class="(?i)Pamac-Manager|BpyTop"] → $ws0 +assign [class="(?i)Virt-Manager*|Guitar"] → $ws0 +assign [class="(?i)Dconf-editor|Piper*"] → $ws0 + +##################################################################################################################### +################# autostart - execute applications at boot time ################# +##################################################################################################################### + +# USER APPLICATIONS TO START AT BOOT + +# start xsettingsd +$exe xsettingsd + +# start up polkit-dumb-agent +$exe polkit-dumb-agent + +# startup autotiling on startup +$exe autotiling + +#Autolocker +$exe xautolock -time 10 -locker 'multimonitorlock -l -- --timestr="%H:%M"' -notify 30 -notifier "notify-send -u critical -- 'LOCKING screen in 30 seconds'" + +# TRAY APPLICATIONS + +# ckb-next applet +$exe ckb-next --background + +# network applet +$exe nm-applet + +# pamac applet +$exe pamac-tray + +# blueman applet +$exe blueman-applet + +# pulse audio applet +$exe pasystray + +# clipmenud +$exe clipmenud + +# num lock activated +$exe_always numlockx on + +# touchpad +$exe touchpad-indicator + +##################################################################################################################### +################# system applications ################# +##################################################################################################################### + +##################################################################################################################### +################# applications keyboard shortcuts ################# +##################################################################################################################### + +#workspace related + +#workspace 1 related + +## Category: Applications; +# Description: Launch $TerminalEmulator; +$super_b+Return \ + $exe $TerminalEmulator;focus +$super_b+KP_Enter \ + $exe $TerminalEmulator;focus + +## Category: Applications; +# Description: Launch bpytop; +$super_b+o \ + $exe $TerminalEmulator --title=bpytop --class=bpytop -e bpytop;focus + +## Category: Applications; +# Description: Launch $WebBrowser; +$super_b+$control+b \ + $exe $WebBrowser;focus + +#workspace 2 related + +## Category: Applications; +# Description: Launch $TextEditor; +$super_b+$control+c \ + $exe $TextEditor;focus + +## Category: Applications; +# Description: Launch $EmacsEditor; +$super_b+$control+z \ + $exe $EmacsEditor;focus + +#workspace 3 related + +## Category: Applications; +# Description: Launch $FileManager; +$super_b+$shift+Return \ + $exe $FileManager;focus + +$super_b+$shift+KP_Enter \ + $exe $FileManager;focus + +#workspace 4 related + +## Category: Applications; +# Description: Launch Krita; +$super_b+$control+k \ + $exe krita;focus + +## Category: Applications; +# Description: Launch Inkscape; +$super_b+$control+i \ + $exe inkscape;focus + +#workspace 5 related + +#workspace 6 related + +## Category: Applications; +# Description: Launch VLC; +$super_b+$control+v \ + $exe vlc;focus + +#workspace 7 related + +## Category: Applications; +# Description: Launch $MailReader; +$super_b+$control+t \ + $exe $MailReader;focus + +#workspace 8 related + +## Category: Games; +# Description: Launch Steam; +$super_b+$control+s \ + $exe prime-run steam;focus + +## Category: Games; +# Description: Launch Minecraft; +$super_b+$control+m \ + $exe prime-run minecraft-launcher + +#workspace 9 related + +## Category: Applications; +# Description: Launch Element; +$super_b+$control+e \ + $exe element-desktop;focus + +#workspace 10 related + +## Category: Applications; +# Description: Launch Piper; +$super_b+$control+p \ + $exe piper;focus + +## Category: Applications; +# Description: Change MultiMonitorLock; +$super_b+$shift+z \ + $exe multimonitorlock-gui;focus + +## Category: Applications; +# Description: Launch Pavucontrol; +$control_b+$alt+u \ + $exe pavucontrol;focus + +## Category: Applications; +# Description: Launch pamac-manager; +$control_b+$alt+p \ + $exe pamac-manager;focus + +## Category: Applications; +# Description: Launch $Hypervisor; +$super_b+$control+h \ + $exe $Hypervisor;focus + +## Category: Applications; +# Description: Launch $GitBrowser; +$super_b+$control+g \ + $exe $GitBrowser;focus + + +##################################################################################################################### +################# screenshots ################# +##################################################################################################################### + +## Category: Screenshots; +# Description: Screen Shot (Window); +$print_b \ + $exe i3-maim -w + +## Category: Screenshots; +# Description: Screen Shot (Select) +$control_b+Print \ + $exe i3-maim -s + +## Category: Screenshots; +# Description: Screen Shot (Full); +$super_b+Print \ + $exe i3-maim -f + +##################################################################################################################### +################# floating or tiled ################# +##################################################################################################################### + +#floating enabled from some programs - find with xprop + +for_window [class="(?i)Imagewriter"] floating enable +for_window [class="(?i)Font-manager"] floating enable +for_window [class="(?i)xfce4*"] floating enable +for_window [class="(?i)VirtualBox*"] floating enable, resize set 1280 720, move position center +for_window [class="(?i)Pavucontrol"] floating enable, resize set 640 480, move position center +for_window [class="(?i)i3-cheat.py"] floating enable, resize set 1280 720, move position center +for_window [class="(?i)MultiMonitorLock-GUI"] floating enable +for_window [class="(?i)Polybar-updates"] floating enable, resize set 1280 720, move position center +for_window [class="(?i)floatmenu"] floating enable + +for_window [title="Copying"] floating enable +for_window [title="Deleting"] floating enable +for_window [title="Moving"] floating enable + +##################################################################################################################### +################# audio settings ################# +##################################################################################################################### + + +bindsym XF86AudioRaiseVolume $exe "amixer -D pulse sset Master '5%+'" +bindsym XF86AudioLowerVolume $exe "amixer -D pulse sset Master '5%-'" +bindsym XF86AudioMute $exe "amixer -D pulse set Master toggle" +#https://github.com/acrisci/playerctl/ +bindsym XF86AudioPlay $exe playerctl play-pause +bindsym XF86AudioNext $exe playerctl next +bindsym XF86AudioPrev $exe playerctl previous +bindsym XF86AudioStop $exe playerctl stop +#bindsym XF86AudioPlay $exe "dbus-send --print-reply --dest=org.mpris.MediaPlayer2.spotify /org/mpris/MediaPlayer2 org.mpris.MediaPlayer2.Player.PlayPause" +#bindsym XF86AudioNext $exe "dbus-send --print-reply --dest=org.mpris.MediaPlayer2.spotify /org/mpris/MediaPlayer2 org.mpris.MediaPlayer2.Player.Next" +#bindsym XF86AudioPrev $exe "dbus-send --print-reply --dest=org.mpris.MediaPlayer2.spotify /org/mpris/MediaPlayer2 org.mpris.MediaPlayer2.Player.Previous" +#bindsym XF86AudioStop $exe "dbus-send --print-reply --dest=org.mpris.MediaPlayer2.spotify /org/mpris/MediaPlayer2 org.mpris.MediaPlayer2.Player.Stop" + +##################################################################################################################### +################# xbacklight ################# +##################################################################################################################### + +bindsym XF86MonBrightnessUp $exe xbacklight -inc 20 # increase screen brightness +bindsym XF86MonBrightnessDown $exe xbacklight -dec 20 # decrease screen brightness + +##################################################################################################################### +################# bar toggle ################# +##################################################################################################################### + +## Category: Main Keybinds; +# Description: Toggle Polybar; +$super_b+b \ + $exe ~/.config/polybar/scripts/toggle_bar.sh + +##################################################################################################################### +################# border control ################# +##################################################################################################################### + +# Border control +hide_edge_borders none + +## Category: i3-Windows; +# Description: i3 border toggle; +$super_b+$shift+b \ + $exe i3-msg border toggle + +## Category: i3-Windows; +# Description: i3 border normal; +$super_b+n \ + border normal + +## Category: i3-Windows; +# Description: i3 border 1pixel; +$super_b+p \ + border 1pixel + +## Category: i3-Windows; +# Description: i3 border none; +$super_b+u \ + border none + +new_window pixel 1 +#new_window normal +#new_window none + +new_float pixel 1 +#new_float normal +#new_float none + +##################################################################################################################### +################# Popups control ################# +##################################################################################################################### + +#Popups during fullscreen mode +popup_during_fullscreen smart + +##################################################################################################################### +################# i3 gaps next ################# +##################################################################################################################### + +# Settings for i3 next gap git +# https://github.com/Airblader/i3/tree/gaps-next +# delete or uncomment the following lines if you do not have it or do not +# want it + +for_window [class="^.*"] border pixel 1 +gaps inner 5 +gaps outer 2 +#smart_gaps on +#smart_borders on + +##################################################################################################################### +################# i3 gaps change ################# +##################################################################################################################### + +set $mode_gaps Gaps: (o) outer, (i) inner +set $mode_gaps_outer Outer Gaps: +|-|0 (local), Shift++|-|0 (global) +set $mode_gaps_inner Inner Gaps: +|-|0 (local), Shift++|-|0 (global) + +# Description: i3 mode: Gaps; +$super_b+$shift+g \ + mode "$mode_gaps" + +mode "$mode_gaps" { + bindsym o mode "$mode_gaps_outer" + bindsym i mode "$mode_gaps_inner" + bindsym Return mode "default" + bindsym Escape mode "default" +} + +mode "$mode_gaps_inner" { + bindsym plus gaps inner current plus 5 + bindsym minus gaps inner current minus 5 + bindsym 0 gaps inner current set 0 + + $shift_b+plus gaps inner all plus 5 + $shift_b+minus gaps inner all minus 5 + $shift_b+0 gaps inner all set 0 + + bindsym Return mode "default" + bindsym Escape mode "default" +} +mode "$mode_gaps_outer" { + bindsym plus gaps outer current plus 5 + bindsym minus gaps outer current minus 5 + bindsym 0 gaps outer current set 0 + + $shift_b+plus gaps outer all plus 5 + $shift_b+minus gaps outer all minus 5 + $shift_b+0 gaps outer all set 0 + + bindsym Return mode "default" + bindsym Escape mode "default" +} + +##################################################################################################################### +################# picom of i3wm ################# +##################################################################################################################### + +#if you want transparency on non-focused windows, ... + +$exe_always picom -CGb --experimental-backend --config ~/.config/i3/picom.conf + +## Category: Main Keybinds; +# Description: Toggle Picom; +$control_b+$alt+o \ + $exe ~/.config/polybar/scripts/picom-toggle.sh + +##################################################################################################################### +################# Scratchpad ################# +##################################################################################################################### + +# move the currently focused window to the scratchpad + +## Category: Scratchpad; +# Description: Move focused window to scratchpad; +$super_b+$shift+minus \ + move scratchpad + +# Show the next scratchpad window or hide the focused scratchpad window. +# If there are multiple scratchpad windows, this command cycles through them. + +## Category: Scratchpad; +# Description: Show the next scratchpad window; +$super_b+minus \ + scratchpad show + +####################################################################### +################# active scratchpad ################# +####################################################################### + +for_window [instance="(?i)dropdown"] floating enable +for_window [instance="(?i)dropdown"] resize set 800 600 +for_window [instance="(?i)dropdown"] move scratchpad +$exe $TerminalEmulator --title=dropdown --class=dropdown,dropdown + +## Category: Scratchpad; +# Description: Toggle $TerminalEmulator; +$control_b+Return \ + [instance="(?i)dropdown"] scratchpad show, move position center + +##################################################################################################################### +##################################################################################################################### +##################################################################################################################### +################# bar appearance ################# +##################################################################################################################### +##################################################################################################################### +##################################################################################################################### +# bar { +# height 25 +# workspace_buttons yes +# font pango:SauceCodePro Nerd Font Mono 14 + +# #position top +# position bottom + +# #system icons +# #tray_output none +# #tray_output $firstMonitor +# #tray_output $secondMonitor + +# # OPTION 1 : i3status + +# # type status_command i3status without the config file and +# # you will get the standard i3status bar +# # Second one is the standard statusbar with my personal settings + +# #status_command i3status +# # status_command i3status -c ~/.config/i3/i3status.conf + +# # OPTION 2 : i3blocks + +# # https://github.com/vivien/i3blocks +# # another way to provide text in the statusbar +# # put hastag in front if not installed + +# # status_command i3blocks +# # status_command i3blocks -c ~/.config/i3/i3blocks.conf +# # status_command i3blocks -c ~/.config/i3/i3blocks-rainbow.conf +# # status_command i3blocks -c ~/.config/i3/i3blocks-original.conf +# # status_command i3blocks -c ~/.config/i3/i3blocks-awesome.conf + +# # OPTION 3 : bumblebee-status + +# # status_command bumblebee-status +# # status_command bumblebee-status -m cpu memory battery time pasink pasource -p time.format="%H:%M" -t solarized + +# ##START THEMING +# #Theme name : ArcoLinux Default + +# colors { +# background #2F2F2F +# statusline #eeeeee +# separator #666666 +# # border backgr. text +# focused_workspace #a9a9a9 #5f676a #eeeeee +# active_workspace #a9a9a9 #5f676a #a9a9a9 +# inactive_workspace #a9a9a9 #222222 #a9a9a9 +# urgent_workspace #a9a9a9 #d42121 #FFFFFF +# } + +# } + +# Theme colors +# class border backgr. text indic. child_border +client.focused #556064 #556064 #80FFF9 #FDF6E3 #2EB398 +client.focused_inactive #2F3D44 #2F3D44 #AD69AF #454948 #2f6f62 +client.unfocused #2F3D44 #2F3D44 #AD69AF #454948 #2f6f62 +client.urgent #CB4B16 #FDF6E3 #AD69AF #268BD2 #e77a7a +client.placeholder #000000 #0c0c0c #ffffff #000000 #2EB398 + +client.background #2EB398 +##STOP THEMING + +##################################################################################################################### +##################################################################################################################### +##################################################################################################################### +##################################################################################################################### +##################################################################################################################### +######################################## THE END ########################################### +##################################################################################################################### +##################################################################################################################### +##################################################################################################################### +##################################################################################################################### +##################################################################################################################### +# vim: filetype=i3config diff --git a/.config/i3/i3-maim.conf b/.config/i3/i3-maim.conf new file mode 100644 index 000000000..421c42697 --- /dev/null +++ b/.config/i3/i3-maim.conf @@ -0,0 +1 @@ +maim_dir=/home/dt/Pictures/screenie diff --git a/.config/i3/i3status.conf b/.config/i3/i3status.conf new file mode 100644 index 000000000..7db05acb5 --- /dev/null +++ b/.config/i3/i3status.conf @@ -0,0 +1,106 @@ +### Configuration file for i3status +## http://i3wm.org/i3status/ + + +################### +# GENERAL OPTIONS # +################### + +general { + colors = true + interval = 5 +} + +################### +# START AND ORDER # +################### + +#order += "cpu_temperature 0" +order += "cpu_usage" +order += "load" +order += "disk /" +order += "volume master" +order += "time" + + +################### +# SENSORS SETTING # +################### + + +##CPU temperature +cpu_temperature 0 { + format = "Temp: %degrees °C" + path = "/sys/devices/platform/coretemp.0/hwmon/hwmon1/temp1_input" +} + + +## CPU sensor +cpu_usage { + format = "%usage" +} + +## system load sensor +load { + format = "%1min" +} + +## HDD sensor +disk "/" { + format = "%free" +} + + +## audio volume sensor +volume master { + format = "♪: %volume" + format_muted = "♪: muted (%volume)" + device = "default" + mixer = "Master" + mixer_idx = 0 +} + +## time format +time { + format = "%d.%m.%Y %H:%M" +} + +######################################################################## +### The rest is not selected add it to the top at start and order +######################################################################## + +## ethernet sensor +ethernet enp2s0 { + # if you use %speed, i3status requires root privileges shows only if you have a 1000Mbit/s after ip adress) + #format_up = "E: %ip (%speed)" + format_up = "E: %ip" +} + +## VPN sensor +run_watch VPN { + pidfile = "/var/run/vpnc/pid" +} + +## wlan sensor +wireless wlan0 { + format_up = "W: (%quality at %essid) %ip" + format_down = "W: down" +} + + +## battery sensor +battery 0 { + format = "%status %percentage %remaining" + last_full_capacity = true +} + +## DHCP sensor +run_watch DHCP { + pidfile = "/var/run/dhclient*.pid" +} + + +## HDD sensor +disk "/home" { + format = "%free" +} diff --git a/.config/i3/picom.conf b/.config/i3/picom.conf new file mode 100644 index 000000000..9c397784d --- /dev/null +++ b/.config/i3/picom.conf @@ -0,0 +1,233 @@ +# Thank you code_nomad: http://9m.no/ꪯ鵞 +# and Arch Wiki contributors: https://wiki.archlinux.org/index.php/Compton + +################################# +# +# Backend +# +################################# + +# Backend to use: "xrender" or "glx". +# GLX backend is typically much faster but depends on a sane driver. +backend = "glx"; +#backend = "xrender" + +################################# +# +# GLX backend +# +################################# + +glx-no-stencil = true; + +# GLX backend: Copy unmodified regions from front buffer instead of redrawing them all. +# My tests with nvidia-drivers show a 10% decrease in performance when the whole screen is modified, +# but a 20% increase when only 1/4 is. +# My tests on nouveau show terrible slowdown. +glx-copy-from-front = false; + +# GLX backend: Use MESA_copy_sub_buffer to do partial screen update. +# My tests on nouveau shows a 200% performance boost when only 1/4 of the screen is updated. +# May break VSync and is not available on some drivers. +# Overrides --glx-copy-from-front. +# glx-use-copysubbuffermesa = true; + +# GLX backend: Avoid rebinding pixmap on window damage. +# Probably could improve performance on rapid window content changes, but is known to break things on some drivers (LLVMpipe). +# Recommended if it works. +# glx-no-rebind-pixmap = true; + +# GLX backend: GLX buffer swap method we assume. +# Could be undefined (0), copy (1), exchange (2), 3-6, or buffer-age (-1). +# undefined is the slowest and the safest, and the default value. +# copy is fastest, but may fail on some drivers, +# 2-6 are gradually slower but safer (6 is still faster than 0). +# Usually, double buffer means 2, triple buffer means 3. +# buffer-age means auto-detect using GLX_EXT_buffer_age, supported by some drivers. +# Useless with --glx-use-copysubbuffermesa. +# Partially breaks --resize-damage. +# Defaults to undefined. +#glx-swap-method = "undefined"; + +################################# +# +# Shadows +# +################################# + +# Enabled client-side shadows on windows. +shadow = false; +# The blur radius for shadows. (default 12) +shadow-radius = 5; +# The left offset for shadows. (default -15) +shadow-offset-x = -5; +# The top offset for shadows. (default -15) +shadow-offset-y = -5; +# The translucency for shadows. (default .75) +shadow-opacity = 0.5; + +log-level = "warn"; +#change your username here +#log-file = "/home/erik/.config/compton.log"; + +# Set if you want different colour shadows +# shadow-red = 0.0; +# shadow-green = 0.0; +# shadow-blue = 0.0; + +# The shadow exclude options are helpful if you have shadows enabled. Due to the way compton draws its shadows, certain applications will have visual glitches +# (most applications are fine, only apps that do weird things with xshapes or argb are affected). +# This list includes all the affected apps I found in my testing. The "! name~=''" part excludes shadows on any "Unknown" windows, this prevents a visual glitch with the XFWM alt tab switcher. +shadow-exclude = [ + "! name~=''", + "name = 'Notification'", + "name = 'Plank'", + "name = 'Docky'", + "name = 'Kupfer'", + "name = 'xfce4-notifyd'", + "name *= 'VLC'", + "name *= 'compton'", + "name *= 'Chromium'", + "name *= 'Chrome'", + "class_g = 'Firefox' && argb", + "class_g = 'Conky'", + "class_g = 'Kupfer'", + "class_g = 'Synapse'", + "class_g ?= 'Notify-osd'", + "class_g ?= 'Cairo-dock'", + "class_g = 'Cairo-clock'", + "class_g ?= 'Xfce4-notifyd'", + "class_g ?= 'Xfce4-power-manager'", + "_GTK_FRAME_EXTENTS@:c", + "_NET_WM_STATE@:32a *= '_NET_WM_STATE_HIDDEN'" +]; +# Avoid drawing shadow on all shaped windows (see also: --detect-rounded-corners) +shadow-ignore-shaped = false; + +################################# +# +# Opacity +# +################################# + +inactive-opacity = 1; +active-opacity = 1; +frame-opacity = 1; +inactive-opacity-override = false; + +opacity-rule = [ + "90:class_g = 'Conky' && focused", + "60:class_g = 'Conky' && !focused" +]; + +# Dim inactive windows. (0.0 - 1.0) +# inactive-dim = 0.2; +# Do not let dimness adjust based on window opacity. +# inactive-dim-fixed = true; +# Blur background of transparent windows. Bad performance with X Render backend. GLX backend is preferred. +# blur-background = true; +# Blur background of opaque windows with transparent frames as well. +# blur-background-frame = true; +# Do not let blur radius adjust based on window opacity. +blur-background-fixed = false; +blur-background-exclude = [ + "window_type = 'dock'", + "window_type = 'desktop'", + "_GTK_FRAME_EXTENTS@:c" +]; + +################################# +# +# Fading +# +################################# + +# Fade windows during opacity changes. +fading = false; +# The time between steps in a fade in milliseconds. (default 10). +fade-delta = 4; +# Opacity change between steps while fading in. (default 0.028). +fade-in-step = 0.03; +# Opacity change between steps while fading out. (default 0.03). +fade-out-step = 0.03; +# Fade windows in/out when opening/closing +# no-fading-openclose = true; + +# Specify a list of conditions of windows that should not be faded. +fade-exclude = [ ]; + +################################# +# +# Other +# +################################# + +# Try to detect WM windows and mark them as active. +mark-wmwin-focused = true; +# Mark all non-WM but override-redirect windows active (e.g. menus). +mark-ovredir-focused = true; +# Use EWMH _NET_WM_ACTIVE_WINDOW to determine which window is focused instead of using FocusIn/Out events. +# Usually more reliable but depends on a EWMH-compliant WM. +use-ewmh-active-win = true; +# Detect rounded corners and treat them as rectangular when --shadow-ignore-shaped is on. +detect-rounded-corners = true; + +# Detect _NET_WM_OPACITY on client windows, useful for window managers not passing _NET_WM_OPACITY of client windows to frame windows. +# This prevents opacity being ignored for some apps. +# For example without this enabled my xfce4-notifyd is 100% opacity no matter what. +detect-client-opacity = true; + +# Specify refresh rate of the screen. +# If not specified or 0, compton will try detecting this with X RandR extension. +refresh-rate = 0; + +# Vertical synchronization: match the refresh rate of the monitor +# this breaks transparency in virtualbox - put a "#" before next line to fix that +vsync = true; + +# Enable DBE painting mode, intended to use with VSync to (hopefully) eliminate tearing. +# Reported to have no effect, though. +dbe = false; + +# Limit compton to repaint at most once every 1 / refresh_rate second to boost performance. +# This should not be used with --vsync drm/opengl/opengl-oml as they essentially does --sw-opti's job already, +# unless you wish to specify a lower refresh rate than the actual value. +#sw-opti = true; + +# Unredirect all windows if a full-screen opaque window is detected, to maximize performance for full-screen windows, like games. +# Known to cause flickering when redirecting/unredirecting windows. +unredir-if-possible = false; + +# Specify a list of conditions of windows that should always be considered focused. +focus-exclude = [ ]; + +# Use WM_TRANSIENT_FOR to group windows, and consider windows in the same group focused at the same time. +detect-transient = true; +# Use WM_CLIENT_LEADER to group windows, and consider windows in the same group focused at the same time. +# WM_TRANSIENT_FOR has higher priority if --detect-transient is enabled, too. +detect-client-leader = true; + +################################# +# +# Window type settings +# +################################# + +wintypes: +{ + tooltip = { fade = true; shadow = true; opacity = 0.9; focus = true;}; + dock = { shadow = false; } + dnd = { shadow = false; } + popup_menu = { opacity = 0.9; } + dropdown_menu = { opacity = 0.9; } +}; + +###################### +# +# XSync +# See: https://github.com/yshui/compton/commit/b18d46bcbdc35a3b5620d817dd46fbc76485c20d +# +###################### + +# Use X Sync fence to sync clients' draw calls. Needed on nvidia-drivers with GLX backend for some users. +xrender-sync-fence = true; diff --git a/.config/i3/scripts/keybinds.sh b/.config/i3/scripts/keybinds.sh new file mode 100755 index 000000000..b49f16d83 --- /dev/null +++ b/.config/i3/scripts/keybinds.sh @@ -0,0 +1,18 @@ +#!/usr/bin/env bash + +#### +#### _____ _ ____ _ _ _ _ +#### |_ _| |__ ___ / ___| _ _ __ (_) ___ __ _| | | (_) __ _ ___ _ __ +#### | | | '_ \ / _ \ | | | | | '_ \| |/ __/ _` | | | | |/ _` |/ _ \ '__| +#### | | | | | | __/ |__| |_| | | | | | (_| (_| | | |___| | (_| | __/ | +#### |_| |_| |_|\___|\____\__, |_| |_|_|\___\__,_|_|_____|_|\__, |\___|_| +#### |___/ |___/ +#### + +cmd="\grep -A 1 Description ""$HOME""/.config/i3/config | sed -e s/--/\ /g" +case $1 in + fzf) cmd="$cmd -e s/Description:\ //gI" && echo "$(eval "$cmd")" | sed -e 's/[\\$]//g' | sed -e 's/_b//g' | sed -e 's/+/ + /g' | awk '/^[a-z]/ && last {print last,$0,";"} {last=""} /^#/{last=$0}' | column -t -s ';' | fzf;; + dmenu) cmd="$cmd -e s/Description:\ //gI" && echo "$(eval "$cmd")" | sed -e 's/[\\$]//g' | sed -e 's/_b//g' | sed -e 's/+/ + /g' | awk '/^[a-z]/ && last {print last,$0,";"} {last=""} /^#/{last=$0}' | column -t -s ';' | dmenu -l 10 -p "Search Keybind";; + rofi) cmd="$cmd -e s/Description:\ //gI" && echo "$(eval "$cmd")" | sed -e 's/[\\$]//g' | sed -e 's/_b//g' | sed -e 's/+/ + /g' | awk '/^[a-z]/ && last {print last,$0,";"} {last=""} /^#/{last=$0}' | column -t -s ';' | rofi -dmenu -i -width 1000 -p "Search Keybind";; + *) cmd="$cmd -e s/Description:\ //gI" && echo "$(eval "$cmd")" | sed -e 's/[\\$]//g' | sed -e 's/_b//g' | sed -e 's/+/ + /g' | awk '/^[a-z$]/ && last {print last,$0,";"} {last=""} /^#/{last=$0}' | column -t -s ';' | rofi -dmenu -i -width 1000 -p "Search Keybind";; +esac \ No newline at end of file diff --git a/.config/instamenu/networkmanager-config.ini b/.config/instamenu/networkmanager-config.ini new file mode 100644 index 000000000..d8c40d199 --- /dev/null +++ b/.config/instamenu/networkmanager-config.ini @@ -0,0 +1,33 @@ +[instamenu] +; fn = SourceCodePro-11 +; instamenu_command = /usr/bin/instamenu +; Note that instamenu_command can contain arguments as well like `rofi -width 30` +; Rofi and instamenu are set to case insensitive by default `-i` +; l = number of lines to display, defaults to number of total network options +w = 750 +; nb = normal background (name, #RGB, or #RRGGBB) +; nf = normal foreground +; sb = selected background +; sf = selected foreground +; b = (just set to empty value and menu will appear at the bottom +; m = number of monitor to display on +; p = Custom Prompt for the networks menu +; pinentry = Pinentry command +; rofi_highlight = # (Default: False) use rofi highlighting instead of '**' +; compact = # (Default: False). Remove extra spacing from display +; wifi_chars = +wifi_chars = ▂▄▆█ +; list_saved = # (Default: False) list saved connections + +[instamenu_passphrase] +; override normal foreground and background colors, use the -P option along +; with the Suckless instamenu password patch or use the -password option (rofi) to +; obscure passphrase entry. +; nf = #222222 +; nb = #222222 +; rofi_obscure = (Default: True) Obscure passwords when typing +; instamenu_password = (Default: False) Use the -P option for instamenu (you need the appropriate instamenu patch!) + +[editor] +; terminal = +; gui_if_available = (Default: True) diff --git a/.config/instamenu/scripts/i3_empty_workspace.sh b/.config/instamenu/scripts/i3_empty_workspace.sh new file mode 100755 index 000000000..9d044855b --- /dev/null +++ b/.config/instamenu/scripts/i3_empty_workspace.sh @@ -0,0 +1,22 @@ +#!/bin/bash + +asksetting() { + echo ">>h Create a Workspace +MultiMC" | instamenu -c -l 10 -w -400 -i -h -1 -bw 4 -q "${1:-Search...}" +} + +LOOPSETTING="true" +while [ -n "$LOOPSETTING" ]; do + EMPTY_WORKSPACE="$(asksetting)" + unset LOOPSETTING + case "$EMPTY_WORKSPACE" in + MultiMC) + EMPTY_WORKSPACE="11.1. MultiMC" + ;; + *) + echo "Program terminated." && exit 1 + ;; + esac + i3-msg workspace ${EMPTY_WORKSPACE} +done + diff --git a/.config/instamenu/scripts/i3_switch_workspaces.sh b/.config/instamenu/scripts/i3_switch_workspaces.sh new file mode 100755 index 000000000..56975b13c --- /dev/null +++ b/.config/instamenu/scripts/i3_switch_workspaces.sh @@ -0,0 +1,23 @@ +#!/bin/bash +asksetting() { + options=$(i3-msg -t get_workspaces | tr ',' '\n' | grep "name" | sed 's/"name":"\(.*\)"/\1/g' | sort -n) + + echo ">>h Create a Workspace +$options" | instamenu -c -l 10 -w -400 -i -h -1 -bw 4 -q "${1:-Search...}" +} + +LOOPSETTING="true" +while [ -n "$LOOPSETTING" ]; do + WORKSPACE="$(asksetting)" + unset LOOPSETTING + case "$WORKSPACE" in + $WORKSPACE) + WORKSPACE="$WORKSPACE" + ;; + *) + echo "Program terminated." && exit 1 + ;; + esac + i3-msg workspace "${WORKSPACE}" >/dev/null +done + diff --git a/.config/instamenu/scripts/instant-clip-menu.sh b/.config/instamenu/scripts/instant-clip-menu.sh new file mode 100755 index 000000000..e0efabe64 --- /dev/null +++ b/.config/instamenu/scripts/instant-clip-menu.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +clipmenu -i -w 500 -h 50 -c \ No newline at end of file diff --git a/.config/instamenu/scripts/instant-edit-configs.sh b/.config/instamenu/scripts/instant-edit-configs.sh new file mode 100755 index 000000000..540c0b6ed --- /dev/null +++ b/.config/instamenu/scripts/instant-edit-configs.sh @@ -0,0 +1,54 @@ +#!/bin/bash + +asksetting() { + echo ">>h Edit config file +Awesome +Bash +i3 +Kitty +Pacman +Picom +PolyBar +xResources +ZSH" | instamenu -c -l 10 -w -400 -i -h -1 -bw 4 -q "${1:-Search...}" +} + +LOOPSETTING="true" +while [ -n "$LOOPSETTING" ]; do + CHOICE="$(asksetting)" + [ -n "$CHOICE" ] || exit + unset LOOPSETTING + case "$CHOICE" in + Awesome) + CHOICE="$HOME/.config/awesome/rc.lua" + ;; + Bash) + CHOICE="$HOME/.bashrc" + ;; + Picom) + CHOICE="$HOME/.config/i3/picom.conf" + ;; + i3) + CHOICE="$HOME/.config/i3/config" + ;; + Pacman) + CHOICE="/etc/pacman.conf" + ;; + PolyBar) + CHOICE="$HOME/.config/polybar/config" + ;; + Kitty) + CHOICE="$HOME/.config/kitty/kitty.conf" + ;; + xResources) + CHOICE="$HOME/.Xresources" + ;; + ZSH) + CHOICE="$HOME/.zshrc" + ;; + *) + echo "Program terminated." && exit 1 + ;; + esac + code "$CHOICE" +done diff --git a/.config/instamenu/scripts/instant-i3-empty-workspace.sh b/.config/instamenu/scripts/instant-i3-empty-workspace.sh new file mode 100755 index 000000000..96aeabdd5 --- /dev/null +++ b/.config/instamenu/scripts/instant-i3-empty-workspace.sh @@ -0,0 +1,23 @@ +#!/bin/bash + +asksetting() { + echo ">>h Create a Workspace +MultiMC" | instamenu -c -l 10 -w -400 -i -h -1 -bw 4 -q "${1:-Search...}" +} + +LOOPSETTING="true" +while [ -n "$LOOPSETTING" ]; do + CHOICE="$(asksetting)" + [ -n "$CHOICE" ] || exit + unset LOOPSETTING + case "$CHOICE" in + MultiMC) + CHOICE="11.1. MultiMC" + ;; + *) + echo "Program terminated." && exit 1 + ;; + esac + i3-msg workspace ${CHOICE} +done + diff --git a/.config/instamenu/scripts/instant-i3-layout-switcher.sh b/.config/instamenu/scripts/instant-i3-layout-switcher.sh new file mode 100755 index 000000000..fec1b71cc --- /dev/null +++ b/.config/instamenu/scripts/instant-i3-layout-switcher.sh @@ -0,0 +1,44 @@ +#!/bin/bash + +asksetting() { + options="max +mainLeft +mainCenter +mainRight +MainMainVStack +MainVStackMain +VerticalTileTop +VerticalTileBottom +NestedRight +SmartNestedRight" + + echo ">>h Switch to a Workspace +$options" | instamenu -c -l 10 -w -400 -i -h -1 -bw 4 -q "${1:-Search...}" +} + +while [ -n "$1" ]; do + case $1 in + "mainCenter") + echo "mainCenter" | i3-instant-layout - && exit 1 + ;; + *) + echo "Program terminated." && exit 1 + ;; + esac +done + +LOOPSETTING="true" +while [ -n "$LOOPSETTING" ]; do + CHOICE="$(asksetting)" + [ -n "$CHOICE" ] || exit + unset LOOPSETTING + case "$CHOICE" in + $CHOICE) + echo "$CHOICE" | i3-instant-layout - && exit 1 + ;; + *) + echo "Program terminated." && exit 1 + ;; + esac +done + diff --git a/.config/instamenu/scripts/instant-i3-switch-workspaces.sh b/.config/instamenu/scripts/instant-i3-switch-workspaces.sh new file mode 100755 index 000000000..41a7ebab0 --- /dev/null +++ b/.config/instamenu/scripts/instant-i3-switch-workspaces.sh @@ -0,0 +1,20 @@ +#!/bin/bash +asksetting() { + options=$(i3-msg -t get_workspaces | tr ',' '\n' | grep "name" | sed 's/"name":"\(.*\)"/\1/g' | sort -n) + + echo ">>h Switch to a Workspace +$options" | instamenu -c -l 10 -w -400 -i -h -1 -bw 4 -q "${1:-Search...}" +} + +LOOPSETTING="true" +while [ -n "$LOOPSETTING" ]; do + CHOICE="$(asksetting)" + [ -n "$CHOICE" ] || exit + unset LOOPSETTING + if [ "$CHOICE" ]; then + i3-msg workspace "${CHOICE}" >/dev/null + else + echo "Program terminated." && exit 1 + fi +done + diff --git a/.config/instamenu/scripts/instant-open-program.sh b/.config/instamenu/scripts/instant-open-program.sh new file mode 100755 index 000000000..8a9ef279f --- /dev/null +++ b/.config/instamenu/scripts/instant-open-program.sh @@ -0,0 +1,45 @@ +#!/bin/bash + +asksetting() { + echo ">>h Run a App +Vim +GoDot +gParted +MultiMC +Steam +GameHub +UbisoftConnect +Tiled" | instamenu -c -l 10 -w -400 -i -h -1 -bw 4 -q "${1:-Search...}" +} + +LOOPSETTING="true" +while [ -n "$LOOPSETTING" ]; do + CHOICE="$(asksetting)" + [ -n "$CHOICE" ] || exit + unset LOOPSETTING + case "$CHOICE" in + Vim) + CHOICE="alacritty --title=vim --class=vim,vim -e vim" + ;; + GoDot) + CHOICE="godot" + ;; + gParted) + CHOICE="gparted" + ;; + MultiMC) + CHOICE="prime-run multimc" + ;; + Steam) + CHOICE="prime-run steam" + ;; + Tiled) + CHOICE="tiled" + ;; + *) + echo "Program terminated." && exit 1 + ;; + esac + $CHOICE +done + diff --git a/.config/instamenu/subs.ini b/.config/instamenu/subs.ini new file mode 100644 index 000000000..3d3651a34 --- /dev/null +++ b/.config/instamenu/subs.ini @@ -0,0 +1,26 @@ +# Linux +UCVls1GmFKf6WlTraIb_IaJg # DistroTube +UC2eYFnH61tmytImy1mTYvhA # Luke Smith +UCld68syR8Wi-GY_n4CaoJGA # Brodie Robertson +UCg6gPGh8HU2U01vaFCAsvmQ # Chris Titus Tech +UCCIHOP7e271SIumQgyl6XBQ # OldTechBloke +UCJdmdUp5BrsWsYVQUylCMLg # Erik Dubois +UCdGFLV7h9RGeTUX7wa5rqGw # Manjaro Linux +UCoryWpk4QVYKFCJul9KBdyw # Switched to Linux +UC5UAwBUum7CPN5buc-_N1Fw # The Linux Experiment +UCZiL6BoryLWxyapUuVYW27g # Average Linux User +#Minecraft +UChFur_NwVSbUozOcF_F2kMg # MumboJumbo +UC_GQ4mac4oN3wl1UdbFuTEA # ibxToyCat +UCRlEFn0L2G_DktbyvN0AZ5A # WadZee +UC9mvRrl9o7rG65ABsGVvDBw # Mysticat +UCuMJPFqazQI4SofSFEd-5zA # impulseSV + +#Spirit +UC_8fJz5gAnhRqZ740QXlzmw # Jen McCarty +UCxdt2Wf_g9k1wnBfWEsq79Q # The Magic Chill +#Music +UCMvETSFFkMOADyrGBj3gbWA # NerdOut +UCXBcDYUr89ImtOLYaHPiiPg # Marcus Veltri +# Myself +UCuKJ0LqxI8t2a9ATl1rWBGA # Myself diff --git a/.config/katemetainfos b/.config/katemetainfos new file mode 100644 index 000000000..dd8d49c09 --- /dev/null +++ b/.config/katemetainfos @@ -0,0 +1,23 @@ +[file:///etc/X11/xinit/xinitrc.d/80xapp-gtk3-module.sh] +Bookmarks= +Checksum=4b2ec2a79e3ce3cf51f9e7b6e4266817acfdbbd8 +Encoding=UTF-8 +Highlighting=Bash +Highlighting Set By User=false +Indentation Mode=normal +Mode=Bash +Mode Set By User=false +Time=2021,1,6,23,51,59 +URL=file:///etc/X11/xinit/xinitrc.d/80xapp-gtk3-module.sh + +[file:///run/media/ww/500GB/.gitlabs/DotFiles/.config/i3/config] +Bookmarks= +Checksum=4053f2034c0cd7034674a2cc839164cee8ca324b +Encoding=UTF-8 +Highlighting=None +Highlighting Set By User=false +Indentation Mode=normal +Mode=Normal +Mode Set By User=false +Time=2021,1,6,23,33,59 +URL=file:///run/media/ww/500GB/.gitlabs/DotFiles/.config/i3/config diff --git a/.config/katerc b/.config/katerc new file mode 100644 index 000000000..4da686565 --- /dev/null +++ b/.config/katerc @@ -0,0 +1,120 @@ +[General] +Config Revision=10 +Days Meta Infos=30 +Save Meta Infos=true +Show Full Path in Title=false +Show Menu Bar=true +Show Status Bar=true +Show Tab Bar=true + +[KTextEditor Document] +Allow End of Line Detection=true +BOM=false +Backup Local=false +Backup Prefix= +Backup Remote=false +Backup Suffix=~ +Encoding=UTF-8 +End of Line=0 +Indent On Backspace=true +Indent On Tab=true +Indent On Text Paste=false +Indentation Mode=normal +Indentation Width=4 +Keep Extra Spaces=false +Line Length Limit=10000 +Newline at End of File=true +On-The-Fly Spellcheck=false +Overwrite Mode=false +PageUp/PageDown Moves Cursor=false +Remove Spaces=0 +ReplaceTabsDyn=true +Show Spaces=0 +Show Tabs=true +Smart Home=true +Swap Directory= +Swap File Mode=1 +Swap Sync Interval=15 +Tab Handling=2 +Tab Width=4 +Trailing Marker Size=1 +Word Wrap=false +Word Wrap Column=80 + +[KTextEditor Editor] +Encoding Prober Type=1 +Fallback Encoding=ISO 8859-15 + +[KTextEditor Renderer] +Animate Bracket Matching=false +Auto Color Theme Selection=true +Color Theme=Breeze Light +Font=DejaVu LGC Sans,12,-1,5,50,0,0,0,0,0 +Show Indentation Lines=false +Show Whole Bracket Expression=false +Word Wrap Marker=false + +[KTextEditor View] +Allow Mark Menu=true +Auto Brackets=false +Auto Center Lines=0 +Auto Completion=true +Backspace Remove Composed Characters=false +Bookmark Menu Sorting=0 +Bracket Match Preview=false +Chars To Enclose Selection= +Default Mark Type=1 +Dynamic Word Wrap=true +Dynamic Word Wrap Align Indent=80 +Dynamic Word Wrap At Static Marker=false +Dynamic Word Wrap Indicators=1 +Dynamic Wrap not at word boundaries=false +Fold First Line=false +Folding Bar=true +Folding Preview=true +Icon Bar=false +Input Mode=0 +Keyword Completion=true +Line Modification=true +Line Numbers=true +Maximum Search History Size=100 +Mouse Paste At Cursor Position=false +Persistent Selection=false +Scroll Bar Marks=false +Scroll Bar Mini Map All=true +Scroll Bar Mini Map Width=60 +Scroll Bar MiniMap=true +Scroll Bar Preview=true +Scroll Past End=false +Search/Replace Flags=140 +Show Line Count=false +Show Scrollbars=0 +Show Word Count=false +Smart Copy Cut=false +Text Drag And Drop=true +User Sets Of Chars To Enclose Selection= +Vi Input Mode Steal Keys=false +Vi Relative Line Numbers=false +Word Completion=true +Word Completion Minimal Word Length=3 +Word Completion Remove Tail=true + +[MainWindow] +State=AAAA/wAAAAD9AAAAAAAAA7YAAAPeAAAABAAAAAQAAAAIAAAACPwAAAABAAAAAgAAAAEAAAAWAG0AYQBpAG4AVABvAG8AbABCAGEAcgAAAAAA/////wAAAAAAAAAA +ToolBarsMovable=Disabled +eDP1 HDMI-1-1 Height 1080=1014 +eDP1 HDMI-1-1 Width 1920=950 +eDP1 HDMI-1-1 XPosition=963 +eDP1 HDMI-1-1 YPosition=33 +eDP1 Height 1080=1066 +eDP1 Width 1920=950 +eDP1 XPosition=963 +eDP1 YPosition=7 + +[filetree] +editShade=178,218,246 +listMode=false +shadingEnabled=true +showFullPathOnRoots=false +sortRole=0 +viewShade=193,207,208 diff --git a/.config/katevirc b/.config/katevirc new file mode 100644 index 000000000..cdea46f5f --- /dev/null +++ b/.config/katevirc @@ -0,0 +1,17 @@ +[Kate Vi Input Mode Settings] +Command Mode Mapping Keys= +Command Mode Mappings= +Command Mode Mappings Recursion= +Insert Mode Mapping Keys= +Insert Mode Mappings= +Insert Mode Mappings Recursion= +Macro Completions= +Macro Contents= +Macro Registers= +Map Leader=\\ +Normal Mode Mapping Keys= +Normal Mode Mappings= +Normal Mode Mappings Recursion= +Visual Mode Mapping Keys= +Visual Mode Mappings= +Visual Mode Mappings Recursion= diff --git a/.config/kitty/colors.conf b/.config/kitty/colors.conf new file mode 100644 index 000000000..8bee6358b --- /dev/null +++ b/.config/kitty/colors.conf @@ -0,0 +1,62 @@ +# https://draculatheme.com/kitty +# +# Installation instructions: +# +# cp dracula.conf ~/.config/kitty/ +# echo "include dracula.conf" >> ~/.config/kitty/kitty.conf +# +# Then reload kitty for the config to take affect. +# Alternatively copy paste below directly into kitty.conf + +foreground #f8f8f2 +background #282a36 +selection_foreground #ffffff +selection_background #44475a + +url_color #8be9fd + +# black +color0 #21222c +color8 #6272a4 + +# red +color1 #ff5555 +color9 #ff6e6e + +# green +color2 #50fa7b +color10 #69ff94 + +# yellow +color3 #f1fa8c +color11 #ffffa5 + +# blue +color4 #bd93f9 +color12 #d6acff + +# magenta +color5 #ff79c6 +color13 #ff92df + +# cyan +color6 #8be9fd +color14 #a4ffff + +# white +color7 #f8f8f2 +color15 #ffffff + +# Cursor colors +cursor #f8f8f2 +cursor_text_color background + +# Tab bar colors +active_tab_foreground #282a36 +active_tab_background #f8f8f2 +inactive_tab_foreground #282a36 +inactive_tab_background #6272a4 + +# Marks +mark1_foreground #282a36 +mark1_background #ff5555 diff --git a/.config/kitty/kitty.conf b/.config/kitty/kitty.conf new file mode 100644 index 000000000..cae2ccb2e --- /dev/null +++ b/.config/kitty/kitty.conf @@ -0,0 +1,126 @@ +# Colors +include colors.conf + +# Fonts +font_family SauceCodePro Nerd Font Mono +italic_font SauceCodePro Nerd Font Mono +bold_font SauceCodePro Nerd Font Mono +bold_italic_font SauceCodePro Nerd Font Mono +font_size 10.0 + +adjust_line_height 0 +adjust_column_width 0 +box_drawing_scale 0.001, 1, 1.5, 2 + +# Cursor +cursor_shape underline +cursor_blink_interval -1 +cursor_stop_blinking_after 15.0 + +# Scrollback +scrollback_lines 10000 +scrollback_pager /usr/bin/less +wheel_scroll_multiplier 5.0 + +# URLs +url_style double +open_url_modifiers ctrl+shift +open_url_with default +copy_on_select yes + +# Selection +rectangle_select_modifiers ctrl+shift +select_by_word_characters :@-./_~?&=%+# + +# Mouse +click_interval 0.5 +mouse_hide_wait 0 +focus_follows_mouse no + +# Performance +repaint_delay 20 +input_delay 2 +sync_to_monitor no + +# Bell +visual_bell_duration 0.0 +enable_audio_bell yes +bell_on_tab yes + +# Window +remember_window_size no +initial_window_width 700 +initial_window_height 400 +window_border_width 0 +window_margin_width 12 +window_padding_width 10 +inactive_text_alpha 1.0 +background_opacity 0.80 +placement_strategy center +hide_window_decorations yes + +# Layouts +enabled_layouts * + +# Tabs +tab_bar_edge bottom +tab_bar_style powerline +tab_bar_margin_width 0.0 +tab_separator " ┇ " +active_tab_font_style bold +inactive_tab_font_style normal + +# Shell +shell . +close_on_child_death no +allow_remote_control yes +term xterm-kitty + +# Keys +map ctrl+shift+v paste_from_clipboard +map ctrl+shift+s paste_from_selection +map ctrl+shift+c copy_to_clipboard +map shift+insert paste_from_selection + +map ctrl+shift+up scroll_line_up +map ctrl+shift+down scroll_line_down +map ctrl+shift+k scroll_line_up +map ctrl+shift+j scroll_line_down +map ctrl+shift+page_up scroll_page_up +map ctrl+shift+page_down scroll_page_down +map ctrl+shift+home scroll_home +map ctrl+shift+end scroll_end +map ctrl+shift+h show_scrollback + +map ctrl+shift+enter new_window +map ctrl+shift+n new_os_window +map ctrl+shift+w close_window +map ctrl+shift+] next_window +map ctrl+shift+[ previous_window +map ctrl+shift+f move_window_forward +map ctrl+shift+b move_window_backward +map ctrl+shift+` move_window_to_top +map ctrl+shift+1 first_window +map ctrl+shift+2 second_window +map ctrl+shift+3 third_window +map ctrl+shift+4 fourth_window +map ctrl+shift+5 fifth_window +map ctrl+shift+6 sixth_window +map ctrl+shift+7 seventh_window +map ctrl+shift+8 eighth_window +map ctrl+shift+9 ninth_window +map ctrl+shift+0 tenth_window + +map ctrl+shift+right next_tab +map ctrl+shift+left previous_tab +map ctrl+shift+t new_tab +map ctrl+shift+q close_tab +map ctrl+shift+l next_layout +map ctrl+shift+. move_tab_forward +map ctrl+shift+, move_tab_backward +map ctrl+shift+alt+t set_tab_title + +map ctrl+shift+equal increase_font_size +map ctrl+shift+minus decrease_font_size +map ctrl+shift+backspace restore_font_size +map ctrl+shift+f6 set_font_size 16.0 \ No newline at end of file diff --git a/.config/knfsshare b/.config/knfsshare new file mode 100644 index 000000000..8d95f3c61 --- /dev/null +++ b/.config/knfsshare @@ -0,0 +1,2 @@ +[General] +exportsFile=/etc/exports diff --git a/.config/kritadisplayrc b/.config/kritadisplayrc new file mode 100644 index 000000000..d905a877c --- /dev/null +++ b/.config/kritadisplayrc @@ -0,0 +1,2 @@ +[General] +canvasState=OPENGL_SUCCESS diff --git a/.config/kritarc b/.config/kritarc new file mode 100644 index 000000000..bebc0d75f --- /dev/null +++ b/.config/kritarc @@ -0,0 +1,495 @@ +ArtColorSel.ColorSpace=0 +ArtColorSel.InversedSaturation=false +ArtColorSel.Light=0 +ArtColorSel.LightPieces=11 +ArtColorSel.NumRings=7 +ArtColorSel.RingPieces=12 +ArtColorSel.SelColorH=0 +ArtColorSel.SelColorS=0 +ArtColorSel.SelColorX=0 +ArtColorSel.defaultHueSteps=12 +ArtColorSel.defaultSaturationSteps=7 +ArtColorSel.defaultValueScaleSteps=11 +ArtColorSel.enforceGamutMask=false +ArtColorSel.lumaB=0.0722 +ArtColorSel.lumaG=0.7152 +ArtColorSel.lumaGamma=2.2 +ArtColorSel.lumaR=0.2126 +ArtColorSel.showBgColor=true +ArtColorSel.showValueScale=false +BackgroundColorForNewImage=255,255,255 +BackgroundOpacityForNewImage=255 +BackgroundStyleForNewImage=0 +CanvasOnlyActive=false +CanvasSize/ConstrainProportions=true +CanvasSize/KeepAspectRatio=true +ExportConfiguration-image/png=\n\n true\n 3\n true\n false\n false\n false\n false\n false\n false\n \n\n \n\n]]>\n\n +GamutMasks.viewMode=0 +Krita/Ocio/DisplayDevice=sRGB +Krita/Ocio/DisplayLook=None +Krita/Ocio/DisplayView=Raw +Krita/Ocio/InputColorSpace=raw +Krita/Ocio/OcioColorManagementMode=0 +Krita/Ocio/OcioConfigPath= +Krita/Ocio/OcioLockColorVisualRepresentation=false +Krita/Ocio/OcioLutPath= +Krita/Ocio/UseOcio=false +LastBackGroundColor=\n\n \n\n +LastForeGroundColor=\n\n \n\n +LastPreset=b)_Basic-5_Size +LineSmoothingDelayDistance=50 +LineSmoothingDistance=50 +LineSmoothingFinishStabilizedCurve=true +LineSmoothingScalableDistance=true +LineSmoothingSmoothPressure=false +LineSmoothingStabilizeSensors=true +LineSmoothingTailAggressiveness=0.15 +LineSmoothingType=1 +LineSmoothingUseDelayDistance=true +NumberOfLayersForNewImage=2 +SpecificColorSelector/UsePercentage=false +baseLength=60 +canvasState=OPENGL_SUCCESS +canvasizedlg_heightunit=px +canvasizedlg_widthunit=px +canvasizedlg_xoffsetunit=px +canvasizedlg_yoffsetunit=px +colorDepthDef=U8 +colorModelDef=RGBA +colorProfileDef=sRGB-elle-V2-srgbtrc.icc +defaultPalette=Default +globalSnapBoundingBox=false +globalSnapExtension=false +globalSnapImageBounds=true +globalSnapImageCenter=true +globalSnapIntersection=false +globalSnapNode=false +globalSnapOrthogonal=false +globalSnapToPixel=false +gridmaincolor=99,99,99 +gridmainstyle=0 +gridsubdivisioncolor=150,150,150 +gridsubdivisionstyle=1 +guidesColor=99,99,99 +guidesLineStyle=0 +imageHeightDef=1200 +imageResolutionDef=100 +imageWidthDef=1600 +levelOfDetailEnabled=false +logviewer_enabled=false +moveToolChangedValueX=370 +moveToolChangedValueY=44 +moveToolUnit=0 +numberOfOnionSkins=10 +oninSkinTintColorForward=0,255,0 +onionSkinOpacity_-1=173 +onionSkinOpacity_-10=22 +onionSkinOpacity_-2=163 +onionSkinOpacity_-3=147 +onionSkinOpacity_-4=130 +onionSkinOpacity_-5=107 +onionSkinOpacity_-6=86 +onionSkinOpacity_-7=66 +onionSkinOpacity_-8=48 +onionSkinOpacity_-9=35 +onionSkinOpacity_0=178 +onionSkinOpacity_1=173 +onionSkinOpacity_10=22 +onionSkinOpacity_2=163 +onionSkinOpacity_3=147 +onionSkinOpacity_4=130 +onionSkinOpacity_5=107 +onionSkinOpacity_6=86 +onionSkinOpacity_7=66 +onionSkinOpacity_8=48 +onionSkinOpacity_9=35 +onionSkinState_-1=true +onionSkinState_-10=false +onionSkinState_-2=true +onionSkinState_-3=false +onionSkinState_-4=false +onionSkinState_-5=false +onionSkinState_-6=false +onionSkinState_-7=false +onionSkinState_-8=false +onionSkinState_-9=false +onionSkinState_0=true +onionSkinState_1=true +onionSkinState_10=false +onionSkinState_2=true +onionSkinState_3=false +onionSkinState_4=false +onionSkinState_5=false +onionSkinState_6=false +onionSkinState_7=false +onionSkinState_8=false +onionSkinState_9=false +onionSkinTintColorBackward=255,0,0 +onionSkinTintFactor=191 +preferredVectorImportResolution=100 +presethistory= +scratchpadVisible=true +showAdditionalOnionSkinsSettings=true +toolbarslider_1=opacity +toolbarslider_2=size +toolbarslider_3=flow +toolbarslider_4=flow + +[File Dialogs] +OpenDocument=/home/dt/Pictures +SaveAs=/home/dt/Pictures + +[KisToolCrop] +allowGrow=false +decoration=1 +growCenter=false + +[KisToolSelectRectangular] +roundCornersX=0 +roundCornersY=0 + +[KritaShape/KisToolRectangle] +outlineType=1 +roundCornersX=0 +roundCornersY=0 + +[MainWindow] +Height 768=702 +State=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AAAAFABHAHIAaQBkAEQAbwBjAGsAZQByAAAAAAD/////AAABLQD////7AAAAHgBIAGkAcwB0AG8AZwByAGEAbQBEAG8AYwBrAGUAcgAAAAAA/////wAAAEcA////+wAAACoAQQBuAGkAbQBhAHQAaQBvAG4AQwB1AHIAdgBlAHMARABvAGMAawBlAHIAAAAAAP////8AAAB4AP////sAAAAyAFMAdgBnAFMAeQBtAGIAbwBsAEMAbwBsAGwAZQBjAHQAaQBvAG4ARABvAGMAawBlAHIAAAAAAP////8AAAB4AP////sAAAAWAFQAbwB1AGMAaABEAG8AYwBrAGUAcgAAAAJMAAABMQAAABMA////+wAAABoAQQByAHIAYQBuAGcAZQBEAG8AYwBrAGUAcgAAAAAA/////wAAADYA////+wAAADoAYwBvAG0AaQBjAHMAXwBwAHIAbwBqAGUAYwB0AF8AbQBhAG4AYQBnAGUAcgBfAGQAbwBjAGsAZQByAAAAAAD/////AAAArwD////7AAAAKgBxAHUAaQBjAGsAXwBzAGUAdAB0AGkAbgBnAHMAXwBkAG8AYwBrAGUAcgAAAAAA/////wAAAHoA////+wAAABYAUABhAGcAZQByAEQAbwBjAGsAZQByAAAAAAD/////AAAAAAAAAAD7AAAAJgBsAGEAcwB0AGQAbwBjAHUAbQBlAG4AdABzAGQAbwBjAGsAZQByAAAAAAD/////AAAAeAD////7AAAAEgBHAGEAbQB1AHQATQBhAHMAawAAAAAA/////wAAASMA////+wAAABIATABvAGcARABvAGMAawBlAHIAAAAAAP////8AAAB5AP////sAAAAQAFMAbgBhAHAAcwBoAG8AdAEAAAMjAAAAswAAAHgA////AAAAAgAACgAAAAC8/AEAAAAB+wAAABoAVABvAG8AbABCAGEAcgBEAG8AYwBrAGUAcgAAAAAA/////wAAAAAAAAAAAAAAAwAAAAAAAAAA/AEAAAAE+wAAABwARgBsAGkAcABiAG8AbwBrAEQAbwBjAGsAZQByAAAAAAD/////AAAAAAAAAAD7AAAAHgBBAG4AaQBtAGEAdABpAG8AbgBEAG8AYwBrAGUAcgAAAAAA/////wAAAQwA////+wAAACAATwBuAGkAbwBuAFMAawBpAG4AcwBEAG8AYwBrAGUAcgAAAAAA/////wAAAcEA////+wAAABwAVABpAG0AZQBsAGkAbgBlAEQAbwBjAGsAZQByAAAAAAD/////AAAARgD///8AAAYXAAADmAAAAAQAAAAEAAAACAAAAAj8AAAAAQAAAAIAAAACAAAAFgBtAGEAaQBuAFQAbwBvAGwAQgBhAHIBAAAAAP////8AAAAAAAAAAAAAAB4AQgByAHUAcwBoAGUAcwBBAG4AZABTAHQAdQBmAGYBAAAAwf////8AAAAAAAAAAA== +Width 1366=1352 +eDP-1 HDMI-1-0 Height 1080=1014 +eDP-1 HDMI-1-0 Width 1920=1906 +ko_geometry=AdnQywADAAAAAAAGAAAAIAAAB3kAAAQXAAAABwAAACEAAAd4AAAEFgAAAAAAAAAAB4AAAAAHAAAAIQAAB3gAAAQW + +[MainWindow][DockWidget AnimationCurvesDocker] +Collapsed=false +DockArea=2 +Locked=false +height=421 +width=448 +xPosition=0 +yPosition=0 + +[MainWindow][DockWidget AnimationDocker] +Collapsed=false +DockArea=8 +Locked=false +height=160 +width=280 +xPosition=0 +yPosition=0 + +[MainWindow][DockWidget ArrangeDocker] +Collapsed=false +DockArea=2 +Locked=false +height=426 +width=303 +xPosition=0 +yPosition=0 + +[MainWindow][DockWidget ArtisticColorSelector] +Collapsed=false +DockArea=2 +Locked=false +height=284 +width=334 +xPosition=0 +yPosition=0 + +[MainWindow][DockWidget ChannelDocker] +Collapsed=false +DockArea=2 +Locked=false +height=461 +width=640 +xPosition=0 +yPosition=19 + +[MainWindow][DockWidget ColorSelectorNg] +Collapsed=false +DockArea=2 +Locked=false +height=161 +width=262 +xPosition=0 +yPosition=19 + +[MainWindow][DockWidget CompositionDocker] +Collapsed=false +DockArea=2 +Locked=false +height=300 +width=400 +xPosition=0 +yPosition=0 + +[MainWindow][DockWidget DigitalMixer] +Collapsed=false +DockArea=2 +Locked=false +height=30 +width=100 +xPosition=0 +yPosition=0 + +[MainWindow][DockWidget GamutMask] +Collapsed=false +DockArea=2 +Locked=false +height=322 +width=363 +xPosition=0 +yPosition=0 + +[MainWindow][DockWidget GridDocker] +Collapsed=false +DockArea=2 +Locked=false +height=527 +width=258 +xPosition=0 +yPosition=0 + +[MainWindow][DockWidget HistogramDocker] +Collapsed=false +DockArea=2 +Locked=false +height=461 +width=640 +xPosition=0 +yPosition=19 + +[MainWindow][DockWidget History] +Collapsed=false +DockArea=2 +Locked=false +height=461 +width=640 +xPosition=0 +yPosition=19 + +[MainWindow][DockWidget KisLayerBox] +Collapsed=false +DockArea=2 +Locked=false +height=251 +width=262 +xPosition=0 +yPosition=19 + +[MainWindow][DockWidget LogDocker] +Collapsed=false +DockArea=2 +Locked=false +height=260 +width=400 +xPosition=0 +yPosition=0 + +[MainWindow][DockWidget LutDocker] +Collapsed=false +DockArea=2 +Locked=false +height=286 +width=357 +xPosition=0 +yPosition=0 + +[MainWindow][DockWidget OnionSkinsDocker] +Collapsed=false +DockArea=8 +Locked=false +height=282 +width=336 +xPosition=0 +yPosition=0 + +[MainWindow][DockWidget OverviewDocker] +Collapsed=false +DockArea=2 +Locked=false +height=461 +width=640 +xPosition=0 +yPosition=19 + +[MainWindow][DockWidget PaletteDocker] +Collapsed=false +DockArea=2 +Locked=false +height=422 +width=647 +xPosition=0 +yPosition=0 + +[MainWindow][DockWidget PatternDocker] +Collapsed=false +DockArea=2 +Locked=false +height=306 +width=256 +xPosition=0 +yPosition=0 + +[MainWindow][DockWidget PresetDocker] +Collapsed=false +DockArea=2 +Locked=false +height=173 +width=262 +xPosition=0 +yPosition=19 + +[MainWindow][DockWidget PresetHistory] +Collapsed=false +DockArea=2 +Locked=false +height=461 +width=640 +xPosition=0 +yPosition=19 + +[MainWindow][DockWidget SmallColorSelector] +Collapsed=false +DockArea=2 +Locked=false +height=461 +width=640 +xPosition=0 +yPosition=19 + +[MainWindow][DockWidget Snapshot] +Collapsed=false +DockArea=2 +Locked=false +height=160 +width=262 +xPosition=0 +yPosition=19 + +[MainWindow][DockWidget SpecificColorSelector] +Collapsed=false +DockArea=2 +Locked=false +height=207 +width=268 +xPosition=0 +yPosition=0 + +[MainWindow][DockWidget SvgSymbolCollectionDocker] +Collapsed=false +DockArea=2 +Locked=false +height=461 +width=640 +xPosition=0 +yPosition=19 + +[MainWindow][DockWidget TasksetDocker] +Collapsed=false +DockArea=2 +Locked=false +height=300 +width=400 +xPosition=0 +yPosition=0 + +[MainWindow][DockWidget TimelineDocker] +Collapsed=false +DockArea=8 +Locked=false +height=30 +width=100 +xPosition=0 +yPosition=0 + +[MainWindow][DockWidget ToolBox] +Collapsed=false +DockArea=1 +Locked=false +height=903 +width=73 +xPosition=0 +yPosition=17 + +[MainWindow][DockWidget TouchDocker] +Collapsed=false +DockArea=2 +Locked=false +height=0 +width=0 +xPosition=0 +yPosition=0 + +[MainWindow][DockWidget comics_project_manager_docker] +Collapsed=false +DockArea=2 +Locked=false +height=461 +width=640 +xPosition=0 +yPosition=19 + +[MainWindow][DockWidget lastdocumentsdocker] +Collapsed=false +DockArea=2 +Locked=false +height=461 +width=640 +xPosition=0 +yPosition=19 + +[MainWindow][DockWidget quick_settings_docker] +Collapsed=false +DockArea=2 +Locked=false +height=461 +width=640 +xPosition=0 +yPosition=19 + +[MainWindow][DockWidget sharedtooldocker] +Collapsed=false +DockArea=2 +Locked=false +height=461 +width=640 +xPosition=0 +yPosition=19 + +[RecentFiles] +File1[$e]=$HOME/Pictures/8 Keys Image.png +File2[$e]=$HOME/Documents/Letter.png +File3[$e]=$HOME/Pictures/screenie/1609768144.png +File4[$e]=$HOME/Pictures/screenie/1610107088.png +Name1[$e]=8 Keys Image.png +Name2[$e]=Letter.png +Name3[$e]=1609768144.png +Name4[$e]=1610107088.png + +[SvgSymbolCollection] +currentCollection=0 + +[advancedColorSelector] +gamma=2.2 +lumaG=0.7152 +lumaR=0.2126 +showColorSelector=true + +[crashprevention] +CreatingCanvas=false + +[krita] +ColorSpaceExtensionsPlugins=\\0 +ColorSpaceExtensionsPluginsDisabled= +ColorSpacePlugins=\\0 +ColorSpacePluginsDisabled= +DockerPlugins=,,,,,,,,,,,,,,,,,,,,,,, +DockerPluginsDisabled= +FlakePlugins=, +FlakePluginsDisabled= +ShapePlugins=, +ShapePluginsDisabled= +ToolPlugins=,,,,,,,,,,,, +ToolPluginsDisabled= diff --git a/.config/libfm/libfm.conf b/.config/libfm/libfm.conf new file mode 100644 index 000000000..9d2935a49 --- /dev/null +++ b/.config/libfm/libfm.conf @@ -0,0 +1,43 @@ +# Configuration file for the libfm version 1.3.1. +# Autogenerated file, don't edit, your changes will be overwritten. + +[config] +single_click=0 +use_trash=1 +confirm_del=1 +confirm_trash=1 +advanced_mode=0 +si_unit=0 +force_startup_notify=1 +backup_as_hidden=1 +no_usb_trash=1 +no_child_non_expandable=0 +show_full_names=0 +only_user_templates=0 +template_run_app=0 +template_type_once=0 +auto_selection_delay=600 +drop_default_action=auto +defer_content_test=0 +quick_exec=0 +thumbnail_local=1 +thumbnail_max=2048 +smart_desktop_autodrop=1 + +[ui] +big_icon_size=48 +small_icon_size=24 +pane_icon_size=24 +thumbnail_size=128 +show_thumbnail=1 +shadow_hidden=0 + +[places] +places_home=1 +places_desktop=1 +places_root=0 +places_computer=0 +places_trash=1 +places_applications=1 +places_network=0 +places_unmounted=1 diff --git a/.config/libreoffice/4/user/autotext/mytexts.bau b/.config/libreoffice/4/user/autotext/mytexts.bau new file mode 100644 index 000000000..e41e77118 Binary files /dev/null and b/.config/libreoffice/4/user/autotext/mytexts.bau differ diff --git a/.config/libreoffice/4/user/basic/Standard/Module1.xba b/.config/libreoffice/4/user/basic/Standard/Module1.xba new file mode 100644 index 000000000..3424c168e --- /dev/null +++ b/.config/libreoffice/4/user/basic/Standard/Module1.xba @@ -0,0 +1,24 @@ + + + +REM ***** BASIC ***** + +Sub Main + +End Sub \ No newline at end of file diff --git a/.config/libreoffice/4/user/basic/Standard/dialog.xlb b/.config/libreoffice/4/user/basic/Standard/dialog.xlb new file mode 100644 index 000000000..669529dbc --- /dev/null +++ b/.config/libreoffice/4/user/basic/Standard/dialog.xlb @@ -0,0 +1,3 @@ + + + diff --git a/.config/libreoffice/4/user/basic/Standard/script.xlb b/.config/libreoffice/4/user/basic/Standard/script.xlb new file mode 100644 index 000000000..67c9503b7 --- /dev/null +++ b/.config/libreoffice/4/user/basic/Standard/script.xlb @@ -0,0 +1,5 @@ + + + + + diff --git a/.config/libreoffice/4/user/basic/dialog.xlc b/.config/libreoffice/4/user/basic/dialog.xlc new file mode 100644 index 000000000..d51f68288 --- /dev/null +++ b/.config/libreoffice/4/user/basic/dialog.xlc @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/.config/libreoffice/4/user/basic/script.xlc b/.config/libreoffice/4/user/basic/script.xlc new file mode 100644 index 000000000..e07401151 --- /dev/null +++ b/.config/libreoffice/4/user/basic/script.xlc @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/.config/libreoffice/4/user/config/autotbl.fmt b/.config/libreoffice/4/user/config/autotbl.fmt new file mode 100644 index 000000000..611ac0df4 Binary files /dev/null and b/.config/libreoffice/4/user/config/autotbl.fmt differ diff --git a/.config/libreoffice/4/user/config/javasettings_Linux_X86_64.xml b/.config/libreoffice/4/user/config/javasettings_Linux_X86_64.xml new file mode 100644 index 000000000..8b4297137 --- /dev/null +++ b/.config/libreoffice/4/user/config/javasettings_Linux_X86_64.xml @@ -0,0 +1,16 @@ + + + + + + + + +Oracle Corporation +file:///usr/lib/jvm/java-8-openjdk/jre +1.8.0_265 +0 +1 +660069006C0065003A002F002F002F007500730072002F006C00690062002F006A0076006D002F006A006100760061002D0038002D006F00700065006E006A0064006B002F006A00720065002F006C00690062002F0061006D006400360034002F007300650072007600650072002F006C00690062006A0076006D002E0073006F000A002F007500730072002F006C00690062002F006A0076006D002F006A006100760061002D0038002D006F00700065006E006A0064006B002F006A00720065002F006C00690062002F0061006D006400360034002F0063006C00690065006E0074003A002F007500730072002F006C00690062002F006A0076006D002F006A006100760061002D0038002D006F00700065006E006A0064006B002F006A00720065002F006C00690062002F0061006D006400360034002F007300650072007600650072003A002F007500730072002F006C00690062002F006A0076006D002F006A006100760061002D0038002D006F00700065006E006A0064006B002F006A00720065002F006C00690062002F0061006D006400360034002F006E00610074006900760065005F0074006800720065006100640073003A002F007500730072002F006C00690062002F006A0076006D002F006A006100760061002D0038002D006F00700065006E006A0064006B002F006A00720065002F006C00690062002F0061006D006400360034000A00 + + diff --git a/.config/libreoffice/4/user/database/biblio.odb b/.config/libreoffice/4/user/database/biblio.odb new file mode 100644 index 000000000..199fd6f5f Binary files /dev/null and b/.config/libreoffice/4/user/database/biblio.odb differ diff --git a/.config/libreoffice/4/user/database/biblio/biblio.dbf b/.config/libreoffice/4/user/database/biblio/biblio.dbf new file mode 100644 index 000000000..4161cea25 Binary files /dev/null and b/.config/libreoffice/4/user/database/biblio/biblio.dbf differ diff --git a/.config/libreoffice/4/user/database/biblio/biblio.dbt b/.config/libreoffice/4/user/database/biblio/biblio.dbt new file mode 100644 index 000000000..e17daea26 Binary files /dev/null and b/.config/libreoffice/4/user/database/biblio/biblio.dbt differ diff --git a/.config/libreoffice/4/user/database/evolocal.odb b/.config/libreoffice/4/user/database/evolocal.odb new file mode 100644 index 000000000..82f486a47 Binary files /dev/null and b/.config/libreoffice/4/user/database/evolocal.odb differ diff --git a/.config/libreoffice/4/user/extensions/buildid b/.config/libreoffice/4/user/extensions/buildid new file mode 100644 index 000000000..1b8d1c1fe --- /dev/null +++ b/.config/libreoffice/4/user/extensions/buildid @@ -0,0 +1 @@ +40(Build:2) \ No newline at end of file diff --git a/.config/libreoffice/4/user/extensions/bundled/extensions.pmap b/.config/libreoffice/4/user/extensions/bundled/extensions.pmap new file mode 100644 index 000000000..31ec86040 --- /dev/null +++ b/.config/libreoffice/4/user/extensions/bundled/extensions.pmap @@ -0,0 +1,5 @@ +Pmp1com.sun.wiki-publisher +wiki-publisherwiki-publisherapplication/vnd.sun.star.package-bundle1.2.00 +com.sun.star.comp.Calc.NLPSolver +nlpsolvernlpsolverapplication/vnd.sun.star.package-bundle0.90 + diff --git a/.config/libreoffice/4/user/extensions/bundled/lastsynchronized b/.config/libreoffice/4/user/extensions/bundled/lastsynchronized new file mode 100644 index 000000000..56a6051ca --- /dev/null +++ b/.config/libreoffice/4/user/extensions/bundled/lastsynchronized @@ -0,0 +1 @@ +1 \ No newline at end of file diff --git a/.config/libreoffice/4/user/extensions/bundled/registry/com.sun.star.comp.deployment.bundle.PackageRegistryBackend/backenddb.xml b/.config/libreoffice/4/user/extensions/bundled/registry/com.sun.star.comp.deployment.bundle.PackageRegistryBackend/backenddb.xml new file mode 100644 index 000000000..921fb7afa --- /dev/null +++ b/.config/libreoffice/4/user/extensions/bundled/registry/com.sun.star.comp.deployment.bundle.PackageRegistryBackend/backenddb.xml @@ -0,0 +1,2 @@ + +vnd.sun.star.expand:$BUNDLED_EXTENSIONS/nlpsolver/helpapplication/vnd.sun.star.helpvnd.sun.star.expand:$BUNDLED_EXTENSIONS/nlpsolver/components.rdbapplication/vnd.sun.star.uno-componentsvnd.sun.star.expand:$BUNDLED_EXTENSIONS/wiki-publisher/helpapplication/vnd.sun.star.helpvnd.sun.star.expand:$BUNDLED_EXTENSIONS/wiki-publisher/WikiExtension.xcsapplication/vnd.sun.star.configuration-schemavnd.sun.star.expand:$BUNDLED_EXTENSIONS/wiki-publisher/WikiEditor/application/vnd.sun.star.basic-libraryvnd.sun.star.expand:$BUNDLED_EXTENSIONS/wiki-publisher/components.rdbapplication/vnd.sun.star.uno-componentsvnd.sun.star.expand:$BUNDLED_EXTENSIONS/wiki-publisher/Addons.xcuapplication/vnd.sun.star.configuration-datavnd.sun.star.expand:$BUNDLED_EXTENSIONS/wiki-publisher/ProtocolHandler.xcuapplication/vnd.sun.star.configuration-datavnd.sun.star.expand:$BUNDLED_EXTENSIONS/wiki-publisher/WikiExtension.xcuapplication/vnd.sun.star.configuration-datavnd.sun.star.expand:$BUNDLED_EXTENSIONS/wiki-publisher/OptionsDialog.xcuapplication/vnd.sun.star.configuration-datavnd.sun.star.expand:$BUNDLED_EXTENSIONS/wiki-publisher/Filter.xcuapplication/vnd.sun.star.configuration-datavnd.sun.star.expand:$BUNDLED_EXTENSIONS/wiki-publisher/Types.xcuapplication/vnd.sun.star.configuration-datavnd.sun.star.expand:$BUNDLED_EXTENSIONS/wiki-publisher/Paths.xcuapplication/vnd.sun.star.configuration-data diff --git a/.config/libreoffice/4/user/extensions/bundled/registry/com.sun.star.comp.deployment.component.PackageRegistryBackend/unorc b/.config/libreoffice/4/user/extensions/bundled/registry/com.sun.star.comp.deployment.component.PackageRegistryBackend/unorc new file mode 100644 index 000000000..36f1288f2 --- /dev/null +++ b/.config/libreoffice/4/user/extensions/bundled/registry/com.sun.star.comp.deployment.component.PackageRegistryBackend/unorc @@ -0,0 +1,2 @@ +ORIGIN=$BUNDLED_EXTENSIONS_USER/registry/com.sun.star.comp.deployment.component.PackageRegistryBackend +UNO_SERVICES=?$BUNDLED_EXTENSIONS/wiki-publisher/components.rdb ?$BUNDLED_EXTENSIONS/nlpsolver/components.rdb diff --git a/.config/libreoffice/4/user/extensions/bundled/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/backenddb.xml b/.config/libreoffice/4/user/extensions/bundled/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/backenddb.xml new file mode 100644 index 000000000..62050b74f --- /dev/null +++ b/.config/libreoffice/4/user/extensions/bundled/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/backenddb.xml @@ -0,0 +1,2 @@ + +$BUNDLED_EXTENSIONS/wiki-publisher/WikiExtension.xcs$BUNDLED_EXTENSIONS/wiki-publisher/Addons.xcu$BUNDLED_EXTENSIONS/wiki-publisher/ProtocolHandler.xcu$BUNDLED_EXTENSIONS/wiki-publisher/WikiExtension.xcuvnd.sun.star.expand:$BUNDLED_EXTENSIONS_USER/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/lu64965d9yomg.tmp$BUNDLED_EXTENSIONS_USER/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/lu64965d9yomg.tmp/OptionsDialog.xcuvnd.sun.star.expand:$BUNDLED_EXTENSIONS_USER/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/lu64965d9yomh.tmp$BUNDLED_EXTENSIONS_USER/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/lu64965d9yomh.tmp/Filter.xcu$BUNDLED_EXTENSIONS/wiki-publisher/Types.xcuvnd.sun.star.expand:$BUNDLED_EXTENSIONS_USER/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/lu64965d9yomj.tmp$BUNDLED_EXTENSIONS_USER/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/lu64965d9yomj.tmp/Paths.xcu diff --git a/.config/libreoffice/4/user/extensions/bundled/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/configmgr.ini b/.config/libreoffice/4/user/extensions/bundled/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/configmgr.ini new file mode 100644 index 000000000..e2c98845c --- /dev/null +++ b/.config/libreoffice/4/user/extensions/bundled/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/configmgr.ini @@ -0,0 +1,2 @@ +SCHEMA=$BUNDLED_EXTENSIONS/wiki-publisher/WikiExtension.xcs +DATA=$BUNDLED_EXTENSIONS_USER/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/lu64965d9yomj.tmp/Paths.xcu $BUNDLED_EXTENSIONS/wiki-publisher/Types.xcu $BUNDLED_EXTENSIONS_USER/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/lu64965d9yomh.tmp/Filter.xcu $BUNDLED_EXTENSIONS_USER/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/lu64965d9yomg.tmp/OptionsDialog.xcu $BUNDLED_EXTENSIONS/wiki-publisher/WikiExtension.xcu $BUNDLED_EXTENSIONS/wiki-publisher/ProtocolHandler.xcu $BUNDLED_EXTENSIONS/wiki-publisher/Addons.xcu diff --git a/.config/libreoffice/4/user/extensions/bundled/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/lu64965d9yomg.tmp/OptionsDialog.xcu b/.config/libreoffice/4/user/extensions/bundled/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/lu64965d9yomg.tmp/OptionsDialog.xcu new file mode 100644 index 000000000..9564b7e3b --- /dev/null +++ b/.config/libreoffice/4/user/extensions/bundled/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/lu64965d9yomg.tmp/OptionsDialog.xcu @@ -0,0 +1,41 @@ + + + + + + + + + com.sun.wiki-publisher + + + MediaWiki + + + vnd.sun.star.expand:$BUNDLED_EXTENSIONS/wiki-publisher/WikiEditor/Settings.xdl + + + com.sun.star.wiki.WikiOptionsEventHandlerImpl + + + + + + + diff --git a/.config/libreoffice/4/user/extensions/bundled/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/lu64965d9yomh.tmp/Filter.xcu b/.config/libreoffice/4/user/extensions/bundled/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/lu64965d9yomh.tmp/Filter.xcu new file mode 100644 index 000000000..1d25f5701 --- /dev/null +++ b/.config/libreoffice/4/user/extensions/bundled/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/lu64965d9yomh.tmp/Filter.xcu @@ -0,0 +1,47 @@ + + + + + + + 0 + MediaWiki + com.sun.star.text.TextDocument + + com.sun.star.documentconversion.XSLTFilter,,,com.sun.star.comp.Writer.XMLOasisExporter,,vnd.sun.star.expand:$BUNDLED_EXTENSIONS/wiki-publisher/filter/odt2mediawiki.xsl + com.sun.star.comp.Writer.XmlFilterAdaptor + + MediaWiki + + EXPORT ALIEN 3RDPARTYFILTER + + + 0 + MediaWiki + com.sun.star.text.WebDocument + + com.sun.star.documentconversion.XSLTFilter,,,com.sun.star.comp.Writer.XMLOasisExporter,,vnd.sun.star.expand:$BUNDLED_EXTENSIONS/wiki-publisher/filter/odt2mediawiki.xsl + com.sun.star.comp.Writer.XmlFilterAdaptor + + MediaWiki + + EXPORT ALIEN 3RDPARTYFILTER + + + diff --git a/.config/libreoffice/4/user/extensions/bundled/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/lu64965d9yomj.tmp/Paths.xcu b/.config/libreoffice/4/user/extensions/bundled/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/lu64965d9yomj.tmp/Paths.xcu new file mode 100644 index 000000000..fda622e7c --- /dev/null +++ b/.config/libreoffice/4/user/extensions/bundled/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/lu64965d9yomj.tmp/Paths.xcu @@ -0,0 +1,27 @@ + + + + + + + + + + + diff --git a/.config/libreoffice/4/user/extensions/bundled/registry/com.sun.star.comp.deployment.help.PackageRegistryBackend/backenddb.xml b/.config/libreoffice/4/user/extensions/bundled/registry/com.sun.star.comp.deployment.help.PackageRegistryBackend/backenddb.xml new file mode 100644 index 000000000..c452b4593 --- /dev/null +++ b/.config/libreoffice/4/user/extensions/bundled/registry/com.sun.star.comp.deployment.help.PackageRegistryBackend/backenddb.xml @@ -0,0 +1,2 @@ + +vnd.sun.star.expand:$BUNDLED_EXTENSIONS/nlpsolver/helpvnd.sun.star.expand:$BUNDLED_EXTENSIONS/wiki-publisher/help diff --git a/.config/libreoffice/4/user/extensions/bundled/registry/com.sun.star.comp.deployment.script.PackageRegistryBackend/backenddb.xml b/.config/libreoffice/4/user/extensions/bundled/registry/com.sun.star.comp.deployment.script.PackageRegistryBackend/backenddb.xml new file mode 100644 index 000000000..4cfe9a06d --- /dev/null +++ b/.config/libreoffice/4/user/extensions/bundled/registry/com.sun.star.comp.deployment.script.PackageRegistryBackend/backenddb.xml @@ -0,0 +1,2 @@ + + diff --git a/.config/libreoffice/4/user/extensions/shared/lastsynchronized b/.config/libreoffice/4/user/extensions/shared/lastsynchronized new file mode 100644 index 000000000..56a6051ca --- /dev/null +++ b/.config/libreoffice/4/user/extensions/shared/lastsynchronized @@ -0,0 +1 @@ +1 \ No newline at end of file diff --git a/.config/libreoffice/4/user/extensions/shared/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/backenddb.xml b/.config/libreoffice/4/user/extensions/shared/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/backenddb.xml new file mode 100644 index 000000000..fb4de4d93 --- /dev/null +++ b/.config/libreoffice/4/user/extensions/shared/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/backenddb.xml @@ -0,0 +1,2 @@ + + diff --git a/.config/libreoffice/4/user/extensions/shared/registry/com.sun.star.comp.deployment.help.PackageRegistryBackend/backenddb.xml b/.config/libreoffice/4/user/extensions/shared/registry/com.sun.star.comp.deployment.help.PackageRegistryBackend/backenddb.xml new file mode 100644 index 000000000..496c8c887 --- /dev/null +++ b/.config/libreoffice/4/user/extensions/shared/registry/com.sun.star.comp.deployment.help.PackageRegistryBackend/backenddb.xml @@ -0,0 +1,2 @@ + + diff --git a/.config/libreoffice/4/user/extensions/tmp/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/backenddb.xml b/.config/libreoffice/4/user/extensions/tmp/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/backenddb.xml new file mode 100644 index 000000000..fb4de4d93 --- /dev/null +++ b/.config/libreoffice/4/user/extensions/tmp/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/backenddb.xml @@ -0,0 +1,2 @@ + + diff --git a/.config/libreoffice/4/user/extensions/tmp/registry/com.sun.star.comp.deployment.help.PackageRegistryBackend/backenddb.xml b/.config/libreoffice/4/user/extensions/tmp/registry/com.sun.star.comp.deployment.help.PackageRegistryBackend/backenddb.xml new file mode 100644 index 000000000..496c8c887 --- /dev/null +++ b/.config/libreoffice/4/user/extensions/tmp/registry/com.sun.star.comp.deployment.help.PackageRegistryBackend/backenddb.xml @@ -0,0 +1,2 @@ + + diff --git a/.config/libreoffice/4/user/gallery/sg30.sdv b/.config/libreoffice/4/user/gallery/sg30.sdv new file mode 100644 index 000000000..fc17dd9d0 Binary files /dev/null and b/.config/libreoffice/4/user/gallery/sg30.sdv differ diff --git a/.config/libreoffice/4/user/gallery/sg30.thm b/.config/libreoffice/4/user/gallery/sg30.thm new file mode 100644 index 000000000..9bf97d6cb Binary files /dev/null and b/.config/libreoffice/4/user/gallery/sg30.thm differ diff --git a/.config/libreoffice/4/user/pack/ExtensionInfo.pack b/.config/libreoffice/4/user/pack/ExtensionInfo.pack new file mode 100644 index 000000000..b2b4964e0 Binary files /dev/null and b/.config/libreoffice/4/user/pack/ExtensionInfo.pack differ diff --git a/.config/libreoffice/4/user/pack/autotext/mytexts.pack b/.config/libreoffice/4/user/pack/autotext/mytexts.pack new file mode 100644 index 000000000..e5ef1e352 Binary files /dev/null and b/.config/libreoffice/4/user/pack/autotext/mytexts.pack differ diff --git a/.config/libreoffice/4/user/pack/basic/Standard/Module1.pack b/.config/libreoffice/4/user/pack/basic/Standard/Module1.pack new file mode 100644 index 000000000..d7944bffd Binary files /dev/null and b/.config/libreoffice/4/user/pack/basic/Standard/Module1.pack differ diff --git a/.config/libreoffice/4/user/pack/basic/Standard/dialog.pack b/.config/libreoffice/4/user/pack/basic/Standard/dialog.pack new file mode 100644 index 000000000..db56d38aa Binary files /dev/null and b/.config/libreoffice/4/user/pack/basic/Standard/dialog.pack differ diff --git a/.config/libreoffice/4/user/pack/basic/Standard/script.pack b/.config/libreoffice/4/user/pack/basic/Standard/script.pack new file mode 100644 index 000000000..763901c99 Binary files /dev/null and b/.config/libreoffice/4/user/pack/basic/Standard/script.pack differ diff --git a/.config/libreoffice/4/user/pack/basic/dialog.pack b/.config/libreoffice/4/user/pack/basic/dialog.pack new file mode 100644 index 000000000..3e179c53a Binary files /dev/null and b/.config/libreoffice/4/user/pack/basic/dialog.pack differ diff --git a/.config/libreoffice/4/user/pack/basic/script.pack b/.config/libreoffice/4/user/pack/basic/script.pack new file mode 100644 index 000000000..340c142dd Binary files /dev/null and b/.config/libreoffice/4/user/pack/basic/script.pack differ diff --git a/.config/libreoffice/4/user/pack/config/autotbl.pack b/.config/libreoffice/4/user/pack/config/autotbl.pack new file mode 100644 index 000000000..c0060a036 Binary files /dev/null and b/.config/libreoffice/4/user/pack/config/autotbl.pack differ diff --git a/.config/libreoffice/4/user/pack/config/javasettings_Linux_X86_64.pack b/.config/libreoffice/4/user/pack/config/javasettings_Linux_X86_64.pack new file mode 100644 index 000000000..71d8c9fce Binary files /dev/null and b/.config/libreoffice/4/user/pack/config/javasettings_Linux_X86_64.pack differ diff --git a/.config/libreoffice/4/user/pack/database/biblio.pack b/.config/libreoffice/4/user/pack/database/biblio.pack new file mode 100644 index 000000000..3c388da5b Binary files /dev/null and b/.config/libreoffice/4/user/pack/database/biblio.pack differ diff --git a/.config/libreoffice/4/user/pack/database/biblio/biblio.pack b/.config/libreoffice/4/user/pack/database/biblio/biblio.pack new file mode 100644 index 000000000..19a8f5fd8 Binary files /dev/null and b/.config/libreoffice/4/user/pack/database/biblio/biblio.pack differ diff --git a/.config/libreoffice/4/user/pack/database/evolocal.pack b/.config/libreoffice/4/user/pack/database/evolocal.pack new file mode 100644 index 000000000..07987aaaa Binary files /dev/null and b/.config/libreoffice/4/user/pack/database/evolocal.pack differ diff --git a/.config/libreoffice/4/user/pack/registrymodifications.pack b/.config/libreoffice/4/user/pack/registrymodifications.pack new file mode 100644 index 000000000..3a82dc83e Binary files /dev/null and b/.config/libreoffice/4/user/pack/registrymodifications.pack differ diff --git a/.config/libreoffice/4/user/registrymodifications.xcu b/.config/libreoffice/4/user/registrymodifications.xcu new file mode 100644 index 000000000..65abf85fb --- /dev/null +++ b/.config/libreoffice/4/user/registrymodifications.xcu @@ -0,0 +1,253 @@ + + +false +10 +18635 +no + +true +false +true +true +10 +false +false +true +false +true +true +false +3 +true +true +false +-1 +Automatic +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xJATEkBcSQFBBDUkAMSQExJAXEkBQQQ1JADEkBMSQFxJAUEENSQAxJATEkBcSQFBBDUkAMSQExJAXEkBQQQ1JADEkBMSQFxJAUEENSQAxJATEkBcSQFBBDUkAMSQExJAXEkBQQQ1JADEkBMSQFxJAUEENSQAxJATEkBcSQFBBDUkAMSQExJAXEkBQQQ1JADEkBMSQFxJAUEENSQAxJATEkBcSQFBBDUkAMSQExJAXEkBQQQ1JADEkBMSQFxJAUEENSQAxJATEkBcSQFBBDUkAMSQExJAXEkBQQQ1JADEkBMSQFxJAUEENSQAxJATEkBcSQFBBDUkAMSQExJAXEkBQQQ1JADEkBMSQFxJAUEENSQAxJATEkBcSQFBBDUkAMSQExJAXEkBQQQ1JADEkBMSQFxJAUEENSQAxJATEkBcSQFBBDUkAMSQExJAXEkBQQQ1JADEkBMSQFxJAUEENSQAxJATEkBcSQFBBDUkAMSQExJAXEkBQQQ1JADEkBMSQFxJAUEENSQAxJATEkBcSQFBBDUkAMSQExJAXEkBQQQ1JADEkBMSQFxJAUEENSQAxJATEkBcSQFBBDUkAMSQExJAXEkBQQQ1JADEkBMSQFxJAUEENSQAxJATEkBcSQFBBDUkAMSQExJAXEkBQQQ1JADEkBMSQFxJAUEENSQAxJATEkBcSQFBBDUkAMSQExJAXEkBQQQ1JADEkBMSQFxJAUEENSQAxJATEkBcSQFBD7Ly+u/wqppx4+AAAAAElFTkSuQmCC +instant-i3-layout-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 +instamenue_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 +instamenue_youtube_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 +instamenu_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 +.makepkgTextiVBORw0KGgoAAAANSUhEUgAAAMYAAAEACAIAAABnP54XAABgqUlEQVR4nO3d+fOW1X0//uttTZo0xiUmMYmCgggCoqiAguACURBwieKSmEyaSdtpZ/pLp538F/2l0+lMM9M2bRqz1DSJ+464IK4gCCgg4EoEEcUtS+P9eXyv59zne3Hfb4je77ds3ueHa6773Oc62+t5XstZXufQVqtV9UM/DF84dF9XoB8OttCHVD8Mc+hDqh+GOfQh1Q/DHPqQ6odhDn1I9cMwhz6k+mGYQx9S/TDMoQ+pfhjm0IdUPwxz6EOqH4Y59CHVD8Mc+pDqh2EOfUj1wzCHPqT6YZhDL5BqtVoDAwMdG60SWeI7Xvb8r+cwNKUf9o/woSFV8FRQUiK9vP/++3n5wx/+UIDS/CTvkh1yyCF9VB2U4UNDalAEgMibb7756Tr85je/+eQnP/knf/InBTG/+93vdu7cefTRRxcYeXnvvfc+8YlPHHrooX08HWShRy7l5dZbb/3iF78IPV/+8pdFrly58rXXXpsxY8avf/3rsWPHPvvss8cee+zSpUuvvvrqDRs2eDn55JMnTZr08ssvf/7zn3/rrbdeeumld999d/78+X0udZCFHtVzjAdojjjiiGOOOQZDgqfx48cvXrx41apV/sK01qxZ88477+BG27dvB7UxY8b4a9u2bVKee+6569evHzly5JYtW1544QUvfUgdTKFHSIER9oPfgMLvf//7k0466Utf+tKcOXO8b968+Qtf+MKCBQswsK1bt2JIp512GmkIf5/73OeOrQP25v3UU0898sgjq1o4Dmeb+mGfhh51KZCCGy9/WofPfOYz/iIBPY8//viqlo+eRx11VJRxeII5kSeccILncccd19fND9bQuy71ox/9CLNZuHAhxFSNeYFi9DUNw6ptA+bfkqbadUJh0LL64DuwQo+C77e//W3VZktVFxo6UFLey6RDM01gVxIHoCUUC7F/3vBACT1Cip50zTXXEHlVGwqYEGlYMBQQJJQJhRKSrDk1tTteFZZG5VdiH1UHROh99nzjxo0wMXHiRO9suk2bNnl/++23WYJnnXUWa47CJPLdd99lFR566KEwwb77xCc+MWrUqDfffBMcJabLU+39RYuntsv8jTfeeO+996RPAlr8zTff7Dl79uy+4DsgQi+QipV3yy23TJgwAYzEPP300wD0L//yL0cfffSnPvUpluDq1av/7M/+7KWXXvr0pz/9j//4j1/5ylei0W/btu3kk09evnw5JEHMmjVrpk6devjhh8PWtddee9hhhy1ZsoRS/+KLL8LZjh07qPNAOW3atKpvGB4gofdl43nz5o0cOdLLb37zGyAYM2YMeDH3du7cCVXUrNdffx1DAqm5c+diS1KCnU+Yh9OnT0+y+fPng9H27dspZ9JgUSeeeKIMJcOlQBZX884OGLYW98NHHHqcREDp0047raqFIGSceuqpXi6++OKi7uAu5RMyq2qYbHm++uqrwJTZh5dffhkECT5/Rfx1hL4WdQCF3icRbrvtNpg499xzm4vBSdNt8XWsK/uJ8XhmZoFYDJ6q3aCnL/IOoDCkBZnCqDomCKpdQdABiCavouBXNc6KkdiRTzP0gXVAhCEtyDDEqvYUwAf/tkyElpgAq+qD5qAIPUIKCEirvPfntfuhGXq3+AqM+njqh2YYEqSqtrpdlO781WHc9RbfHdkvorciipLaM60/VOhlEiFP6tRHUJ9++EjC3hQjvUwiVHUVn3rqqT/90z/9wx/+YBCUveS/r8PRRx/9+uuvU97zfOONNw499NDf/va3X/jCF1599dUvfelLv/71r4855pitW7d+6lOfksNnP/vZN99884gjjvA88sgjfSV9/iqZ94vooQhZUXmzlWj/5VJVe0HmjjvuGDNmTGYpt2zZov2vvfaaf996661JkyatXLny1FNP9fS+Zs2aww477De/+c2JJ5747LPPnnzyyc8884yn+D+rwyc/+cl33333M5/5zDvvvHP44YfrR300atSoknm/iB6KyNrrpZdeegBAKmHu3LkaoNIZap47duzQZj3iXTuPOuqo448//vOf/7wOEq/xxpMOKs9x48YZUjrod7/7nZ8669Of/rR3jTe8ZJLMm08FYY3+NaZHjhxpNOd5wgkniM9UvszlI3M0OOmkk1RVEWqVDz0VUdX7c5KtGjafB00RMoG8fLtfC76yIGNs+akjxGiDSAwZH85WFmxZGl0mxng6tA6Z0izq/P/93/9le4wXgDO2Mv+OBaYUH3rJ55lt9yy6J4lQZuFTje6Z94HGhq1B47N62PE8yIqo9nNIdS/IGC4/+clPJk6ciA+/9NJLU6dOffHFF1955RVjzsACrNWrV19++eVgt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 +.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 +DeedPoll Cover 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pqwsQpMtujmdZTMrcun7p5e//a8Na+hqiumWJFBgnd2zvv/buuY564uzVu2bURMNOBLoX4TmbvZ4k2aDLVoz1NfA1Q3XLEsECL9IW544d22QuaY3cz+Wy/nB9IDjsTLKt7e0LsxNqFglt1qsx0vJ1Q5VSJ05g/YNqKnNgOfnCrYWCVN/YQBFFUaq5sany+FrW18Bjj+qjOuFSso1QXQNcyg2kTwbfFHVv4GuF6tNsKOWsGBqXtNTAm3OVGKz6GqIGUZ2fZ46Rga8PqqeUAQOPhEEpAzWGQSkDNYZBKQM1hkEpAzWGQSkDNYZBKQM1hkEpAzWGQSkDNYZBKQM1hkEpAzWGQSkDNUb1wS3FVKyfvqLL5qwsFVNqygELRkqgrx6qTwakz4wpT+jTVzXWVzWBSsl3y4xZXwdHj6lCYC0BrpbapZQqqJJnBr2eXFTbSsmyKIkoiiuyqOZxQVFBEAGRcBwXBQGCEX3aMVSmoLZKDsdx4ABAFh5sEKRejqQuJwS2KlJFG3iSUY0tJWsLIv77f/cf/vSHf/rz137WPbB7pK95bnrq7sRsT29rKpZCUaK1rU0QRUQWUrmCx+fNpJM+r+e1V15t6enCECWTKjS1tlAkLrPp2zeubdtzJJtO0zRDYIjZaq35TRr4XaIq81xblyjgD//sxz9W/N7rn9xABG7vroEPPjxz+871QLCpziFO3Dkv4n6P2bqwsESQazHe9Pw3v9fRXvfa669DCNnV5b8zeRdwM+hzSfGpv/+nBYe1LpWIPnXocKfVanR8TzSqoRSwhCSh0NTUkIlGRJs5FhNC/joIQpsaGnsHd0bmp6PZWGtzx0os5fT5JUXI5/MNgeYGvy0u1/X2DphNZhhhcUrp7gp//P51EjObLbZTxw//yyv/YPd4ICM09AlHlSICgpH79gxjBC4LovIUBKuzjaGnj59Q3cDR7ZICJRbm7a5CZ0+nwHehCMZxBVmSXIHws8/WaxldoHyBRVDk5d9vh7SJgbH5+e0jB/wOs5G/+klH1R4fgqvpfhS0mOJcXfhFLi5LCaEI7A6H3eofelag4urhSilDLDiSpumKHLKKv7HZBymbEssaeBJRvS4FbVhXaMNyFOXloOCK9Yb1nyo7NXl9+driwlBGl/cVQPWTrjbt2bix+chHcmXTicZUra8GjAEZAzWGQSkDNYZBKQM1hkEpAzWGQSkDNYZBKQM1hkEpAzWGQSkDNYZBKQM1hkEpAzWGQSkDNYZBKQM1hkEpAzWGQSkDNYZBKQM1hkEpAzWGQSkDNYZBKQM1hkEpAzWGQSkDNYZBKQM1hkEpAzWGQSkDNYZBKQM1hkEpAzWGQSkDNYZBKQM1hkEpAzWGQSkDNYZBKQM1hkEpAzWGQSkDNYZBKQM1hkEpAzWGQSkDNYZBKQM1hkEpAzWGQSkDNYZBKQM1hkEpAzWGQSkDNYZBKQM1hkEpAzWGQSkDNYZBKQM1hkEpAzWGQSkDNYZBKQM1hkEpAzWGQSkDNYZBKQM1hkEpAzWGQSkDNYZBKQM1hkEpAzWGQSkDNYZBKQM1hkEpAzWGQSkDNYZBKQM1hkEpAzWGQSkDNYZBKQM1hkEpAzWGQSkDNYZBKQM1hkEpAzWGQSkDNYZBKQM1hkEpAzWGQSkDNYZBKQM1hkEpAzWGQSkDNYZBKQM1hkEpAzWGQSkDNYZBKQM1xv8PJs67xgESMSkAAAAASUVORK5CYII= +Three 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 +package_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ZaAPLBAgHCKajxovNEWDO8qCRoYcyVlV3kqjqcCzJGk2f+iTZlnOLBX1lVAV7KercHSqcAaDWrvAv7cKtFT/bBV8uwpqtwqG5Xe2f6cK/pm9CAQ08elU/0wV7ak5/zNVsOZeoK+KDd/H9Ntknw0fYaEPHjryOasl221dqjNNPZ3feZ1MPV1n335bqniuTlEE/I8Vv1LQPf9Cnv5O8nk6TP8Uz9uBgh+kAcwgUgAziBTADCIFMINIAcwgUgAziBTADCIFMINIAcwgUgAziBTADCIFMINIAcwgUgAziBTADCIFMINIAcwgUgAziBTADCIFMINIAcwgUgAziBTADCIFMINIAcwgUgAziBTADCIFMINIAcwgUgAziBTADCIFMINIAcwgUgAziBTADCIFMINIAcwgUgAziBTADCIFMINIAcwgUgAziBTADCIFMINIAcwgUgAziBTADCIFMINIAcwgUgAziBTADCIFMINIAcwgUgAziBTADCIFMINIAcwgUgAziBTADCIFMINIAcwgUgAziBTADCIFMINIAcwgUgAziBTADCIFMINIAcwgUgAziBTADCIFMINIAcwgUgAziBTADCIFMINIAcwgUgAziBTADCIFMINIAcwgUgAziBTADCIFMINIAcwgUgAziBTADCIFMINIAcwgUgAziBTADCIFMINIAcwgUgAziBTADCIFMINIAcwgUgAziBTADCIFMINIAcwgUgAziBTADCIFMINIAcwgUgAziBTADCIFMINIAcwgUgAziBTADCIFMINIAcwgUgAziBTADCIFMINIAcwgUgAziBTADCIFMINIAcwgUgAziBTADCIFMINIAcwgUgAziBTADCIFMINIAcwgUgAziBTADCIFMINIAcwgUgAziBTADCIFMINIAcwgUgAziBTADCIFMINIAcwgUgAziBTADCIFMINIAcwgUgAziBTADCIFMINIAcwgUgAziBTADCIFMINIAcwgUgAziBTADCIFMINIAcwgUgAziBTADCIFMINIAcwgUgAziBTADCIFMINIAcwgUgAziBTADCIFMINIAcwgUgAziBTADCIFMINIAcwgUgAziBTADCIFMINIAcwgUgAziBTADCIFMINIAcwgUgAziBTADCIFMINIAcwgUgAziBTADCIFMINIAcwgUgAziBTADCIFMINIAcwgUgAziBTADCIFMINIAcwgUgAziBTADCIFMINIAcwgUgCz/weVs55E8jQxEwAAAABJRU5ErkJggg== +file:///home/dt/.config/kitty/dracula.conf +file:///home/dt/.config/kitty/colors.conf +file:///home/dt/.gitlabs/instamenu-extra/instamenue_emoji +file:///home/dt/.gitlabs/instamenu/instamenu_run +file:///home/dt/.config/instamenu/scripts/instant-i3-layout-switcher.sh +file:///home/dt/Documents/DeedPoll%20Cover%20Letter.odt +file:///home/dt/Documents/Three%20Mobile.odt +file:///mnt/500GB/MC-Beadrock/server.properties +file:///home/dt/.makepkg.conf +file:///home/dt/package_list.txt +file:///home/dt/.config/fish/config.fish +file:///home/dt/.vimrc +file:///home/dt/.gitlabs/Arch.TheRepo.Club/x86_64/updaterepo.sh +file:///home/dt/.gitlabs/Arch.TheRepo.Club/x86_64/updatereadme.py +file:///home/dt/.gitlabs/instamenu-extra/instamenue_youtube_subs +file:///home/dt/.aur/bpytop/PKGBUILD +file:///home/dt/.config/gtk-3.0/bookmarks +file:///mnt/750GB/Other%20Junk/Windows.txt +2147483647com.sun.star.logging.FileHandler$(userurl)/$(loggername).logcom.sun.star.logging.PlainTextFormatter +true +10 +false +false +false + + +any, any, visible +any, any, visible +any, any, visible +any, any, visible +com.sun.star.text.TextDocument, any, visiblecom.sun.star.text.GlobalDocument, any, visiblecom.sun.star.text.WebDocument, any, visiblecom.sun.star.xforms.XMLFormDocument, any, visiblecom.sun.star.sdb.FormDesign, any, visiblecom.sun.star.sdb.TextReportDesign, any, visible +any,PropertyDeckcom.sun.star.text.TextDocument,PropertyDeck +com.sun.star.sheet.SpreadsheetDocument, Draw, visible, .uno:FormatAreacom.sun.star.sheet.SpreadsheetDocument, OLE, hidden, .uno:FormatAreacom.sun.star.drawing.DrawingDocument, 3DObject, visible, .uno:FormatAreacom.sun.star.presentation.PresentationDocument, 3DObject, visible, .uno:FormatAreacom.sun.star.drawing.DrawingDocument, Draw, visible, .uno:FormatAreacom.sun.star.presentation.PresentationDocument, Draw, visible, .uno:FormatAreacom.sun.star.drawing.DrawingDocument, Graphic, hidden, .uno:FormatAreacom.sun.star.presentation.PresentationDocument, Graphic, hidden, .uno:FormatAreacom.sun.star.drawing.DrawingDocument, TextObject, hidden, .uno:FormatAreacom.sun.star.presentation.PresentationDocument, TextObject, hidden, .uno:FormatAreacom.sun.star.drawing.DrawingDocument, OLE, hidden, .uno:FormatAreacom.sun.star.presentation.PresentationDocument, OLE, hidden, .uno:FormatAreacom.sun.star.text.TextDocument, Draw, visible, .uno:FormatAreacom.sun.star.text.GlobalDocument, Draw, visible, .uno:FormatAreacom.sun.star.text.WebDocument, Draw, visible, .uno:FormatAreacom.sun.star.xforms.XMLFormDocument, Draw, visible, .uno:FormatAreacom.sun.star.sdb.FormDesign, Draw, visible, .uno:FormatAreacom.sun.star.sdb.TextReportDesign, Draw, visible, .uno:FormatAreacom.sun.star.text.TextDocument, Graphic, hidden, .uno:FormatAreacom.sun.star.text.TextDocument, OLE, hidden, .uno:FormatAreacom.sun.star.text.TextDocument, Frame, visible, .uno:FormatArea +any, empty, visible +com.sun.star.sheet.SpreadsheetDocument, Graphic, visiblecom.sun.star.drawing.DrawingDocument, Graphic, visiblecom.sun.star.presentation.PresentationDocument, Graphic, visiblecom.sun.star.text.TextDocument, Graphic, visible, .uno:GraphicDialogcom.sun.star.text.GlobalDocument, Graphic, visible, .uno:GraphicDialogcom.sun.star.text.WebDocument, Graphic, visible, .uno:GraphicDialogcom.sun.star.xforms.XMLFormDocument, Graphic, visible, .uno:GraphicDialogcom.sun.star.sdb.FormDesign, Graphic, visible, .uno:GraphicDialogcom.sun.star.sdb.TextReportDesign, Graphic, visible, .uno:GraphicDialog +com.sun.star.sheet.SpreadsheetDocument, DrawText, visible, .uno:ParagraphDialogcom.sun.star.sheet.SpreadsheetDocument, DrawLine, hidden, .uno:ParagraphDialogcom.sun.star.drawing.DrawingDocument, DrawLine, hidden, .uno:ParagraphDialogcom.sun.star.presentation.PresentationDocument, DrawLine, hidden, .uno:ParagraphDialogcom.sun.star.drawing.DrawingDocument, 3DObject, hidden, .uno:ParagraphDialogcom.sun.star.presentation.PresentationDocument, 3DObject, hidden, .uno:ParagraphDialogcom.sun.star.drawing.DrawingDocument, Draw, hidden, .uno:ParagraphDialogcom.sun.star.presentation.PresentationDocument, Draw, hidden, .uno:ParagraphDialogcom.sun.star.drawing.DrawingDocument, DrawText, visible, .uno:ParagraphDialogcom.sun.star.presentation.PresentationDocument, DrawText, visible, .uno:ParagraphDialogcom.sun.star.drawing.DrawingDocument, Graphic, hidden, .uno:ParagraphDialogcom.sun.star.presentation.PresentationDocument, Graphic, hidden, .uno:ParagraphDialogcom.sun.star.drawing.DrawingDocument, Table, visible, .uno:ParagraphDialogcom.sun.star.presentation.PresentationDocument, Table, visible, .uno:ParagraphDialogcom.sun.star.drawing.DrawingDocument, TextObject, visible, .uno:ParagraphDialogcom.sun.star.presentation.PresentationDocument, TextObject, visible, .uno:ParagraphDialogcom.sun.star.text.TextDocument, Annotation, visible, .uno:ParagraphDialogcom.sun.star.text.GlobalDocument, Annotation, visible, .uno:ParagraphDialogcom.sun.star.text.WebDocument, Annotation, visible, .uno:ParagraphDialogcom.sun.star.xforms.XMLFormDocument, Annotation, visible, .uno:ParagraphDialogcom.sun.star.sdb.FormDesign, Annotation, visible, .uno:ParagraphDialogcom.sun.star.sdb.TextReportDesign, Annotation, visible, .uno:ParagraphDialogcom.sun.star.text.TextDocument, DrawText, visible, .uno:ParagraphDialogcom.sun.star.text.GlobalDocument, DrawText, visible, .uno:ParagraphDialogcom.sun.star.text.WebDocument, DrawText, visible, .uno:ParagraphDialogcom.sun.star.xforms.XMLFormDocument, DrawText, visible, .uno:ParagraphDialogcom.sun.star.sdb.FormDesign, DrawText, visible, .uno:ParagraphDialogcom.sun.star.sdb.TextReportDesign, DrawText, visible, .uno:ParagraphDialogcom.sun.star.text.TextDocument, Table, visible, .uno:ParagraphDialogcom.sun.star.text.GlobalDocument, Table, visible, .uno:ParagraphDialogcom.sun.star.text.WebDocument, Table, visible, .uno:ParagraphDialogcom.sun.star.xforms.XMLFormDocument, Table, visible, .uno:ParagraphDialogcom.sun.star.sdb.FormDesign, Table, visible, .uno:ParagraphDialogcom.sun.star.sdb.TextReportDesign, Table, visible, .uno:ParagraphDialogcom.sun.star.text.TextDocument, Text, visible, .uno:ParagraphDialogcom.sun.star.text.GlobalDocument, Text, visible, .uno:ParagraphDialogcom.sun.star.text.WebDocument, Text, visible, .uno:ParagraphDialogcom.sun.star.xforms.XMLFormDocument, Text, visible, .uno:ParagraphDialogcom.sun.star.sdb.FormDesign, Text, visible, .uno:ParagraphDialogcom.sun.star.sdb.TextReportDesign, Text, visible, .uno:ParagraphDialogcom.sun.star.text.TextDocument, default, visible, .uno:ParagraphDialogcom.sun.star.text.GlobalDocument, default, visible, .uno:ParagraphDialogcom.sun.star.text.WebDocument, default, visible, .uno:ParagraphDialogcom.sun.star.xforms.XMLFormDocument, default, visible, .uno:ParagraphDialogcom.sun.star.sdb.FormDesign, default, visible, .uno:ParagraphDialogcom.sun.star.sdb.TextReportDesign, default, visible, .uno:ParagraphDialog +com.sun.star.sheet.SpreadsheetDocument, Chart, visible, .uno:TransformDialogcom.sun.star.sheet.SpreadsheetDocument, Draw, hidden, .uno:TransformDialogcom.sun.star.sheet.SpreadsheetDocument, DrawLine, visible, .uno:TransformDialogcom.sun.star.sheet.SpreadsheetDocument, Form, visible, .uno:TransformDialogcom.sun.star.sheet.SpreadsheetDocument, Graphic, hidden, .uno:TransformDialogcom.sun.star.sheet.SpreadsheetDocument, Media, visible, .uno:TransformDialogcom.sun.star.sheet.SpreadsheetDocument, MultiObject, visible, .uno:TransformDialogcom.sun.star.sheet.SpreadsheetDocument, OLE, visible, .uno:TransformDialogcom.sun.star.drawing.DrawingDocument, 3DObject, visible, .uno:TransformDialogcom.sun.star.presentation.PresentationDocument, 3DObject, visible, .uno:TransformDialogcom.sun.star.drawing.DrawingDocument, Draw, visible, .uno:TransformDialogcom.sun.star.presentation.PresentationDocument, Draw, visible, .uno:TransformDialogcom.sun.star.drawing.DrawingDocument, DrawLine, visible, .uno:TransformDialogcom.sun.star.presentation.PresentationDocument, DrawLine, visible, .uno:TransformDialogcom.sun.star.drawing.DrawingDocument, Form, visible, .uno:TransformDialogcom.sun.star.presentation.PresentationDocument, Form, visible, .uno:TransformDialogcom.sun.star.drawing.DrawingDocument, Graphic, hidden, .uno:TransformDialogcom.sun.star.presentation.PresentationDocument, Graphic, hidden, .uno:TransformDialogcom.sun.star.drawing.DrawingDocument, Media, visible, .uno:TransformDialogcom.sun.star.presentation.PresentationDocument, Media, visible, .uno:TransformDialogcom.sun.star.drawing.DrawingDocument, MultiObject, visible, .uno:TransformDialogcom.sun.star.presentation.PresentationDocument, MultiObject, visible, .uno:TransformDialogcom.sun.star.drawing.DrawingDocument, OLE, visible, .uno:TransformDialogcom.sun.star.presentation.PresentationDocument, OLE, visible, .uno:TransformDialogcom.sun.star.drawing.DrawingDocument, TextObject, hidden, .uno:TransformDialogcom.sun.star.presentation.PresentationDocument, TextObject, hidden, .uno:TransformDialogcom.sun.star.text.TextDocument, Draw, hidden, .uno:TransformDialogcom.sun.star.text.GlobalDocument, Draw, hidden, .uno:TransformDialogcom.sun.star.text.WebDocument, Draw, hidden, .uno:TransformDialogcom.sun.star.xforms.XMLFormDocument, Draw, hidden, .uno:TransformDialogcom.sun.star.sdb.FormDesign, Draw, hidden, .uno:TransformDialogcom.sun.star.sdb.TextReportDesign, Draw, hidden, .uno:TransformDialogcom.sun.star.text.TextDocument, Form, visible, .uno:TransformDialogcom.sun.star.text.GlobalDocument, Form, visible, .uno:TransformDialogcom.sun.star.text.WebDocument, Form, visible, .uno:TransformDialogcom.sun.star.xforms.XMLFormDocument, Form, visible, .uno:TransformDialogcom.sun.star.sdb.FormDesign, Form, visible, .uno:TransformDialogcom.sun.star.sdb.TextReportDesign, Form, visible, .uno:TransformDialogcom.sun.star.text.TextDocument, Graphic, visible, .uno:GraphicDialogcom.sun.star.text.GlobalDocument, Graphic, visible, .uno:GraphicDialogcom.sun.star.text.WebDocument, Graphic, visible, .uno:GraphicDialogcom.sun.star.xforms.XMLFormDocument, Graphic, visible, .uno:GraphicDialogcom.sun.star.sdb.FormDesign, Graphic, visible, .uno:GraphicDialogcom.sun.star.sdb.TextReportDesign, Graphic, visible, .uno:GraphicDialogcom.sun.star.text.TextDocument, Media, visible, .uno:TransformDialogcom.sun.star.text.GlobalDocument, Media, visible, .uno:TransformDialogcom.sun.star.text.WebDocument, Media, visible, .uno:TransformDialogcom.sun.star.xforms.XMLFormDocument, Media, visible, .uno:TransformDialogcom.sun.star.sdb.FormDesign, Media, visible, .uno:TransformDialogcom.sun.star.sdb.TextReportDesign, Media, visible, .uno:TransformDialogcom.sun.star.text.TextDocument, OLE, visible, .uno:FrameDialogcom.sun.star.text.GlobalDocument, OLE, visible, .uno:FrameDialogcom.sun.star.text.WebDocument, OLE, visible, .uno:FrameDialogcom.sun.star.xforms.XMLFormDocument, OLE, visible, .uno:FrameDialogcom.sun.star.sdb.FormDesign, OLE, visible, .uno:FrameDialogcom.sun.star.sdb.TextReportDesign, OLE, visible, .uno:FrameDialog +com.sun.star.text.TextDocument, Annotation, visiblecom.sun.star.text.GlobalDocument, Annotation, visiblecom.sun.star.text.WebDocument, Annotation, visiblecom.sun.star.xforms.XMLFormDocument, Annotation, visiblecom.sun.star.sdb.FormDesign, Annotation, visiblecom.sun.star.sdb.TextReportDesign, Annotation, visiblecom.sun.star.text.TextDocument, DrawText, visiblecom.sun.star.text.GlobalDocument, DrawText, visiblecom.sun.star.text.WebDocument, DrawText, visiblecom.sun.star.xforms.XMLFormDocument, DrawText, visiblecom.sun.star.sdb.FormDesign, DrawText, visiblecom.sun.star.sdb.TextReportDesign, DrawText, visiblecom.sun.star.text.TextDocument, Table, visiblecom.sun.star.text.GlobalDocument, Table, visiblecom.sun.star.text.WebDocument, Table, visiblecom.sun.star.xforms.XMLFormDocument, Table, visiblecom.sun.star.sdb.FormDesign, Table, visiblecom.sun.star.sdb.TextReportDesign, Table, visiblecom.sun.star.text.TextDocument, Text, visiblecom.sun.star.text.GlobalDocument, Text, visiblecom.sun.star.text.WebDocument, Text, visiblecom.sun.star.xforms.XMLFormDocument, Text, visiblecom.sun.star.sdb.FormDesign, Text, visiblecom.sun.star.sdb.TextReportDesign, Text, visiblecom.sun.star.text.TextDocument, default, visiblecom.sun.star.text.GlobalDocument, default, visiblecom.sun.star.text.WebDocument, default, visiblecom.sun.star.xforms.XMLFormDocument, default, visiblecom.sun.star.sdb.FormDesign, default, visiblecom.sun.star.sdb.TextReportDesign, default, visiblecom.sun.star.sheet.SpreadsheetDocument, Auditing, visiblecom.sun.star.sheet.SpreadsheetDocument, Cell, visiblecom.sun.star.sheet.SpreadsheetDocument, default, visiblecom.sun.star.sheet.SpreadsheetDocument, EditCell, visiblecom.sun.star.sheet.SpreadsheetDocument, Pivot, visible +com.sun.star.text.TextDocument, Graphic, visible, .uno:TextWrapcom.sun.star.text.TextDocument, OLE, visible, .uno:TextWrapcom.sun.star.text.TextDocument, Frame, visible, .uno:TextWrap +com.sun.star.sheet.SpreadsheetDocument, Auditing, visible, .uno:CellTextDlgcom.sun.star.sheet.SpreadsheetDocument, Cell, visible, .uno:CellTextDlgcom.sun.star.sheet.SpreadsheetDocument, default, visible, .uno:CellTextDlgcom.sun.star.sheet.SpreadsheetDocument, DrawText, visible, .uno:FontDialogcom.sun.star.sheet.SpreadsheetDocument, DrawLine, hidden, .uno:FontDialogcom.sun.star.sheet.SpreadsheetDocument, EditCell, visible, .uno:FontDialogcom.sun.star.sheet.SpreadsheetDocument, Pivot, visible, .uno:CellTextDlgcom.sun.star.drawing.DrawingDocument, 3DObject, visible, .uno:FontDialogcom.sun.star.presentation.PresentationDocument, 3DObject, visible, .uno:FontDialogcom.sun.star.drawing.DrawingDocument, Draw, hidden, .uno:FontDialogcom.sun.star.presentation.PresentationDocument, Draw, hidden, .uno:FontDialogcom.sun.star.drawing.DrawingDocument, DrawText, visible, .uno:FontDialogcom.sun.star.presentation.PresentationDocument, DrawText, visible, .uno:FontDialogcom.sun.star.drawing.DrawingDocument, DrawLine, hidden, .uno:FontDialogcom.sun.star.presentation.PresentationDocument, DrawLine, hidden, .uno:FontDialogcom.sun.star.drawing.DrawingDocument, Graphic, hidden, .uno:FontDialogcom.sun.star.presentation.PresentationDocument, Graphic, hidden, .uno:FontDialogcom.sun.star.drawing.DrawingDocument, OutlineText, visible, .uno:FontDialogcom.sun.star.presentation.PresentationDocument, OutlineText, visible, .uno:FontDialogcom.sun.star.drawing.DrawingDocument, Table, visible, .uno:FontDialogcom.sun.star.presentation.PresentationDocument, Table, visible, .uno:FontDialogcom.sun.star.drawing.DrawingDocument, TextObject, visible, .uno:FontDialogcom.sun.star.presentation.PresentationDocument, TextObject, visible, .uno:FontDialogcom.sun.star.text.TextDocument, Annotation, visible, .uno:FontDialogcom.sun.star.text.GlobalDocument, Annotation, visible, .uno:FontDialogcom.sun.star.text.WebDocument, Annotation, visible, .uno:FontDialogcom.sun.star.xforms.XMLFormDocument, Annotation, visible, .uno:FontDialogcom.sun.star.sdb.FormDesign, Annotation, visible, .uno:FontDialogcom.sun.star.sdb.TextReportDesign, Annotation, visible, .uno:FontDialogcom.sun.star.text.TextDocument, DrawText, visible, .uno:FontDialogcom.sun.star.text.GlobalDocument, DrawText, visible, .uno:FontDialogcom.sun.star.text.WebDocument, DrawText, visible, .uno:FontDialogcom.sun.star.xforms.XMLFormDocument, DrawText, visible, .uno:FontDialogcom.sun.star.sdb.FormDesign, DrawText, visible, .uno:FontDialogcom.sun.star.sdb.TextReportDesign, DrawText, visible, .uno:FontDialogcom.sun.star.text.TextDocument, Table, visible, .uno:FontDialogcom.sun.star.text.GlobalDocument, Table, visible, .uno:FontDialogcom.sun.star.text.WebDocument, Table, visible, .uno:FontDialogcom.sun.star.xforms.XMLFormDocument, Table, visible, .uno:FontDialogcom.sun.star.sdb.FormDesign, Table, visible, .uno:FontDialogcom.sun.star.sdb.TextReportDesign, Table, visible, .uno:FontDialogcom.sun.star.text.TextDocument, Text, visible, .uno:FontDialogcom.sun.star.text.GlobalDocument, Text, visible, .uno:FontDialogcom.sun.star.text.WebDocument, Text, visible, .uno:FontDialogcom.sun.star.xforms.XMLFormDocument, Text, visible, .uno:FontDialogcom.sun.star.sdb.FormDesign, Text, visible, .uno:FontDialogcom.sun.star.sdb.TextReportDesign, Text, visible, .uno:FontDialogcom.sun.star.text.TextDocument, default, visible, .uno:FontDialogcom.sun.star.text.GlobalDocument, default, visible, .uno:FontDialogcom.sun.star.text.WebDocument, default, visible, .uno:FontDialogcom.sun.star.xforms.XMLFormDocument, default, visible, .uno:FontDialogcom.sun.star.sdb.FormDesign, default, visible, .uno:FontDialogcom.sun.star.sdb.TextReportDesign, default, visible, .uno:FontDialog +true +true +0,1 +true +0 +false +false +false +2147483647,2147483647 +0,0 +false +0 +Frame +true +true +true +1,1 +true +0 +false +false +false +2147483647,2147483647 +0,0 +false +0 +Image +true +true +true +0,1 +true +0 +false +false +false +2147483647,2147483647 +0,0 +false +0 +Navigation +true +true +true +0,0 +true +0 +false +false +false +2147483647,2147483647 +0,0 +false +0 +Standard +true +true +true +0,1 +true +0 +false +false +false +2147483647,2147483647 +0,0 +false +0 +Formatting +true + 0 file:///home/dt/Pictures <All%20images> +1 +font +format +labelTP_PARA_STD +page +33;-33;58;58 +V1,2,0 +V1,2,0 +V1,2,1,0,10336 +V1,2,0 +V2,V,0,AL:(5,16,0/0/36/450,36;450) + +V2,V,128 +12550 +9400 +21001 +1000 +1000 +29700 +Capital One Card Services +PO Box 5283 +Nottingham +NG2 9HD + + +true +0 +0 +true +0 +-1 +23268 +-1 +-1 +-1 +en-US +963,33,950,1014;1;0,0,0,0; +963,33,950,1014;1;0,0,0,0; +40(Build:2) +false +true +1607268160 +1607268160 +6.4 +false +false +false +true +Default +false +1 +true +General +DeskJet_2600 +DeskJet_2600 +2427,126,905,827;1;,,,; +3 +false +1templates1en-US1Styles0Modern$(brandbaseurl)/share/template/common/styles/Modern.ott0Default$(brandbaseurl)/share/template/common/styles/Default.ott1MediaWiki0mediawiki$(brandbaseurl)/share/extensions/wiki-publisher/templates/MediaWiki/mediawiki.ott1Presentations0DNA$(brandbaseurl)/share/template/common/presnt/DNA.otp0Focus$(brandbaseurl)/share/template/common/presnt/Focus.otp0Piano$(brandbaseurl)/share/template/common/presnt/Piano.otp0Vivid$(brandbaseurl)/share/template/common/presnt/Vivid.otp0Lights$(brandbaseurl)/share/template/common/presnt/Lights.otp0Pencil$(brandbaseurl)/share/template/common/presnt/Pencil.otp0Sunset$(brandbaseurl)/share/template/common/presnt/Sunset.otp0Beehive$(brandbaseurl)/share/template/common/presnt/Beehive.otp0Impress$(brandbaseurl)/share/template/common/presnt/Impress.otp0Vintage$(brandbaseurl)/share/template/common/presnt/Vintage.otp0Alizarin$(brandbaseurl)/share/template/common/presnt/Alizarin.otp0Progress$(brandbaseurl)/share/template/common/presnt/Progress.otp0Portfolio$(brandbaseurl)/share/template/common/presnt/Portfolio.otp0Forestbird$(brandbaseurl)/share/template/common/presnt/Forestbird.otp0Metropolis$(brandbaseurl)/share/template/common/presnt/Metropolis.otp0Inspiration$(brandbaseurl)/share/template/common/presnt/Inspiration.otp0Blue Curve$(brandbaseurl)/share/template/common/presnt/Blue_Curve.otp0Classy Red$(brandbaseurl)/share/template/common/presnt/Classy_Red.otp0Lush Green$(brandbaseurl)/share/template/common/presnt/LushGreen.otp0Midnightblue$(brandbaseurl)/share/template/common/presnt/Midnightblue.otp0Bright Blue$(brandbaseurl)/share/template/common/presnt/BrightBlue.otp0Blueprint Plans$(brandbaseurl)/share/template/common/presnt/Blueprint_Plans.otp0Nature Illustration$(brandbaseurl)/share/template/common/presnt/Nature_Illustration.otp1My Templates1Business Correspondence0Modern business letter serif$(brandbaseurl)/share/template/common/officorr/Modern_business_letter_serif.ott0Modern business letter sans-serif$(brandbaseurl)/share/template/common/officorr/Modern_business_letter_sans_serif.ott1Other Business Documents0Businesscard with logo$(brandbaseurl)/share/template/common/offimisc/Businesscard-with-logo.ott1Personal Correspondence and Documents0CV$(brandbaseurl)/share/template/common/personal/CV.ott0Resume$(brandbaseurl)/share/template/common/personal/Resume1page.ott +0false-11290$(brandbaseurl)/share/template/common$(brandbaseurl)/program/../share/template/en-US$(brandbaseurl)/share/extensions/wiki-publisher/templates$(userdataurl)/user/templatefile:///home/dt/Templates-112912-1129 +1-1129 +1application/vnd.oasis.opendocument.text-template-1129 +1application/vnd.oasis.opendocument.text-template-1129 +1-1129 +1application/vnd.oasis.opendocument.text-template-1129 +1file:///home/dt/Templates-1129 +1-1129 +1application/vnd.oasis.opendocument.text-template-1129 +1-1129 +1application/vnd.oasis.opendocument.text-template-1129 +1application/vnd.oasis.opendocument.text-template-1129 +1-1129 +1application/vnd.oasis.opendocument.presentation-template-1129 +1application/vnd.oasis.opendocument.presentation-template-1129 +1application/vnd.oasis.opendocument.presentation-template-1129 +1application/vnd.oasis.opendocument.presentation-template-1129 +1application/vnd.oasis.opendocument.presentation-template-1129 +1application/vnd.oasis.opendocument.presentation-template-1129 +1application/vnd.oasis.opendocument.presentation-template-1129 +1application/vnd.oasis.opendocument.presentation-template-1129 +1application/vnd.oasis.opendocument.presentation-template-1129 +1application/vnd.oasis.opendocument.presentation-template-1129 +1application/vnd.oasis.opendocument.presentation-template-1129 +1application/vnd.oasis.opendocument.presentation-template-1129 +1application/vnd.oasis.opendocument.presentation-template-1129 +1application/vnd.oasis.opendocument.presentation-template-1129 +1application/vnd.oasis.opendocument.presentation-template-1129 +1application/vnd.oasis.opendocument.presentation-template-1129 +1application/vnd.oasis.opendocument.presentation-template-1129 +1application/vnd.oasis.opendocument.presentation-template-1129 +1application/vnd.oasis.opendocument.presentation-template-1129 +1application/vnd.oasis.opendocument.presentation-template-1129 +1application/vnd.oasis.opendocument.presentation-template-1129 +1application/vnd.oasis.opendocument.presentation-template-1129 +1application/vnd.oasis.opendocument.presentation-template-1129 +1-1129 +1application/vnd.oasis.opendocument.text-template-1129 +1application/vnd.oasis.opendocument.text-template-1129 + diff --git a/.config/libreoffice/4/user/store/.templdir.cache b/.config/libreoffice/4/user/store/.templdir.cache new file mode 100644 index 000000000..4ea46bc28 Binary files /dev/null and b/.config/libreoffice/4/user/store/.templdir.cache differ diff --git a/.config/libreoffice/4/user/uno_packages/cache/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/backenddb.xml b/.config/libreoffice/4/user/uno_packages/cache/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/backenddb.xml new file mode 100644 index 000000000..fb4de4d93 --- /dev/null +++ b/.config/libreoffice/4/user/uno_packages/cache/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/backenddb.xml @@ -0,0 +1,2 @@ + + diff --git a/.config/libreoffice/4/user/uno_packages/cache/registry/com.sun.star.comp.deployment.help.PackageRegistryBackend/backenddb.xml b/.config/libreoffice/4/user/uno_packages/cache/registry/com.sun.star.comp.deployment.help.PackageRegistryBackend/backenddb.xml new file mode 100644 index 000000000..496c8c887 --- /dev/null +++ b/.config/libreoffice/4/user/uno_packages/cache/registry/com.sun.star.comp.deployment.help.PackageRegistryBackend/backenddb.xml @@ -0,0 +1,2 @@ + + diff --git a/.config/menus/applications-merged/wine-Programs-Ubisoft-Ubisoft Connect-Ubisoft Connect.menu b/.config/menus/applications-merged/wine-Programs-Ubisoft-Ubisoft Connect-Ubisoft Connect.menu new file mode 100644 index 000000000..23e74c70a --- /dev/null +++ b/.config/menus/applications-merged/wine-Programs-Ubisoft-Ubisoft Connect-Ubisoft Connect.menu @@ -0,0 +1,24 @@ + + + Applications + + wine-wine + wine-wine.directory + + wine-Programs + wine-Programs.directory + + wine-Programs-Ubisoft + wine-Programs-Ubisoft.directory + + wine-Programs-Ubisoft-Ubisoft Connect + wine-Programs-Ubisoft-Ubisoft Connect.directory + + wine-Programs-Ubisoft-Ubisoft Connect-Ubisoft Connect.desktop + + + + + + diff --git a/.config/menus/applications-merged/wine-Programs-Ubisoft-Ubisoft Connect-Uninstall.menu b/.config/menus/applications-merged/wine-Programs-Ubisoft-Ubisoft Connect-Uninstall.menu new file mode 100644 index 000000000..68a035bad --- /dev/null +++ b/.config/menus/applications-merged/wine-Programs-Ubisoft-Ubisoft Connect-Uninstall.menu @@ -0,0 +1,24 @@ + + + Applications + + wine-wine + wine-wine.directory + + wine-Programs + wine-Programs.directory + + wine-Programs-Ubisoft + wine-Programs-Ubisoft.directory + + wine-Programs-Ubisoft-Ubisoft Connect + wine-Programs-Ubisoft-Ubisoft Connect.directory + + wine-Programs-Ubisoft-Ubisoft Connect-Uninstall.desktop + + + + + + diff --git a/.config/mimeapps.list b/.config/mimeapps.list new file mode 100644 index 000000000..7cf85c7bd --- /dev/null +++ b/.config/mimeapps.list @@ -0,0 +1,5 @@ +[Default Applications] +text/plain=vim.desktop + +[Added Associations] +text/plain=vim.desktop; diff --git a/.config/multilock/config b/.config/multilock/config new file mode 100644 index 000000000..9783d7f2a --- /dev/null +++ b/.config/multilock/config @@ -0,0 +1,49 @@ +# ~/.config/multilock/config + +# default options +display_on=0 +span_image=false +lock_timeout=5 +fx_list=(dim blur dimblur pixel dimpixel color) +dim_level=40 +blur_level=1 +pixel_scale=10,1000 +solid_color=333333 + +# default theme +loginbox=00000066 +loginshadow=00000000 +locktext="Type password to unlock..." +font="sans-serif" +ringcolor=ffffffff +insidecolor=00000000 +separatorcolor=00000000 +ringvercolor=ffffffff +insidevercolor=00000000 +ringwrongcolor=ffffffff +insidewrongcolor=d23c3dff +keyhlcolor=d23c3dff +bshlcolor=d23c3dff +verifcolor=ffffffff +timecolor=ffffffff +datecolor=ffffffff + +# custom prelock +prelock() { + echof act "prelock screen..." + + # start away timer + away_start="$(date -u +%s)" + +} + +# custom postlock +postlock() { + + # show time away + away_end="$(date -u +%s)" + if [[ ! "$away_start" -gt "$away_end" ]]; then + notify-send "Welcome Back" "You were gone for $(($away_end-$away_start)) seconds!" + fi + +} \ No newline at end of file diff --git a/.config/multilock/gui.conf b/.config/multilock/gui.conf new file mode 100644 index 000000000..e630a0027 --- /dev/null +++ b/.config/multilock/gui.conf @@ -0,0 +1,2 @@ +[settings] +folder=/usr/share/backgrounds/manjaro-wallpapers-18.0 diff --git a/.config/nemo/bookmark-metadata b/.config/nemo/bookmark-metadata new file mode 100644 index 000000000..e69de29bb diff --git a/.config/neofetch/config.conf b/.config/neofetch/config.conf new file mode 100644 index 000000000..97bda8a8d --- /dev/null +++ b/.config/neofetch/config.conf @@ -0,0 +1,864 @@ +# See this wiki page for more info: +# https://github.com/dylanaraps/neofetch/wiki/Customizing-Info +print_info() { + info title + info underline + + info "OS" distro + info "Host" model + info "Kernel" kernel + info "Uptime" uptime + info "Packages" packages + info "Shell" shell + info "Resolution" resolution + info "DE" de + info "WM" wm + info "WM Theme" wm_theme + info "Theme" theme + info "Icons" icons + info "Font" font + info "Terminal" term + info "Terminal Font" term_font + info "CPU" cpu + info "GPU" gpu + info "Memory" memory + + # info "GPU Driver" gpu_driver # Linux/macOS only + # info "CPU Usage" cpu_usage + info "Disk" disk + # info "Battery" battery + # info "Song" song + # [[ "$player" ]] && prin "Music Player" "$player" + # info "Local IP" local_ip + # info "Public IP" public_ip + # info "Users" users + # info "Locale" locale # This only works on glibc systems. + + info cols +} + +# Title + + +# Hide/Show Fully qualified domain name. +# +# Default: 'off' +# Values: 'on', 'off' +# Flag: --title_fqdn +title_fqdn="off" + + +# Kernel + + +# Shorten the output of the kernel function. +# +# Default: 'on' +# Values: 'on', 'off' +# Flag: --kernel_shorthand +# Supports: Everything except *BSDs (except PacBSD and PC-BSD) +# +# Example: +# on: '4.8.9-1-ARCH' +# off: 'Linux 4.8.9-1-ARCH' +kernel_shorthand="on" + + +# Distro + + +# Shorten the output of the distro function +# +# Default: 'off' +# Values: 'on', 'tiny', 'off' +# Flag: --distro_shorthand +# Supports: Everything except Windows and Haiku +distro_shorthand="off" + +# Show/Hide OS Architecture. +# Show 'x86_64', 'x86' and etc in 'Distro:' output. +# +# Default: 'on' +# Values: 'on', 'off' +# Flag: --os_arch +# +# Example: +# on: 'Arch Linux x86_64' +# off: 'Arch Linux' +os_arch="on" + + +# Uptime + + +# Shorten the output of the uptime function +# +# Default: 'on' +# Values: 'on', 'tiny', 'off' +# Flag: --uptime_shorthand +# +# Example: +# on: '2 days, 10 hours, 3 mins' +# tiny: '2d 10h 3m' +# off: '2 days, 10 hours, 3 minutes' +uptime_shorthand="on" + + +# Memory + + +# Show memory pecentage in output. +# +# Default: 'off' +# Values: 'on', 'off' +# Flag: --memory_percent +# +# Example: +# on: '1801MiB / 7881MiB (22%)' +# off: '1801MiB / 7881MiB' +memory_percent="off" + +# Change memory output unit. +# +# Default: 'mib' +# Values: 'kib', 'mib', 'gib' +# Flag: --memory_unit +# +# Example: +# kib '1020928KiB / 7117824KiB' +# mib '1042MiB / 6951MiB' +# gib: ' 0.98GiB / 6.79GiB' +memory_unit="gib" + + +# Packages + + +# Show/Hide Package Manager names. +# +# Default: 'tiny' +# Values: 'on', 'tiny' 'off' +# Flag: --package_managers +# +# Example: +# on: '998 (pacman), 8 (flatpak), 4 (snap)' +# tiny: '908 (pacman, flatpak, snap)' +# off: '908' +package_managers="on" + + +# Shell + + +# Show the path to $SHELL +# +# Default: 'off' +# Values: 'on', 'off' +# Flag: --shell_path +# +# Example: +# on: '/bin/bash' +# off: 'bash' +shell_path="on" + +# Show $SHELL version +# +# Default: 'on' +# Values: 'on', 'off' +# Flag: --shell_version +# +# Example: +# on: 'bash 4.4.5' +# off: 'bash' +shell_version="on" + + +# CPU + + +# CPU speed type +# +# Default: 'bios_limit' +# Values: 'scaling_cur_freq', 'scaling_min_freq', 'scaling_max_freq', 'bios_limit'. +# Flag: --speed_type +# Supports: Linux with 'cpufreq' +# NOTE: Any file in '/sys/devices/system/cpu/cpu0/cpufreq' can be used as a value. +speed_type="bios_limit" + +# CPU speed shorthand +# +# Default: 'off' +# Values: 'on', 'off'. +# Flag: --speed_shorthand +# NOTE: This flag is not supported in systems with CPU speed less than 1 GHz +# +# Example: +# on: 'i7-6500U (4) @ 3.1GHz' +# off: 'i7-6500U (4) @ 3.100GHz' +speed_shorthand="on" + +# Enable/Disable CPU brand in output. +# +# Default: 'on' +# Values: 'on', 'off' +# Flag: --cpu_brand +# +# Example: +# on: 'Intel i7-6500U' +# off: 'i7-6500U (4)' +cpu_brand="on" + +# CPU Speed +# Hide/Show CPU speed. +# +# Default: 'on' +# Values: 'on', 'off' +# Flag: --cpu_speed +# +# Example: +# on: 'Intel i7-6500U (4) @ 3.1GHz' +# off: 'Intel i7-6500U (4)' +cpu_speed="on" + +# CPU Cores +# Display CPU cores in output +# +# Default: 'logical' +# Values: 'logical', 'physical', 'off' +# Flag: --cpu_cores +# Support: 'physical' doesn't work on BSD. +# +# Example: +# logical: 'Intel i7-6500U (4) @ 3.1GHz' (All virtual cores) +# physical: 'Intel i7-6500U (2) @ 3.1GHz' (All physical cores) +# off: 'Intel i7-6500U @ 3.1GHz' +cpu_cores="logical" + +# CPU Temperature +# Hide/Show CPU temperature. +# Note the temperature is added to the regular CPU function. +# +# Default: 'off' +# Values: 'C', 'F', 'off' +# Flag: --cpu_temp +# Supports: Linux, BSD +# NOTE: For FreeBSD and NetBSD-based systems, you'll need to enable +# coretemp kernel module. This only supports newer Intel processors. +# +# Example: +# C: 'Intel i7-6500U (4) @ 3.1GHz [27.2°C]' +# F: 'Intel i7-6500U (4) @ 3.1GHz [82.0°F]' +# off: 'Intel i7-6500U (4) @ 3.1GHz' +cpu_temp="C" + + +# GPU + + +# Enable/Disable GPU Brand +# +# Default: 'on' +# Values: 'on', 'off' +# Flag: --gpu_brand +# +# Example: +# on: 'AMD HD 7950' +# off: 'HD 7950' +gpu_brand="on" + +# Which GPU to display +# +# Default: 'all' +# Values: 'all', 'dedicated', 'integrated' +# Flag: --gpu_type +# Supports: Linux +# +# Example: +# all: +# GPU1: AMD HD 7950 +# GPU2: Intel Integrated Graphics +# +# dedicated: +# GPU1: AMD HD 7950 +# +# integrated: +# GPU1: Intel Integrated Graphics +gpu_type="all" + + +# Resolution + + +# Display refresh rate next to each monitor +# Default: 'off' +# Values: 'on', 'off' +# Flag: --refresh_rate +# Supports: Doesn't work on Windows. +# +# Example: +# on: '1920x1080 @ 60Hz' +# off: '1920x1080' +refresh_rate="on" + + +# Gtk Theme / Icons / Font + + +# Shorten output of GTK Theme / Icons / Font +# +# Default: 'off' +# Values: 'on', 'off' +# Flag: --gtk_shorthand +# +# Example: +# on: 'Numix, Adwaita' +# off: 'Numix [GTK2], Adwaita [GTK3]' +gtk_shorthand="off" + + +# Enable/Disable gtk2 Theme / Icons / Font +# +# Default: 'on' +# Values: 'on', 'off' +# Flag: --gtk2 +# +# Example: +# on: 'Numix [GTK2], Adwaita [GTK3]' +# off: 'Adwaita [GTK3]' +gtk2="off" + +# Enable/Disable gtk3 Theme / Icons / Font +# +# Default: 'on' +# Values: 'on', 'off' +# Flag: --gtk3 +# +# Example: +# on: 'Numix [GTK2], Adwaita [GTK3]' +# off: 'Numix [GTK2]' +gtk3="on" + + +# IP Address + + +# Website to ping for the public IP +# +# Default: 'http://ident.me' +# Values: 'url' +# Flag: --ip_host +public_ip_host="http://ident.me" + +# Public IP timeout. +# +# Default: '2' +# Values: 'int' +# Flag: --ip_timeout +public_ip_timeout=2 + + +# Desktop Environment + + +# Show Desktop Environment version +# +# Default: 'on' +# Values: 'on', 'off' +# Flag: --de_version +de_version="on" + + +# Disk + + +# Which disks to display. +# The values can be any /dev/sdXX, mount point or directory. +# NOTE: By default we only show the disk info for '/'. +# +# Default: '/' +# Values: '/', '/dev/sdXX', '/path/to/drive'. +# Flag: --disk_show +# +# Example: +# disk_show=('/' '/dev/sdb1'): +# 'Disk (/): 74G / 118G (66%)' +# 'Disk (/mnt/Videos): 823G / 893G (93%)' +# +# disk_show=('/'): +# 'Disk (/): 74G / 118G (66%)' +# +disk_show=('/dev/nvme0n1p3' '/dev/nvme0n1p4') + +# Disk subtitle. +# What to append to the Disk subtitle. +# +# Default: 'mount' +# Values: 'mount', 'name', 'dir', 'none' +# Flag: --disk_subtitle +# +# Example: +# name: 'Disk (/dev/sda1): 74G / 118G (66%)' +# 'Disk (/dev/sdb2): 74G / 118G (66%)' +# +# mount: 'Disk (/): 74G / 118G (66%)' +# 'Disk (/mnt/Local Disk): 74G / 118G (66%)' +# 'Disk (/mnt/Videos): 74G / 118G (66%)' +# +# dir: 'Disk (/): 74G / 118G (66%)' +# 'Disk (Local Disk): 74G / 118G (66%)' +# 'Disk (Videos): 74G / 118G (66%)' +# +# none: 'Disk: 74G / 118G (66%)' +# 'Disk: 74G / 118G (66%)' +# 'Disk: 74G / 118G (66%)' +disk_subtitle="mount" + +# Disk percent. +# Show/Hide disk percent. +# +# Default: 'on' +# Values: 'on', 'off' +# Flag: --disk_percent +# +# Example: +# on: 'Disk (/): 74G / 118G (66%)' +# off: 'Disk (/): 74G / 118G' +disk_percent="on" + + +# Song + + +# Manually specify a music player. +# +# Default: 'auto' +# Values: 'auto', 'player-name' +# Flag: --music_player +# +# Available values for 'player-name': +# +# amarok +# audacious +# banshee +# bluemindo +# clementine +# cmus +# deadbeef +# deepin-music +# dragon +# elisa +# exaile +# gnome-music +# gmusicbrowser +# gogglesmm +# guayadeque +# io.elementary.music +# iTunes +# juk +# lollypop +# mocp +# mopidy +# mpd +# muine +# netease-cloud-music +# olivia +# playerctl +# pogo +# pragha +# qmmp +# quodlibet +# rhythmbox +# sayonara +# smplayer +# spotify +# strawberry +# tauonmb +# tomahawk +# vlc +# xmms2d +# xnoise +# yarock +music_player="auto" + +# Format to display song information. +# +# Default: '%artist% - %album% - %title%' +# Values: '%artist%', '%album%', '%title%' +# Flag: --song_format +# +# Example: +# default: 'Song: Jet - Get Born - Sgt Major' +song_format="%artist% - %album% - %title%" + +# Print the Artist, Album and Title on separate lines +# +# Default: 'off' +# Values: 'on', 'off' +# Flag: --song_shorthand +# +# Example: +# on: 'Artist: The Fratellis' +# 'Album: Costello Music' +# 'Song: Chelsea Dagger' +# +# off: 'Song: The Fratellis - Costello Music - Chelsea Dagger' +song_shorthand="off" + +# 'mpc' arguments (specify a host, password etc). +# +# Default: '' +# Example: mpc_args=(-h HOST -P PASSWORD) +mpc_args=() + + +# Text Colors + + +# Text Colors +# +# Default: 'distro' +# Values: 'distro', 'num' 'num' 'num' 'num' 'num' 'num' +# Flag: --colors +# +# Each number represents a different part of the text in +# this order: 'title', '@', 'underline', 'subtitle', 'colon', 'info' +# +# Example: +# colors=(distro) - Text is colored based on Distro colors. +# colors=(4 6 1 8 8 6) - Text is colored in the order above. +colors=(distro) + + +# Text Options + + +# Toggle bold text +# +# Default: 'on' +# Values: 'on', 'off' +# Flag: --bold +bold="on" + +# Enable/Disable Underline +# +# Default: 'on' +# Values: 'on', 'off' +# Flag: --underline +underline_enabled="on" + +# Underline character +# +# Default: '-' +# Values: 'string' +# Flag: --underline_char +underline_char="-" + + +# Info Separator +# Replace the default separator with the specified string. +# +# Default: ':' +# Flag: --separator +# +# Example: +# separator="->": 'Shell-> bash' +# separator=" =": 'WM = dwm' +separator=":" + + +# Color Blocks + + +# Color block range +# The range of colors to print. +# +# Default: '0', '15' +# Values: 'num' +# Flag: --block_range +# +# Example: +# +# Display colors 0-7 in the blocks. (8 colors) +# neofetch --block_range 0 7 +# +# Display colors 0-15 in the blocks. (16 colors) +# neofetch --block_range 0 15 +block_range=(0 15) + +# Toggle color blocks +# +# Default: 'on' +# Values: 'on', 'off' +# Flag: --color_blocks +color_blocks="on" + +# Color block width in spaces +# +# Default: '3' +# Values: 'num' +# Flag: --block_width +block_width=3 + +# Color block height in lines +# +# Default: '1' +# Values: 'num' +# Flag: --block_height +block_height=1 + +# Color Alignment +# +# Default: 'auto' +# Values: 'auto', 'num' +# Flag: --col_offset +# +# Number specifies how far from the left side of the terminal (in spaces) to +# begin printing the columns, in case you want to e.g. center them under your +# text. +# Example: +# col_offset="auto" - Default behavior of neofetch +# col_offset=7 - Leave 7 spaces then print the colors +col_offset="auto" + +# Progress Bars + + +# Bar characters +# +# Default: '-', '=' +# Values: 'string', 'string' +# Flag: --bar_char +# +# Example: +# neofetch --bar_char 'elapsed' 'total' +# neofetch --bar_char '-' '=' +bar_char_elapsed="-" +bar_char_total="=" + +# Toggle Bar border +# +# Default: 'on' +# Values: 'on', 'off' +# Flag: --bar_border +bar_border="on" + +# Progress bar length in spaces +# Number of chars long to make the progress bars. +# +# Default: '15' +# Values: 'num' +# Flag: --bar_length +bar_length=15 + +# Progress bar colors +# When set to distro, uses your distro's logo colors. +# +# Default: 'distro', 'distro' +# Values: 'distro', 'num' +# Flag: --bar_colors +# +# Example: +# neofetch --bar_colors 3 4 +# neofetch --bar_colors distro 5 +bar_color_elapsed="distro" +bar_color_total="distro" + + +# Info display +# Display a bar with the info. +# +# Default: 'off' +# Values: 'bar', 'infobar', 'barinfo', 'off' +# Flags: --cpu_display +# --memory_display +# --battery_display +# --disk_display +# +# Example: +# bar: '[---=======]' +# infobar: 'info [---=======]' +# barinfo: '[---=======] info' +# off: 'info' +cpu_display="off" +memory_display="off" +battery_display="off" +disk_display="off" + + +# Backend Settings + + +# Image backend. +# +# Default: 'ascii' +# Values: 'ascii', 'caca', 'chafa', 'jp2a', 'iterm2', 'off', +# 'pot', 'termpix', 'pixterm', 'tycat', 'w3m', 'kitty' +# Flag: --backend +image_backend="ascii" + +# Image Source +# +# Which image or ascii file to display. +# +# Default: 'auto' +# Values: 'auto', 'ascii', 'wallpaper', '/path/to/img', '/path/to/ascii', '/path/to/dir/' +# 'command output (neofetch --ascii "$(fortune | cowsay -W 30)")' +# Flag: --source +# +# NOTE: 'auto' will pick the best image source for whatever image backend is used. +# In ascii mode, distro ascii art will be used and in an image mode, your +# wallpaper will be used. +image_source="auto" + + +# Ascii Options + + +# Ascii distro +# Which distro's ascii art to display. +# +# Default: 'auto' +# Values: 'auto', 'distro_name' +# Flag: --ascii_distro +# NOTE: AIX, Alpine, Anarchy, Android, Antergos, antiX, "AOSC OS", +# "AOSC OS/Retro", Apricity, ArcoLinux, ArchBox, ARCHlabs, +# ArchStrike, XFerience, ArchMerge, Arch, Artix, Arya, Bedrock, +# Bitrig, BlackArch, BLAG, BlankOn, BlueLight, bonsai, BSD, +# BunsenLabs, Calculate, Carbs, CentOS, Chakra, ChaletOS, +# Chapeau, Chrom*, Cleanjaro, ClearOS, Clear_Linux, Clover, +# Condres, Container_Linux, CRUX, Cucumber, Debian, Deepin, +# DesaOS, Devuan, DracOS, DarkOs, DragonFly, Drauger, Elementary, +# EndeavourOS, Endless, EuroLinux, Exherbo, Fedora, Feren, FreeBSD, +# FreeMiNT, Frugalware, Funtoo, GalliumOS, Garuda, Gentoo, Pentoo, +# gNewSense, GNOME, GNU, GoboLinux, Grombyang, Guix, Haiku, Huayra, +# Hyperbola, janus, Kali, KaOS, KDE_neon, Kibojoe, Kogaion, +# Korora, KSLinux, Kubuntu, LEDE, LFS, Linux_Lite, +# LMDE, Lubuntu, Lunar, macos, Mageia, MagpieOS, Mandriva, +# Manjaro, Maui, Mer, Minix, LinuxMint, MX_Linux, Namib, +# Neptune, NetBSD, Netrunner, Nitrux, NixOS, Nurunner, +# NuTyX, OBRevenge, OpenBSD, openEuler, OpenIndiana, openmamba, +# OpenMandriva, OpenStage, OpenWrt, osmc, Oracle, OS Elbrus, PacBSD, +# Parabola, Pardus, Parrot, Parsix, TrueOS, PCLinuxOS, Peppermint, +# popos, Porteus, PostMarketOS, Proxmox, Puppy, PureOS, Qubes, Radix, +# Raspbian, Reborn_OS, Redstar, Redcore, Redhat, Refracted_Devuan, +# Regata, Rosa, sabotage, Sabayon, Sailfish, SalentOS, Scientific, +# Septor, SereneLinux, SharkLinux, Siduction, Slackware, SliTaz, +# SmartOS, Solus, Source_Mage, Sparky, Star, SteamOS, SunOS, +# openSUSE_Leap, openSUSE_Tumbleweed, openSUSE, SwagArch, Tails, +# Trisquel, Ubuntu-Budgie, Ubuntu-GNOME, Ubuntu-MATE, Ubuntu-Studio, +# Ubuntu, Venom, Void, Obarun, windows10, Windows7, Xubuntu, Zorin, +# and IRIX have ascii logos +# NOTE: Arch, Ubuntu, Redhat, and Dragonfly have 'old' logo variants. +# Use '{distro name}_old' to use the old logos. +# NOTE: Ubuntu has flavor variants. +# Change this to Lubuntu, Kubuntu, Xubuntu, Ubuntu-GNOME, +# Ubuntu-Studio, Ubuntu-Mate or Ubuntu-Budgie to use the flavors. +# NOTE: Arcolinux, Dragonfly, Fedora, Alpine, Arch, Ubuntu, +# CRUX, Debian, Gentoo, FreeBSD, Mac, NixOS, OpenBSD, android, +# Antrix, CentOS, Cleanjaro, ElementaryOS, GUIX, Hyperbola, +# Manjaro, MXLinux, NetBSD, Parabola, POP_OS, PureOS, +# Slackware, SunOS, LinuxLite, OpenSUSE, Raspbian, +# postmarketOS, and Void have a smaller logo variant. +# Use '{distro name}_small' to use the small variants. +ascii_distro="auto" + +# Ascii Colors +# +# Default: 'distro' +# Values: 'distro', 'num' 'num' 'num' 'num' 'num' 'num' +# Flag: --ascii_colors +# +# Example: +# ascii_colors=(distro) - Ascii is colored based on Distro colors. +# ascii_colors=(4 6 1 8 8 6) - Ascii is colored using these colors. +ascii_colors=(distro) + +# Bold ascii logo +# Whether or not to bold the ascii logo. +# +# Default: 'on' +# Values: 'on', 'off' +# Flag: --ascii_bold +ascii_bold="on" + + +# Image Options + + +# Image loop +# Setting this to on will make neofetch redraw the image constantly until +# Ctrl+C is pressed. This fixes display issues in some terminal emulators. +# +# Default: 'off' +# Values: 'on', 'off' +# Flag: --loop +image_loop="off" + +# Thumbnail directory +# +# Default: '~/.cache/thumbnails/neofetch' +# Values: 'dir' +thumbnail_dir="${XDG_CACHE_HOME:-${HOME}/.cache}/thumbnails/neofetch" + +# Crop mode +# +# Default: 'normal' +# Values: 'normal', 'fit', 'fill' +# Flag: --crop_mode +# +# See this wiki page to learn about the fit and fill options. +# https://github.com/dylanaraps/neofetch/wiki/What-is-Waifu-Crop%3F +crop_mode="normal" + +# Crop offset +# Note: Only affects 'normal' crop mode. +# +# Default: 'center' +# Values: 'northwest', 'north', 'northeast', 'west', 'center' +# 'east', 'southwest', 'south', 'southeast' +# Flag: --crop_offset +crop_offset="center" + +# Image size +# The image is half the terminal width by default. +# +# Default: 'auto' +# Values: 'auto', '00px', '00%', 'none' +# Flags: --image_size +# --size +image_size="auto" + +# Gap between image and text +# +# Default: '3' +# Values: 'num', '-num' +# Flag: --gap +gap=3 + +# Image offsets +# Only works with the w3m backend. +# +# Default: '0' +# Values: 'px' +# Flags: --xoffset +# --yoffset +yoffset=0 +xoffset=0 + +# Image background color +# Only works with the w3m backend. +# +# Default: '' +# Values: 'color', 'blue' +# Flag: --bg_color +background_color= + + +# Misc Options + +# Stdout mode +# Turn off all colors and disables image backend (ASCII/Image). +# Useful for piping into another command. +# Default: 'off' +# Values: 'on', 'off' +stdout="off" diff --git a/.config/package-list b/.config/package-list new file mode 100644 index 000000000..76fa23f78 --- /dev/null +++ b/.config/package-list @@ -0,0 +1,79 @@ +auracle +autotiling +bpytop +bumblebee-status +checkupdates+aur +checkupdates-aur +ckb-next +code +colorgrab +gamehub +glow +godot +gtk4 +guitar +i3-cheat +i3-maim +i3-session +i3-swallow +i3lock-color +instamenu +instamenu-extra +instamenu-schemas +lib32-libxft-bgra +libgaminggear +libxft-bgra +minecraft-launcher +multimc5 +multimonitorlock +multimonitorlock-gui +nbteditor +nerd-fonts-fira-code +nerd-fonts-hack +nerd-fonts-iosevka +nerd-fonts-mononoki +nerd-fonts-roboto-mono +nerd-fonts-source-code-pro +perl-checkupdates-aur +perl-www-aur +picker +polkit-dumb-agent +pyfetch +python-gputil +python-i3-py +python-pyparted +qt-logout +qt5-color-widgets +qt5-styleplugins +qt6ct +qt6gtk2 +recycle-cli +roccat-tools-arvo +roccat-tools-common +roccat-tools-isku +roccat-tools-iskufx +roccat-tools-kiro +roccat-tools-kone +roccat-tools-koneplus +roccat-tools-konepure +roccat-tools-konepuremilitary +roccat-tools-konepureoptical +roccat-tools-konextd +roccat-tools-konextdoptical +roccat-tools-kova2016 +roccat-tools-kovaplus +roccat-tools-lua +roccat-tools-nyth +roccat-tools-pyra +roccat-tools-ryosmk +roccat-tools-ryosmkfx +roccat-tools-ryostkl +roccat-tools-savu +roccat-tools-skeltr +roccat-tools-sova +roccat-tools-suora +roccat-tools-tyon +siji +touchpad-indicator +tty-clock +xtitle diff --git a/.config/pamac/config b/.config/pamac/config new file mode 100644 index 000000000..c5e9db22e --- /dev/null +++ b/.config/pamac/config @@ -0,0 +1,4 @@ +width = 1904 +software_mode = false +maximized = false +height = 970 diff --git a/.config/pavucontrol.ini b/.config/pavucontrol.ini new file mode 100644 index 000000000..5fc4f55a6 --- /dev/null +++ b/.config/pavucontrol.ini @@ -0,0 +1,8 @@ +[window] +width=638 +height=478 +sinkInputType=1 +sourceOutputType=1 +sinkType=0 +sourceType=1 +showVolumeMeters=1 diff --git a/.config/pipewire-media-session/default-routes b/.config/pipewire-media-session/default-routes new file mode 100755 index 000000000..943c99d9c --- /dev/null +++ b/.config/pipewire-media-session/default-routes @@ -0,0 +1,2 @@ +alsa_card.pci-0000:00:1f.3:input:analog-input-internal-mic mute:0 volumes:2,0.003981,0.003981 +alsa_card.pci-0000:00:1f.3:output:analog-output-headphones mute:0 volumes:2,1.000000,1.000000 diff --git a/.config/polybar/bars.ini b/.config/polybar/bars.ini new file mode 100644 index 000000000..326204713 --- /dev/null +++ b/.config/polybar/bars.ini @@ -0,0 +1,434 @@ +;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ +;; +;; ____ +;; / __ )____ ___________ +;; / __ / __ `/ ___/ ___/ +;; / /_/ / /_/ / / (__ ) +;; /_____/\__,_/_/ /____/ +;; +;; Created By Wayne McLean @TheCynicalLiger +;; +;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ + +[module/volume] +type = internal/alsa + +format-volume = +format-volume-background = ${color.mf} +format-volume-foreground = ${color.fg} +format-volume-padding = 1 + +format-muted = +format-muted-background = ${color.mf} +format-muted-foreground = ${color.red} +format-muted-padding = 1 + +label-volume = %percentage%% + +label-muted = "Muted" + +bar-volume-width = 10 +bar-volume-gradient = false + +bar-volume-indicator = +bar-volume-indicator-foreground = ${color.fg} +bar-volume-indicator-font = 2 + +bar-volume-fill = ━ +bar-volume-foreground-0 = ${color.bn} +bar-volume-foreground-1 = ${color.bn} +bar-volume-foreground-2 = ${color.bn} +bar-volume-foreground-3 = ${color.bn} +bar-volume-foreground-4 = ${color.bm} +bar-volume-foreground-5 = ${color.bm} +bar-volume-foreground-6 = ${color.bm} +bar-volume-foreground-7 = ${color.bd} +bar-volume-foreground-8 = ${color.bd} +bar-volume-fill-font = 2 + +bar-volume-empty = ┉ +bar-volume-empty-foreground = ${color.fg} +bar-volume-empty-font = 2 + +[module/volume_i] +type = internal/alsa + +format-volume = +format-volume-background = ${color.blue} +format-volume-foreground = ${color.fg} +format-volume-padding = 1 + +format-muted-background = ${color.blue} +format-muted-foreground = ${color.red} +format-muted-padding = 1 + +label-muted = "" +label-muted-foreground = ${color.fg} + +ramp-volume-0 =  +ramp-volume-1 =  +ramp-volume-2 =  +ramp-volume-3 =  +ramp-volume-4 =  +ramp-headphones-0 =  +ramp-headphones-1 =  + +;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ + +[module/brightness] +type = internal/xbacklight + +card = intel_backlight + +format = +format-background = ${color.mf} +format-foreground = ${color.fg} +format-padding = 1 + +bar-width = 10 +bar-gradient = false + +bar-indicator = +bar-indicator-foreground = ${color.mf} +bar-indicator-font = 2 + +bar-fill = ━ +bar-foreground-0 = ${color.bn} +bar-foreground-1 = ${color.bn} +bar-foreground-2 = ${color.bn} +bar-foreground-3 = ${color.bm} +bar-foreground-4 = ${color.bm} +bar-foreground-5 = ${color.bd} +bar-foreground-6 = ${color.bd} +bar-foreground-7 = ${color.bd} +bar-foreground-8 = ${color.bd} +bar-fill-font = 2 + +bar-empty = ┉ +bar-empty-foreground = ${color.fg} +bar-empty-font = 2 + +[module/brightness_i] +type = internal/xbacklight + +card = intel_backlight + +format = +format-background = ${color.lime} +format-foreground = ${color.fg} +format-padding = 1 + +ramp-0 =  +ramp-1 =  +ramp-2 =  +ramp-3 =  +ramp-4 =  +ramp-5 =  +ramp-6 =  +ramp-7 =  +ramp-8 =  +ramp-9 =  + +;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ + +[module/battery_bar] +type = internal/battery + +full-at = 99 + +battery = BAT0 +adapter = ACAD + +poll-interval = 2 +time-format = %H:%M + +format-charging = +format-charging-background = ${color.mf} +format-charging-foreground = ${color.fg} +format-charging-padding = 1 + +format-discharging = +format-discharging-background = ${color.mf} +format-discharging-foreground = ${color.fg} +format-discharging-padding = 1 + +bar-capacity-width = 10 +bar-capacity-gradient = false + +bar-capacity-indicator = +bar-capacity-indicator-foreground = ${color.fg} +bar-capacity-indicator-font = 2 + +bar-capacity-fill = ━ +bar-capacity-foreground-0 = ${color.bd} +bar-capacity-foreground-1 = ${color.bd} +bar-capacity-foreground-2 = ${color.bd} +bar-capacity-foreground-3 = ${color.bm} +bar-capacity-foreground-4 = ${color.bm} +bar-capacity-foreground-5 = ${color.bm} +bar-capacity-foreground-6 = ${color.bm} +bar-capacity-foreground-7 = ${color.bn} +bar-capacity-foreground-8 = ${color.bn} +bar-capacity-fill-font = 2 + +bar-capacity-empty = ┉ +bar-capacity-empty-foreground = ${color.fg} +bar-capacity-empty-font = 2 + +[module/battery_bar_i] +type = internal/battery + +full-at = 99 +battery = BAT0 +adapter = ACAD + +poll-interval = 2 + +time-format = %H:%M + +format-charging = +format-charging-background = ${color.green} +format-charging-foreground = ${color.fg} +format-charging-padding = 1 + +format-discharging = +format-discharging-background = ${color.pink} +format-discharging-foreground = ${color.fg} +format-discharging-padding = 1 + +label-charging = %percentage%% +label-discharging = %percentage%% + +label-full =  +label-full-background = ${color.green} +label-full-foreground = ${color.fg} +label-full-padding = 1 + +ramp-capacity-0 =  +ramp-capacity-1 =  +ramp-capacity-2 =  +ramp-capacity-3 =  +ramp-capacity-4 =  + +animation-charging-0 =  +animation-charging-1 =  +animation-charging-2 =  +animation-charging-3 =  +animation-charging-4 =  +animation-charging-5 =  + +animation-charging-framerate = 750 + +;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ + +[module/cpu_bar] +type = internal/cpu + +interval = 0.5 + +format =