Update my Dotfiles to my newest

This commit is contained in:
TheCynicalLiger 2021-01-09 17:38:56 +00:00 committed by The-Repo-Club
parent b74ec1cf8f
commit 79b6a96641
No known key found for this signature in database
GPG Key ID: E30EC2FBFB05C44F
6885 changed files with 61549 additions and 448001 deletions

View File

@ -1,456 +0,0 @@
#!/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"

View File

@ -1,12 +0,0 @@
# 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

View File

@ -1,7 +0,0 @@
# GIMP colorrc
#
# This file holds a list of recently used colors.
(color-history)
# end of colorrc

View File

@ -1,15 +0,0 @@
# 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

View File

@ -1,40 +0,0 @@
# 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

File diff suppressed because one or more lines are too long

View File

@ -1,4 +0,0 @@
GIMP Gradient
Name: Custom
1
0 0.5 1 0 0 0 1 1 1 1 1 0 0 1 3

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,92 +0,0 @@
# 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

File diff suppressed because it is too large Load Diff

View File

@ -1,500 +0,0 @@
# 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

View File

@ -1,17 +0,0 @@
# 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

View File

@ -1,11 +0,0 @@
# 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

View File

@ -1,8 +0,0 @@
# 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

View File

@ -1,11 +0,0 @@
# 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

View File

@ -1,5 +0,0 @@
# GIMP gimp-color-picker-tool options
(foreground (color-rgb 0.87843143939971924 0.32156863808631897 0.49411767721176147))
# end of gimp-color-picker-tool options

View File

@ -1,10 +0,0 @@
# 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

View File

@ -1,4 +0,0 @@
# GIMP gimp-crop-tool options
# end of gimp-crop-tool options

View File

@ -1,10 +0,0 @@
# 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

View File

@ -1,4 +0,0 @@
# GIMP gimp-ellipse-select-tool options
# end of gimp-ellipse-select-tool options

View File

@ -1,10 +0,0 @@
# 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

View File

@ -1,4 +0,0 @@
# GIMP gimp-flip-tool options
# end of gimp-flip-tool options

View File

@ -1,5 +0,0 @@
# GIMP gimp-foreground-select-tool options
(foreground (color-rgb 0.87843143939971924 0.32156863808631897 0.49411767721176147))
# end of gimp-foreground-select-tool options

View File

@ -1,4 +0,0 @@
# GIMP gimp-fuzzy-select-tool options
# end of gimp-fuzzy-select-tool options

View File

@ -1,8 +0,0 @@
# 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

View File

@ -1,10 +0,0 @@
# 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

View File

@ -1,7 +0,0 @@
# 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

View File

@ -1,4 +0,0 @@
# GIMP gimp-measure-tool options
# end of gimp-measure-tool options

View File

@ -1,10 +0,0 @@
# 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

View File

@ -1,5 +0,0 @@
# GIMP gimp-operation-tool options
(foreground (color-rgb 0.87843143939971924 0.32156863808631897 0.49411767721176147))
# end of gimp-operation-tool options

View File

@ -1,11 +0,0 @@
# 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

View File

@ -1,11 +0,0 @@
# 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

View File

@ -1,11 +0,0 @@
# 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

View File

@ -1,4 +0,0 @@
# GIMP gimp-rect-select-tool options
# end of gimp-rect-select-tool options

View File

@ -1,4 +0,0 @@
# GIMP gimp-scale-tool options
# end of gimp-scale-tool options

View File

@ -1,11 +0,0 @@
# 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

View File

@ -1,7 +0,0 @@
# 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

View File

@ -1,10 +0,0 @@
# 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

View File

@ -1,185 +0,0 @@
# 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

View File

@ -1,4 +0,0 @@
# GIMP action-history
# end of action-history

View File

@ -1,7 +0,0 @@
# GIMP colorrc
#
# This file holds a list of recently used colors.
(color-history)
# end of colorrc

View File

@ -1,14 +0,0 @@
# 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

View File

@ -1,40 +0,0 @@
# 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

File diff suppressed because one or more lines are too long

View File

@ -1,4 +0,0 @@
# recently closed docks
# end of recently closed docks

View File

@ -1,6 +0,0 @@
# GIMP extensionrc
(GimpExtension "org.gimp.extension.goat-exercises"
(active yes))
# end of extensionrc

View File

@ -1,34 +0,0 @@
# 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

View File

@ -1,4 +0,0 @@
GIMP Gradient
Name: Custom
1
0 0.5 1 0 0 0 1 1 1 1 1 0 0 1 3

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +0,0 @@
# GIMP parasiterc
#
# This file will be entirely rewritten each time you exit.
# end of parasiterc

File diff suppressed because it is too large Load Diff

View File

@ -1,86 +0,0 @@
# 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

File diff suppressed because it is too large Load Diff

View File

@ -1,461 +0,0 @@
# 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

View File

@ -1,15 +0,0 @@
/* 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 */

View File

@ -1,10 +0,0 @@
# 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

View File

@ -1,4 +0,0 @@
# GIMP gimp-align-tool options
# end of gimp-align-tool options

View File

@ -1,4 +0,0 @@
# GIMP gimp-brightness-contrast-tool options
# end of gimp-brightness-contrast-tool options

View File

@ -1,7 +0,0 @@
# GIMP gimp-bucket-fill-tool options
(pattern "Pine")
(brush-size 51)
(brush-hardness 0.5)
# end of gimp-bucket-fill-tool options

View File

@ -1,4 +0,0 @@
# GIMP gimp-by-color-select-tool options
# end of gimp-by-color-select-tool options

View File

@ -1,4 +0,0 @@
# GIMP gimp-cage-tool options
# end of gimp-cage-tool options

View File

@ -1,10 +0,0 @@
# 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

View File

@ -1,4 +0,0 @@
# GIMP gimp-color-picker-tool options
# end of gimp-color-picker-tool options

View File

@ -1,9 +0,0 @@
# 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

View File

@ -1,4 +0,0 @@
# GIMP gimp-crop-tool options
# end of gimp-crop-tool options

View File

@ -1,4 +0,0 @@
# GIMP gimp-curves-tool options
# end of gimp-curves-tool options

View File

@ -1,9 +0,0 @@
# 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

View File

@ -1,4 +0,0 @@
# GIMP gimp-ellipse-select-tool options
# end of gimp-ellipse-select-tool options

View File

@ -1,9 +0,0 @@
# 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

View File

@ -1,4 +0,0 @@
# GIMP gimp-flip-tool options
# end of gimp-flip-tool options

View File

@ -1,4 +0,0 @@
# GIMP gimp-foreground-select-tool options
# end of gimp-foreground-select-tool options

View File

@ -1,4 +0,0 @@
# GIMP gimp-free-select-tool options
# end of gimp-free-select-tool options

View File

@ -1,4 +0,0 @@
# GIMP gimp-fuzzy-select-tool options
# end of gimp-fuzzy-select-tool options

View File

@ -1,4 +0,0 @@
# GIMP gimp-gegl-tool options
# end of gimp-gegl-tool options

View File

@ -1,7 +0,0 @@
# GIMP gimp-gradient-tool options
(gradient "FG to BG (RGB)")
(brush-size 51)
(brush-hardness 0.5)
# end of gimp-gradient-tool options

View File

@ -1,4 +0,0 @@
# GIMP gimp-handle-transform-tool options
# end of gimp-handle-transform-tool options

View File

@ -1,9 +0,0 @@
# 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

View File

@ -1,6 +0,0 @@
# GIMP gimp-ink-tool options
(brush-size 51)
(brush-hardness 0.5)
# end of gimp-ink-tool options

View File

@ -1,4 +0,0 @@
# GIMP gimp-iscissors-tool options
# end of gimp-iscissors-tool options

View File

@ -1,4 +0,0 @@
# GIMP gimp-levels-tool options
# end of gimp-levels-tool options

View File

@ -1,4 +0,0 @@
# GIMP gimp-measure-tool options
# end of gimp-measure-tool options

View File

@ -1,4 +0,0 @@
# GIMP gimp-move-tool options
# end of gimp-move-tool options

View File

@ -1,9 +0,0 @@
# 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

View File

@ -1,4 +0,0 @@
# GIMP gimp-offset-tool options
# end of gimp-offset-tool options

View File

@ -1,4 +0,0 @@
# GIMP gimp-operation-tool options
# end of gimp-operation-tool options

View File

@ -1,10 +0,0 @@
# 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

View File

@ -1,10 +0,0 @@
# 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

View File

@ -1,10 +0,0 @@
# 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

View File

@ -1,4 +0,0 @@
# GIMP gimp-perspective-tool options
# end of gimp-perspective-tool options

View File

@ -1,4 +0,0 @@
# GIMP gimp-rect-select-tool options
# end of gimp-rect-select-tool options

View File

@ -1,4 +0,0 @@
# GIMP gimp-rotate-tool options
# end of gimp-rotate-tool options

View File

@ -1,4 +0,0 @@
# GIMP gimp-scale-tool options
# end of gimp-scale-tool options

View File

@ -1,4 +0,0 @@
# GIMP gimp-shear-tool options
# end of gimp-shear-tool options

View File

@ -1,10 +0,0 @@
# 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

View File

@ -1,6 +0,0 @@
# GIMP gimp-text-tool options
(palette "Colour History")
(font "Sans-serif")
# end of gimp-text-tool options

View File

@ -1,4 +0,0 @@
# GIMP gimp-threshold-tool options
# end of gimp-threshold-tool options

View File

@ -1,4 +0,0 @@
# GIMP gimp-transform-3d-tool options
# end of gimp-transform-3d-tool options

View File

@ -1,4 +0,0 @@
# GIMP gimp-unified-transform-tool options
# end of gimp-unified-transform-tool options

View File

@ -1,9 +0,0 @@
# 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

Some files were not shown because too many files have changed in this diff Show More