add HEAPS of crap, refractor, add makefile

This commit is contained in:
fosslinux 2019-02-02 16:11:02 +11:00
parent e296480570
commit a6ee47989c
284 changed files with 38749 additions and 4 deletions

429
Makefile Normal file
View File

@ -0,0 +1,429 @@
# =======================
# = STOW COMMANDS =
# =======================
STOW_INSTALL = stow -t ~ -S
STOW_REMOVE = stow -t ~ -D
STOW_UPDATE = stow -t ~ -R
# =============================
# = PER-PACKAGE INSTALL =
# =============================
bash-install:
$(STOW_INSTALL) bash
burrow-install:
$(STOW_INSTALL) burrow
byobu-install:
$(STOW_INSTALL) byobu
fontconfig-install:
$(STOW_INSTALL) fontconfig
fonts-install: fontconfig-install
$(STOW_INSTALL) fonts
gimp-install:
$(STOW_INSTALL) gimp
git-install:
$(STOW_INSTALL) git
gnupg-install:
$(STOW_INSTALL) gnupg
libreoffice-install:
$(STOW_INSTALL) libreoffice
links2-install:
$(STOW_INSTALL) links2
mixxx-install:
$(STOW_INSTALL) mixxx
node-install:
$(STOW_INSTALL) node
npm-install: node-install
$(STOW_INSTALL) npm
oh-my-zsh-install: zsh-install
$(STOW_INSTALL) oh-my-zsh
pavucontrol-install:
$(STOW_INSTALL) pavucontrol
smplayer-install:
$(STOW_INSTALL) smplayer
ssh-install:
$(STOW_INSTALL) ssh
subversion-install:
$(STOW_INSTALL) subversion
thunar-install:
$(STOW_INSTALL) thunar
tig-install: git-install
$(STOW_INSTALL) tig
tmux-install:
$(STOW_INSTALL) tmux
torbrowser-install:
$(STOW_INSTALL) torbrowser
vim-install:
$(STOW_INSTALL) vim
vlc-install:
$(STOW_INSTALL) vlc
vscode-install:
$(STOW_INSTALL) vscode
w3m-install:
$(STOW_INSTALL) w3m
weechat-install:
$(STOW_INSTALL) weechat
wget-install:
$(STOW_INSTALL) wget
xarchiver-install:
$(STOW_INSTALL) xarchiver
xfce4-install:
$(STOW_INSTALL) xfce4
youtube-dl-install:
$(STOW_INSTALL) youtube-dl
zsh-install:
$(STOW_INSTALL) zsh
# ============================
# = PER-PACKAGE REMOVE =
# ============================
bash-remove:
$(STOW_REMOVE) bash
burrow-remove:
$(STOW_REMOVE) burrow
byobu-remove:
$(STOW_REMOVE) byobu
fontconfig-remove: fonts-remove
$(STOW_REMOVE) fontconfig
fonts-remove:
$(STOW_REMOVE) fonts
gimp-remove:
$(STOW_REMOVE) gimp
git-remove: tig-remove
$(STOW_REMOVE) git
gnupg-remove:
$(STOW_REMOVE) gnupg
libreoffice-remove:
$(STOW_REMOVE) libreoffice
LICENSE-remove:
$(STOW_REMOVE) LICENSE
links2-remove:
$(STOW_REMOVE) links2
Makefile-remove:
$(STOW_REMOVE) Makefile
mixxx-remove:
$(STOW_REMOVE) mixxx
node-remove: npm-remove
$(STOW_REMOVE) node
npm-remove:
$(STOW_REMOVE) npm
oh-my-zsh-remove:
$(STOW_REMOVE) oh-my-zsh
pavucontrol-remove:
$(STOW_REMOVE) pavucontrol
smplayer-remove:
$(STOW_REMOVE) smplayer
ssh-remove:
$(STOW_REMOVE) ssh
subversion-remove:
$(STOW_REMOVE) subversion
thunar-remove:
$(STOW_REMOVE) thunar
tig-remove:
$(STOW_REMOVE) tig
tmux-remove:
$(STOW_REMOVE) tmux
torbrowser-remove:
$(STOW_REMOVE) torbrowser
vim-remove:
$(STOW_REMOVE) vim
vlc-remove:
$(STOW_REMOVE) vlc
vscode-remove:
$(STOW_REMOVE) vscode
w3m-remove:
$(STOW_REMOVE) w3m
weechat-remove:
$(STOW_REMOVE) weechat
wget-remove:
$(STOW_REMOVE) wget
xarchiver-remove:
$(STOW_REMOVE) xarchiver
xfce4-remove:
$(STOW_REMOVE) xfce4
youtube-dl-remove:
$(STOW_REMOVE) youtube-dl
zsh-remove: oh-my-zsh-remove
$(STOW_REMOVE) zsh
# ============================
# = PER-PACKAGE UPDATE =
# ============================
bash-update:
$(STOW_UPDATE) bash
burrow-update:
$(STOW_UPDATE) burrow
byobu-update:
$(STOW_UPDATE) byobu
fontconfig-update:
$(STOW_UPDATE) fontconfig
fonts-update:
$(STOW_UPDATE) fonts
gimp-update:
$(STOW_UPDATE) gimp
git-update:
$(STOW_UPDATE) git
gnupg-update:
$(STOW_UPDATE) gnupg
libreoffice-update:
$(STOW_UPDATE) libreoffice
LICENSE-update:
$(STOW_UPDATE) LICENSE
links2-update:
$(STOW_UPDATE) links2
Makefile-update:
$(STOW_UPDATE) Makefile
mixxx-update:
$(STOW_UPDATE) mixxx
node-update:
$(STOW_UPDATE) node
npm-update:
$(STOW_UPDATE) npm
oh-my-zsh-update:
$(STOW_UPDATE) oh-my-zsh
pavucontrol-update:
$(STOW_UPDATE) pavucontrol
smplayer-update:
$(STOW_UPDATE) smplayer
ssh-update:
$(STOW_UPDATE) ssh
subversion-update:
$(STOW_UPDATE) subversion
thunar-update:
$(STOW_UPDATE) thunar
tig-update:
$(STOW_UPDATE) tig
tmux-update:
$(STOW_UPDATE) tmux
torbrowser-update:
$(STOW_UPDATE) torbrowser
vim-update:
$(STOW_UPDATE) vim
vlc-update:
$(STOW_UPDATE) vlc
vscode-update:
$(STOW_UPDATE) vscode
w3m-update:
$(STOW_UPDATE) w3m
weechat-update:
$(STOW_UPDATE) weechat
wget-update:
$(STOW_UPDATE) wget
xarchiver-update:
$(STOW_UPDATE) xarchiver
xfce4-update:
$(STOW_UPDATE) xfce4
youtube-dl-update:
$(STOW_UPDATE) youtube-dl
zsh-update:
$(STOW_UPDATE) zsh
# =======================
# = INSTALL TYPES =
# =======================
install-all: bash-install burrow-install byobu-install fontconfig-install fonts-install gimp-install git-install gnupg-install libreoffice-install links2-install mixxx-install node-install npm-install oh-my-zsh-install pavucontrol-install smplayer-install ssh-install subversion-install thunar-install tig-install tmux-install torbrowser-install vim-install vlc-install vscode-install w3m-install weechat-install wget-install xarchiver-install xfce4-install youtube-dl-install zsh-install
install-base: bash-install fontconfig-install fonts-install oh-my-zsh-install ssh-install tmux-install vim-install zsh-install
install-home: install-base burrow-install gimp-install git-install gnupg-install libreoffice-install node-install npm-install pavucontrol-install torbrowser-install thunar-install tig-install vlc-install wget-install xarchiver-install youtube-dl-install
install-pubnix: install-base burrow-install gnupg-install wget-install
install-team: install-pubnix youtube-dl-install
install-weechat: install-base gnupg-install weechat-install
install-streaming: install-base mixxx-install vlc-install youtube-dl-install
# =================
# = GENERAL =
# =================
remove: bash-remove burrow-install byobu-install fontconfig-install fonts-install gimp-install git-install gnupg-install libreoffice-install links2-install mixxx-install node-install npm-install oh-my-zsh-install pavucontrol-install smplayer-install ssh-install subversion-install thunar-install tig-install tmux-install torbrowser-install vim-install vlc-install vscode-install w3m-install weechat-install wget-install xarchiver-install xfce4-install youtube-dl-install zsh-install
update: bash-remove burrow-install byobu-install fontconfig-install fonts-install gimp-install git-install gnupg-install libreoffice-install links2-install mixxx-install node-install npm-install oh-my-zsh-install pavucontrol-install smplayer-install ssh-install subversion-install thunar-install tig-install tmux-install torbrowser-install vim-install vlc-install vscode-install w3m-install weechat-install wget-install xarchiver-install xfce4-install youtube-dl-install zsh-install
all: update
install:
printf "Please choose an install type:\\n"
printf " - install-all: install everything\\n"
printf " - install-base: just install base everyday use packages\\n"
printf " - install-home: install stuff that i use on\\n"
printf " home machines + base\\n"
printf " - install-pubnix: install stuff that i use on pubnixes + base\\n"
printf " - install-team: install stuff i specifically use on\\n"
printf " ~team + pubnix\\n"
printf " - install-weechat: install stuff needed for weechat + base\\n"
printf " - install-streaming: install stuff for streaming + base\\n
printf " (rarely used)\\n"
help:
printf "==========================\\n"
printf "= GENERAL COMMANDS =\\n"
printf "==========================\\n"
printf "\\n"
printf "install: shows help for install types\\n"
printf "remove: removes dotfiles from system\\n"
printf "update: updates dotfiles (normally run after git pull\\n"
printf "all (plain make with no arguments): link to 'update'\\n"
printf "\\n"
printf "=======================\\n"
printf "= INSTALL TYPES =\\n"
printf "=======================\\n"
printf "\\n"
printf "Install types:\\n"
printf " - install-all: install everything\\n"
printf " - install-base: just install base everyday use packages\\n"
printf " - install-home: install stuff that i use on\\n"
printf " home machines + base\\n"
printf " - install-pubnix: install stuff that i use on pubnixes + base\\n"
printf " - install-team: install stuff i specifically use on\\n"
printf " ~team + pubnix\\n"
printf " - install-weechat: install stuff needed for weechat + base\\n"
printf " - install-streaming: install stuff for streaming + base\\n
printf " (rarely used)\\n"
printf "\\n"
printf "=============================\\n"
printf "= PER-PACKAGE TARGETS =\\n"
printf "=============================\\n"
printf "\\n"
printf "Each package has a per-package target for install, remove and\\n"
printf "update. These targets allow cherry-picking for adding and\\n"
printf "removing dotfiles. These are most useful when:\\n"
printf " install) adding a new package after install, however this can\\n"
printf " normally be done by running the same target you\\n"
printf " installed with if it was added to that target.\\n"
printf " remove) deciding a package is no longer needed. if a package\\n"
printf " is removed from its install target, re-running the\\n"
printf " install target with not remove it, this must be done\\n"
printf " manually.\\n"
printf " update) rarely used. normally only used if there is\\n"
printf " a conflict, or you get in a broken scenario.\\n"
printf " please note that this under the hood reinstalls the\\n"
printf " package, so you can use this to attempt to fix\\n"
printf " broken stuff.\\n"
printf "\\n"
printf "===================\\n"
printf "= LICENSING =\\n"
printf "===================\\n"
printf "Copyright (c) 2018 fosslinux\\n"
printf "\\n"
printf "Permission is hereby granted, free of charge, to any person obtaining a copy\\n"
printf "of this software and associated documentation files (the "Software"), to deal\\n"
printf "in the Software without restriction, including without limitation the rights\\n"
printf "to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\\n"
printf "copies of the Software, and to permit persons to whom the Software is\\n"
printf "furnished to do so, subject to the following conditions:\\n"
printf "\\n"
printf "The above copyright notice and this permission notice shall be included in all\\n"
printf "copies or substantial portions of the Software.\\n"
printf "\\n"
printf "THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\\n"
printf "IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\\n"
printf "FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\\n"
printf "AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\\n"
printf "LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\\n"
printf "OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\\n"
printf "SOFTWARE.\\n"

View File

@ -0,0 +1,8 @@
# GIMP action-history
(history-item "file-save-as" 0)
(history-item "file-export-as" 1)
(history-item "tools-crop" 0)
(history-item "file-quit" 1)
# end of action-history

View File

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

View File

@ -0,0 +1,14 @@
# GIMP user context
(tool "gimp-crop-tool")
(paint-info "gimp-paintbrush")
(brush "2. Hardness 050")
(dynamics "Dynamics Off")
(mybrush "Standard")
(pattern "Pine")
(gradient "FG to BG (RGB)")
(palette "Color History")
(font "Sans-serif")
(tool-preset "Core Pointer")
# end of user context

View File

@ -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-primary-alt" "tools-size-decrease")
(map "scroll-down-alt" "tools-opacity-decrease")
(map "scroll-down-shift-primary-alt" "tools-spacing-decrease")
(map "scroll-up-shift-primary-alt" "tools-spacing-increase")
(map "scroll-up-primary-alt" "tools-size-increase")
(map "scroll-up-shift-primary" "tools-aspect-increase")
(map "scroll-up-alt" "tools-opacity-increase")
(map "scroll-up-shift-alt" "tools-angle-increase")
(map "scroll-down-shift-alt" "tools-angle-decrease")
(map "scroll-down-shift-primary" "tools-aspect-decrease")))
(GimpControllerInfo "Main Keyboard"
(icon-name "gimp-controller-keyboard")
(enabled yes)
(debug-events no)
(controller "GimpControllerKeyboard")
(mapping
(map "cursor-left-alt" "tools-size-decrease")
(map "cursor-right-shift" "view-scroll-page-right")
(map "cursor-left-shift" "view-scroll-page-left")
(map "cursor-right-alt" "tools-size-increase")
(map "cursor-up-shift" "view-scroll-page-up")
(map "cursor-up-primary" "view-scroll-top-border")
(map "cursor-up-alt" "tools-size-increase-skip")
(map "cursor-right-primary" "view-scroll-right-border")
(map "cursor-down-shift" "view-scroll-page-down")
(map "cursor-down-primary" "view-scroll-bottom-border")
(map "cursor-left-primary" "view-scroll-left-border")
(map "cursor-down-alt" "tools-size-decrease-skip")))
# end of controllerrc

View File

@ -0,0 +1,156 @@
# GIMP devicerc
(GimpDeviceInfo "Core Pointer"
(icon-name "gimp-cursor")
(name "Core Pointer")
(tool-options "GimpCropOptions"
(aspect-denominator 477.000000)
(aspect-numerator 468.000000)
(tool "gimp-crop-tool"))
(use-fg-bg 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)
(n-points 17)
(points 34 0.000000 0.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 1.000000 1.000000)
(n-samples 256)
(samples 256 0.000000 0.003922 0.007843 0.011765 0.015686 0.019608 0.023529 0.027451 0.031373 0.035294 0.039216 0.043137 0.047059 0.050980 0.054902 0.058824 0.062745 0.066667 0.070588 0.074510 0.078431 0.082353 0.086275 0.090196 0.094118 0.098039 0.101961 0.105882 0.109804 0.113725 0.117647 0.121569 0.125490 0.129412 0.133333 0.137255 0.141176 0.145098 0.149020 0.152941 0.156863 0.160784 0.164706 0.168627 0.172549 0.176471 0.180392 0.184314 0.188235 0.192157 0.196078 0.200000 0.203922 0.207843 0.211765 0.215686 0.219608 0.223529 0.227451 0.231373 0.235294 0.239216 0.243137 0.247059 0.250980 0.254902 0.258824 0.262745 0.266667 0.270588 0.274510 0.278431 0.282353 0.286275 0.290196 0.294118 0.298039 0.301961 0.305882 0.309804 0.313725 0.317647 0.321569 0.325490 0.329412 0.333333 0.337255 0.341176 0.345098 0.349020 0.352941 0.356863 0.360784 0.364706 0.368627 0.372549 0.376471 0.380392 0.384314 0.388235 0.392157 0.396078 0.400000 0.403922 0.407843 0.411765 0.415686 0.419608 0.423529 0.427451 0.431373 0.435294 0.439216 0.443137 0.447059 0.450980 0.454902 0.458824 0.462745 0.466667 0.470588 0.474510 0.478431 0.482353 0.486275 0.490196 0.494118 0.498039 0.501961 0.505882 0.509804 0.513725 0.517647 0.521569 0.525490 0.529412 0.533333 0.537255 0.541176 0.545098 0.549020 0.552941 0.556863 0.560784 0.564706 0.568627 0.572549 0.576471 0.580392 0.584314 0.588235 0.592157 0.596078 0.600000 0.603922 0.607843 0.611765 0.615686 0.619608 0.623529 0.627451 0.631373 0.635294 0.639216 0.643137 0.647059 0.650980 0.654902 0.658824 0.662745 0.666667 0.670588 0.674510 0.678431 0.682353 0.686275 0.690196 0.694118 0.698039 0.701961 0.705882 0.709804 0.713725 0.717647 0.721569 0.725490 0.729412 0.733333 0.737255 0.741176 0.745098 0.749020 0.752941 0.756863 0.760784 0.764706 0.768627 0.772549 0.776471 0.780392 0.784314 0.788235 0.792157 0.796078 0.800000 0.803922 0.807843 0.811765 0.815686 0.819608 0.823529 0.827451 0.831373 0.835294 0.839216 0.843137 0.847059 0.850980 0.854902 0.858824 0.862745 0.866667 0.870588 0.874510 0.878431 0.882353 0.886275 0.890196 0.894118 0.898039 0.901961 0.905882 0.909804 0.913725 0.917647 0.921569 0.925490 0.929412 0.933333 0.937255 0.941176 0.945098 0.949020 0.952941 0.956863 0.960784 0.964706 0.968627 0.972549 0.976471 0.980392 0.984314 0.988235 0.992157 0.996078 1.000000)))
(GimpDeviceInfo "DLL07A0:01 044E:120B"
(name "DLL07A0:01 044E:120B")
(tool-options "GimpCropOptions"
(tool "gimp-crop-tool"))
(use-fg-bg 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)
(n-points 17)
(points 34 0.000000 0.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 1.000000 1.000000)
(n-samples 256)
(samples 256 0.000000 0.003922 0.007843 0.011765 0.015686 0.019608 0.023529 0.027451 0.031373 0.035294 0.039216 0.043137 0.047059 0.050980 0.054902 0.058824 0.062745 0.066667 0.070588 0.074510 0.078431 0.082353 0.086275 0.090196 0.094118 0.098039 0.101961 0.105882 0.109804 0.113725 0.117647 0.121569 0.125490 0.129412 0.133333 0.137255 0.141176 0.145098 0.149020 0.152941 0.156863 0.160784 0.164706 0.168627 0.172549 0.176471 0.180392 0.184314 0.188235 0.192157 0.196078 0.200000 0.203922 0.207843 0.211765 0.215686 0.219608 0.223529 0.227451 0.231373 0.235294 0.239216 0.243137 0.247059 0.250980 0.254902 0.258824 0.262745 0.266667 0.270588 0.274510 0.278431 0.282353 0.286275 0.290196 0.294118 0.298039 0.301961 0.305882 0.309804 0.313725 0.317647 0.321569 0.325490 0.329412 0.333333 0.337255 0.341176 0.345098 0.349020 0.352941 0.356863 0.360784 0.364706 0.368627 0.372549 0.376471 0.380392 0.384314 0.388235 0.392157 0.396078 0.400000 0.403922 0.407843 0.411765 0.415686 0.419608 0.423529 0.427451 0.431373 0.435294 0.439216 0.443137 0.447059 0.450980 0.454902 0.458824 0.462745 0.466667 0.470588 0.474510 0.478431 0.482353 0.486275 0.490196 0.494118 0.498039 0.501961 0.505882 0.509804 0.513725 0.517647 0.521569 0.525490 0.529412 0.533333 0.537255 0.541176 0.545098 0.549020 0.552941 0.556863 0.560784 0.564706 0.568627 0.572549 0.576471 0.580392 0.584314 0.588235 0.592157 0.596078 0.600000 0.603922 0.607843 0.611765 0.615686 0.619608 0.623529 0.627451 0.631373 0.635294 0.639216 0.643137 0.647059 0.650980 0.654902 0.658824 0.662745 0.666667 0.670588 0.674510 0.678431 0.682353 0.686275 0.690196 0.694118 0.698039 0.701961 0.705882 0.709804 0.713725 0.717647 0.721569 0.725490 0.729412 0.733333 0.737255 0.741176 0.745098 0.749020 0.752941 0.756863 0.760784 0.764706 0.768627 0.772549 0.776471 0.780392 0.784314 0.788235 0.792157 0.796078 0.800000 0.803922 0.807843 0.811765 0.815686 0.819608 0.823529 0.827451 0.831373 0.835294 0.839216 0.843137 0.847059 0.850980 0.854902 0.858824 0.862745 0.866667 0.870588 0.874510 0.878431 0.882353 0.886275 0.890196 0.894118 0.898039 0.901961 0.905882 0.909804 0.913725 0.917647 0.921569 0.925490 0.929412 0.933333 0.937255 0.941176 0.945098 0.949020 0.952941 0.956863 0.960784 0.964706 0.968627 0.972549 0.976471 0.980392 0.984314 0.988235 0.992157 0.996078 1.000000)))
(GimpDeviceInfo "DualPoint Stick"
(name "DualPoint Stick")
(tool-options "GimpCropOptions"
(tool "gimp-crop-tool"))
(use-fg-bg 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)
(n-points 17)
(points 34 0.000000 0.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 1.000000 1.000000)
(n-samples 256)
(samples 256 0.000000 0.003922 0.007843 0.011765 0.015686 0.019608 0.023529 0.027451 0.031373 0.035294 0.039216 0.043137 0.047059 0.050980 0.054902 0.058824 0.062745 0.066667 0.070588 0.074510 0.078431 0.082353 0.086275 0.090196 0.094118 0.098039 0.101961 0.105882 0.109804 0.113725 0.117647 0.121569 0.125490 0.129412 0.133333 0.137255 0.141176 0.145098 0.149020 0.152941 0.156863 0.160784 0.164706 0.168627 0.172549 0.176471 0.180392 0.184314 0.188235 0.192157 0.196078 0.200000 0.203922 0.207843 0.211765 0.215686 0.219608 0.223529 0.227451 0.231373 0.235294 0.239216 0.243137 0.247059 0.250980 0.254902 0.258824 0.262745 0.266667 0.270588 0.274510 0.278431 0.282353 0.286275 0.290196 0.294118 0.298039 0.301961 0.305882 0.309804 0.313725 0.317647 0.321569 0.325490 0.329412 0.333333 0.337255 0.341176 0.345098 0.349020 0.352941 0.356863 0.360784 0.364706 0.368627 0.372549 0.376471 0.380392 0.384314 0.388235 0.392157 0.396078 0.400000 0.403922 0.407843 0.411765 0.415686 0.419608 0.423529 0.427451 0.431373 0.435294 0.439216 0.443137 0.447059 0.450980 0.454902 0.458824 0.462745 0.466667 0.470588 0.474510 0.478431 0.482353 0.486275 0.490196 0.494118 0.498039 0.501961 0.505882 0.509804 0.513725 0.517647 0.521569 0.525490 0.529412 0.533333 0.537255 0.541176 0.545098 0.549020 0.552941 0.556863 0.560784 0.564706 0.568627 0.572549 0.576471 0.580392 0.584314 0.588235 0.592157 0.596078 0.600000 0.603922 0.607843 0.611765 0.615686 0.619608 0.623529 0.627451 0.631373 0.635294 0.639216 0.643137 0.647059 0.650980 0.654902 0.658824 0.662745 0.666667 0.670588 0.674510 0.678431 0.682353 0.686275 0.690196 0.694118 0.698039 0.701961 0.705882 0.709804 0.713725 0.717647 0.721569 0.725490 0.729412 0.733333 0.737255 0.741176 0.745098 0.749020 0.752941 0.756863 0.760784 0.764706 0.768627 0.772549 0.776471 0.780392 0.784314 0.788235 0.792157 0.796078 0.800000 0.803922 0.807843 0.811765 0.815686 0.819608 0.823529 0.827451 0.831373 0.835294 0.839216 0.843137 0.847059 0.850980 0.854902 0.858824 0.862745 0.866667 0.870588 0.874510 0.878431 0.882353 0.886275 0.890196 0.894118 0.898039 0.901961 0.905882 0.909804 0.913725 0.917647 0.921569 0.925490 0.929412 0.933333 0.937255 0.941176 0.945098 0.949020 0.952941 0.956863 0.960784 0.964706 0.968627 0.972549 0.976471 0.980392 0.984314 0.988235 0.992157 0.996078 1.000000)))
(GimpDeviceInfo "ELAN Touchscreen"
(name "ELAN Touchscreen")
(tool-options "GimpCropOptions"
(tool "gimp-crop-tool"))
(use-fg-bg 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)
(n-points 17)
(points 34 0.000000 0.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 1.000000 1.000000)
(n-samples 256)
(samples 256 0.000000 0.003922 0.007843 0.011765 0.015686 0.019608 0.023529 0.027451 0.031373 0.035294 0.039216 0.043137 0.047059 0.050980 0.054902 0.058824 0.062745 0.066667 0.070588 0.074510 0.078431 0.082353 0.086275 0.090196 0.094118 0.098039 0.101961 0.105882 0.109804 0.113725 0.117647 0.121569 0.125490 0.129412 0.133333 0.137255 0.141176 0.145098 0.149020 0.152941 0.156863 0.160784 0.164706 0.168627 0.172549 0.176471 0.180392 0.184314 0.188235 0.192157 0.196078 0.200000 0.203922 0.207843 0.211765 0.215686 0.219608 0.223529 0.227451 0.231373 0.235294 0.239216 0.243137 0.247059 0.250980 0.254902 0.258824 0.262745 0.266667 0.270588 0.274510 0.278431 0.282353 0.286275 0.290196 0.294118 0.298039 0.301961 0.305882 0.309804 0.313725 0.317647 0.321569 0.325490 0.329412 0.333333 0.337255 0.341176 0.345098 0.349020 0.352941 0.356863 0.360784 0.364706 0.368627 0.372549 0.376471 0.380392 0.384314 0.388235 0.392157 0.396078 0.400000 0.403922 0.407843 0.411765 0.415686 0.419608 0.423529 0.427451 0.431373 0.435294 0.439216 0.443137 0.447059 0.450980 0.454902 0.458824 0.462745 0.466667 0.470588 0.474510 0.478431 0.482353 0.486275 0.490196 0.494118 0.498039 0.501961 0.505882 0.509804 0.513725 0.517647 0.521569 0.525490 0.529412 0.533333 0.537255 0.541176 0.545098 0.549020 0.552941 0.556863 0.560784 0.564706 0.568627 0.572549 0.576471 0.580392 0.584314 0.588235 0.592157 0.596078 0.600000 0.603922 0.607843 0.611765 0.615686 0.619608 0.623529 0.627451 0.631373 0.635294 0.639216 0.643137 0.647059 0.650980 0.654902 0.658824 0.662745 0.666667 0.670588 0.674510 0.678431 0.682353 0.686275 0.690196 0.694118 0.698039 0.701961 0.705882 0.709804 0.713725 0.717647 0.721569 0.725490 0.729412 0.733333 0.737255 0.741176 0.745098 0.749020 0.752941 0.756863 0.760784 0.764706 0.768627 0.772549 0.776471 0.780392 0.784314 0.788235 0.792157 0.796078 0.800000 0.803922 0.807843 0.811765 0.815686 0.819608 0.823529 0.827451 0.831373 0.835294 0.839216 0.843137 0.847059 0.850980 0.854902 0.858824 0.862745 0.866667 0.870588 0.874510 0.878431 0.882353 0.886275 0.890196 0.894118 0.898039 0.901961 0.905882 0.909804 0.913725 0.917647 0.921569 0.925490 0.929412 0.933333 0.937255 0.941176 0.945098 0.949020 0.952941 0.956863 0.960784 0.964706 0.968627 0.972549 0.976471 0.980392 0.984314 0.988235 0.992157 0.996078 1.000000)))
(GimpDeviceInfo "Logitech USB Receiver Consumer Control"
(name "Logitech USB Receiver Consumer Control")
(tool-options "GimpCropOptions"
(tool "gimp-crop-tool"))
(use-fg-bg 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)
(n-points 17)
(points 34 0.000000 0.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 1.000000 1.000000)
(n-samples 256)
(samples 256 0.000000 0.003922 0.007843 0.011765 0.015686 0.019608 0.023529 0.027451 0.031373 0.035294 0.039216 0.043137 0.047059 0.050980 0.054902 0.058824 0.062745 0.066667 0.070588 0.074510 0.078431 0.082353 0.086275 0.090196 0.094118 0.098039 0.101961 0.105882 0.109804 0.113725 0.117647 0.121569 0.125490 0.129412 0.133333 0.137255 0.141176 0.145098 0.149020 0.152941 0.156863 0.160784 0.164706 0.168627 0.172549 0.176471 0.180392 0.184314 0.188235 0.192157 0.196078 0.200000 0.203922 0.207843 0.211765 0.215686 0.219608 0.223529 0.227451 0.231373 0.235294 0.239216 0.243137 0.247059 0.250980 0.254902 0.258824 0.262745 0.266667 0.270588 0.274510 0.278431 0.282353 0.286275 0.290196 0.294118 0.298039 0.301961 0.305882 0.309804 0.313725 0.317647 0.321569 0.325490 0.329412 0.333333 0.337255 0.341176 0.345098 0.349020 0.352941 0.356863 0.360784 0.364706 0.368627 0.372549 0.376471 0.380392 0.384314 0.388235 0.392157 0.396078 0.400000 0.403922 0.407843 0.411765 0.415686 0.419608 0.423529 0.427451 0.431373 0.435294 0.439216 0.443137 0.447059 0.450980 0.454902 0.458824 0.462745 0.466667 0.470588 0.474510 0.478431 0.482353 0.486275 0.490196 0.494118 0.498039 0.501961 0.505882 0.509804 0.513725 0.517647 0.521569 0.525490 0.529412 0.533333 0.537255 0.541176 0.545098 0.549020 0.552941 0.556863 0.560784 0.564706 0.568627 0.572549 0.576471 0.580392 0.584314 0.588235 0.592157 0.596078 0.600000 0.603922 0.607843 0.611765 0.615686 0.619608 0.623529 0.627451 0.631373 0.635294 0.639216 0.643137 0.647059 0.650980 0.654902 0.658824 0.662745 0.666667 0.670588 0.674510 0.678431 0.682353 0.686275 0.690196 0.694118 0.698039 0.701961 0.705882 0.709804 0.713725 0.717647 0.721569 0.725490 0.729412 0.733333 0.737255 0.741176 0.745098 0.749020 0.752941 0.756863 0.760784 0.764706 0.768627 0.772549 0.776471 0.780392 0.784314 0.788235 0.792157 0.796078 0.800000 0.803922 0.807843 0.811765 0.815686 0.819608 0.823529 0.827451 0.831373 0.835294 0.839216 0.843137 0.847059 0.850980 0.854902 0.858824 0.862745 0.866667 0.870588 0.874510 0.878431 0.882353 0.886275 0.890196 0.894118 0.898039 0.901961 0.905882 0.909804 0.913725 0.917647 0.921569 0.925490 0.929412 0.933333 0.937255 0.941176 0.945098 0.949020 0.952941 0.956863 0.960784 0.964706 0.968627 0.972549 0.976471 0.980392 0.984314 0.988235 0.992157 0.996078 1.000000)))
(GimpDeviceInfo "Logitech USB Receiver Mouse"
(icon-name "gimp-cursor")
(name "Logitech USB Receiver Mouse")
(tool-options "GimpCropOptions"
(tool "gimp-crop-tool"))
(use-fg-bg 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)
(n-points 17)
(points 34 0.000000 0.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 1.000000 1.000000)
(n-samples 256)
(samples 256 0.000000 0.003922 0.007843 0.011765 0.015686 0.019608 0.023529 0.027451 0.031373 0.035294 0.039216 0.043137 0.047059 0.050980 0.054902 0.058824 0.062745 0.066667 0.070588 0.074510 0.078431 0.082353 0.086275 0.090196 0.094118 0.098039 0.101961 0.105882 0.109804 0.113725 0.117647 0.121569 0.125490 0.129412 0.133333 0.137255 0.141176 0.145098 0.149020 0.152941 0.156863 0.160784 0.164706 0.168627 0.172549 0.176471 0.180392 0.184314 0.188235 0.192157 0.196078 0.200000 0.203922 0.207843 0.211765 0.215686 0.219608 0.223529 0.227451 0.231373 0.235294 0.239216 0.243137 0.247059 0.250980 0.254902 0.258824 0.262745 0.266667 0.270588 0.274510 0.278431 0.282353 0.286275 0.290196 0.294118 0.298039 0.301961 0.305882 0.309804 0.313725 0.317647 0.321569 0.325490 0.329412 0.333333 0.337255 0.341176 0.345098 0.349020 0.352941 0.356863 0.360784 0.364706 0.368627 0.372549 0.376471 0.380392 0.384314 0.388235 0.392157 0.396078 0.400000 0.403922 0.407843 0.411765 0.415686 0.419608 0.423529 0.427451 0.431373 0.435294 0.439216 0.443137 0.447059 0.450980 0.454902 0.458824 0.462745 0.466667 0.470588 0.474510 0.478431 0.482353 0.486275 0.490196 0.494118 0.498039 0.501961 0.505882 0.509804 0.513725 0.517647 0.521569 0.525490 0.529412 0.533333 0.537255 0.541176 0.545098 0.549020 0.552941 0.556863 0.560784 0.564706 0.568627 0.572549 0.576471 0.580392 0.584314 0.588235 0.592157 0.596078 0.600000 0.603922 0.607843 0.611765 0.615686 0.619608 0.623529 0.627451 0.631373 0.635294 0.639216 0.643137 0.647059 0.650980 0.654902 0.658824 0.662745 0.666667 0.670588 0.674510 0.678431 0.682353 0.686275 0.690196 0.694118 0.698039 0.701961 0.705882 0.709804 0.713725 0.717647 0.721569 0.725490 0.729412 0.733333 0.737255 0.741176 0.745098 0.749020 0.752941 0.756863 0.760784 0.764706 0.768627 0.772549 0.776471 0.780392 0.784314 0.788235 0.792157 0.796078 0.800000 0.803922 0.807843 0.811765 0.815686 0.819608 0.823529 0.827451 0.831373 0.835294 0.839216 0.843137 0.847059 0.850980 0.854902 0.858824 0.862745 0.866667 0.870588 0.874510 0.878431 0.882353 0.886275 0.890196 0.894118 0.898039 0.901961 0.905882 0.909804 0.913725 0.917647 0.921569 0.925490 0.929412 0.933333 0.937255 0.941176 0.945098 0.949020 0.952941 0.956863 0.960784 0.964706 0.968627 0.972549 0.976471 0.980392 0.984314 0.988235 0.992157 0.996078 1.000000)))
(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-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)
(n-points 17)
(points 34 0.000000 0.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 1.000000 1.000000)
(n-samples 256)
(samples 256 0.000000 0.003922 0.007843 0.011765 0.015686 0.019608 0.023529 0.027451 0.031373 0.035294 0.039216 0.043137 0.047059 0.050980 0.054902 0.058824 0.062745 0.066667 0.070588 0.074510 0.078431 0.082353 0.086275 0.090196 0.094118 0.098039 0.101961 0.105882 0.109804 0.113725 0.117647 0.121569 0.125490 0.129412 0.133333 0.137255 0.141176 0.145098 0.149020 0.152941 0.156863 0.160784 0.164706 0.168627 0.172549 0.176471 0.180392 0.184314 0.188235 0.192157 0.196078 0.200000 0.203922 0.207843 0.211765 0.215686 0.219608 0.223529 0.227451 0.231373 0.235294 0.239216 0.243137 0.247059 0.250980 0.254902 0.258824 0.262745 0.266667 0.270588 0.274510 0.278431 0.282353 0.286275 0.290196 0.294118 0.298039 0.301961 0.305882 0.309804 0.313725 0.317647 0.321569 0.325490 0.329412 0.333333 0.337255 0.341176 0.345098 0.349020 0.352941 0.356863 0.360784 0.364706 0.368627 0.372549 0.376471 0.380392 0.384314 0.388235 0.392157 0.396078 0.400000 0.403922 0.407843 0.411765 0.415686 0.419608 0.423529 0.427451 0.431373 0.435294 0.439216 0.443137 0.447059 0.450980 0.454902 0.458824 0.462745 0.466667 0.470588 0.474510 0.478431 0.482353 0.486275 0.490196 0.494118 0.498039 0.501961 0.505882 0.509804 0.513725 0.517647 0.521569 0.525490 0.529412 0.533333 0.537255 0.541176 0.545098 0.549020 0.552941 0.556863 0.560784 0.564706 0.568627 0.572549 0.576471 0.580392 0.584314 0.588235 0.592157 0.596078 0.600000 0.603922 0.607843 0.611765 0.615686 0.619608 0.623529 0.627451 0.631373 0.635294 0.639216 0.643137 0.647059 0.650980 0.654902 0.658824 0.662745 0.666667 0.670588 0.674510 0.678431 0.682353 0.686275 0.690196 0.694118 0.698039 0.701961 0.705882 0.709804 0.713725 0.717647 0.721569 0.725490 0.729412 0.733333 0.737255 0.741176 0.745098 0.749020 0.752941 0.756863 0.760784 0.764706 0.768627 0.772549 0.776471 0.780392 0.784314 0.788235 0.792157 0.796078 0.800000 0.803922 0.807843 0.811765 0.815686 0.819608 0.823529 0.827451 0.831373 0.835294 0.839216 0.843137 0.847059 0.850980 0.854902 0.858824 0.862745 0.866667 0.870588 0.874510 0.878431 0.882353 0.886275 0.890196 0.894118 0.898039 0.901961 0.905882 0.909804 0.913725 0.917647 0.921569 0.925490 0.929412 0.933333 0.937255 0.941176 0.945098 0.949020 0.952941 0.956863 0.960784 0.964706 0.968627 0.972549 0.976471 0.980392 0.984314 0.988235 0.992157 0.996078 1.000000)))
# end of devicerc

View File

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

View File

@ -0,0 +1,24 @@
# pixmap_path "<dir 1>:<dir 2>:<dir 3>:..."
#
# include "rc-file"
#
# style <name> [= <name>]
# {
# <option>
# }
#
# widget <widget_set> style <style_name>
# class <widget_class_set> style <style_name>
#
# You can add your own GIMP-specific GTK styles here.
#
# Adjust the size of previews in plug-in dialogs:
#
style "gimp-large-preview"
{
GimpPreview::size = 256
}
# class "GimpPreview" style "gimp-large-preview"

View File

@ -0,0 +1,4 @@
GIMP Gradient
Name: Custom
1
0.000000 0.500000 1.000000 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000 1.000000 0 0 1 3

File diff suppressed because it is too large Load Diff

View File

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

@ -0,0 +1,94 @@
# 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 136 100)
(size 1778 778)
(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 341)
(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-file-save-dialog")
(position 0 60)
(size 780 585))
(session-info "toplevel"
(factory-entry "gimp-file-export-dialog")
(position 0 189)
(size 780 585))
(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

@ -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.000000)
(yresolution 300.000000)
(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.000000)
(yresolution 300.000000)
(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.000000)
(yresolution 300.000000)
(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.000000)
(yresolution 300.000000)
(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.000000)
(yresolution 300.000000)
(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.000000)
(yresolution 300.000000)
(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.000000)
(yresolution 300.000000)
(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.000000)
(yresolution 300.000000)
(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.000000)
(yresolution 300.000000)
(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.000000)
(yresolution 300.000000)
(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.000000)
(yresolution 300.000000)
(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.000000)
(yresolution 300.000000)
(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.000000)
(yresolution 300.000000)
(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.000000)
(yresolution 300.000000)
(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.000000)
(yresolution 300.000000)
(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.000000)
(yresolution 300.000000)
(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.000000)
(yresolution 300.000000)
(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.000000)
(yresolution 300.000000)
(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.000000)
(yresolution 300.000000)
(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.000000)
(yresolution 300.000000)
(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.000000)
(yresolution 72.000000)
(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.000000)
(yresolution 72.000000)
(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.000000)
(yresolution 72.000000)
(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.000000)
(yresolution 72.000000)
(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.000000)
(yresolution 72.000000)
(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.000000)
(yresolution 72.000000)
(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.000000)
(yresolution 72.000000)
(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.000000)
(yresolution 72.000000)
(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.000000)
(yresolution 72.000000)
(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.000000)
(yresolution 72.000000)
(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.000000)
(yresolution 72.000000)
(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.000000)
(yresolution 72.000000)
(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.000000)
(yresolution 72.000000)
(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.000000)
(yresolution 326.000000)
(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.000000)
(yresolution 326.000000)
(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.000000)
(yresolution 264.000000)
(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.000000)
(yresolution 577.000000)
(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.000000)
(yresolution 360.000000)
(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.000000)
(yresolution 149.000000)
(resolution-unit inches)
(image-type rgb)
(precision u8-gamma)
(color-managed yes)
(color-profile NULL)
(fill-type background))
# end of templaterc

View File

@ -0,0 +1,10 @@
# 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/styler/.config/GIMP/2.10/gtkrc).
include "/usr/share/gimp/2.0/themes/Dark/gtkrc"
include "/home/styler/.config/GIMP/2.10/gtkrc"
# end of themerc

View File

@ -0,0 +1,10 @@
# GIMP gimp-airbrush-tool options
(brush "2. Hardness 050")
(dynamics "Dynamics Off")
(gradient "FG to BG (RGB)")
(palette "Color History")
(brush-size 51.000000)
(brush-hardness 0.500000)
# end of gimp-airbrush-tool options

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -0,0 +1,10 @@
# GIMP gimp-clone-tool options
(brush "2. Hardness 050")
(dynamics "Dynamics Off")
(pattern "Pine")
(palette "Color History")
(brush-size 51.000000)
(brush-hardness 0.500000)
# end of gimp-clone-tool options

View File

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

View File

@ -0,0 +1,9 @@
# GIMP gimp-convolve-tool options
(brush "2. Hardness 050")
(dynamics "Dynamics Off")
(palette "Color History")
(brush-size 51.000000)
(brush-hardness 0.500000)
# end of gimp-convolve-tool options

View File

@ -0,0 +1,6 @@
# GIMP gimp-crop-tool options
(aspect-denominator 477.000000)
(aspect-numerator 468.000000)
# end of gimp-crop-tool options

View File

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

View File

@ -0,0 +1,9 @@
# GIMP gimp-dodge-burn-tool options
(brush "2. Hardness 050")
(dynamics "Dynamics Off")
(palette "Color History")
(brush-size 51.000000)
(brush-hardness 0.500000)
# end of gimp-dodge-burn-tool options

View File

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

View File

@ -0,0 +1,9 @@
# GIMP gimp-eraser-tool options
(brush "2. Hardness 050")
(dynamics "Dynamics Off")
(palette "Color History")
(brush-size 51.000000)
(brush-hardness 0.500000)
# end of gimp-eraser-tool options

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -0,0 +1,9 @@
# GIMP gimp-heal-tool options
(brush "2. Hardness 050")
(dynamics "Dynamics Off")
(palette "Color History")
(brush-size 51.000000)
(brush-hardness 0.500000)
# end of gimp-heal-tool options

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -0,0 +1,7 @@
# GIMP gimp-mypaint-brush-tool options
(mybrush "Standard")
(brush-size 51.000000)
(brush-hardness 0.500000)
# end of gimp-mypaint-brush-tool options

View File

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

View File

@ -0,0 +1,10 @@
# GIMP gimp-paintbrush-tool options
(brush "2. Hardness 050")
(dynamics "Dynamics Off")
(gradient "FG to BG (RGB)")
(palette "Color History")
(brush-size 51.000000)
(brush-hardness 0.500000)
# end of gimp-paintbrush-tool options

View File

@ -0,0 +1,10 @@
# GIMP gimp-pencil-tool options
(brush "2. Hardness 050")
(dynamics "Dynamics Off")
(gradient "FG to BG (RGB)")
(palette "Color History")
(brush-size 51.000000)
(brush-hardness 0.500000)
# end of gimp-pencil-tool options

View File

@ -0,0 +1,10 @@
# GIMP gimp-perspective-clone-tool options
(brush "2. Hardness 050")
(dynamics "Dynamics Off")
(pattern "Pine")
(palette "Color History")
(brush-size 51.000000)
(brush-hardness 0.500000)
# end of gimp-perspective-clone-tool options

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -0,0 +1,10 @@
# GIMP gimp-smudge-tool options
(brush "2. Hardness 050")
(dynamics "Dynamics Off")
(gradient "FG to BG (RGB)")
(palette "Color History")
(brush-size 51.000000)
(brush-hardness 0.500000)
# end of gimp-smudge-tool options

View File

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

View File

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

View File

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

View File

@ -0,0 +1,9 @@
# GIMP gimp-vector-tool options
(brush "2. Hardness 050")
(dynamics "Dynamics Off")
(pattern "Pine")
(gradient "FG to BG (RGB)")
(palette "Color History")
# end of gimp-vector-tool options

View File

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

View File

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

View File

@ -0,0 +1,136 @@
# GIMP toolrc
(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))
(GimpToolInfo "gimp-free-select-tool"
(icon-name "gimp-tool-free-select")
(visible yes))
(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-iscissors-tool"
(icon-name "gimp-tool-iscissors")
(visible yes))
(GimpToolInfo "gimp-foreground-select-tool"
(icon-name "gimp-tool-foreground-select")
(visible yes))
(GimpToolInfo "gimp-vector-tool"
(icon-name "gimp-tool-path")
(visible yes))
(GimpToolInfo "gimp-color-picker-tool"
(icon-name "gimp-tool-color-picker")
(visible yes))
(GimpToolInfo "gimp-zoom-tool"
(icon-name "gimp-tool-zoom")
(visible yes))
(GimpToolInfo "gimp-measure-tool"
(icon-name "gimp-tool-measure")
(visible yes))
(GimpToolInfo "gimp-move-tool"
(icon-name "gimp-tool-move")
(visible yes))
(GimpToolInfo "gimp-align-tool"
(icon-name "gimp-tool-align")
(visible yes))
(GimpToolInfo "gimp-crop-tool"
(icon-name "gimp-tool-crop")
(visible yes))
(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-handle-transform-tool"
(icon-name "gimp-tool-handle-transform")
(visible yes))
(GimpToolInfo "gimp-perspective-tool"
(icon-name "gimp-tool-perspective")
(visible yes))
(GimpToolInfo "gimp-flip-tool"
(icon-name "gimp-tool-flip")
(visible yes))
(GimpToolInfo "gimp-cage-tool"
(icon-name "gimp-tool-cage")
(visible yes))
(GimpToolInfo "gimp-warp-tool"
(icon-name "gimp-tool-warp")
(visible yes))
(GimpToolInfo "gimp-text-tool"
(icon-name "gimp-tool-text")
(visible yes))
(GimpToolInfo "gimp-bucket-fill-tool"
(icon-name "gimp-tool-bucket-fill")
(visible yes))
(GimpToolInfo "gimp-gradient-tool"
(icon-name "gimp-tool-gradient")
(visible yes))
(GimpToolInfo "gimp-pencil-tool"
(icon-name "gimp-tool-pencil")
(visible yes))
(GimpToolInfo "gimp-paintbrush-tool"
(icon-name "gimp-tool-paintbrush")
(visible yes))
(GimpToolInfo "gimp-eraser-tool"
(icon-name "gimp-tool-eraser")
(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-clone-tool"
(icon-name "gimp-tool-clone")
(visible yes))
(GimpToolInfo "gimp-heal-tool"
(icon-name "gimp-tool-heal")
(visible yes))
(GimpToolInfo "gimp-perspective-clone-tool"
(icon-name "gimp-tool-perspective-clone")
(visible yes))
(GimpToolInfo "gimp-convolve-tool"
(icon-name "gimp-tool-blur")
(visible yes))
(GimpToolInfo "gimp-smudge-tool"
(icon-name "gimp-tool-smudge")
(visible yes))
(GimpToolInfo "gimp-dodge-burn-tool"
(icon-name "gimp-tool-dodge")
(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-gegl-tool"
(icon-name "gimp-gegl")
(visible no))
(GimpToolInfo "gimp-operation-tool"
(icon-name "gimp-gegl")
(visible no))
# end of toolrc

View File

@ -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.540000)
(digits 2)
(symbol "cm")
(abbreviation "cm")
(singular "centimeter")
(plural "centimeters"))
(unit-info "meters"
(factor 0.025400)
(digits 4)
(symbol "m")
(abbreviation "m")
(singular "meter")
(plural "meters"))
(unit-info "feet"
(factor 0.083333)
(digits 4)
(symbol "'")
(abbreviation "ft")
(singular "foot")
(plural "feet"))
(unit-info "yards"
(factor 0.027778)
(digits 4)
(symbol "yd")
(abbreviation "yd")
(singular "yard")
(plural "yards"))
(unit-info "typogr. points"
(factor 72.270000)
(digits 0)
(symbol "tpt")
(abbreviation "tpt")
(singular "typogr. point")
(plural "typogr. points"))
(unit-info "typogr. picas"
(factor 6.022500)
(digits 1)
(symbol "tpc")
(abbreviation "tpc")
(singular "typogr. pica")
(plural "typogr. picas"))
# end of units

View File

@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE script:module PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "module.dtd">
<!--
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
-->
<script:module xmlns:script="http://openoffice.org/2000/script" script:name="Module1" script:language="StarBasic">REM ***** BASIC *****
Sub Main
End Sub</script:module>

View File

@ -0,0 +1,3 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE library:library PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "library.dtd">
<library:library xmlns:library="http://openoffice.org/2000/library" library:name="Standard" library:readonly="false" library:passwordprotected="false"/>

View File

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE library:library PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "library.dtd">
<library:library xmlns:library="http://openoffice.org/2000/library" library:name="Standard" library:readonly="false" library:passwordprotected="false">
<library:element library:name="Module1"/>
</library:library>

View File

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE library:libraries PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "libraries.dtd">
<library:libraries xmlns:library="http://openoffice.org/2000/library" xmlns:xlink="http://www.w3.org/1999/xlink">
<library:library library:name="Standard" xlink:href="$(USER)/basic/Standard/dialog.xlb/" xlink:type="simple" library:link="false"/>
</library:libraries>

View File

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE library:libraries PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "libraries.dtd">
<library:libraries xmlns:library="http://openoffice.org/2000/library" xmlns:xlink="http://www.w3.org/1999/xlink">
<library:library library:name="Standard" xlink:href="$(USER)/basic/Standard/script.xlb/" xlink:type="simple" library:link="false"/>
</library:libraries>

View File

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--This is a generated file. Do not alter this file!-->
<java xmlns="http://openoffice.org/2004/java/framework/1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<enabled xsi:nil="true"/>
<userClassPath xsi:nil="true"/>
<vmParameters xsi:nil="true"/>
<jreLocations xsi:nil="true"/>
<javaInfo xsi:nil="false" vendorUpdate="2013-05-02" autoSelect="true">
<vendor>Oracle Corporation</vendor>
<location>file:///usr/lib/jvm/java-8-oracle/jre</location>
<version>1.8.0_191</version>
<features>0</features>
<requirements>1</requirements>
<vendorData>660069006C0065003A002F002F002F007500730072002F006C00690062002F006A0076006D002F006A006100760061002D0038002D006F007200610063006C0065002F006A00720065002F006C00690062002F0061006D006400360034002F007300650072007600650072002F006C00690062006A0076006D002E0073006F000A002F007500730072002F006C00690062002F006A0076006D002F006A006100760061002D0038002D006F007200610063006C0065002F006A00720065002F006C00690062002F0061006D006400360034002F0063006C00690065006E0074003A002F007500730072002F006C00690062002F006A0076006D002F006A006100760061002D0038002D006F007200610063006C0065002F006A00720065002F006C00690062002F0061006D006400360034002F007300650072007600650072003A002F007500730072002F006C00690062002F006A0076006D002F006A006100760061002D0038002D006F007200610063006C0065002F006A00720065002F006C00690062002F0061006D006400360034002F006E00610074006900760065005F0074006800720065006100640073003A002F007500730072002F006C00690062002F006A0076006D002F006A006100760061002D0038002D006F007200610063006C0065002F006A00720065002F006C00690062002F0061006D006400360034000A00</vendorData>
</javaInfo>
</java>

View File

@ -0,0 +1 @@
10(Build:1)

View File

@ -0,0 +1,5 @@
Pmp1ÿcom.sun.star.comp.Calc.NLPSolver
nlpsolverÿnlpsolverÿapplication/vnd.sun.star.package-bundleÿ0.9ÿ0
ÿcom.sun.wiki-publisher
wiki-publisherÿwiki-publisherÿapplication/vnd.sun.star.package-bundleÿ1.2.0ÿ0

View File

@ -0,0 +1,2 @@
<?xml version="1.0"?>
<ext:extension-backend-db xmlns:ext="http://openoffice.org/extensionmanager/extension-registry/2010"><ext:extension url="vnd.sun.star.expand:$BUNDLED_EXTENSIONS/nlpsolver"><ext:extension-items><ext:item><ext:url>vnd.sun.star.expand:$BUNDLED_EXTENSIONS/nlpsolver/help</ext:url><ext:media-type>application/vnd.sun.star.help</ext:media-type></ext:item><ext:item><ext:url>vnd.sun.star.expand:$BUNDLED_EXTENSIONS/nlpsolver/components.rdb</ext:url><ext:media-type>application/vnd.sun.star.uno-components</ext:media-type></ext:item></ext:extension-items></ext:extension><ext:extension url="vnd.sun.star.expand:$BUNDLED_EXTENSIONS/wiki-publisher"><ext:extension-items><ext:item><ext:url>vnd.sun.star.expand:$BUNDLED_EXTENSIONS/wiki-publisher/help</ext:url><ext:media-type>application/vnd.sun.star.help</ext:media-type></ext:item><ext:item><ext:url>vnd.sun.star.expand:$BUNDLED_EXTENSIONS/wiki-publisher/WikiExtension.xcs</ext:url><ext:media-type>application/vnd.sun.star.configuration-schema</ext:media-type></ext:item><ext:item><ext:url>vnd.sun.star.expand:$BUNDLED_EXTENSIONS/wiki-publisher/WikiEditor/</ext:url><ext:media-type>application/vnd.sun.star.basic-library</ext:media-type></ext:item><ext:item><ext:url>vnd.sun.star.expand:$BUNDLED_EXTENSIONS/wiki-publisher/components.rdb</ext:url><ext:media-type>application/vnd.sun.star.uno-components</ext:media-type></ext:item><ext:item><ext:url>vnd.sun.star.expand:$BUNDLED_EXTENSIONS/wiki-publisher/Addons.xcu</ext:url><ext:media-type>application/vnd.sun.star.configuration-data</ext:media-type></ext:item><ext:item><ext:url>vnd.sun.star.expand:$BUNDLED_EXTENSIONS/wiki-publisher/ProtocolHandler.xcu</ext:url><ext:media-type>application/vnd.sun.star.configuration-data</ext:media-type></ext:item><ext:item><ext:url>vnd.sun.star.expand:$BUNDLED_EXTENSIONS/wiki-publisher/WikiExtension.xcu</ext:url><ext:media-type>application/vnd.sun.star.configuration-data</ext:media-type></ext:item><ext:item><ext:url>vnd.sun.star.expand:$BUNDLED_EXTENSIONS/wiki-publisher/OptionsDialog.xcu</ext:url><ext:media-type>application/vnd.sun.star.configuration-data</ext:media-type></ext:item><ext:item><ext:url>vnd.sun.star.expand:$BUNDLED_EXTENSIONS/wiki-publisher/Filter.xcu</ext:url><ext:media-type>application/vnd.sun.star.configuration-data</ext:media-type></ext:item><ext:item><ext:url>vnd.sun.star.expand:$BUNDLED_EXTENSIONS/wiki-publisher/Types.xcu</ext:url><ext:media-type>application/vnd.sun.star.configuration-data</ext:media-type></ext:item><ext:item><ext:url>vnd.sun.star.expand:$BUNDLED_EXTENSIONS/wiki-publisher/Paths.xcu</ext:url><ext:media-type>application/vnd.sun.star.configuration-data</ext:media-type></ext:item></ext:extension-items></ext:extension></ext:extension-backend-db>

View File

@ -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

View File

@ -0,0 +1,2 @@
<?xml version="1.0"?>
<conf:configuration-backend-db xmlns:conf="http://openoffice.org/extensionmanager/configuration-registry/2010"><conf:configuration url="vnd.sun.star.expand:$BUNDLED_EXTENSIONS/wiki-publisher/WikiExtension.xcs"><conf:ini-entry>$BUNDLED_EXTENSIONS/wiki-publisher/WikiExtension.xcs</conf:ini-entry></conf:configuration><conf:configuration url="vnd.sun.star.expand:$BUNDLED_EXTENSIONS/wiki-publisher/Addons.xcu"><conf:ini-entry>$BUNDLED_EXTENSIONS/wiki-publisher/Addons.xcu</conf:ini-entry></conf:configuration><conf:configuration url="vnd.sun.star.expand:$BUNDLED_EXTENSIONS/wiki-publisher/ProtocolHandler.xcu"><conf:ini-entry>$BUNDLED_EXTENSIONS/wiki-publisher/ProtocolHandler.xcu</conf:ini-entry></conf:configuration><conf:configuration url="vnd.sun.star.expand:$BUNDLED_EXTENSIONS/wiki-publisher/WikiExtension.xcu"><conf:ini-entry>$BUNDLED_EXTENSIONS/wiki-publisher/WikiExtension.xcu</conf:ini-entry></conf:configuration><conf:configuration url="vnd.sun.star.expand:$BUNDLED_EXTENSIONS/wiki-publisher/OptionsDialog.xcu"><conf:data-url>vnd.sun.star.expand:$BUNDLED_EXTENSIONS_USER/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/lu3410ld9afa.tmp</conf:data-url><conf:ini-entry>$BUNDLED_EXTENSIONS_USER/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/lu3410ld9afa.tmp/OptionsDialog.xcu</conf:ini-entry></conf:configuration><conf:configuration url="vnd.sun.star.expand:$BUNDLED_EXTENSIONS/wiki-publisher/Filter.xcu"><conf:data-url>vnd.sun.star.expand:$BUNDLED_EXTENSIONS_USER/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/lu3410ld9afb.tmp</conf:data-url><conf:ini-entry>$BUNDLED_EXTENSIONS_USER/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/lu3410ld9afb.tmp/Filter.xcu</conf:ini-entry></conf:configuration><conf:configuration url="vnd.sun.star.expand:$BUNDLED_EXTENSIONS/wiki-publisher/Types.xcu"><conf:ini-entry>$BUNDLED_EXTENSIONS/wiki-publisher/Types.xcu</conf:ini-entry></conf:configuration><conf:configuration url="vnd.sun.star.expand:$BUNDLED_EXTENSIONS/wiki-publisher/Paths.xcu"><conf:data-url>vnd.sun.star.expand:$BUNDLED_EXTENSIONS_USER/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/lu3410ld9afd.tmp</conf:data-url><conf:ini-entry>$BUNDLED_EXTENSIONS_USER/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/lu3410ld9afd.tmp/Paths.xcu</conf:ini-entry></conf:configuration></conf:configuration-backend-db>

View File

@ -0,0 +1,2 @@
SCHEMA=$BUNDLED_EXTENSIONS/wiki-publisher/WikiExtension.xcs
DATA=$BUNDLED_EXTENSIONS_USER/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/lu3410ld9afd.tmp/Paths.xcu $BUNDLED_EXTENSIONS/wiki-publisher/Types.xcu $BUNDLED_EXTENSIONS_USER/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/lu3410ld9afb.tmp/Filter.xcu $BUNDLED_EXTENSIONS_USER/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/lu3410ld9afa.tmp/OptionsDialog.xcu $BUNDLED_EXTENSIONS/wiki-publisher/WikiExtension.xcu $BUNDLED_EXTENSIONS/wiki-publisher/ProtocolHandler.xcu $BUNDLED_EXTENSIONS/wiki-publisher/Addons.xcu

View File

@ -0,0 +1,133 @@
<?xml version='1.0' encoding='UTF-8'?>
<!--
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
-->
<oor:component-data oor:name="OptionsDialog" oor:package="org.openoffice.Office" xmlns:oor="http://openoffice.org/2001/registry">
<node oor:name="Nodes">
<node oor:name="Internet" oor:op="replace">
<node oor:name="Leaves">
<node oor:name="com.sun.star.wiki.options" oor:op="replace">
<prop oor:name="Id">
<value>com.sun.wiki-publisher</value>
</prop>
<prop oor:name="Label">
<value xml:lang="en-US">MediaWiki</value>
<value xml:lang="af">MediaWiki</value>
<value xml:lang="am">MediaWiki</value>
<value xml:lang="ar">ميدياويكي</value>
<value xml:lang="as">MediaWiki</value>
<value xml:lang="ast">MediaWiki</value>
<value xml:lang="be">MediaWiki</value>
<value xml:lang="bg">MediaWiki</value>
<value xml:lang="bn">মিডিয়া-উইকি</value>
<value xml:lang="br">MediaWiki</value>
<value xml:lang="bs">MediaWiki</value>
<value xml:lang="ca">MediaWiki</value>
<value xml:lang="ca-valencia">MediaWiki</value>
<value xml:lang="cs">MediaWiki</value>
<value xml:lang="cy">MediaWiki</value>
<value xml:lang="da">MediaWiki</value>
<value xml:lang="de">MediaWiki</value>
<value xml:lang="dz">MediaWiki</value>
<value xml:lang="el">ΜέσαΒίκι</value>
<value xml:lang="en-GB">MediaWiki</value>
<value xml:lang="en-ZA">MediaWiki</value>
<value xml:lang="eo">MediVikio</value>
<value xml:lang="es">MediaWiki</value>
<value xml:lang="et">MediaWiki</value>
<value xml:lang="eu">MediaWiki</value>
<value xml:lang="fa">مدیاویکی</value>
<value xml:lang="fi">MediaWiki</value>
<value xml:lang="fr">MediaWiki</value>
<value xml:lang="ga">MediaWiki</value>
<value xml:lang="gd">MediaWiki</value>
<value xml:lang="gl">MediaWiki</value>
<value xml:lang="gu">મીડિયાવિકી</value>
<value xml:lang="gug">MediaWiki</value>
<value xml:lang="he">מדיה ויקי</value>
<value xml:lang="hi">MediaWiki</value>
<value xml:lang="hr">MediaWiki</value>
<value xml:lang="hu">MediaWiki</value>
<value xml:lang="id">MediaWiki</value>
<value xml:lang="is">MediaWiki</value>
<value xml:lang="it">MediaWiki</value>
<value xml:lang="ja">MediaWiki</value>
<value xml:lang="ka">MediaWiki</value>
<value xml:lang="kk">MediaWiki</value>
<value xml:lang="km">MediaWiki</value>
<value xml:lang="kmr-Latn">MediaWiki</value>
<value xml:lang="kn">ಮೀಡಿಯಾವಿಕಿ</value>
<value xml:lang="ko">미디어위키</value>
<value xml:lang="lt">MediaWiki</value>
<value xml:lang="lv">MediaWiki</value>
<value xml:lang="mk">MediaWiki</value>
<value xml:lang="ml">മീഡിയാ വിക്കി</value>
<value xml:lang="mn">МэдиаВики</value>
<value xml:lang="mr">मिडिया विकी</value>
<value xml:lang="nb">MediaWiki</value>
<value xml:lang="ne">MediaWiki</value>
<value xml:lang="nl">MediaWiki</value>
<value xml:lang="nn">MediaWiki</value>
<value xml:lang="nr">MediaWiki</value>
<value xml:lang="nso">MediaWiki</value>
<value xml:lang="oc">MediaWiki</value>
<value xml:lang="om">MiidiyaaWiki</value>
<value xml:lang="or">ମାଧ୍ଯମ ୱିକି</value>
<value xml:lang="pa-IN">ਮੀਡਿਆ-ਵਿਕਿ</value>
<value xml:lang="pl">MediaWiki</value>
<value xml:lang="pt">MediaWiki</value>
<value xml:lang="pt-BR">MediaWiki</value>
<value xml:lang="ro">MediaWiki</value>
<value xml:lang="ru">MediaWiki</value>
<value xml:lang="rw">MediaWiki</value>
<value xml:lang="si">MediaWiki</value>
<value xml:lang="sk">MediaWiki</value>
<value xml:lang="sl">MediaWiki</value>
<value xml:lang="sr">Медија Вики</value>
<value xml:lang="sr-Latn">Medija Viki</value>
<value xml:lang="ss">MediaWiki</value>
<value xml:lang="st">MediaWiki</value>
<value xml:lang="sv">MediaWiki</value>
<value xml:lang="ta">MediaWiki</value>
<value xml:lang="te">మీడియావికీ</value>
<value xml:lang="tg">MediaWiki</value>
<value xml:lang="th">MediaWiki</value>
<value xml:lang="tn">MediaWiki</value>
<value xml:lang="tr">MediaWiki</value>
<value xml:lang="ts">MediaWiki</value>
<value xml:lang="ug">MediaWiki</value>
<value xml:lang="uk">MediaWiki</value>
<value xml:lang="uz">MediaWiki</value>
<value xml:lang="ve">MediaWiki</value>
<value xml:lang="vi">MediaWiki</value>
<value xml:lang="xh">MediaWiki</value>
<value xml:lang="zh-CN">MediaWiki</value>
<value xml:lang="zh-TW">MediaWiki</value>
<value xml:lang="zu">MediaWiki</value>
</prop>
<prop oor:name="OptionsPage">
<value>vnd.sun.star.expand:$BUNDLED_EXTENSIONS/wiki-publisher/WikiEditor/Settings.xdl</value>
</prop>
<prop oor:name="EventHandlerService">
<value>com.sun.star.wiki.WikiOptionsEventHandlerImpl</value>
</prop>
</node>
</node>
</node>
</node>
</oor:component-data>

View File

@ -0,0 +1,47 @@
<?xml version='1.0' encoding='UTF-8'?>
<!--
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
-->
<!DOCTYPE oor:component-data SYSTEM "../../../../../../../../officecfg/registry/component-update.dtd">
<oor:component-data xmlns:oor="http://openoffice.org/2001/registry" xmlns:xs="http://www.w3.org/2001/XMLSchema" oor:package="org.openoffice.TypeDetection" oor:name="Filter">
<node oor:name="Filters">
<node oor:name="MediaWiki" oor:op="replace">
<prop oor:name="FileFormatVersion"><value>0</value></prop>
<prop oor:name="Type"><value>MediaWiki</value></prop>
<prop oor:name="DocumentService"><value>com.sun.star.text.TextDocument</value></prop>
<prop oor:name="UIComponent"/>
<prop oor:name="UserData"><value oor:separator=",">com.sun.star.documentconversion.XSLTFilter,,,com.sun.star.comp.Writer.XMLOasisExporter,,vnd.sun.star.expand:$BUNDLED_EXTENSIONS/wiki-publisher/filter/odt2mediawiki.xsl</value></prop>
<prop oor:name="FilterService"><value>com.sun.star.comp.Writer.XmlFilterAdaptor</value></prop>
<prop oor:name="UIName">
<value xml:lang="x-default">MediaWiki</value>
</prop>
<prop oor:name="Flags"><value>EXPORT ALIEN 3RDPARTYFILTER</value></prop>
</node>
<node oor:name="MediaWiki_Web" oor:op="replace">
<prop oor:name="FileFormatVersion"><value>0</value></prop>
<prop oor:name="Type"><value>MediaWiki</value></prop>
<prop oor:name="DocumentService"><value>com.sun.star.text.WebDocument</value></prop>
<prop oor:name="UIComponent"/>
<prop oor:name="UserData"><value oor:separator=",">com.sun.star.documentconversion.XSLTFilter,,,com.sun.star.comp.Writer.XMLOasisExporter,,vnd.sun.star.expand:$BUNDLED_EXTENSIONS/wiki-publisher/filter/odt2mediawiki.xsl</value></prop>
<prop oor:name="FilterService"><value>com.sun.star.comp.Writer.XmlFilterAdaptor</value></prop>
<prop oor:name="UIName">
<value xml:lang="x-default">MediaWiki</value>
</prop>
<prop oor:name="Flags"><value>EXPORT ALIEN 3RDPARTYFILTER</value></prop>
</node>
</node>
</oor:component-data>

View File

@ -0,0 +1,27 @@
<?xml version='1.0' encoding='UTF-8'?>
<!--
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
-->
<oor:component-data xmlns:oor="http://openoffice.org/2001/registry" xmlns:xs="http://www.w3.org/2001/XMLSchema" oor:name="Paths" oor:package="org.openoffice.Office">
<node oor:name="Paths">
<node oor:name="Template" oor:op="fuse">
<node oor:name="InternalPaths">
<node oor:name="vnd.sun.star.expand:$BUNDLED_EXTENSIONS/wiki-publisher/templates" oor:op="fuse"/>
</node>
</node>
</node>
</oor:component-data>

View File

@ -0,0 +1,2 @@
<?xml version="1.0"?>
<help:help-backend-db xmlns:help="http://openoffice.org/extensionmanager/help-registry/2010"><help:help url="vnd.sun.star.expand:$BUNDLED_EXTENSIONS/nlpsolver/help"><help:data-url>vnd.sun.star.expand:$BUNDLED_EXTENSIONS/nlpsolver/help</help:data-url></help:help><help:help url="vnd.sun.star.expand:$BUNDLED_EXTENSIONS/wiki-publisher/help"><help:data-url>vnd.sun.star.expand:$BUNDLED_EXTENSIONS/wiki-publisher/help</help:data-url></help:help></help:help-backend-db>

View File

@ -0,0 +1,2 @@
<?xml version="1.0"?>
<script:script-backend-db xmlns:script="http://openoffice.org/extensionmanager/script-registry/2010"><script:script url="vnd.sun.star.expand:$BUNDLED_EXTENSIONS/wiki-publisher/WikiEditor/"/></script:script-backend-db>

View File

@ -0,0 +1,2 @@
<?xml version="1.0"?>
<conf:configuration-backend-db xmlns:conf="http://openoffice.org/extensionmanager/configuration-registry/2010"/>

View File

@ -0,0 +1,2 @@
<?xml version="1.0"?>
<help:help-backend-db xmlns:help="http://openoffice.org/extensionmanager/help-registry/2010"/>

View File

@ -0,0 +1,2 @@
<?xml version="1.0"?>
<conf:configuration-backend-db xmlns:conf="http://openoffice.org/extensionmanager/configuration-registry/2010"/>

View File

@ -0,0 +1,2 @@
<?xml version="1.0"?>
<help:help-backend-db xmlns:help="http://openoffice.org/extensionmanager/help-registry/2010"/>

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