diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..72ec8d4 --- /dev/null +++ b/Makefile @@ -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" diff --git a/gimp/.config/GIMP/2.10/action-history b/gimp/.config/GIMP/2.10/action-history new file mode 100644 index 0000000..5d5c469 --- /dev/null +++ b/gimp/.config/GIMP/2.10/action-history @@ -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 diff --git a/gimp/.config/GIMP/2.10/colorrc b/gimp/.config/GIMP/2.10/colorrc new file mode 100644 index 0000000..55bd126 --- /dev/null +++ b/gimp/.config/GIMP/2.10/colorrc @@ -0,0 +1,7 @@ +# GIMP colorrc +# +# This file holds a list of recently used colors. + +(color-history) + +# end of colorrc diff --git a/gimp/.config/GIMP/2.10/contextrc b/gimp/.config/GIMP/2.10/contextrc new file mode 100644 index 0000000..402d194 --- /dev/null +++ b/gimp/.config/GIMP/2.10/contextrc @@ -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 diff --git a/gimp/.config/GIMP/2.10/controllerrc b/gimp/.config/GIMP/2.10/controllerrc new file mode 100644 index 0000000..932e26c --- /dev/null +++ b/gimp/.config/GIMP/2.10/controllerrc @@ -0,0 +1,40 @@ +# GIMP controllerrc +# +# This file will be entirely rewritten each time you exit. + +(GimpControllerInfo "Main Mouse Wheel" + (icon-name "gimp-controller-wheel") + (enabled yes) + (debug-events no) + (controller "GimpControllerWheel") + (mapping + (map "scroll-down-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 diff --git a/gimp/.config/GIMP/2.10/devicerc b/gimp/.config/GIMP/2.10/devicerc new file mode 100644 index 0000000..4863b3f --- /dev/null +++ b/gimp/.config/GIMP/2.10/devicerc @@ -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 diff --git a/gimp/.config/GIMP/2.10/dockrc b/gimp/.config/GIMP/2.10/dockrc new file mode 100644 index 0000000..bb1944b --- /dev/null +++ b/gimp/.config/GIMP/2.10/dockrc @@ -0,0 +1,4 @@ +# recently closed docks + + +# end of recently closed docks diff --git a/gimp/.config/GIMP/2.10/gtkrc b/gimp/.config/GIMP/2.10/gtkrc new file mode 100644 index 0000000..f4efa07 --- /dev/null +++ b/gimp/.config/GIMP/2.10/gtkrc @@ -0,0 +1,24 @@ +# pixmap_path ":::..." +# +# include "rc-file" +# +# style [= ] +# { +#