From a2dc43d66500ad1334f15ab4169ba6f5415c7862 Mon Sep 17 00:00:00 2001 From: Connor Johnstone Date: Mon, 14 Sep 2026 15:05:30 -0400 Subject: [PATCH] Standardise across machines; add genuinely-customised app config MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Two passes, both aimed at a consistent experience rather than a faithful snapshot of each machine's accidents. Standardisation. Audited every host-layer config present on more than one machine and asked whether the difference was intent or drift: - mpv was byte-identical; swayimg differed only because system76 still had the shipped default and the work laptop had the real config; bob differed by one setting the work laptop was simply missing. - user-dirs.dirs disagreed with BOTH machines and with zshenv, which has said $HOME/downloads all along. Standardised on that. - mimeapps.list is now the union of both machines' associations. - swaync's config and style are shared; only wallust's generated colors.css stays per host, alongside hypr's and waybar's. All of the above moved to common/. Dropped as pure state rather than config: gtk-2.0 (file-chooser geometry), pavucontrol.ini (window size), zoom.conf (a per-install random_key) and zoomus.conf (panel widths). gtk-3.0 stays per host — its bookmarks encode the two different home directories. App config. GIMP, inkscape, FreeCAD, cura, OrcaSlicer, LightBurn and OBS all hold real settings, so a curated subset of each is now tracked: settings, keybindings and user content, but not session state, tool options, device lists or window geometry. kicad is skipped — both library tables hold a single entry, i.e. untouched defaults. Content lives once in common/ even when only one machine has the app; the host configs decide who gets the link. That is the distinction that lets 53% of link sources be shared while the NAS still does not get GIMP. Two exclusions on credential grounds: obs-studio/plugin_config holds a websocket server_password, and gh is dropped entirely because `gh auth login` writes a token into hosts.yml — now also blocked by name. --- .gitignore | 1 + common/FreeCAD/user.cfg | 1081 ++++++++++++++ common/GIMP/2.10/colorrc | 20 + common/GIMP/2.10/gimprc | 35 + common/GIMP/2.10/menurc | 1315 ++++++++++++++++ common/GIMP/2.10/templaterc | 500 +++++++ common/GIMP/2.10/unitrc | 51 + common/GIMP/3.0/colorrc | 20 + common/GIMP/3.0/gimprc | 39 + common/GIMP/3.0/shortcutsrc | 1133 ++++++++++++++ common/GIMP/3.0/templaterc | 923 ++++++++++++ common/GIMP/3.0/unitrc | 39 + common/LightBurn/prefs.ini | 1316 +++++++++++++++++ .../Creality K2 Pro 0.4 nozzle - Copy.info | 5 + .../Creality K2 Pro 0.4 nozzle - Copy.json | 14 + common/OrcaSlicer/user/hints.cereal | Bin 0 -> 12 bytes .../config => common}/beets/config.yaml | 0 .../config => common}/beets/state.pickle | Bin .../config => common}/bob/config.json | 2 +- .../config => common}/bottom/bottom.toml | 0 common/cura/5.11/cura.cfg | 44 + common/cura/5.11/plugins.json | 1 + .../fastfetch/config-compact.jsonc | 0 .../fastfetch/config-pokemon.jsonc | 0 .../fastfetch/config-v2.jsonc | 0 .../config => common}/fastfetch/config.jsonc | 0 .../config => common}/fastfetch/ubuntu.png | Bin .../system76/config => common}/glow/glow.yml | 0 common/inkscape/preferences.xml | 1185 +++++++++++++++ .../sctfw004/config => common}/mimeapps.list | 10 +- .../system76/config => common}/mpd/mpd.conf | 0 .../mpv/script-opts/subs2srs.conf | 0 .../basic/profiles/Untitled/basic.ini | 2 + common/obs-studio/basic/scenes/Untitled.json | 351 +++++ .../obs-studio/basic/scenes/Untitled.json.bak | 351 +++++ common/obs-studio/global.ini | 72 + common/obs-studio/user.ini | 79 + .../sctfw004/config => common}/swayimg/config | 0 .../config => common}/swayimg/init.lua | 0 .../config => common}/swaync/config.json | 0 .../config => common}/swaync/style.css | 0 .../sctfw004/config => common}/user-dirs.dirs | 2 +- .../config => common}/uv/uv-receipt.json | 0 hosts/mainframe/config/mimeapps.list | 3 - hosts/mainframe/config/user-dirs.dirs | 15 - hosts/nas/config/bob/config.json | 1 - hosts/sctfw004/config/bob/config.json | 1 - hosts/sctfw004/config/gh/config.yml | 17 - hosts/sctfw004/config/gh/hosts.yml | 5 - .../config/gtk-2.0/gtkfilechooser.ini | 11 - hosts/sctfw004/config/pavucontrol.ini | 8 - hosts/sctfw004/config/zoom.conf | 3 - hosts/sctfw004/config/zoomus.conf | 66 - hosts/system76/config/bob/config.json | 3 - .../config/gtk-2.0/gtkfilechooser.ini | 11 - hosts/system76/config/mimeapps.list | 5 - hosts/system76/config/pavucontrol.ini | 8 - hosts/system76/config/swayimg/config | 278 ---- hosts/system76/config/user-dirs.dirs | 15 - hosts/system76/config/zoom.conf | 3 - hosts/system76/config/zoomus.conf | 81 - meta/base.conf.yaml | 3 +- meta/hosts/mainframe.conf.yaml | 3 - meta/hosts/nas.conf.yaml | 1 - meta/hosts/sctfw004.conf.yaml | 29 +- meta/hosts/system76.conf.yaml | 31 +- 66 files changed, 8623 insertions(+), 569 deletions(-) create mode 100644 common/FreeCAD/user.cfg create mode 100644 common/GIMP/2.10/colorrc create mode 100644 common/GIMP/2.10/gimprc create mode 100644 common/GIMP/2.10/menurc create mode 100644 common/GIMP/2.10/templaterc create mode 100644 common/GIMP/2.10/unitrc create mode 100644 common/GIMP/3.0/colorrc create mode 100644 common/GIMP/3.0/gimprc create mode 100644 common/GIMP/3.0/shortcutsrc create mode 100644 common/GIMP/3.0/templaterc create mode 100644 common/GIMP/3.0/unitrc create mode 100644 common/LightBurn/prefs.ini create mode 100644 common/OrcaSlicer/user/default/machine/Creality K2 Pro 0.4 nozzle - Copy.info create mode 100644 common/OrcaSlicer/user/default/machine/Creality K2 Pro 0.4 nozzle - Copy.json create mode 100644 common/OrcaSlicer/user/hints.cereal rename {hosts/system76/config => common}/beets/config.yaml (100%) rename {hosts/system76/config => common}/beets/state.pickle (100%) rename {hosts/mainframe/config => common}/bob/config.json (95%) rename {hosts/system76/config => common}/bottom/bottom.toml (100%) create mode 100644 common/cura/5.11/cura.cfg create mode 100644 common/cura/5.11/plugins.json rename {hosts/sctfw004/config => common}/fastfetch/config-compact.jsonc (100%) rename {hosts/sctfw004/config => common}/fastfetch/config-pokemon.jsonc (100%) rename {hosts/sctfw004/config => common}/fastfetch/config-v2.jsonc (100%) rename {hosts/sctfw004/config => common}/fastfetch/config.jsonc (100%) rename {hosts/sctfw004/config => common}/fastfetch/ubuntu.png (100%) rename {hosts/system76/config => common}/glow/glow.yml (100%) create mode 100644 common/inkscape/preferences.xml rename {hosts/sctfw004/config => common}/mimeapps.list (79%) rename {hosts/system76/config => common}/mpd/mpd.conf (100%) rename {hosts/system76/config => common}/mpv/script-opts/subs2srs.conf (100%) create mode 100644 common/obs-studio/basic/profiles/Untitled/basic.ini create mode 100644 common/obs-studio/basic/scenes/Untitled.json create mode 100644 common/obs-studio/basic/scenes/Untitled.json.bak create mode 100644 common/obs-studio/global.ini create mode 100644 common/obs-studio/user.ini rename {hosts/sctfw004/config => common}/swayimg/config (100%) rename {hosts/sctfw004/config => common}/swayimg/init.lua (100%) rename {hosts/system76/config => common}/swaync/config.json (100%) rename {hosts/system76/config => common}/swaync/style.css (100%) rename {hosts/sctfw004/config => common}/user-dirs.dirs (93%) rename {hosts/sctfw004/config => common}/uv/uv-receipt.json (100%) delete mode 100644 hosts/mainframe/config/mimeapps.list delete mode 100644 hosts/mainframe/config/user-dirs.dirs delete mode 100644 hosts/nas/config/bob/config.json delete mode 100644 hosts/sctfw004/config/bob/config.json delete mode 100644 hosts/sctfw004/config/gh/config.yml delete mode 100644 hosts/sctfw004/config/gh/hosts.yml delete mode 100644 hosts/sctfw004/config/gtk-2.0/gtkfilechooser.ini delete mode 100644 hosts/sctfw004/config/pavucontrol.ini delete mode 100644 hosts/sctfw004/config/zoom.conf delete mode 100644 hosts/sctfw004/config/zoomus.conf delete mode 100644 hosts/system76/config/bob/config.json delete mode 100644 hosts/system76/config/gtk-2.0/gtkfilechooser.ini delete mode 100644 hosts/system76/config/mimeapps.list delete mode 100644 hosts/system76/config/pavucontrol.ini delete mode 100644 hosts/system76/config/swayimg/config delete mode 100644 hosts/system76/config/user-dirs.dirs delete mode 100644 hosts/system76/config/zoom.conf delete mode 100644 hosts/system76/config/zoomus.conf diff --git a/.gitignore b/.gitignore index 1a73c22..249fb0b 100644 --- a/.gitignore +++ b/.gitignore @@ -35,5 +35,6 @@ **/credentials/** **/.credentials.json **/password +**/hosts.yml **/*.env .secrets.zsh diff --git a/common/FreeCAD/user.cfg b/common/FreeCAD/user.cfg new file mode 100644 index 0000000..b1b9308 --- /dev/null +++ b/common/FreeCAD/user.cfg @@ -0,0 +1,1081 @@ + + + + + + + + + + /home/connor/docs/cad + + PartDesignWorkbench + PartDesignWorkbench + + + + + + + PartDesignWorkbench + STL Mesh (*.stl *.ast) + + Supported formats ( *.3DS *.3MF *.3ds *.3mf *.ASC *.ASMT *.AST *.BDF *.BMP *.BMS *.BREP *.BRP *.CNC *.CSG *.CSV *.CUR *.DAE *.DAT *.DWG *.DXF *.E57 *.EMN *.FCMacro *.FCMat *.FCScript *.FRD *.GC *.GCAD *.GCODE *.GIF *.GLB *.GLTF *.ICNS *.ICO *.IGES *.IGS *.INP *.IV *.JFIF *.JP2 *.JPEG *.JPG *.JSON *.MED *.MESHJSON *.MESHYAML *.MNG *.NC *.NCC *.NGC *.OBJ *.OCA *.OFF *.PBM *.PCD *.PDF *.PGM *.PLMXML *.PLY *.PNG *.PPM *.PVTU *.SHP *.SMF *.STEP *.STL *.STP *.STPZ *.SVG *.SVGZ *.TAP *.TGA *.TIF *.TIFF *.UNV *.VRML *.VTK *.VTU *.WBMP *.WEBP *.WRL *.WRL.GZ *.WRZ *.XBM *.XDMF *.XLSX *.XML *.XPM *.YAML *.Z88 *.ZIP *.asc *.asmt *.ast *.bdf *.bmp *.bms *.brep *.brp *.cnc *.csg *.csv *.cur *.dae *.dat *.dwg *.dxf *.e57 *.emn *.fcmacro *.fcscript *.frd *.gc *.gcad *.gcode *.gif *.glb *.gltf *.icns *.ico *.ifc *.iges *.igs *.inp *.iv *.jfif *.jp2 *.jpeg *.jpg *.json *.med *.meshjson *.meshyaml *.mng *.nc *.ncc *.ngc *.obj *.oca *.off *.pbm *.pcd *.pdf *.pgm *.plmxml *.ply *.png *.ppm *.pvtu *.py *.shp *.smf *.step *.stl *.stp *.stpZ *.stpz *.svg *.svgz *.tap *.tga *.tif *.tiff *.unv *.vrml *.vtk *.vtu *.wbmp *.webp *.wrl *.wrl.gz *.wrz *.xbm *.xdmf *.xlsx *.xml *.xpm *.yaml *.z88 *.zip) + + + + + + + + + + + /home/connor/.local/share/FreeCAD/Macro + + + + + FullScript.FCScript + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + AP214IS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + IfcProduct + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 100000000101000 + + + + + + + Construction + + + + + + + + + + R + G + L + F + E + B + C + / + W + O + A + N + ` + Q + U + S + P + M + X + Y + Z + + + + + + + + + + + + + + + + 1.00 mm + + 2,2 + 3,2,0.2,2 + 0.2,2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 10.00 mm + + + + + + + + + + + + + + + + + + As Is + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + %N = %V + + + + + + + + + + + + + #1864ab + #f8f9fa + #f8f9fa + #f8f9fa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 7f9fd73b-50c9-41d8-b7b2-575a030c1eeb + a004c270-7d2c-4898-bec6-b1120edacea9 + 68b152b2-fd5e-4f10-8db0-1a2df3fe0fda + + 7f9fd73b-50c9-41d8-b7b2-575a030c1eeb + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + FreeCAD + FreeCAD Dark + FreeCAD.qss + Freecad Overlay.qss + + + AAAA/wAAAAD9AAAAAgAAAAAAAAG2AAAEZvwCAAAABPsAAAAcAFMAZQBsAGUAYwB0AGkAbwBuACAAdgBpAGUAdwAAAACLAAAEtQAAAIMA////+wAAABAAQwBsAGkAcABwAGkAbgBnAQAAA40AAAHLAAAAAAAAAAD7AAAACgBUAGEAcwBrAHMBAAAAiwAABGYAAABTAP////sAAAAKAE0AbwBkAGUAbAAAAAAA/////wAAAAAAAAAAAAAAAwAACfoAAADT/AEAAAAB/AAAAAAAAAn6AAAAAAD////6/////wEAAAAC+wAAABYAUgBlAHAAbwByAHQAIAB2AGkAZQB3AAAAAAD/////AAAASgD////7AAAAHABQAHkAdABoAG8AbgAgAGMAbwBuAHMAbwBsAGUAAAAAAP////8AAABKAP///wAAB/AAAARmAAAABAAAAAQAAAAIAAAACPwAAAADAAAAAgAAAAYAAAAIAEYAaQBsAGUBAAAAAP////8AAAAAAAAAAAAAAAgARQBkAGkAdAEAAABz/////wAAAAAAAAAAAAAAEgBDAGwAaQBwAGIAbwBhAHIAZAAAAAAA/////wAAAAAAAAAAAAAAEgBXAG8AcgBrAGIAZQBuAGMAaAEAAAEW/////wAAAAAAAAAAAAAACgBNAGEAYwByAG8AAAAAAP////8AAAAAAAAAAAAAAAgAVgBpAGUAdwEAAAHo/////wAAAAAAAAAAAAAAAgAAAAIAAAASAFMAdAByAHUAYwB0AHUAcgBlAQAAAAD/////AAAAAAAAAAAAAAAIAEgAZQBsAHABAAAA0f////8AAAAAAAAAAAAAAAIAAAAFAAAAIABJAG4AZABpAHYAaQBkAHUAYQBsACAAVgBpAGUAdwBzAAAAAAD/////AAAAAAAAAAAAAAA2AFAAYQByAHQAIABEAGUAcwBpAGcAbgAgAEgAZQBsAHAAZQByACAARgBlAGEAdAB1AHIAZQBzAQAAAAD/////AAAAAAAAAAAAAAA6AFAAYQByAHQAIABEAGUAcwBpAGcAbgAgAE0AbwBkAGUAbABpAG4AZwAgAEYAZQBhAHQAdQByAGUAcwEAAADm/////wAAAAAAAAAAAAAAOgBQAGEAcgB0ACAARABlAHMAaQBnAG4AIABEAHIAZQBzAHMALQBVAHAAIABGAGUAYQB0AHUAcgBlAHMBAAADAf////8AAAAAAAAAAAAAAEYAUABhAHIAdAAgAEQAZQBzAGkAZwBuACAAVAByAGEAbgBzAGYAbwByAG0AYQB0AGkAbwBuACAARgBlAGEAdAB1AHIAZQBzAQAAA5b/////AAAAAAAAAAA= + 2560 0 2476 1297 + + + + + + + + + + + + + + Std_SelForward + Std_SelBack + Gui::CADNavigationStyle + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + (0,0,-1) + + + + + + + + + + + + + + + + + + + Trimetric + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + %Y%m%d-%H%M%S + + + + https://en.wikipedia.org/wiki/All_rights_reserved + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0xProto Nerd Font + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + AssemblyWorkbench,BIMWorkbench,CAMWorkbench,DraftWorkbench,FemWorkbench,InspectionWorkbench,MaterialWorkbench,MeshWorkbench,OpenSCADWorkbench,PartDesignWorkbench,PartWorkbench,PointsWorkbench,ReverseEngineeringWorkbench,RobotWorkbench,SketcherWorkbench,SpreadsheetWorkbench,SurfaceWorkbench,TechDrawWorkbench,TestWorkbench + NoneWorkbench + + + + /home/connor/docs/cad/camera_mount.FCStd + /home/connor/photo/temp_emblem.FCStd + /home/connor/photo/mosaic_outline.dxf + /home/connor/docs/orion/misc/alt_assembly.FCStd + + + + + + + + + + + + + + Ctrl+Shift+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Model, + 30 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 55 mm + + 60.00 mm + 55 mm + + + + 20 ° + + 35.56 ° + 20 ° + + + + 10.00 mm + + 10.00 mm + + + + 5.00 mm + + 5.00 mm + + + + 0.00 mm + + 0.00 mm + + + + 0.00 ° + + 0.00 ° + + + + 0.00 ° + + 0.00 ° + + + + 30.00 mm + + 30.00 mm + 15.00 mm + + + + 10.00 mm + + 10.00 mm + + + + 0.00 mm + + 0.00 mm + + + + 0.00 ° + + 0.00 ° + + + + 0.00 ° + + 0.00 ° + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/common/GIMP/2.10/colorrc b/common/GIMP/2.10/colorrc new file mode 100644 index 0000000..de27028 --- /dev/null +++ b/common/GIMP/2.10/colorrc @@ -0,0 +1,20 @@ +# GIMP colorrc +# +# This file holds a list of recently used colors. + +(color-history + (color-rgba 0.96261682242990654 0 0 1) + (color-rgba 1 1 1 1) + (color-rgba 0.20000000000000001 0.27843137254901962 0.27450980392156865 1) + (color-rgba 0.48627450980392156 0.59999999999999998 0.20000000000000001 1) + (color-rgba 0.5725490196078431 0.2196078431372549 0.14901960784313725 1) + (color-rgba 0.74117647058823533 0.45490196078431372 0.058823529411764705 1) + (color-rgba 0.12941176470588237 0.10588235294117647 0.13333333333333333 1) + (color-rgba 0.64705884456634521 0.24705882370471954 0.16862745583057404 1) + (color-rgba 0.80392158031463623 0.87450981140136719 0.62745100259780884 1) + (color-rgba 0.35294118523597717 0.49019607901573181 0.48627451062202454 1) + (color-rgba 0.078431372549019607 0.066666666666666666 0.082352941176470587 1) + (color-rgba 0.92549019607843142 0.60392156862745094 0.16078431372549021 1) + (color-rgba 0 0 0 1)) + +# end of colorrc diff --git a/common/GIMP/2.10/gimprc b/common/GIMP/2.10/gimprc new file mode 100644 index 0000000..68dcf1d --- /dev/null +++ b/common/GIMP/2.10/gimprc @@ -0,0 +1,35 @@ +# GIMP gimprc +# +# This is your personal gimprc file. Any variable defined in this file takes +# precedence over the value defined in the system-wide gimprc: +# /etc/gimp/2.0/gimprc +# Most values can be set within GIMP by changing some options in the +# Preferences dialog. + +(import-raw-plug-in "${gimp_plug_in_dir}/plug-ins/file-raw-placeholder/file-raw-placeholder") +(monitor-xresolution 108) +(monitor-yresolution 108) +(layer-new-name "Midground") +(layer-add-mask-type copy) +(fill-options + (style solid) + (antialias yes) + (feather no) + (feather-radius 10)) +(stroke-options + (style solid) + (antialias yes) + (feather no) + (feather-radius 10) + (method line) + (width 3) + (unit pixels) + (cap-style butt) + (join-style miter) + (miter-limit 10) + (dash-offset 0) + (dash-info 0) + (emulate-brush-dynamics no)) + + +# end of gimprc diff --git a/common/GIMP/2.10/menurc b/common/GIMP/2.10/menurc new file mode 100644 index 0000000..a9c335a --- /dev/null +++ b/common/GIMP/2.10/menurc @@ -0,0 +1,1315 @@ +; gimp-2.10 GtkAccelMap rc-file -*- scheme -*- +; this file is an automated accelerator map dump +; +; (gtk_accel_path "/tools/tools-rotate-image-arbitrary" "") +; (gtk_accel_path "/file/file-menu" "") +; (gtk_accel_path "/view/view-show-canvas-boundary" "") +; (gtk_accel_path "/tools/tools-opacity-set-to-default" "") +; (gtk_accel_path "/context/context-background-value-decrease" "") +; (gtk_accel_path "/vectors/vectors-color-tag-brown" "") +; (gtk_accel_path "/tools/tools-opacity-increase-skip" "greater") +; (gtk_accel_path "/tools/tools-vector" "b") +; (gtk_accel_path "/view/view-scroll-left" "") +; (gtk_accel_path "/image/image-convert-u8" "") +; (gtk_accel_path "/tools/tools-airbrush-rate-increase" "") +; (gtk_accel_path "/tools/tools-spacing-set-to-default" "") +; (gtk_accel_path "/view/view-show-statusbar" "") +; (gtk_accel_path "/layers/layers-opacity-transparent" "") +; (gtk_accel_path "/vectors/vectors-color-tag-orange" "") +; (gtk_accel_path "/view/view-zoom-8-1-accel" "KP_4") +; (gtk_accel_path "/context/context-background-value-set" "") +; (gtk_accel_path "/context/context-paint-mode-menu" "") +; (gtk_accel_path "/filters/filters-motion-blur-linear" "") +; (gtk_accel_path "/filters/filters-gegl-graph" "") +; (gtk_accel_path "/windows/windows-display-0002" "") +; (gtk_accel_path "/context/context-brush-select-set" "") +; (gtk_accel_path "/edit/edit-copy" "c") +; (gtk_accel_path "/context/context-brush-shape-circle" "") +; (gtk_accel_path "/windows/windows-display-0001" "") +; (gtk_accel_path "/vectors/vectors-lock-content" "") +; (gtk_accel_path "/context/context-opacity-opaque" "") +; (gtk_accel_path "/view/view-color-management-menu" "") +; (gtk_accel_path "/filters/filters-spherize" "") +; (gtk_accel_path "/channels/channels-new-last-values" "") +; (gtk_accel_path "/vectors/vectors-merge-visible" "") +; (gtk_accel_path "/plug-in/script-fu-slide" "") +; (gtk_accel_path "/plug-in/plug-in-spheredesigner" "") +; (gtk_accel_path "/filters/filters-curves" "") +; (gtk_accel_path "/channels/channels-lock-position" "") +; (gtk_accel_path "/context/context-brush-menu" "") +; (gtk_accel_path "/context/context-foreground-blue-decrease" "") +; (gtk_accel_path "/context/context-colors-menu" "") +; (gtk_accel_path "/edit/edit-undo-clear" "") +; (gtk_accel_path "/context/context-gradient-select-first" "") +; (gtk_accel_path "/layers/layers-color-tag-brown" "") +; (gtk_accel_path "/plug-in/plug-in-imagemap" "") +; (gtk_accel_path "/filters/filters-recent-menu" "") +; (gtk_accel_path "/plug-in/plug-in-map-object" "") +; (gtk_accel_path "/layers/layers-text-along-vectors" "") +; (gtk_accel_path "/view/view-zoom-revert" "grave") +; (gtk_accel_path "/dialogs/dialogs-symmetry" "") +; (gtk_accel_path "/plug-in/plug-in-script-fu-console" "") +; (gtk_accel_path "/filters/filters-plasma" "") +; (gtk_accel_path "/view/view-color-management-enable" "") +; (gtk_accel_path "/dialogs/dialogs-undo-history" "") +; (gtk_accel_path "/edit/edit-cut" "x") +; (gtk_accel_path "/context/context-foreground-value-increase-skip" "") +; (gtk_accel_path "/plug-in/script-fu-addborder" "") +; (gtk_accel_path "/view/view-display-intent-absolute-colorimetric" "") +; (gtk_accel_path "/plug-in/file-pdf-save-transparent" "") +; (gtk_accel_path "/context/context-background-red-decrease" "") +; (gtk_accel_path "/tools/tools-airbrush-rate-maximum" "") +; (gtk_accel_path "/vectors/vectors-color-tag-menu" "") +; (gtk_accel_path "/filters/filters-focus-blur" "") +; (gtk_accel_path "/view/view-fullscreen" "F11") +; (gtk_accel_path "/context/context-brush-radius-decrease-skip" "") +; (gtk_accel_path "/dialogs/dialogs-brushes" "b") +; (gtk_accel_path "/tools/tools-spacing-minimum" "") +; (gtk_accel_path "/context/context-foreground-blue-maximum" "") +; (gtk_accel_path "/view/view-zoom-2-1" "2") +; (gtk_accel_path "/view/view-snap-to-vectors" "") +; (gtk_accel_path "/context/context-foreground-red-increase" "") +; (gtk_accel_path "/image/image-properties" "Return") +; (gtk_accel_path "/drawable/drawable-rotate-270" "") +; (gtk_accel_path "/plug-in/script-fu-predator" "") +; (gtk_accel_path "/tools/tools-hardness-increase-percent" "") +; (gtk_accel_path "/view/view-show-grid" "") +; (gtk_accel_path "/plug-in/plug-in-colorify" "") +; (gtk_accel_path "/image/image-color-management-enabled" "") +; (gtk_accel_path "/plug-in/file-bigtiff-save" "") +; (gtk_accel_path "/tools/tools-angle-increase" "") +; (gtk_accel_path "/vectors/vectors-color-tag-violet" "") +; (gtk_accel_path "/context/context-background-saturation-decrease-skip" "") +; (gtk_accel_path "/layers/layers-composite-mode-union" "") +; (gtk_accel_path "/channels/channels-color-tag-blue" "") +; (gtk_accel_path "/windows/windows-dialogs-menu" "") +; (gtk_accel_path "/tools/tools-gegl" "") +; (gtk_accel_path "/tool-options/tool-options-reset" "") +; (gtk_accel_path "/layers/layers-delete" "") +; (gtk_accel_path "/view/view-display-intent-menu" "") +; (gtk_accel_path "/vectors/vectors-edit" "") +; (gtk_accel_path "/filters/filters-illusion" "") +; (gtk_accel_path "/context/context-colormap-foreground-previous" "") +; (gtk_accel_path "/layers/layers-lock-content" "") +; (gtk_accel_path "/file/file-create-menu" "") +; (gtk_accel_path "/tools/tools-spacing-decrease-skip" "") +; (gtk_accel_path "/filters/filters-dropshadow" "") +; (gtk_accel_path "/context/context-background-green-increase" "") +; (gtk_accel_path "/layers/layers-alpha-selection-add" "") +; (gtk_accel_path "/plug-in/script-fu-make-brush-rectangular-feathered" "") +; (gtk_accel_path "/patterns/patterns-delete" "") +; (gtk_accel_path "/context/context-brush-radius-menu" "") +; (gtk_accel_path "/view/view-scroll-page-right" "") +; (gtk_accel_path "/layers/layers-blend-space-menu" "") +; (gtk_accel_path "/dockable/dialogs-histogram" "") +; (gtk_accel_path "/layers/layers-opacity-opaque" "") +; (gtk_accel_path "/context/context-background-saturation-increase" "") +; (gtk_accel_path "/dialogs/dialogs-dynamics-editor" "") +; (gtk_accel_path "/layers/layers-composite-space-menu" "") +; (gtk_accel_path "/file/file-revert" "") +; (gtk_accel_path "/filters/filters-fattal-2002" "") +; (gtk_accel_path "/tools/tools-color-average-radius-set" "") +; (gtk_accel_path "/filters/filters-distorts-menu" "") +; (gtk_accel_path "/tools/tools-fuzzy-select" "u") +; (gtk_accel_path "/documents/documents-reload-previews" "") +; (gtk_accel_path "/debug/debug-show-image-graph" "") +; (gtk_accel_path "/brushes/brushes-show-in-file-manager" "") +; (gtk_accel_path "/context/context-brush-angle-maximum" "") +; (gtk_accel_path "/view/view-zoom-selection" "") +; (gtk_accel_path "/tools/tools-cage" "g") +; (gtk_accel_path "/file/file-open-location" "") +; (gtk_accel_path "/plug-in/plug-in-blur" "") +; (gtk_accel_path "/layers/layers-opacity-decrease" "") +; (gtk_accel_path "/context/context-foreground-hue-decrease-skip" "") +; (gtk_accel_path "/layers/layers-mask-add" "") +; (gtk_accel_path "/filters/filters-diffraction-patterns" "") +; (gtk_accel_path "/image/image-convert-rgb" "") +; (gtk_accel_path "/tools/tools-spacing-decrease-percent" "") +; (gtk_accel_path "/context/context-gradient-select-last" "") +; (gtk_accel_path "/file/file-create-template" "") +; (gtk_accel_path "/vectors/vectors-color-tag-yellow" "") +; (gtk_accel_path "/plug-in/plug-in-emboss" "") +; (gtk_accel_path "/dockable/dockable-view-type-grid" "") +; (gtk_accel_path "/view/view-navigation-window" "") +; (gtk_accel_path "/windows/windows-tabs-position-bottom" "") +; (gtk_accel_path "/context/context-brush-angle-set" "") +; (gtk_accel_path "/documents/documents-raise-or-open" "") +; (gtk_accel_path "/context/context-background-blue-decrease" "") +; (gtk_accel_path "/filters/filters-linear-sinusoid" "") +; (gtk_accel_path "/context/context-foreground-green-set" "") +; (gtk_accel_path "/tools/tools-levels" "") +; (gtk_accel_path "/plug-in/plug-in-script-fu-server" "") +; (gtk_accel_path "/dock/dock-move-to-screen-menu" "") +; (gtk_accel_path "/windows/windows-tabs-position-right" "") +; (gtk_accel_path "/plug-in/script-fu-line-nova" "") +; (gtk_accel_path "/layers/layers-color-tag-blue" "") +; (gtk_accel_path "/dialogs/dialogs-indexed-palette" "") +; (gtk_accel_path "/tools/tools-object-1-set" "") +; (gtk_accel_path "/channels/channels-new" "") +; (gtk_accel_path "/edit/edit-named-paste" "") +; (gtk_accel_path "/tools/tools-hardness-minimum" "") +; (gtk_accel_path "/filters/filters-menu" "") +; (gtk_accel_path "/tools/tools-opacity-set" "") +; (gtk_accel_path "/dockable/dialogs-toolbox" "b") +; (gtk_accel_path "/plug-in/gimp-help-using-fileformats" "") +; (gtk_accel_path "/edit/edit-strong-redo" "y") +; (gtk_accel_path "/filters/filters-alien-map" "") +; (gtk_accel_path "/plug-in/gimp-online-bugs-features" "") +; (gtk_accel_path "/tools/tools-object-2-last" "") +; (gtk_accel_path "/tools/tools-paintbrush-force-set" "") +; (gtk_accel_path "/vectors/vectors-linked" "") +; (gtk_accel_path "/filters/filters-gaussian-blur-selective" "") +; (gtk_accel_path "/filters/filters-unsharp-mask" "") +; (gtk_accel_path "/fonts/fonts-refresh" "") +; (gtk_accel_path "/file/file-open-recent-menu" "") +; (gtk_accel_path "/tools/tools-hardness-decrease" "") +; (gtk_accel_path "/layers/layers-mask-show" "") +; (gtk_accel_path "/view/view-softproof-intent-absolute-colorimetric" "") +; (gtk_accel_path "/brushes/brushes-open-as-image" "") +; (gtk_accel_path "/tools/tools-angle-decrease" "") +; (gtk_accel_path "/layers/layers-merge-layers-last-values" "") +; (gtk_accel_path "/context/context-background-blue-set" "") +; (gtk_accel_path "/tools/tools-opacity-increase-percent" "") +; (gtk_accel_path "/context/context-background-value-decrease-skip" "") +; (gtk_accel_path "/patterns/patterns-new" "") +; (gtk_accel_path "/plug-in/script-fu-spinning-globe" "") +; (gtk_accel_path "/windows/windows-menu" "") +; (gtk_accel_path "/tools/tools-object-1-first" "") +; (gtk_accel_path "/image/image-flip-horizontal" "") +; (gtk_accel_path "/plug-in/plug-in-sharpen" "") +; (gtk_accel_path "/tools/tools-force-decrease-percent" "") +; (gtk_accel_path "/context/context-brush-hardness-set" "") +; (gtk_accel_path "/select/select-stroke-last-values" "") +; (gtk_accel_path "/filters/filters-long-shadow" "") +; (gtk_accel_path "/context/context-brush-radius-increase-percent" "") +; (gtk_accel_path "/plug-in/plug-in-animationoptimize-diff" "") +; (gtk_accel_path "/tools/tools-perspective-clone" "") +; (gtk_accel_path "/image/colors-auto-menu" "") +; (gtk_accel_path "/vectors/vectors-selection-to-vectors-advanced" "") +; (gtk_accel_path "/context/context-background-saturation-decrease" "") +; (gtk_accel_path "/plug-in/script-fu-unsharp-mask" "") +; (gtk_accel_path "/tools/tools-rect-select" "r") +; (gtk_accel_path "/tools/tools-angle-set-to-default" "") +; (gtk_accel_path "/filters/filters-semi-flatten" "") +; (gtk_accel_path "/tools/tools-opacity-maximum" "") +; (gtk_accel_path "/dockable/dockable-tab-style-preview-name" "") +; (gtk_accel_path "/view/view-zoom-in-skip" "") +; (gtk_accel_path "/tools/tools-airbrush-flow-decrease" "") +; (gtk_accel_path "/plug-in/plug-in-dog" "") +; (gtk_accel_path "/debug/debug-mem-profile" "") +; (gtk_accel_path "/channels/channels-visible" "") +; (gtk_accel_path "/edit/edit-paste-as-new-layer" "") +; (gtk_accel_path "/context/context-foreground-hue-maximum" "") +; (gtk_accel_path "/tool-options/tool-options-restore-preset-menu" "") +; (gtk_accel_path "/dockable/dialogs-undo-history" "") +; (gtk_accel_path "/tools/tools-paintbrush-hardness-set" "") +; (gtk_accel_path "/filters/filters-stretch-contrast" "") +; (gtk_accel_path "/filters/filters-color-to-alpha" "") +; (gtk_accel_path "/dockable/dialogs-cursor" "") +; (gtk_accel_path "/context/context-brush-aspect-maximum" "") +; (gtk_accel_path "/dockable/dialogs-templates" "") +; (gtk_accel_path "/plug-in/script-fu-ripply-anim" "") +; (gtk_accel_path "/view/view-show-menubar" "") +; (gtk_accel_path "/filters/filters-web-menu" "") +; (gtk_accel_path "/filters/filters-bloom" "") +; (gtk_accel_path "/filters/filters-exposure" "") +; (gtk_accel_path "/tools/tools-foreground-select-brush-size-set" "") +; (gtk_accel_path "/tools/tools-spacing-increase" "") +; (gtk_accel_path "/context/context-background-hue-decrease-skip" "") +; (gtk_accel_path "/select/select-shrink" "") +; (gtk_accel_path "/view/view-scroll-horizontal" "") +; (gtk_accel_path "/select/select-fill-last-values" "") +; (gtk_accel_path "/image/image-resize-to-selection" "") +; (gtk_accel_path "/plug-in/script-fu-tile-blur" "") +; (gtk_accel_path "/filters/filters-color-temperature" "") +; (gtk_accel_path "/plug-in/script-fu-paste-as-pattern" "") +; (gtk_accel_path "/tools/tools-paintbrush-aspect-ratio-set" "") +; (gtk_accel_path "/plug-in/plug-in-gfig" "") +; (gtk_accel_path "/context/context-foreground-hue-set" "") +; (gtk_accel_path "/tools/tools-gradient" "g") +; (gtk_accel_path "/select/select-none" "a") +; (gtk_accel_path "/edit/edit-named-cut" "") +; (gtk_accel_path "/context/context-palette-select-set" "") +; (gtk_accel_path "/channels/channels-select-next" "") +; (gtk_accel_path "/image/image-precision-menu" "") +; (gtk_accel_path "/layers/layers-mask-menu" "") +; (gtk_accel_path "/layers/layers-alpha-selection-replace" "") +; (gtk_accel_path "/plug-in/gimp-palette-export-php" "") +; (gtk_accel_path "/filters/filters-noise-hsv" "") +; (gtk_accel_path "/filters/filters-noise-simplex" "") +; (gtk_accel_path "/help/help-help" "F1") +; (gtk_accel_path "/context/context-opacity-increase-skip" "") +; (gtk_accel_path "/view/view-padding-color-light-check" "") +; (gtk_accel_path "/context/context-brush-spikes-minimum" "") +; (gtk_accel_path "/plug-in/plug-in-gflare" "") +; (gtk_accel_path "/context/context-brush-aspect-set" "") +; (gtk_accel_path "/plug-in/plug-in-zealouscrop" "") +; (gtk_accel_path "/dockable/dialogs-gradient-editor" "") +; (gtk_accel_path "/tools/tools-color-menu" "") +; (gtk_accel_path "/tools/tools-airbrush-flow-maximum" "") +; (gtk_accel_path "/view/view-flip-horizontally" "") +; (gtk_accel_path "/layers/layers-composite-mode-auto" "") +; (gtk_accel_path "/plug-in/gimp-online-developer-web-site" "") +; (gtk_accel_path "/dockable/dockable-tab-style-name" "") +; (gtk_accel_path "/vectors/vectors-raise-to-top" "") +; (gtk_accel_path "/view/view-scroll-page-left" "") +; (gtk_accel_path "/tools/tools-threshold" "") +; (gtk_accel_path "/filters/filters-threshold" "") +; (gtk_accel_path "/tools/tools-airbrush-flow-set" "") +; (gtk_accel_path "/context/context-brush-spacing-minimum" "") +; (gtk_accel_path "/layers/layers-select-bottom" "End") +; (gtk_accel_path "/dockable/dockable-tab-style-preview" "") +; (gtk_accel_path "/dockable/dialogs-channels" "") +; (gtk_accel_path "/channels/channels-color-tag-none" "") +; (gtk_accel_path "/tools/tools-paintbrush" "p") +; (gtk_accel_path "/vectors/vectors-color-tag-gray" "") +; (gtk_accel_path "/context/context-brush-spacing-increase-skip" "") +; (gtk_accel_path "/vectors/vectors-stroke-last-values" "") +; (gtk_accel_path "/view/view-show-sample-points" "") +; (gtk_accel_path "/documents/documents-remove" "") +; (gtk_accel_path "/filters/filters-antialias" "") +; (gtk_accel_path "/dockable/dockable-preview-size-medium" "") +; (gtk_accel_path "/dockable/dialogs-colors" "") +; (gtk_accel_path "/view/view-show-all" "") +; (gtk_accel_path "/debug/debug-benchmark-projection" "") +; (gtk_accel_path "/context/context-brush-spikes-decrease" "") +; (gtk_accel_path "/filters/filters-noise-hurl" "") +; (gtk_accel_path "/file/file-save-and-close" "") +; (gtk_accel_path "/dialogs/dialogs-document-history" "") +; (gtk_accel_path "/context/context-opacity-set" "") +; (gtk_accel_path "/plug-in/script-fu-blend-anim" "") +; (gtk_accel_path "/view/view-zoom-in" "plus") +; (gtk_accel_path "/plug-in/plug-in-smooth-palette" "") +; (gtk_accel_path "/context/context-swatch-background-set" "") +; (gtk_accel_path "/windows/windows-tab-position" "") +; (gtk_accel_path "/dialogs/dialogs-error-console" "") +; (gtk_accel_path "/view/view-rotate-15" "") +; (gtk_accel_path "/view/view-zoom" "") +; (gtk_accel_path "/view/view-scroll-top-border" "") +; (gtk_accel_path "/layers/layers-new" "n") +; (gtk_accel_path "/plug-in/gimp-palette-export-java" "") +; (gtk_accel_path "/context/context-foreground-blue-increase-skip" "") +; (gtk_accel_path "/plug-in/script-fu-burn-in-anim" "") +; (gtk_accel_path "/tools/tools-paint-menu" "") +; (gtk_accel_path "/plug-in/plug-in-colormap-swap" "") +; (gtk_accel_path "/dockable/dialogs-mypaint-brushes" "") +; (gtk_accel_path "/dockable/dockable-preview-size-menu" "") +; (gtk_accel_path "/image/colors-menu" "") +; (gtk_accel_path "/vectors/vectors-lock-position" "") +; (gtk_accel_path "/vectors/vectors-visible" "") +; (gtk_accel_path "/image/image-flatten" "") +; (gtk_accel_path "/tools/tools-spacing-decrease" "") +; (gtk_accel_path "/filters/filters-dither" "") +; (gtk_accel_path "/plug-in/plug-in-decompose-registered" "") +; (gtk_accel_path "/channels/channels-selection-intersect" "") +; (gtk_accel_path "/plug-in/plug-in-cartoon" "") +; (gtk_accel_path "/view/view-softproof-intent-perceptual" "") +; (gtk_accel_path "/tools/tools-offset" "") +; (gtk_accel_path "/image/image-convert-float" "") +; (gtk_accel_path "/edit/edit-clear" "Delete") +; (gtk_accel_path "/view/view-scroll-down" "") +; (gtk_accel_path "/context/context-foreground-green-increase" "") +; (gtk_accel_path "/image/image-scale" "") +; (gtk_accel_path "/tools/tools-aspect-increase-skip" "") +; (gtk_accel_path "/context/context-colormap-background-previous" "") +; (gtk_accel_path "/image/colors-info-menu" "") +; (gtk_accel_path "/plug-in/plug-in-lic" "") +; (gtk_accel_path "/context/context-background-value-increase" "") +; (gtk_accel_path "/dialogs/dialogs-channels" "") +; (gtk_accel_path "/tools/tools-size-maximum" "") +; (gtk_accel_path "/dockable/dialogs-dashboard" "") +; (gtk_accel_path "/vectors/vectors-select-previous" "") +; (gtk_accel_path "/layers/layers-mode-menu" "") +; (gtk_accel_path "/filters/filters-render-nature-menu" "") +; (gtk_accel_path "/layers/layers-color-tag-none" "") +; (gtk_accel_path "/dockable/dialogs-gradients" "g") +; (gtk_accel_path "/tools/tools-heal" "h") +; (gtk_accel_path "/view/view-scroll-right" "") +; (gtk_accel_path "/dialogs/dialogs-cursor" "") +; (gtk_accel_path "/context/context-foreground-saturation-minimum" "") +; (gtk_accel_path "/context/context-background-red-maximum" "") +; (gtk_accel_path "/context/context-brush-spikes-menu" "") +; (gtk_accel_path "/filters/filters-component-extract" "") +; (gtk_accel_path "/filters/filters-recent-10" "") +; (gtk_accel_path "/drawable/drawable-flip-horizontal" "") +; (gtk_accel_path "/layers/layers-merge-group" "") +; (gtk_accel_path "/file/file-open" "o") +; (gtk_accel_path "/plug-in/script-fu-font-map" "") +; (gtk_accel_path "/tools/tools-transform-preview-opacity-set" "") +; (gtk_accel_path "/dialogs/dialogs-histogram" "") +; (gtk_accel_path "/filters/filters-lens-blur" "") +; (gtk_accel_path "/view/view-rotate-set-absolute" "") +; (gtk_accel_path "/layers/layers-mask-apply" "") +; (gtk_accel_path "/context/context-brush-radius-increase-less" "") +; (gtk_accel_path "/dialogs/dialogs-brush-editor" "") +; (gtk_accel_path "/context/context-background-saturation-maximum" "") +; (gtk_accel_path "/context/context-foreground-blue-increase" "") +; (gtk_accel_path "/layers/layers-duplicate" "d") +; (gtk_accel_path "/context/context-palette-select-next" "") +; (gtk_accel_path "/context/context-palette-foreground-next-skip" "") +; (gtk_accel_path "/layers/layers-mask-selection-add" "") +; (gtk_accel_path "/tools/tools-dodge-burn" "d") +; (gtk_accel_path "/edit/edit-copy-visible" "c") +; (gtk_accel_path "/brushes/brushes-duplicate" "") +; (gtk_accel_path "/layers/layers-select-previous" "Page_Up") +; (gtk_accel_path "/tools/tools-angle-maximum" "") +; (gtk_accel_path "/dockable/dockable-lock-tab" "") +; (gtk_accel_path "/context/context-foreground-value-minimum" "") +; (gtk_accel_path "/file/file-close-all" "w") +; (gtk_accel_path "/dialogs/dialogs-sample-points" "") +; (gtk_accel_path "/layers/layers-opacity-menu" "") +; (gtk_accel_path "/plug-in/plug-in-metadata-editor" "") +; (gtk_accel_path "/tools/tools-angle-increase-percent" "") +; (gtk_accel_path "/plug-in/script-fu-drop-shadow" "") +; (gtk_accel_path "/filters/filters-render-menu" "") +; (gtk_accel_path "/plug-in/plug-in-jigsaw" "") +; (gtk_accel_path "/dockable/dockable-tab-style-menu" "") +; (gtk_accel_path "/context/context-brush-hardness-decrease-skip" "") +; (gtk_accel_path "/plug-in/file-pdf-load" "") +; (gtk_accel_path "/plug-in/script-fu-guides-from-selection" "") +; (gtk_accel_path "/plug-in/script-fu-selection-to-brush" "") +; (gtk_accel_path "/layers/layers-blend-space-rgb-linear" "") +; (gtk_accel_path "/context/context-background-blue-maximum" "") +; (gtk_accel_path "/tools/tools-zoom" "z") +; (gtk_accel_path "/context/context-swatch-foreground-previous-skip" "") +; (gtk_accel_path "/context/context-background-red-increase" "") +; (gtk_accel_path "/plug-in/plug-in-checkerboard" "") +; (gtk_accel_path "/dockable/dockable-popup" "") +; (gtk_accel_path "/dockable/dockable-preview-size-extra-small" "") +; (gtk_accel_path "/filters/filters-render-clouds-menu" "") +; (gtk_accel_path "/context/context-palette-foreground-first" "") +; (gtk_accel_path "/view/view-zoom-4-1" "3") +; (gtk_accel_path "/channels/channels-duplicate" "") +; (gtk_accel_path "/context/context-brush-aspect-menu" "") +; (gtk_accel_path "/tools/tools-object-2-set" "") +; (gtk_accel_path "/context/context-brush-radius-increase" "") +; (gtk_accel_path "/context/context-swatch-background-next" "") +; (gtk_accel_path "/view/view-display-black-point-compensation" "") +; (gtk_accel_path "/tools/tools-size-decrease" "bracketleft") +; (gtk_accel_path "/dialogs/dialogs-colors" "") +; (gtk_accel_path "/filters/filters-edge" "") +; (gtk_accel_path "/image/image-rotate-180" "") +; (gtk_accel_path "/image/image-new" "n") +; (gtk_accel_path "/tool-options/tool-options-delete-preset-menu" "") +; (gtk_accel_path "/tools/tools-ink-blob-size-set" "") +; (gtk_accel_path "/filters/filters-value-propagate" "") +; (gtk_accel_path "/image/image-color-profile-assign" "") +; (gtk_accel_path "/layers/layers-composite-space-rgb-perceptual" "") +; (gtk_accel_path "/context/context-foreground-green-decrease" "") +; (gtk_accel_path "/layers/layers-scale" "") +; (gtk_accel_path "/layers/layers-transparency-menu" "") +; (gtk_accel_path "/layers/layers-alpha-remove" "") +; (gtk_accel_path "/context/context-pattern-select-set" "") +; (gtk_accel_path "/filters/filters-image-gradient" "") +; (gtk_accel_path "/select/select-all" "a") +; (gtk_accel_path "/plug-in/plug-in-filter-pack" "") +; (gtk_accel_path "/context/context-brush-hardness-maximum" "") +; (gtk_accel_path "/plug-in/plug-in-recompose" "") +; (gtk_accel_path "/view/view-zoom-menu" "") +; (gtk_accel_path "/image/image-convert-u16" "") +; (gtk_accel_path "/filters/filters-kaleidoscope" "") +; (gtk_accel_path "/context/context-colormap-foreground-previous-skip" "") +; (gtk_accel_path "/view/view-snap-to-grid" "") +; (gtk_accel_path "/vectors/vectors-fill" "") +; (gtk_accel_path "/view/view-color-management-reset" "") +; (gtk_accel_path "/context/context-background-green-set" "") +; (gtk_accel_path "/tools/tools-force-maximum" "") +; (gtk_accel_path "/context/context-foreground-saturation-increase" "") +; (gtk_accel_path "/dockable/dialogs-device-status" "") +; (gtk_accel_path "/edit/edit-named-copy" "") +; (gtk_accel_path "/filters/filters-video-degradation" "") +; (gtk_accel_path "/edit/edit-paste-as-new-layer-in-place" "") +; (gtk_accel_path "/layers/layers-resize" "") +; (gtk_accel_path "/layers/layers-blend-space-rgb-perceptual" "") +; (gtk_accel_path "/layers/layers-stack-menu" "") +; (gtk_accel_path "/dockable/dockable-show-button-bar" "") +; (gtk_accel_path "/view/view-zoom-fill" "") +; (gtk_accel_path "/filters/filters-stretch-contrast-hsv" "") +; (gtk_accel_path "/view/view-padding-color-prefs" "") +; (gtk_accel_path "/plug-in/plug-in-depth-merge" "") +; (gtk_accel_path "/tools/tools-opacity-decrease-skip" "less") +; (gtk_accel_path "/plug-in/plug-in-guillotine" "") +; (gtk_accel_path "/windows/windows-tabs-position-left" "") +; (gtk_accel_path "/documents/documents-recreate-preview" "") +; (gtk_accel_path "/layers/layers-opacity-increase" "") +; (gtk_accel_path "/view/view-padding-color-in-show-all" "") +; (gtk_accel_path "/image/colors-tone-mapping-menu" "") +; (gtk_accel_path "/tools/tools-size-set" "") +; (gtk_accel_path "/context/context-brush-angle-increase-skip" "") +; (gtk_accel_path "/dialogs/dialogs-fonts" "") +; (gtk_accel_path "/channels/channels-linked" "") +; (gtk_accel_path "/dockable/dockable-preview-size-gigantic" "") +; (gtk_accel_path "/plug-in/script-fu-difference-clouds" "") +; (gtk_accel_path "/plug-in/plug-in-dbbrowser" "") +; (gtk_accel_path "/context/context-background-hue-set" "") +; (gtk_accel_path "/plug-in/plug-in-align-layers" "") +; (gtk_accel_path "/context/context-background-blue-increase" "") +; (gtk_accel_path "/dockable/dialogs-palettes" "") +; (gtk_accel_path "/filters/filters-hue-chroma" "") +; (gtk_accel_path "/plug-in/plug-in-blinds" "") +; (gtk_accel_path "/dockable/dockable-preview-size-enormous" "") +; (gtk_accel_path "/filters/filters-edge-detect-menu" "") +; (gtk_accel_path "/channels/channels-lock-content" "") +; (gtk_accel_path "/context/context-paint-mode-next" "") +; (gtk_accel_path "/tools/tools-clone" "c") +; (gtk_accel_path "/plug-in/script-fu-make-brush-elliptical-feathered" "") +; (gtk_accel_path "/tools/tools-color-picker" "o") +; (gtk_accel_path "/context/context-background-value-minimum" "") +; (gtk_accel_path "/drawable/drawable-linked" "") +; (gtk_accel_path "/select/select-sharpen" "") +; (gtk_accel_path "/context/context-colormap-foreground-next" "") +; (gtk_accel_path "/view/view-zoom-4-1-accel" "KP_3") +; (gtk_accel_path "/edit/edit-undo" "z") +; (gtk_accel_path "/plug-in/script-fu-paste-as-brush" "") +; (gtk_accel_path "/filters/filters-noise-cie-lch" "") +; (gtk_accel_path "/filters/filters-invert-perceptual" "") +; (gtk_accel_path "/vectors/vectors-selection-replace" "") +; (gtk_accel_path "/file/file-save-a-copy" "") +; (gtk_accel_path "/vectors/vectors-delete" "") +; (gtk_accel_path "/vectors/vectors-color-tag-blue" "") +; (gtk_accel_path "/channels/channels-edit-attributes" "") +; (gtk_accel_path "/tools/tools-transform-3d" "w") +; (gtk_accel_path "/file/file-show-in-file-manager" "f") +; (gtk_accel_path "/context/context-swatch-background-previous-skip" "") +; (gtk_accel_path "/windows/windows-tabs-position-top" "") +; (gtk_accel_path "/context/context-brush-radius-decrease" "") +; (gtk_accel_path "/filters/filters-light-shadow-menu" "") +; (gtk_accel_path "/layers/layers-mode-previous" "") +; (gtk_accel_path "/vectors/vectors-export" "") +; (gtk_accel_path "/tools/tools-hardness-increase" "") +; (gtk_accel_path "/tools/tools-size-increase-percent" "") +; (gtk_accel_path "/view/view-zoom-16-1-accel" "KP_5") +; (gtk_accel_path "/filters/filters-deinterlace" "") +; (gtk_accel_path "/plug-in/plug-in-compose" "") +; (gtk_accel_path "/context/context-colors-swap" "x") +; (gtk_accel_path "/context/context-foreground-value-decrease-skip" "") +; (gtk_accel_path "/drawable/drawable-lock-position" "") +; (gtk_accel_path "/context/context-palette-background-first" "") +; (gtk_accel_path "/select/select-grow" "") +; (gtk_accel_path "/dockable/dockable-tab-style-icon" "") +; (gtk_accel_path "/documents/documents-remove-dangling" "") +; (gtk_accel_path "/filters/filters-recent-09" "") +; (gtk_accel_path "/help/help-context-help" "F1") +; (gtk_accel_path "/dockable/dialogs-images" "") +; (gtk_accel_path "/tools/tools-opacity-decrease-percent" "") +; (gtk_accel_path "/plug-in/plug-in-gimpressionist" "") +; (gtk_accel_path "/filters/filters-recent-08" "") +; (gtk_accel_path "/plug-in/script-fu-selection-rounded-rectangle" "") +; (gtk_accel_path "/plug-in/script-fu-grid-system" "") +; (gtk_accel_path "/dialogs/dialogs-tool-options" "") +; (gtk_accel_path "/context/context-colormap-background-previous-skip" "") +; (gtk_accel_path "/dockable/dialogs-vectors" "") +; (gtk_accel_path "/dockable/dialogs-navigation" "") +; (gtk_accel_path "/context/context-colormap-foreground-first" "") +; (gtk_accel_path "/tools/tools-unified-transform" "t") +; (gtk_accel_path "/view/view-zoom-in-accel" "KP_Add") +; (gtk_accel_path "/dialogs/dialogs-palettes" "") +; (gtk_accel_path "/file/file-quit" "q") +; (gtk_accel_path "/context/context-foreground-saturation-decrease" "") +; (gtk_accel_path "/image/image-menubar" "") +; (gtk_accel_path "/filters/filters-recent-07" "") +; (gtk_accel_path "/plug-in/script-fu-circuit" "") +; (gtk_accel_path "/tools/tools-ellipse-select" "e") +; (gtk_accel_path "/plug-in/script-fu-make-brush-rectangular" "") +; (gtk_accel_path "/filters/filters-invert-linear" "") +; (gtk_accel_path "/plug-in/script-fu-erase-rows" "") +; (gtk_accel_path "/filters/filters-noise-pick" "") +; (gtk_accel_path "/tools/tools-curves" "") +; (gtk_accel_path "/file/file-export-as" "e") +; (gtk_accel_path "/layers/layers-color-tag-red" "") +; (gtk_accel_path "/view/view-scroll-center" "j") +; (gtk_accel_path "/image/image-popup" "") +; (gtk_accel_path "/filters/filters-recent-06" "") +; (gtk_accel_path "/tools/tools-airbrush-flow-increase" "") +; (gtk_accel_path "/dialogs/dialogs-toolbox" "b") +; (gtk_accel_path "/view/view-scroll-bottom-border" "") +; (gtk_accel_path "/plug-in/plug-in-palettemap" "") +; (gtk_accel_path "/plug-in/plug-in-softglow" "") +; (gtk_accel_path "/context/context-pattern-select-previous" "") +; (gtk_accel_path "/edit/edit-menu" "") +; (gtk_accel_path "/filters/filters-recent-05" "") +; (gtk_accel_path "/image/image-color-profile-convert" "") +; (gtk_accel_path "/plug-in/plug-in-wavelet-decompose" "") +; (gtk_accel_path "/context/context-palette-select-last" "") +; (gtk_accel_path "/view/view-scroll-page-down" "") +; (gtk_accel_path "/filters/filters-recent-04" "") +; (gtk_accel_path "/image/image-convert-linear" "") +; (gtk_accel_path "/context/context-foreground-value-increase" "") +; (gtk_accel_path "/view/view-zoom-out-accel" "KP_Subtract") +; (gtk_accel_path "/brushes/brushes-edit" "") +; (gtk_accel_path "/image/image-crop-to-selection" "") +; (gtk_accel_path "/context/context-brush-radius-maximum" "") +; (gtk_accel_path "/filters/filters-oilify" "") +; (gtk_accel_path "/layers/layers-opacity-increase-skip" "") +; (gtk_accel_path "/windows/windows-docks-menu" "") +; (gtk_accel_path "/filters/filters-emboss" "") +; (gtk_accel_path "/dockable/dockable-menu" "") +; (gtk_accel_path "/filters/filters-recent-03" "") +; (gtk_accel_path "/plug-in/plug-in-qbist" "") +; (gtk_accel_path "/layers/layers-lower" "") +; (gtk_accel_path "/tools/tools-align" "q") +; (gtk_accel_path "/context/context-brush-aspect-increase-skip" "") +; (gtk_accel_path "/tools/tools-handle-transform" "l") +; (gtk_accel_path "/layers/layers-new-group" "") +; (gtk_accel_path "/filters/filters-waves" "") +; (gtk_accel_path "/context/context-opacity-menu" "") +; (gtk_accel_path "/filters/filters-recent-02" "") +; (gtk_accel_path "/layers/layers-crop-to-content" "") +; (gtk_accel_path "/filters/filters-whirl-pinch" "") +; (gtk_accel_path "/filters/filters-render-pattern-menu" "") +; (gtk_accel_path "/tools/tools-measure" "m") +; (gtk_accel_path "/dockable/dialogs-tool-presets" "") +; (gtk_accel_path "/tools/tools-aspect-maximum" "") +; (gtk_accel_path "/tools/tools-flip" "f") +; (gtk_accel_path "/tools/tools-airbrush-rate-minimum" "") +; (gtk_accel_path "/help/help-menu" "") +; (gtk_accel_path "/filters/filters-recent-01" "") +; (gtk_accel_path "/image/image-color-profile-save" "") +; (gtk_accel_path "/filters/filters-median-blur" "") +; (gtk_accel_path "/vectors/vectors-paste" "") +; (gtk_accel_path "/context/context-foreground-blue-minimum" "") +; (gtk_accel_path "/filters/filters-apply-canvas" "") +; (gtk_accel_path "/plug-in/file-png-save2" "") +; (gtk_accel_path "/drawable/drawable-levels-stretch" "") +; (gtk_accel_path "/filters/filters-difference-of-gaussians" "") +; (gtk_accel_path "/tools/tools-angle-increase-skip" "") +; (gtk_accel_path "/context/context-swatch-background-last" "") +; (gtk_accel_path "/tools/tools-move" "m") +; (gtk_accel_path "/tools/tools-convolve" "u") +; (gtk_accel_path "/tools/tools-airbrush-flow-increase-skip" "") +; (gtk_accel_path "/context/context-foreground-saturation-increase-skip" "") +; (gtk_accel_path "/channels/channels-color-tag-green" "") +; (gtk_accel_path "/tools/tools-aspect-decrease-percent" "") +; (gtk_accel_path "/plug-in/gimp-help-using-photography" "") +; (gtk_accel_path "/dialogs/dialogs-dashboard" "") +; (gtk_accel_path "/layers/layers-crop-to-selection" "") +; (gtk_accel_path "/layers/layers-mask-selection-subtract" "") +; (gtk_accel_path "/plug-in/script-fu-guides-remove" "") +; (gtk_accel_path "/dialogs/dialogs-palette-editor" "") +; (gtk_accel_path "/filters/filters-channel-mixer" "") +; (gtk_accel_path "/images/images-raise-views" "") +; (gtk_accel_path "/plug-in/script-fu-waves-anim" "") +; (gtk_accel_path "/context/context-foreground-green-maximum" "") +; (gtk_accel_path "/view/view-menu" "") +; (gtk_accel_path "/view/view-dot-for-dot" "") +; (gtk_accel_path "/context/context-gradient-select-set" "") +; (gtk_accel_path "/dockable/dockable-close-tab" "") +; (gtk_accel_path "/dockable/dialogs-dynamics-editor" "") +; (gtk_accel_path "/vectors/vectors-selection-intersect" "") +; (gtk_accel_path "/vectors/vectors-stroke" "") +; (gtk_accel_path "/filters/filters-little-planet" "") +; (gtk_accel_path "/context/context-pattern-menu" "") +; (gtk_accel_path "/view/view-show-rulers" "r") +; (gtk_accel_path "/context/context-brush-spikes-increase" "") +; (gtk_accel_path "/view/view-snap-to-guides" "") +; (gtk_accel_path "/layers/layers-alpha-selection-subtract" "") +; (gtk_accel_path "/channels/channels-select-top" "") +; (gtk_accel_path "/plug-in/script-fu-sota-chrome-it" "") +; (gtk_accel_path "/view/view-move-to-screen-:0.0" "") +; (gtk_accel_path "/plug-in/gimp-palette-export-python" "") +; (gtk_accel_path "/context/context-swatch-foreground-next" "0") +; (gtk_accel_path "/select/selection-popup" "") +; (gtk_accel_path "/brushes/brushes-refresh" "") +; (gtk_accel_path "/edit/edit-paste-into" "") +; (gtk_accel_path "/tools/tools-opacity-decrease" "less") +; (gtk_accel_path "/filters/filters-bayer-matrix" "") +; (gtk_accel_path "/context/context-brush-angle-minimum" "") +; (gtk_accel_path "/tools/tools-aspect-increase" "") +; (gtk_accel_path "/vectors/vectors-selection-to-vectors-short" "") +; (gtk_accel_path "/context/context-brush-spikes-maximum" "") +; (gtk_accel_path "/tools/tools-aspect-set" "") +; (gtk_accel_path "/fonts/fonts-popup" "") +; (gtk_accel_path "/layers/layers-popup" "") +; (gtk_accel_path "/context/context-foreground-green-increase-skip" "") +; (gtk_accel_path "/filters/filters-generic-menu" "") +; (gtk_accel_path "/image/image-resize-to-layers" "") +; (gtk_accel_path "/windows/windows-use-single-window-mode" "") +; (gtk_accel_path "/channels/channels-lower-to-bottom" "") +; (gtk_accel_path "/context/context-colormap-background-first" "") +; (gtk_accel_path "/edit/edit-fill-pattern" "semicolon") +; (gtk_accel_path "/context/context-paint-mode-first" "") +; (gtk_accel_path "/plug-in/script-fu-reverse-layers" "") +; (gtk_accel_path "/dockable/dockable-preview-size-extra-large" "") +; (gtk_accel_path "/dockable/dialogs-indexed-palette" "") +; (gtk_accel_path "/context/context-brush-spikes-set" "") +; (gtk_accel_path "/vectors/vectors-new-last-values" "") +; (gtk_accel_path "/tools/tools-object-2-previous" "") +; (gtk_accel_path "/plug-in/plug-in-retinex" "") +; (gtk_accel_path "/context/context-swatch-foreground-previous" "9") +; (gtk_accel_path "/context/context-foreground-value-decrease" "") +; (gtk_accel_path "/context/context-brush-select-first" "") +; (gtk_accel_path "/context/context-swatch-foreground-next-skip" "") +; (gtk_accel_path "/tools/tools-force-increase-skip" "") +; (gtk_accel_path "/dockable/dockable-detach-tab" "") +; (gtk_accel_path "/image/image-print-size" "") +; (gtk_accel_path "/filters/filters-fractal-trace" "") +; (gtk_accel_path "/filters/filters-panorama-projection" "") +; (gtk_accel_path "/context/context-paint-mode-last" "") +; (gtk_accel_path "/image/colors-components-menu" "") +; (gtk_accel_path "/context/context-colormap-foreground-last" "") +; (gtk_accel_path "/view/view-zoom-out" "minus") +; (gtk_accel_path "/plug-in/plug-in-colormap-remap" "") +; (gtk_accel_path "/context/context-palette-background-next-skip" "") +; (gtk_accel_path "/tools/tools-force-decrease" "") +; (gtk_accel_path "/context/context-background-hue-maximum" "") +; (gtk_accel_path "/plug-in/plug-in-mail-image" "") +; (gtk_accel_path "/filters/filters-mantiuk-2006" "") +; (gtk_accel_path "/plug-in/plug-in-small-tiles" "") +; (gtk_accel_path "/layers/layers-composite-mode-clip-to-layer" "") +; (gtk_accel_path "/filters/filters-noise-menu" "") +; (gtk_accel_path "/layers/layers-mask-disable" "") +; (gtk_accel_path "/tools/tools-brightness-contrast" "") +; (gtk_accel_path "/filters/filters-erode" "") +; (gtk_accel_path "/context/context-brush-spikes-increase-skip" "") +; (gtk_accel_path "/context/context-palette-select-previous" "") +; (gtk_accel_path "/vectors/vectors-color-tag-none" "") +; (gtk_accel_path "/layers/layers-transform-menu" "") +; (gtk_accel_path "/context/context-pattern-select-first" "") +; (gtk_accel_path "/tools/tools-spacing-increase-percent" "") +; (gtk_accel_path "/select/select-border" "") +; (gtk_accel_path "/plug-in/script-fu-clothify" "") +; (gtk_accel_path "/edit/edit-paste-into-in-place" "") +; (gtk_accel_path "/layers/layers-new-last-values" "") +; (gtk_accel_path "/context/context-opacity-transparent" "") +; (gtk_accel_path "/plug-in/plug-in-animationoptimize" "") +; (gtk_accel_path "/context/context-colormap-background-next" "") +; (gtk_accel_path "/layers/layers-blend-space-auto" "") +; (gtk_accel_path "/plug-in/file-pdf-save-multi" "") +; (gtk_accel_path "/layers/layers-merge-layers" "") +; (gtk_accel_path "/layers/layers-composite-space-auto" "") +; (gtk_accel_path "/context/context-opacity-decrease-skip" "") +; (gtk_accel_path "/dockable/dialogs-buffers" "") +; (gtk_accel_path "/tools/tools-perspective" "p") +; (gtk_accel_path "/context/context-foreground-red-increase-skip" "") +; (gtk_accel_path "/context/context-colormap-foreground-set" "") +; (gtk_accel_path "/plug-in/script-fu-copy-visible" "") +; (gtk_accel_path "/filters/filters-high-pass" "") +; (gtk_accel_path "/layers/layers-composite-mode-clip-to-backdrop" "") +; (gtk_accel_path "/tools/tools-menu" "") +; (gtk_accel_path "/context/context-background-green-maximum" "") +; (gtk_accel_path "/filters/filters-brightness-contrast" "") +; (gtk_accel_path "/filters/filters-shadows-highlights" "") +; (gtk_accel_path "/channels/channels-color-tag-brown" "") +; (gtk_accel_path "/filters/filters-desaturate" "") +; (gtk_accel_path "/context/context-palette-foreground-previous" "") +; (gtk_accel_path "/plug-in/plug-in-nlfilt" "") +; (gtk_accel_path "/plug-in/gimp-palette-export-text" "") +; (gtk_accel_path "/context/context-palette-foreground-set" "") +; (gtk_accel_path "/tools/tools-paintbrush-spacing-set" "") +; (gtk_accel_path "/filters/filters-offset" "o") +; (gtk_accel_path "/filters/filters-softglow" "") +; (gtk_accel_path "/context/context-brush-shape-square" "") +; (gtk_accel_path "/vectors/vectors-select-top" "") +; (gtk_accel_path "/patterns/patterns-popup" "") +; (gtk_accel_path "/tools/tools-opacity-minimum" "") +; (gtk_accel_path "/channels/channels-raise-to-top" "") +; (gtk_accel_path "/filters/filters-reinhard-2005" "") +; (gtk_accel_path "/filters/filters-threshold-alpha" "") +; (gtk_accel_path "/view/view-zoom-2-1-accel" "KP_2") +; (gtk_accel_path "/context/context-foreground-hue-minimum" "") +; (gtk_accel_path "/tools/tools-aspect-decrease" "") +; (gtk_accel_path "/context/context-brush-spacing-decrease-skip" "") +; (gtk_accel_path "/plug-in/plug-in-fractal-trace" "") +; (gtk_accel_path "/tools/tools-mypaint-brush-radius-set" "") +; (gtk_accel_path "/context/context-tool-select-first" "") +; (gtk_accel_path "/vectors/vectors-lower" "") +; (gtk_accel_path "/context/context-brush-aspect-minimum" "") +; (gtk_accel_path "/layers/layers-mask-delete" "") +; (gtk_accel_path "/tools/tools-angle-decrease-percent" "") +; (gtk_accel_path "/context/context-background-green-increase-skip" "") +; (gtk_accel_path "/plug-in/plug-in-ccanalyze" "") +; (gtk_accel_path "/filters/filters-artistic-menu" "") +; (gtk_accel_path "/select/select-flood" "") +; (gtk_accel_path "/tools/tools-hardness-set-to-default" "") +; (gtk_accel_path "/tools/tools-bucket-fill" "b") +; (gtk_accel_path "/tools/tools-angle-set" "") +; (gtk_accel_path "/tools/tools-ink-blob-aspect-set" "") +; (gtk_accel_path "/tools/tools-size-increase" "bracketright") +; (gtk_accel_path "/tools/tools-force-increase-percent" "") +; (gtk_accel_path "/image/image-color-management-menu" "") +; (gtk_accel_path "/channels/channels-selection-replace" "") +; (gtk_accel_path "/dockable/dialogs-layers" "l") +; (gtk_accel_path "/view/view-zoom-fit-in" "j") +; (gtk_accel_path "/brushes/brushes-delete" "") +; (gtk_accel_path "/filters/filters-repeat" "f") +; (gtk_accel_path "/filters/filters-maze" "") +; (gtk_accel_path "/context/context-brush-shape-menu" "") +; (gtk_accel_path "/dockable/dialogs-palette-editor" "") +; (gtk_accel_path "/filters/filters-color-balance" "") +; (gtk_accel_path "/drawable/drawable-flip-vertical" "") +; (gtk_accel_path "/tools/tools-size-set-to-default" "backslash") +; (gtk_accel_path "/context/context-foreground-blue-decrease-skip" "") +; (gtk_accel_path "/context/context-colors-default" "d") +; (gtk_accel_path "/layers/layers-raise-to-top" "") +; (gtk_accel_path "/plug-in/plug-in-gradmap" "") +; (gtk_accel_path "/filters/filters-checkerboard" "") +; (gtk_accel_path "/image/image-convert-grayscale" "") +; (gtk_accel_path "/plug-in/script-fu-fuzzy-border" "") +; (gtk_accel_path "/filters/filters-tile-paper" "") +; (gtk_accel_path "/dialogs/dialogs-selection-editor" "") +; (gtk_accel_path "/layers/layers-edit" "") +; (gtk_accel_path "/image/colors-desaturate-menu" "") +; (gtk_accel_path "/layers/layers-flatten-image" "") +; (gtk_accel_path "/tools/tools-airbrush-rate-increase-skip" "") +; (gtk_accel_path "/channels/channels-select-bottom" "") +; (gtk_accel_path "/dialogs/dialogs-preferences" "") +; (gtk_accel_path "/plug-in/plug-in-animationplay" "") +; (gtk_accel_path "/context/context-brush-angle-menu" "") +; (gtk_accel_path "/tools/tools-airbrush-flow-minimum" "") +; (gtk_accel_path "/view/view-rotate-menu" "") +; (gtk_accel_path "/vectors/vectors-import" "") +; (gtk_accel_path "/plug-in/script-fu-xach-effect" "") +; (gtk_accel_path "/view/view-rotate-345" "") +; (gtk_accel_path "/plug-in/plug-in-decompose" "") +; (gtk_accel_path "/plug-in/gimp-palette-export-css" "") +; (gtk_accel_path "/filters/filters-color-exchange" "") +; (gtk_accel_path "/tools/tools-warp-effect-size-set" "") +; (gtk_accel_path "/view/view-display-intent-perceptual" "") +; (gtk_accel_path "/dialogs/dialogs-navigation" "") +; (gtk_accel_path "/dock/dock-open-display" "") +; (gtk_accel_path "/context/context-paint-mode-previous" "") +; (gtk_accel_path "/plug-in/plug-in-hot" "") +; (gtk_accel_path "/tools/tools-aspect-decrease-skip" "") +; (gtk_accel_path "/view/view-zoom-out-skip" "") +; (gtk_accel_path "/dialogs/dialogs-keyboard-shortcuts" "") +; (gtk_accel_path "/view/view-zoom-maximum" "") +; (gtk_accel_path "/dialogs/dialogs-input-devices" "") +; (gtk_accel_path "/dockable/dialogs-document-history" "") +; (gtk_accel_path "/quick-mask/quick-mask-invert-on" "") +; (gtk_accel_path "/context/context-swatch-foreground-first" "") +; (gtk_accel_path "/file/file-export" "e") +; (gtk_accel_path "/plug-in/script-fu-set-cmap" "") +; (gtk_accel_path "/layers/layers-text-discard" "") +; (gtk_accel_path "/context/context-foreground-red-maximum" "") +; (gtk_accel_path "/filters/filters-edge-sobel" "") +; (gtk_accel_path "/dockable/dockable-preview-size-tiny" "") +; (gtk_accel_path "/plug-in/script-fu-guide-new-percent" "") +; (gtk_accel_path "/view/view-show-scrollbars" "") +; (gtk_accel_path "/filters/filters-render-noise-menu" "") +; (gtk_accel_path "/channels/channels-delete" "") +; (gtk_accel_path "/image/image-flip-vertical" "") +; (gtk_accel_path "/layers/layers-opacity-set" "") +; (gtk_accel_path "/context/context-font-select-next" "") +; (gtk_accel_path "/context/context-menu" "") +; (gtk_accel_path "/image/image-convert-half" "") +; (gtk_accel_path "/tools/tools-size-increase-skip" "braceright") +; (gtk_accel_path "/file/file-overwrite" "") +; (gtk_accel_path "/context/context-background-red-increase-skip" "") +; (gtk_accel_path "/vectors/vectors-popup" "") +; (gtk_accel_path "/image/image-rotate-90" "") +; (gtk_accel_path "/edit/edit-fill-bg" "period") +; (gtk_accel_path "/tools/tools-iscissors" "i") +; (gtk_accel_path "/context/context-palette-menu" "") +; (gtk_accel_path "/layers/layers-properties-menu" "") +; (gtk_accel_path "/view/view-flip-vertically" "") +; (gtk_accel_path "/context/context-foreground-hue-increase" "") +; (gtk_accel_path "/select/select-invert" "i") +; (gtk_accel_path "/layers/layers-mode-next" "") +; (gtk_accel_path "/file/file-save-as" "s") +; (gtk_accel_path "/context/context-swatch-foreground-last" "") +; (gtk_accel_path "/context/context-palette-background-next" "") +; (gtk_accel_path "/image/image-rotate-270" "") +; (gtk_accel_path "/tools/tools-warp" "w") +; (gtk_accel_path "/context/context-brush-hardness-menu" "") +; (gtk_accel_path "/plug-in/script-fu-erase-nth-rows" "") +; (gtk_accel_path "/context/context-brush-radius-decrease-less" "") +; (gtk_accel_path "/quick-mask/quick-mask-popup" "") +; (gtk_accel_path "/plug-in/plug-in-sparkle" "") +; (gtk_accel_path "/vectors/vectors-selection-subtract" "") +; (gtk_accel_path "/filters/filters-combine-menu" "") +; (gtk_accel_path "/layers/layers-raise" "") +; (gtk_accel_path "/edit/edit-strong-undo" "z") +; (gtk_accel_path "/context/context-colormap-foreground-next-skip" "") +; (gtk_accel_path "/context/context-brush-aspect-increase" "") +; (gtk_accel_path "/filters/filters-invert-value" "") +; (gtk_accel_path "/context/context-foreground-blue-set" "") +; (gtk_accel_path "/filters/filters-bump-map" "") +; (gtk_accel_path "/plug-in/file-gih-save-internal" "") +; (gtk_accel_path "/context/context-background-blue-increase-skip" "") +; (gtk_accel_path "/plug-in/script-fu-old-photo" "") +; (gtk_accel_path "/patterns/patterns-edit" "") +; (gtk_accel_path "/dialogs/dialogs-module-dialog" "") +; (gtk_accel_path "/image/image-configure-grid" "") +; (gtk_accel_path "/context/context-tool-menu" "") +; (gtk_accel_path "/view/view-zoom-1-1-accel" "KP_1") +; (gtk_accel_path "/filters/filters-noise-spread" "") +; (gtk_accel_path "/plug-in/script-fu-round-corners" "") +; (gtk_accel_path "/tools/tools-hardness-increase-skip" "") +; (gtk_accel_path "/select/select-save" "") +; (gtk_accel_path "/context/context-background-saturation-set" "") +; (gtk_accel_path "/plug-in/script-fu-guide-new" "") +; (gtk_accel_path "/tools/tools-hardness-decrease-percent" "") +; (gtk_accel_path "/tools/tools-size-minimum" "") +; (gtk_accel_path "/plug-in/gimp-help-concepts-paths" "") +; (gtk_accel_path "/vectors/vectors-select-next" "") +; (gtk_accel_path "/filters/filters-noise-cell" "") +; (gtk_accel_path "/quick-mask/quick-mask-toggle" "q") +; (gtk_accel_path "/filters/filters-gaussian-blur" "") +; (gtk_accel_path "/plug-in/plug-in-screenshot" "") +; (gtk_accel_path "/view/view-rotate-180" "") +; (gtk_accel_path "/tools/tools-text" "t") +; (gtk_accel_path "/filters/filters-newsprint" "") +; (gtk_accel_path "/filters/filters-noise-solid" "") +; (gtk_accel_path "/file/file-open-as-layers" "o") +; (gtk_accel_path "/context/context-background-red-minimum" "") +; (gtk_accel_path "/plug-in/gimp-online-wiki" "") +; (gtk_accel_path "/layers/layers-merge-down-button" "") +; (gtk_accel_path "/plug-in/script-fu-refresh" "") +; (gtk_accel_path "/layers/layers-text-to-vectors" "") +; (gtk_accel_path "/vectors/vectors-fill-last-values" "") +; (gtk_accel_path "/documents/documents-popup" "") +; (gtk_accel_path "/view/view-padding-color-menu" "") +; (gtk_accel_path "/tools/tools-smudge" "s") +; (gtk_accel_path "/context/context-font-menu" "") +; (gtk_accel_path "/tools/tools-mypaint-brush-hardness-set" "") +; (gtk_accel_path "/plug-in/plug-in-pagecurl" "") +; (gtk_accel_path "/dialogs/dialogs-layers" "l") +; (gtk_accel_path "/context/context-colormap-background-last" "") +; (gtk_accel_path "/plug-in/script-fu-selection-to-image" "") +; (gtk_accel_path "/channels/channels-selection-add" "") +; (gtk_accel_path "/context/context-palette-select-first" "") +; (gtk_accel_path "/layers/layers-lock-position" "") +; (gtk_accel_path "/tools/tools-object-1-next" "") +; (gtk_accel_path "/dialogs/dialogs-device-status" "") +; (gtk_accel_path "/view/view-scroll-vertical" "") +; (gtk_accel_path "/view/view-show-selection" "t") +; (gtk_accel_path "/tools/tools-spacing-maximum" "") +; (gtk_accel_path "/filters/filters-photocopy" "") +; (gtk_accel_path "/channels/channels-color-tag-orange" "") +; (gtk_accel_path "/tools/tools-ink-blob-angle-set" "") +; (gtk_accel_path "/context/context-background-saturation-minimum" "") +; (gtk_accel_path "/layers/layers-lock-alpha" "") +; (gtk_accel_path "/tools/tools-transform-menu" "") +; (gtk_accel_path "/plug-in/plug-in-borderaverage" "") +; (gtk_accel_path "/view/view-padding-color-theme" "") +; (gtk_accel_path "/plug-in/script-fu-gradient-example" "") +; (gtk_accel_path "/filters/filters-color-rotate" "") +; (gtk_accel_path "/dockable/dialogs-dynamics" "") +; (gtk_accel_path "/plug-in/gimp-online-roadmap" "") +; (gtk_accel_path "/filters/filters-vignette" "") +; (gtk_accel_path "/patterns/patterns-copy-location" "") +; (gtk_accel_path "/filters/filters-apply-lens" "") +; (gtk_accel_path "/tools/tools-angle-minimum" "") +; (gtk_accel_path "/tools/tools-ink" "k") +; (gtk_accel_path "/tools/tools-airbrush-rate-set" "") +; (gtk_accel_path "/layers/layers-mask-add-button" "") +; (gtk_accel_path "/layers/layers-color-tag-orange" "") +; (gtk_accel_path "/plug-in/script-fu-coffee-stain" "") +; (gtk_accel_path "/view/view-display-filters" "") +; (gtk_accel_path "/context/context-swatch-background-first" "") +; (gtk_accel_path "/plug-in/plug-in-tile" "") +; (gtk_accel_path "/filters/filters-noise-rgb" "") +; (gtk_accel_path "/layers/layers-composite-mode-intersection" "") +; (gtk_accel_path "/context/context-foreground-hue-decrease" "") +; (gtk_accel_path "/filters/filters-edge-neon" "") +; (gtk_accel_path "/dialogs/dialogs-about" "") +; (gtk_accel_path "/plug-in/plug-in-despeckle" "") +; (gtk_accel_path "/tools/tools-spacing-set" "") +; (gtk_accel_path "/dialogs/dialogs-templates" "") +; (gtk_accel_path "/tools/tools-object-2-first" "") +; (gtk_accel_path "/context/context-background-blue-minimum" "") +; (gtk_accel_path "/documents/documents-file-open-dialog" "") +; (gtk_accel_path "/quick-mask/quick-mask-invert-off" "") +; (gtk_accel_path "/filters/filters-tile-seamless" "") +; (gtk_accel_path "/filters/filters-red-eye-removal" "") +; (gtk_accel_path "/layers/layers-resize-to-image" "") +; (gtk_accel_path "/filters/filters-lens-flare" "") +; (gtk_accel_path "/filters/filters-render-fractals-menu" "") +; (gtk_accel_path "/context/context-brush-angle-decrease-skip" "") +; (gtk_accel_path "/plug-in/gimp-help-using-web" "") +; (gtk_accel_path "/view/view-color-management-softproof" "") +; (gtk_accel_path "/dialogs/dialogs-vectors" "") +; (gtk_accel_path "/edit/edit-buffer-menu" "") +; (gtk_accel_path "/plug-in/script-fu-make-brush-elliptical" "") +; (gtk_accel_path "/plug-in/plug-in-grid" "") +; (gtk_accel_path "/plug-in/file-pdf-save" "") +; (gtk_accel_path "/filters/filters-color-enhance" "") +; (gtk_accel_path "/plug-in/file-png-save" "") +; (gtk_accel_path "/view/view-padding-color-custom" "") +; (gtk_accel_path "/plug-in/script-fu-weave" "") +; (gtk_accel_path "/filters/filters-blur-menu" "") +; (gtk_accel_path "/context/context-brush-aspect-decrease" "") +; (gtk_accel_path "/tools/tools-paintbrush-angle-set" "") +; (gtk_accel_path "/context/context-pattern-select-next" "") +; (gtk_accel_path "/channels/channels-lower" "") +; (gtk_accel_path "/view/view-rotate-other" "") +; (gtk_accel_path "/context/context-brush-hardness-minimum" "") +; (gtk_accel_path "/filters/filters-mosaic" "") +; (gtk_accel_path "/patterns/patterns-show-in-file-manager" "") +; (gtk_accel_path "/debug/debug-menu" "") +; (gtk_accel_path "/context/context-brush-radius-increase-skip" "") +; (gtk_accel_path "/view/view-softproof-black-point-compensation" "") +; (gtk_accel_path "/select/select-menu" "") +; (gtk_accel_path "/plug-in/plug-in-sample-colorize" "") +; (gtk_accel_path "/file/file-open-recent-10" "0") +; (gtk_accel_path "/tools/tools-by-color-select" "o") +; (gtk_accel_path "/context/context-palette-background-previous" "") +; (gtk_accel_path "/tools/tools-force-minimum" "") +; (gtk_accel_path "/channels/channels-color-tag-violet" "") +; (gtk_accel_path "/context/context-swatch-background-next-skip" "") +; (gtk_accel_path "/dockable/dialogs-brush-editor" "") +; (gtk_accel_path "/plug-in/gimp-help-using-simpleobjects" "") +; (gtk_accel_path "/filters/filters-recursive-transform" "") +; (gtk_accel_path "/plug-in/script-fu-add-bevel" "") +; (gtk_accel_path "/dialogs/dialogs-dynamics" "") +; (gtk_accel_path "/plug-in/plug-in-curve-bend" "") +; (gtk_accel_path "/context/context-background-saturation-increase-skip" "") +; (gtk_accel_path "/view/view-scroll-page-up" "") +; (gtk_accel_path "/filters/filters-convolution-matrix" "") +; (gtk_accel_path "/tools/tools-pencil" "n") +; (gtk_accel_path "/filters/filters-levels" "") +; (gtk_accel_path "/layers/layers-color-tag-violet" "") +; (gtk_accel_path "/tools/tools-opacity-increase" "greater") +; (gtk_accel_path "/context/context-brush-radius-decrease-percent" "") +; (gtk_accel_path "/context/context-foreground-red-set" "") +; (gtk_accel_path "/select/select-fill" "") +; (gtk_accel_path "/filters/filters-colorize" "") +; (gtk_accel_path "/view/view-padding-color-dark-check" "") +; (gtk_accel_path "/tools/tools-hardness-maximum" "") +; (gtk_accel_path "/tool-options/tool-options-save-new-preset" "") +; (gtk_accel_path "/tools/tools-spacing-increase-skip" "") +; (gtk_accel_path "/context/context-gradient-select-previous" "") +; (gtk_accel_path "/layers/layers-new-from-visible" "") +; (gtk_accel_path "/filters/filters-saturation" "") +; (gtk_accel_path "/tools/tools-crop" "c") +; (gtk_accel_path "/plug-in/plug-in-flame" "") +; (gtk_accel_path "/images/images-popup" "") +; (gtk_accel_path "/context/context-font-select-last" "") +; (gtk_accel_path "/vectors/vectors-new" "") +; (gtk_accel_path "/tool-options/tool-options-popup" "") +; (gtk_accel_path "/filters/filters-posterize" "") +; (gtk_accel_path "/dockable/dockable-view-type-list" "") +; (gtk_accel_path "/filters/filters-slic" "") +; (gtk_accel_path "/view/view-rotate-reset" "exclam") +; (gtk_accel_path "/filters/filters-shift" "") +; (gtk_accel_path "/drawable/drawable-rotate-90" "") +; (gtk_accel_path "/plug-in/plug-in-lighting" "") +; (gtk_accel_path "/tools/tools-mypaint-brush" "y") +; (gtk_accel_path "/channels/channels-color-tag-menu" "") +; (gtk_accel_path "/layers/layers-merge-down" "") +; (gtk_accel_path "/dialogs/dialogs-tips" "") +; (gtk_accel_path "/layers/layers-mode-last" "") +; (gtk_accel_path "/tools/tools-warp-effect-hardness-set" "") +; (gtk_accel_path "/layers/layers-alpha-add" "") +; (gtk_accel_path "/filters/filters-map-menu" "") +; (gtk_accel_path "/context/context-palette-foreground-previous-skip" "") +; (gtk_accel_path "/context/context-tool-select-set" "") +; (gtk_accel_path "/plug-in/plug-in-color-enhance" "") +; (gtk_accel_path "/filters/filters-dilate" "") +; (gtk_accel_path "/context/context-palette-background-last" "") +; (gtk_accel_path "/image/image-mode-menu" "") +; (gtk_accel_path "/vectors/vectors-raise" "") +; (gtk_accel_path "/vectors/vectors-selection-to-vectors" "") +; (gtk_accel_path "/edit/edit-named-copy-visible" "") +; (gtk_accel_path "/dockable/dialogs-brushes" "b") +; (gtk_accel_path "/drawable/drawable-rotate-180" "") +; (gtk_accel_path "/filters/filters-decor-menu" "") +; (gtk_accel_path "/layers/layers-composite-mode-menu" "") +; (gtk_accel_path "/tools/tools-airbrush-rate-decrease" "") +; (gtk_accel_path "/image/image-convert-gamma" "") +; (gtk_accel_path "/context/context-foreground-hue-increase-skip" "") +; (gtk_accel_path "/channels/channels-popup" "") +; (gtk_accel_path "/channels/channels-color-tag-yellow" "") +; (gtk_accel_path "/dockable/dockable-preview-size-small" "") +; (gtk_accel_path "/image/image-guides-menu" "") +; (gtk_accel_path "/tools/tools-force-increase" "") +; (gtk_accel_path "/layers/layers-alpha-selection-intersect" "") +; (gtk_accel_path "/context/context-brush-select-next" "") +; (gtk_accel_path "/filters/filters-waterpixels" "") +; (gtk_accel_path "/context/context-brush-spacing-increase" "") +; (gtk_accel_path "/dialogs/dialogs-action-search" "slash") +; (gtk_accel_path "/layers/layers-select-next" "Page_Down") +; (gtk_accel_path "/tools/tools-rotate-arbitrary" "") +; (gtk_accel_path "/layers/layers-opacity-decrease-skip" "") +; (gtk_accel_path "/view/view-zoom-16-1" "5") +; (gtk_accel_path "/plug-in/gimp-help-concepts-usage" "") +; (gtk_accel_path "/debug/debug-dump-keyboard-shortcuts" "") +; (gtk_accel_path "/image/image-color-profile-discard" "") +; (gtk_accel_path "/filters/filters-mean-curvature-blur" "") +; (gtk_accel_path "/layers/layers-color-tag-yellow" "") +; (gtk_accel_path "/context/context-brush-aspect-decrease-skip" "") +; (gtk_accel_path "/dock/dock-move-to-screen-:0.0" "") +; (gtk_accel_path "/filters/filters-animation-menu" "") +; (gtk_accel_path "/filters/filters-noise-reduction" "") +; (gtk_accel_path "/dialogs/dialogs-gradients" "g") +; (gtk_accel_path "/tools/tools-object-1-previous" "") +; (gtk_accel_path "/image/image-duplicate" "d") +; (gtk_accel_path "/documents/documents-show-in-file-manager" "") +; (gtk_accel_path "/dockable/dialogs-patterns" "p") +; (gtk_accel_path "/view/view-scroll-right-border" "") +; (gtk_accel_path "/edit/edit-paste" "v") +; (gtk_accel_path "/context/context-palette-foreground-next" "") +; (gtk_accel_path "/channels/channels-color-tag-red" "") +; (gtk_accel_path "/filters/filters-mono-mixer" "") +; (gtk_accel_path "/context/context-font-select-set" "") +; (gtk_accel_path "/patterns/patterns-duplicate" "") +; (gtk_accel_path "/filters/filters-spiral" "") +; (gtk_accel_path "/plug-in/plug-in-unit-editor" "") +; (gtk_accel_path "/tools/tools-angle-decrease-skip" "") +; (gtk_accel_path "/tools/tools-airbrush-flow-decrease-skip" "") +; (gtk_accel_path "/vectors/vectors-select-bottom" "") +; (gtk_accel_path "/context/context-foreground-value-set" "") +; (gtk_accel_path "/debug/debug-dump-items" "") +; (gtk_accel_path "/view/view-scroll-up" "") +; (gtk_accel_path "/plug-in/gimp-help-using-selections" "") +; (gtk_accel_path "/plug-in/plug-in-cml-explorer" "") +; (gtk_accel_path "/select/select-stroke" "") +; (gtk_accel_path "/context/context-foreground-saturation-decrease-skip" "") +; (gtk_accel_path "/tool-options/tool-options-reset-all" "") +; (gtk_accel_path "/drawable/drawable-visible" "") +; (gtk_accel_path "/image/image-metadata-menu" "") +; (gtk_accel_path "/channels/channels-select-previous" "") +; (gtk_accel_path "/context/context-brush-angle-increase" "") +; (gtk_accel_path "/filters/filters-snn-mean" "") +; (gtk_accel_path "/tools/tools-hardness-set" "") +; (gtk_accel_path "/tools/tools-object-1-last" "") +; (gtk_accel_path "/layers/layers-color-tag-menu" "") +; (gtk_accel_path "/context/context-background-value-increase-skip" "") +; (gtk_accel_path "/view/view-display-intent-relative-colorimetric" "") +; (gtk_accel_path "/tools/tools-aspect-set-to-default" "") +; (gtk_accel_path "/filters/filters-supernova" "") +; (gtk_accel_path "/image/image-transform-menu" "") +; (gtk_accel_path "/view/view-shrink-wrap" "j") +; (gtk_accel_path "/context/context-swatch-foreground-set" "") +; (gtk_accel_path "/plug-in/file-pat-save-internal" "") +; (gtk_accel_path "/context/context-foreground-red-decrease" "") +; (gtk_accel_path "/view/view-zoom-8-1" "4") +; (gtk_accel_path "/context/context-brush-radius-minimum" "") +; (gtk_accel_path "/filters/filters-sepia" "") +; (gtk_accel_path "/debug/debug-dump-attached-data" "") +; (gtk_accel_path "/context/context-brush-hardness-increase" "") +; (gtk_accel_path "/context/context-foreground-saturation-set" "") +; (gtk_accel_path "/view/view-softproof-gamut-check" "") +; (gtk_accel_path "/dialogs/dialogs-images" "") +; (gtk_accel_path "/layers/layers-mask-selection-intersect" "") +(gtk_accel_path "/plug-in/file-print-gtk" "p") +; (gtk_accel_path "/filters/filters-reshow" "f") +; (gtk_accel_path "/dialogs/dialogs-gradient-editor" "") +; (gtk_accel_path "/view/view-move-to-screen-menu" "") +; (gtk_accel_path "/documents/documents-copy-location" "") +; (gtk_accel_path "/plug-in/file-tiff-save2" "") +; (gtk_accel_path "/view/view-open-display" "") +; (gtk_accel_path "/layers/layers-linked" "") +; (gtk_accel_path "/tool-options/tool-options-save-preset-menu" "") +; (gtk_accel_path "/context/context-brush-spacing-maximum" "") +; (gtk_accel_path "/images/images-delete" "") +; (gtk_accel_path "/file/file-copy-location" "") +; (gtk_accel_path "/dialogs/dialogs-buffers" "") +; (gtk_accel_path "/layers/layers-menu" "") +; (gtk_accel_path "/tools/tools-aspect-minimum" "") +; (gtk_accel_path "/context/context-foreground-green-decrease-skip" "") +; (gtk_accel_path "/context/context-palette-background-previous-skip" "") +; (gtk_accel_path "/edit/edit-paste-as-new-image" "v") +; (gtk_accel_path "/filters/filters-stress" "") +; (gtk_accel_path "/dialogs/dialogs-patterns" "p") +; (gtk_accel_path "/filters/filters-edge-laplace" "") +; (gtk_accel_path "/context/context-background-green-decrease" "") +; (gtk_accel_path "/view/view-rotate-90" "") +; (gtk_accel_path "/filters/filters-ripple" "") +; (gtk_accel_path "/filters/filters-variable-blur" "") +; (gtk_accel_path "/plug-in/plug-in-ifscompose" "") +; (gtk_accel_path "/context/context-brush-spacing-decrease" "") +; (gtk_accel_path "/tools/tools-airbrush" "a") +; (gtk_accel_path "/context/context-background-hue-increase-skip" "") +; (gtk_accel_path "/view/view-softproof-intent-menu" "") +; (gtk_accel_path "/filters/filters-sinus" "") +; (gtk_accel_path "/filters/filters-c2g" "") +; (gtk_accel_path "/plug-in/plug-in-metadata-viewer" "") +; (gtk_accel_path "/tool-options/tool-options-edit-preset-menu" "") +; (gtk_accel_path "/view/view-close" "w") +; (gtk_accel_path "/layers/layers-edit-text" "") +; (gtk_accel_path "/context/context-brush-shape-diamond" "") +; (gtk_accel_path "/tools/tools-force-decrease-skip" "") +; (gtk_accel_path "/plug-in/gimp-online-main-web-site" "") +; (gtk_accel_path "/vectors/vectors-edit-attributes" "") +; (gtk_accel_path "/context/context-opacity-increase" "") +; (gtk_accel_path "/dockable/dialogs-tool-options" "") +; (gtk_accel_path "/context/context-brush-spacing-set" "") +; (gtk_accel_path "/context/context-pattern-select-last" "") +; (gtk_accel_path "/filters/filters-distance-map" "") +; (gtk_accel_path "/tools/tools-free-select" "f") +; (gtk_accel_path "/context/context-foreground-green-minimum" "") +; (gtk_accel_path "/file/file-open-recent-09" "9") +; (gtk_accel_path "/dockable/dialogs-fonts" "") +; (gtk_accel_path "/context/context-tool-select-next" "") +; (gtk_accel_path "/layers/layers-select-top" "Home") +; (gtk_accel_path "/channels/channels-selection-subtract" "") +; (gtk_accel_path "/file/file-open-recent-08" "8") +; (gtk_accel_path "/context/context-background-hue-increase" "") +; (gtk_accel_path "/plug-in/gimp-help-main" "") +; (gtk_accel_path "/context/context-colormap-background-next-skip" "") +; (gtk_accel_path "/context/context-brush-spikes-decrease-skip" "") +; (gtk_accel_path "/dialogs/dialogs-mypaint-brushes" "") +; (gtk_accel_path "/context/context-font-select-previous" "") +; (gtk_accel_path "/file/file-open-recent-07" "7") +; (gtk_accel_path "/plug-in/plug-in-film" "") +; (gtk_accel_path "/layers/layers-anchor" "h") +; (gtk_accel_path "/view/view-new" "") +; (gtk_accel_path "/edit/edit-redo" "y") +; (gtk_accel_path "/context/context-brush-angle-decrease" "") +; (gtk_accel_path "/file/file-open-recent-06" "6") +; (gtk_accel_path "/images/images-new-view" "") +; (gtk_accel_path "/plug-in/plug-in-goat-exercise" "") +; (gtk_accel_path "/plug-in/file-gbr-save-internal" "") +; (gtk_accel_path "/file/file-open-recent-05" "5") +; (gtk_accel_path "/edit/edit-paste-in-place" "v") +; (gtk_accel_path "/vectors/vectors-selection-add" "") +; (gtk_accel_path "/tools/tools-aspect-increase-percent" "") +; (gtk_accel_path "/plug-in/plug-in-reset-all" "") +; (gtk_accel_path "/layers/layers-edit-attributes" "") +; (gtk_accel_path "/drawable/drawable-lock-content" "") +; (gtk_accel_path "/plug-in/gimp-help-using-docks" "") +; (gtk_accel_path "/filters/filters-hue-saturation" "") +; (gtk_accel_path "/context/context-foreground-red-decrease-skip" "") +; (gtk_accel_path "/filters/filters-lens-distortion" "") +; (gtk_accel_path "/image/image-convert-indexed" "") +; (gtk_accel_path "/filters/filters-tile-glass" "") +; (gtk_accel_path "/plug-in/script-fu-lava" "") +; (gtk_accel_path "/file/file-open-recent-04" "4") +; (gtk_accel_path "/dock/dock-auto-follow-active" "") +; (gtk_accel_path "/plug-in/script-fu-spyrogimp" "") +; (gtk_accel_path "/patterns/patterns-open-as-image" "") +; (gtk_accel_path "/context/context-foreground-saturation-maximum" "") +; (gtk_accel_path "/image/colors-map-menu" "") +; (gtk_accel_path "/context/context-brush-radius-set" "") +; (gtk_accel_path "/file/file-open-recent-03" "3") +; (gtk_accel_path "/context/context-brush-hardness-decrease" "") +; (gtk_accel_path "/windows/windows-show-display-previous" "Tab") +; (gtk_accel_path "/view/view-softproof-intent-relative-colorimetric" "") +; (gtk_accel_path "/tools/tools-force-set-to-default" "") +; (gtk_accel_path "/file/file-open-recent-02" "2") +; (gtk_accel_path "/drawable/drawable-equalize" "") +; (gtk_accel_path "/context/context-font-select-first" "") +; (gtk_accel_path "/plug-in/plug-in-animationunoptimize" "") +; (gtk_accel_path "/layers/layers-mask-selection-replace" "") +; (gtk_accel_path "/patterns/patterns-refresh" "") +; (gtk_accel_path "/file/file-open-recent-01" "1") +; (gtk_accel_path "/image/image-crop-to-content" "") +; (gtk_accel_path "/filters/filters-polar-coordinates" "") +; (gtk_accel_path "/brushes/brushes-new" "") +; (gtk_accel_path "/context/context-background-hue-minimum" "") +; (gtk_accel_path "/tools/tools-rotate" "r") +; (gtk_accel_path "/image/image-convert-double" "") +; (gtk_accel_path "/view/view-zoom-1-8" "4") +; (gtk_accel_path "/context/context-background-green-decrease-skip" "") +; (gtk_accel_path "/edit/edit-fill-fg" "comma") +; (gtk_accel_path "/tools/tools-scale" "s") +; (gtk_accel_path "/context/context-brush-select-last" "") +; (gtk_accel_path "/plug-in/script-fu-distress-selection" "") +; (gtk_accel_path "/edit/undo-popup" "") +; (gtk_accel_path "/layers/layers-mode-first" "") +; (gtk_accel_path "/view/view-zoom-1-16" "5") +; (gtk_accel_path "/dockable/dockable-add-tab-menu" "") +; (gtk_accel_path "/context/context-tool-select-previous" "") +; (gtk_accel_path "/channels/channels-color-tag-gray" "") +; (gtk_accel_path "/dockable/dialogs-error-console" "") +; (gtk_accel_path "/context/context-foreground-value-maximum" "") +; (gtk_accel_path "/channels/channels-raise" "") +; (gtk_accel_path "/context/context-background-red-set" "") +; (gtk_accel_path "/plug-in/script-fu-perspective-shadow" "") +; (gtk_accel_path "/context/context-opacity-decrease" "") +; (gtk_accel_path "/filters/filters-cubism" "") +; (gtk_accel_path "/filters/filters-motion-blur-circular" "") +; (gtk_accel_path "/context/context-gradient-menu" "") +; (gtk_accel_path "/plug-in/plug-in-max-rgb" "") +; (gtk_accel_path "/image/image-resize" "") +; (gtk_accel_path "/filters/filters-normal-map" "") +; (gtk_accel_path "/vectors/vectors-color-tag-green" "") +; (gtk_accel_path "/plug-in/gimp-online-docs-web-site" "") +; (gtk_accel_path "/view/view-zoom-1-4" "3") +; (gtk_accel_path "/vectors/vectors-copy" "") +; (gtk_accel_path "/context/context-palette-foreground-last" "") +; (gtk_accel_path "/tools/tools-airbrush-rate-decrease-skip" "") +; (gtk_accel_path "/tools/tools-shear" "h") +; (gtk_accel_path "/context/context-background-green-minimum" "") +; (gtk_accel_path "/filters/filters-noise-slur" "") +; (gtk_accel_path "/view/view-snap-to-canvas" "") +; (gtk_accel_path "/view/view-scroll-left-border" "") +; (gtk_accel_path "/filters/filters-pixelize" "") +; (gtk_accel_path "/dock/dock-close" "") +; (gtk_accel_path "/windows/windows-hide-docks" "Tab") +; (gtk_accel_path "/view/view-show-layer-boundary" "") +; (gtk_accel_path "/file/file-save" "s") +; (gtk_accel_path "/layers/layers-composite-space-rgb-linear" "") +; (gtk_accel_path "/context/context-background-hue-decrease" "") +; (gtk_accel_path "/windows/windows-show-display-next" "Tab") +; (gtk_accel_path "/brushes/brushes-copy-location" "") +; (gtk_accel_path "/plug-in/file-pdf-save-multi-transparent" "") +; (gtk_accel_path "/view/view-zoom-1-2" "2") +; (gtk_accel_path "/image/image-menu" "") +; (gtk_accel_path "/plug-in/plug-in-photocopy" "") +; (gtk_accel_path "/edit/edit-paste-as-menu" "") +; (gtk_accel_path "/tools/tools-select-menu" "") +; (gtk_accel_path "/view/view-zoom-1-1" "1") +; (gtk_accel_path "/plug-in/plug-in-warp" "") +; (gtk_accel_path "/dockable/dockable-preview-size-huge" "") +; (gtk_accel_path "/dockable/dockable-tab-style-automatic" "") +; (gtk_accel_path "/layers/layers-mask-edit" "") +; (gtk_accel_path "/windows/windows-show-tabs" "") +; (gtk_accel_path "/plug-in/file-print-gutenprint" "") +; (gtk_accel_path "/layers/layers-mask-add-last-values" "") +; (gtk_accel_path "/plug-in/file-raw-save" "") +; (gtk_accel_path "/image/image-merge-layers" "m") +; (gtk_accel_path "/filters/filters-noise-perlin" "") +; (gtk_accel_path "/plug-in/plug-in-destripe" "") +; (gtk_accel_path "/dockable/dockable-tab-style-icon-name" "") +; (gtk_accel_path "/dockable/dockable-preview-size-large" "") +; (gtk_accel_path "/layers/layers-color-tag-green" "") +; (gtk_accel_path "/context/context-background-red-decrease-skip" "") +; (gtk_accel_path "/tools/tools-size-decrease-skip" "braceleft") +; (gtk_accel_path "/dockable/dialogs-selection-editor" "") +; (gtk_accel_path "/quick-mask/quick-mask-configure" "") +; (gtk_accel_path "/filters/filters-cartoon" "") +; (gtk_accel_path "/plug-in/plug-in-fractalexplorer" "") +; (gtk_accel_path "/view/view-softproof-profile" "") +; (gtk_accel_path "/view/view-rotate-270" "") +; (gtk_accel_path "/vectors/vectors-lower-to-bottom" "") +; (gtk_accel_path "/context/context-colormap-background-set" "") +; (gtk_accel_path "/layers/layers-color-tag-gray" "") +; (gtk_accel_path "/tools/tools-paintbrush-size-set" "") +; (gtk_accel_path "/brushes/brushes-popup" "") +; (gtk_accel_path "/dock/dock-show-image-menu" "") +; (gtk_accel_path "/context/context-brush-hardness-increase-skip" "") +; (gtk_accel_path "/plug-in/script-fu-selection-to-pattern" "") +; (gtk_accel_path "/documents/documents-clear" "") +; (gtk_accel_path "/plug-in/script-fu-carve-it" "") +; (gtk_accel_path "/plug-in/plug-in-plug-in-details" "") +; (gtk_accel_path "/context/context-brush-select-previous" "") +; (gtk_accel_path "/context/context-palette-background-set" "") +; (gtk_accel_path "/tools/tools-eraser" "e") +; (gtk_accel_path "/select/select-float" "l") +; (gtk_accel_path "/context/context-gradient-select-next" "") +; (gtk_accel_path "/filters/filters-grid" "") +; (gtk_accel_path "/tools/tools-size-decrease-percent" "") +; (gtk_accel_path "/layers/layers-visible" "") +; (gtk_accel_path "/documents/documents-open" "") +; (gtk_accel_path "/dockable/dialogs-sample-points" "") +; (gtk_accel_path "/context/context-background-blue-decrease-skip" "") +; (gtk_accel_path "/view/view-softproof-intent-saturation" "") +; (gtk_accel_path "/view/view-zoom-minimum" "") +; (gtk_accel_path "/tools/tools-hardness-decrease-skip" "") +; (gtk_accel_path "/filters/filters-rgb-clip" "") +; (gtk_accel_path "/context/context-background-value-maximum" "") +; (gtk_accel_path "/layers/layers-lower-to-bottom" "") +; (gtk_accel_path "/tools/tools-force-set" "") +; (gtk_accel_path "/filters/filters-wind" "") +; (gtk_accel_path "/context/context-foreground-red-minimum" "") +; (gtk_accel_path "/debug/debug-dump-managers" "") +; (gtk_accel_path "/context/context-tool-select-last" "") +; (gtk_accel_path "/filters/filters-displace" "") +; (gtk_accel_path "/filters/filters-enhance-menu" "") +; (gtk_accel_path "/filters/filters-engrave" "") +; (gtk_accel_path "/tools/tools-object-2-next" "") +; (gtk_accel_path "/view/view-show-guides" "t") +; (gtk_accel_path "/vectors/vectors-color-tag-red" "") +; (gtk_accel_path "/vectors/vectors-selection-from-vectors" "v") +; (gtk_accel_path "/view/view-zoom-other" "") +; (gtk_accel_path "/image/image-convert-u32" "") +; (gtk_accel_path "/dockable/dialogs-symmetry" "") +; (gtk_accel_path "/context/context-swatch-background-previous" "") +; (gtk_accel_path "/select/select-feather" "") +; (gtk_accel_path "/filters/filters-motion-blur-zoom" "") +; (gtk_accel_path "/dialogs/dialogs-tool-presets" "") +; (gtk_accel_path "/vectors/vectors-duplicate" "") +; (gtk_accel_path "/view/view-display-intent-saturation" "") +; (gtk_accel_path "/tools/tools-foreground-select" "") diff --git a/common/GIMP/2.10/templaterc b/common/GIMP/2.10/templaterc new file mode 100644 index 0000000..fe461c9 --- /dev/null +++ b/common/GIMP/2.10/templaterc @@ -0,0 +1,500 @@ +# GIMP templaterc +# +# This file will be entirely rewritten each time you exit. + +(GimpTemplate "A0 (300 ppi)" + (width 9933) + (height 14043) + (unit millimeters) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "A1 (300 ppi)" + (width 7016) + (height 9933) + (unit millimeters) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "A2 (300 ppi)" + (width 4960) + (height 7016) + (unit millimeters) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "A3 (300 ppi)" + (width 3508) + (height 4960) + (unit millimeters) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "A4 (300 ppi)" + (width 2480) + (height 3508) + (unit millimeters) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "A5 (300 ppi)" + (width 1748) + (height 2480) + (unit millimeters) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "A6 (300 ppi)" + (width 1240) + (height 1748) + (unit millimeters) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "A7 (300 ppi)" + (width 874) + (height 1240) + (unit millimeters) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "B4 (300 ppi)" + (width 2953) + (height 4169) + (unit millimeters) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "B5 (300 ppi)" + (width 2079) + (height 2953) + (unit millimeters) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "B5-Japan (300 ppi)" + (width 2150) + (height 3035) + (unit millimeters) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "US Letter (300 ppi)" + (width 2550) + (height 3300) + (unit inches) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "US Legal (300 ppi)" + (width 2550) + (height 4200) + (unit inches) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "88.9×50.8 US Business Card" + (icon-name "gimp-business-card") + (width 1050) + (height 600) + (unit millimeters) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "85×55 Western Europe Business Card" + (icon-name "gimp-business-card") + (width 1004) + (height 650) + (unit millimeters) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "90×50 Eastern Europe Business Card" + (icon-name "gimp-business-card") + (width 1063) + (height 591) + (unit millimeters) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "90×55 Business Card (AU, IN etc.)" + (icon-name "gimp-business-card") + (width 1063) + (height 650) + (unit millimeters) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "87×49 Vistaprint Business Card" + (icon-name "gimp-business-card") + (width 1028) + (height 579) + (unit millimeters) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "Toilet paper (US, 300 ppi)" + (icon-name "gimp-toilet-paper") + (width 1350) + (height 1350) + (unit inches) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "CD cover (300 ppi)" + (icon-name "media-optical") + (width 1429) + (height 1417) + (unit millimeters) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "Web banner leaderboard 728x90" + (icon-name "gimp-web") + (width 728) + (height 90) + (unit pixels) + (xresolution 72) + (yresolution 72) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "Web banner large rectangle 336×280" + (icon-name "gimp-web") + (width 336) + (height 280) + (unit pixels) + (xresolution 72) + (yresolution 72) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "Web banner medium rectangle 300×250" + (icon-name "gimp-web") + (width 300) + (height 250) + (unit pixels) + (xresolution 72) + (yresolution 72) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "Web banner large mobile 320×100" + (icon-name "gimp-web") + (width 320) + (height 100) + (unit pixels) + (xresolution 72) + (yresolution 72) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "Web banner large skyscraper 300×600" + (icon-name "gimp-web") + (width 300) + (height 600) + (unit pixels) + (xresolution 72) + (yresolution 72) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "1280×720 (HD 720p)" + (icon-name "gimp-video") + (width 1280) + (height 720) + (unit pixels) + (xresolution 72) + (yresolution 72) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "1920×1080 (Full HD 1080p)" + (icon-name "gimp-video") + (width 1920) + (height 1080) + (unit pixels) + (xresolution 72) + (yresolution 72) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "3840x2160 (4K UHD)" + (icon-name "gimp-video") + (width 3840) + (height 2160) + (unit pixels) + (xresolution 72) + (yresolution 72) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "4096×2160 (Digital Cinema Initiatives 4K)" + (icon-name "gimp-video") + (width 4096) + (height 2160) + (unit pixels) + (xresolution 72) + (yresolution 72) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "1366×768 HD" + (icon-name "gimp-display") + (width 1366) + (height 768) + (unit pixels) + (xresolution 72) + (yresolution 72) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "1920×1200 WUXGA" + (icon-name "gimp-display") + (width 1920) + (height 1200) + (unit pixels) + (xresolution 72) + (yresolution 72) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "2560x1600 WQXGA" + (icon-name "gimp-display") + (width 2560) + (height 1600) + (unit pixels) + (xresolution 72) + (yresolution 72) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "3840×2160 4K UHD" + (icon-name "gimp-display") + (width 3840) + (height 2160) + (unit pixels) + (xresolution 72) + (yresolution 72) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "Apple iPhone 6/7" + (icon-name "gimp-smartphone") + (width 750) + (height 1334) + (unit millimeters) + (xresolution 326) + (yresolution 326) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "Apple iPhone 5" + (icon-name "gimp-smartphone") + (width 640) + (height 1136) + (unit millimeters) + (xresolution 326) + (yresolution 326) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "Apple iPad 3&4, Air" + (icon-name "gimp-smartphone") + (width 2048) + (height 2732) + (unit millimeters) + (xresolution 264) + (yresolution 264) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "Samsung Galaxy S6" + (icon-name "gimp-smartphone") + (width 1440) + (height 2560) + (unit millimeters) + (xresolution 577) + (yresolution 577) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "Samsung Galaxy S5" + (icon-name "gimp-smartphone") + (width 1080) + (height 1920) + (unit millimeters) + (xresolution 360) + (yresolution 360) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) +(GimpTemplate "Samsung Galaxy Tab 2&3 10,1 inch" + (icon-name "gimp-smartphone") + (width 800) + (height 1280) + (unit millimeters) + (xresolution 149) + (yresolution 149) + (resolution-unit inches) + (image-type rgb) + (precision u8-gamma) + (color-managed yes) + (color-profile NULL) + (fill-type background)) + +# end of templaterc diff --git a/common/GIMP/2.10/unitrc b/common/GIMP/2.10/unitrc new file mode 100644 index 0000000..9883ee8 --- /dev/null +++ b/common/GIMP/2.10/unitrc @@ -0,0 +1,51 @@ +# GIMP units +# +# This file contains the user unit database. You can edit this list with the +# unit editor. You are not supposed to edit it manually, but of course you +# can do. +# This file will be entirely rewritten each time you exit. + +(unit-info "centimeters" + (factor 2.54) + (digits 2) + (symbol "cm") + (abbreviation "cm") + (singular "centimeter") + (plural "centimeters")) +(unit-info "meters" + (factor 0.025399999999999999) + (digits 4) + (symbol "m") + (abbreviation "m") + (singular "meter") + (plural "meters")) +(unit-info "feet" + (factor 0.083333000000000004) + (digits 4) + (symbol "'") + (abbreviation "ft") + (singular "foot") + (plural "feet")) +(unit-info "yards" + (factor 0.027778000000000001) + (digits 4) + (symbol "yd") + (abbreviation "yd") + (singular "yard") + (plural "yards")) +(unit-info "typogr. points" + (factor 72.269999999999996) + (digits 0) + (symbol "tpt") + (abbreviation "tpt") + (singular "typogr. point") + (plural "typogr. points")) +(unit-info "typogr. picas" + (factor 6.0225) + (digits 1) + (symbol "tpc") + (abbreviation "tpc") + (singular "typogr. pica") + (plural "typogr. picas")) + +# end of units diff --git a/common/GIMP/3.0/colorrc b/common/GIMP/3.0/colorrc new file mode 100644 index 0000000..98d9857 --- /dev/null +++ b/common/GIMP/3.0/colorrc @@ -0,0 +1,20 @@ +# GIMP colorrc +# +# This file holds a list of recently used colors. + +(color-history + (color "R'G'B'A float" 16 "\0\0\200\77\0\0\200\77\0\0\200\77\0\0\200\77" 0) + (color "R'G'B'A double" 32 "\0\0\0\200\302\315\356\77\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\360\77" 0) + (color "R'G'B'A double" 32 "\232\231\231\231\231\231\311\77\322\321\321\321\321\321\321\77\222\221\221\221\221\221\321\77\0\0\0\0\0\0\360\77" 0) + (color "R'G'B'A double" 32 "\37\37\37\37\37\37\337\77\63\63\63\63\63\63\343\77\232\231\231\231\231\231\311\77\0\0\0\0\0\0\360\77" 0) + (color "R'G'B'A double" 32 "RRRRRR\342\77\34\34\34\34\34\34\314\77\23\23\23\23\23\23\303\77\0\0\0\0\0\0\360\77" 0) + (color "R'G'B'A double" 32 "\270\267\267\267\267\267\347\77\35\35\35\35\35\35\335\77\36\36\36\36\36\36\256\77\0\0\0\0\0\0\360\77" 0) + (color "R'G'B'A double" 32 "\221\220\220\220\220\220\300\77\33\33\33\33\33\33\273\77\21\21\21\21\21\21\301\77\0\0\0\0\0\0\360\77" 0) + (color "R'G'B'A double" 32 "\0\0\0\300\264\264\344\77\0\0\0\240\237\237\317\77\0\0\0\240\225\225\305\77\0\0\0\0\0\0\360\77" 0) + (color "R'G'B'A double" 32 "\0\0\0\300\271\271\351\77\0\0\0\0\374\373\353\77\0\0\0\40\24\24\344\77\0\0\0\0\0\0\360\77" 0) + (color "R'G'B'A double" 32 "\0\0\0\240\226\226\326\77\0\0\0\140\137\137\337\77\0\0\0\40\37\37\337\77\0\0\0\0\0\0\360\77" 0) + (color "R'G'B'A double" 32 "\24\24\24\24\24\24\264\77\21\21\21\21\21\21\261\77\25\25\25\25\25\25\265\77\0\0\0\0\0\0\360\77" 0) + (color "R'G'B'A double" 32 "\236\235\235\235\235\235\355\77SSSSSS\343\77\225\224\224\224\224\224\304\77\0\0\0\0\0\0\360\77" 0) + (color "R'G'B'A double" 32 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\360\77" 0)) + +# end of colorrc diff --git a/common/GIMP/3.0/gimprc b/common/GIMP/3.0/gimprc new file mode 100644 index 0000000..345bf81 --- /dev/null +++ b/common/GIMP/3.0/gimprc @@ -0,0 +1,39 @@ +# GIMP gimprc +# +# This is your personal gimprc file. Any variable defined in this file takes +# precedence over the value defined in the system-wide gimprc: +# /etc/gimp/3.0/gimprc +# Most values can be set within GIMP by changing some options in the +# Preferences dialog. + +(prev-language "American English") +(config-version "3.0.8") +(import-raw-plug-in "${gimp_plug_in_dir}/plug-ins/file-raw-placeholder/file-raw-placeholder") +(monitor-xresolution 108) +(monitor-yresolution 108) +(layer-new-name "Midground") +(layer-add-mask-type copy) +(fill-options + (style fg-color) + (custom-style solid-color) + (antialias yes) + (feather no) + (feather-radius 10)) +(stroke-options + (style fg-color) + (custom-style solid-color) + (antialias yes) + (feather no) + (feather-radius 10) + (method line) + (width 3) + (unit pixels) + (cap-style butt) + (join-style miter) + (miter-limit 10) + (dash-offset 0) + (dash-info 0) + (emulate-brush-dynamics no)) + + +# end of gimprc diff --git a/common/GIMP/3.0/shortcutsrc b/common/GIMP/3.0/shortcutsrc new file mode 100644 index 0000000..bf01973 --- /dev/null +++ b/common/GIMP/3.0/shortcutsrc @@ -0,0 +1,1133 @@ +# GIMP shortcutsrc +# +# If you delete this file, all shortcuts will be reset to defaults. + +(file-version 1) + +# (action "filters-tile-paper") +# (action "context-foreground-red-minimum") +# (action "tools-warp-effect-pixel-size-set") +# (action "tools-airbrush-flow-decrease") +# (action "plug-in-blinds") +# (action "drawable-lock-position") +# (action "paths-lower") +# (action "plug-in-gfig") +# (action "tools-spacing-decrease-skip") +# (action "context-brush-hardness-decrease") +# (action "select-all" "a") +# (action "image-softproof-intent-perceptual") +# (action "file-save-a-copy") +# (action "help-help" "F1") +# (action "context-brush-spikes-decrease-skip") +# (action "script-fu-make-brush-elliptical") +# (action "view-new") +# (action "filters-value-propagate") +# (action "paths-raise-to-top") +# (action "context-brush-angle-increase-skip") +# (action "python-fu-console") +# (action "tools-force-decrease-percent") +# (action "context-palette-select-first") +# (action "plug-in-borderaverage") +# (action "layers-lower-to-bottom") +# (action "filters-gegl-shuffle-search") +# (action "context-palette-background-set") +# (action "view-zoom-minimum") +# (action "context-opacity-decrease-skip") +# (action "image-convert-float") +# (action "view-scroll-left-border") +# (action "view-show-all") +# (action "dialogs-dynamics-editor") +# (action "select-fill") +# (action "filters-gegl-selective-hue-saturation") +# (action "gimp-help-using-photography") +# (action "layers-select-next" "Page_Down") +# (action "plug-in-qbist") +# (action "layers-resize") +# (action "plug-in-cml-explorer") +# (action "view-show-canvas-boundary") +# (action "context-background-hue-increase") +# (action "context-colormap-background-previous-skip") +# (action "channels-duplicate") +# (action "context-font-select-last") +# (action "layers-blend-space-rgb-perceptual") +# (action "tools-transform-3d" "w") +# (action "paths-color-tag-yellow") +# (action "filters-pixelize") +# (action "tools-airbrush-rate-maximum") +# (action "filters-desaturate") +# (action "paths-select-top") +# (action "view-scroll-right-border") +# (action "filters-long-shadow") +# (action "script-fu-fuzzy-border") +# (action "filters-lens-blur") +# (action "filters-semi-flatten") +# (action "view-padding-color-in-show-all") +# (action "filters-gegl-brightness-contrast") +# (action "image-color-profile-assign") +# (action "context-foreground-green-decrease") +# (action "filters-levels") +# (action "view-show-grid") +# (action "tools-aspect-increase-skip") +# (action "context-brush-spacing-maximum") +# (action "context-swatch-foreground-previous" "9") +# (action "filters-color-exchange") +# (action "layers-color-tag-green") +# (action "context-brush-shape-square") +# (action "layers-mask-apply") +# (action "layers-edit-text") +# (action "layers-flatten-image") +# (action "filters-noise-cie-lch") +# (action "layers-merge-layers") +# (action "paths-selection-add") +# (action "filters-mosaic") +# (action "tools-airbrush-flow-set") +# (action "paths-color-tag-blue") +# (action "edit-named-copy-visible") +# (action "layers-raise") +# (action "layers-composite-space-rgb-perceptual") +# (action "context-swatch-foreground-set") +# (action "filters-engrave") +# (action "filters-median-blur") +# (action "windows-use-single-window-mode") +# (action "tools-color-average-radius-set") +# (action "filters-gegl-alpha-inpaint") +# (action "plug-in-smooth-palette") +# (action "paths-color-tag-violet") +# (action "layers-mask-disable") +# (action "context-brush-hardness-increase") +# (action "tools-curves") +# (action "tools-opacity-increase-skip" "greater") +# (action "view-zoom-out-skip") +# (action "tools-size-set") +# (action "filters-unsharp-mask") +# (action "context-foreground-red-decrease") +# (action "context-paint-mode-last") +# (action "context-background-green-decrease-skip") +# (action "view-scroll-top-border") +# (action "channels-delete") +# (action "context-swatch-background-previous-skip") +# (action "tools-force-maximum") +# (action "context-background-hue-minimum") +# (action "filters-wind") +# (action "plug-in-goat-exercise-vala") +# (action "channels-select-next") +# (action "edit-paste" "v" "Paste") +# (action "paths-color-tag-brown") +# (action "tools-airbrush-rate-decrease-skip") +# (action "plug-in-zealouscrop") +# (action "context-background-green-maximum") +# (action "view-snap-to-guides") +# (action "edit-undo" "z") +# (action "drawable-visible") +# (action "layers-opacity-increase-skip") +# (action "edit-strong-redo" "y") +# (action "channels-selection-replace") +# (action "plug-in-lighting") +# (action "edit-named-paste") +# (action "context-palette-foreground-next") +# (action "context-colormap-background-next") +# (action "context-background-saturation-maximum") +# (action "filters-grid") +# (action "filters-cartoon") +# (action "context-palette-background-previous-skip") +# (action "context-colormap-foreground-previous-skip") +# (action "context-tool-select-last") +# (action "context-brush-select-first") +# (action "file-save" "s") +# (action "context-background-red-increase-skip") +# (action "tools-size-decrease" "bracketleft") +# (action "edit-paste-into") +# (action "image-flip-horizontal") +# (action "view-flip-horizontally") +# (action "context-background-value-increase") +# (action "tools-size-decrease-percent") +# (action "plug-in-colormap-remap") +# (action "paths-paste") +# (action "context-brush-aspect-increase-skip") +# (action "context-brush-select-last") +# (action "context-foreground-green-increase") +# (action "select-save") +# (action "plug-in-ifscompose") +# (action "layers-blend-space-rgb-linear") +# (action "image-convert-double") +# (action "filters-fattal-2002") +# (action "script-fu-difference-clouds") +# (action "channels-color-tag-blue") +# (action "context-brush-aspect-minimum") +# (action "image-convert-half") +# (action "context-font-select-first") +# (action "paths-color-tag-orange") +# (action "view-scroll-page-down") +# (action "layers-composite-space-rgb-linear") +# (action "view-display-intent-perceptual") +# (action "dialogs-toolbox" "b") +# (action "paths-selection-to-path-advanced") +# (action "tools-angle-maximum") +# (action "tools-rotate-arbitrary") +# (action "layers-edit-attributes") +# (action "dialogs-welcome") +# (action "filters-invert-perceptual") +# (action "context-palette-background-last") +# (action "context-foreground-saturation-decrease-skip") +# (action "filters-lens-distortion") +# (action "view-scroll-horizontal") +# (action "filters-gegl-boxblur") +# (action "tools-hardness-decrease") +# (action "drawable-flip-vertical") +# (action "paths-select-bottom") +# (action "edit-paste-float") +# (action "filters-color-to-alpha") +# (action "filters-sinus") +# (action "paths-lower-to-bottom") +# (action "layers-new-group") +# (action "tools-angle-set-to-default") +# (action "view-display-filters") +# (action "context-brush-spacing-decrease") +# (action "view-zoom-selection") +# (action "tools-size-maximum") +# (action "select-stroke") +# (action "tools-spacing-set-to-default") +# (action "tools-airbrush-rate-increase") +# (action "view-close" "w") +# (action "view-padding-color-prefs") +# (action "tools-aspect-increase") +# (action "tools-mypaint-brush-hardness-set") +# (action "select-fill-last-values") +# (action "windows-tabs-position-right") +# (action "image-convert-perceptual") +# (action "tools-opacity-set-to-default") +# (action "context-swatch-foreground-previous-skip") +# (action "tools-rotate-image-arbitrary") +# (action "tools-hardness-maximum") +# (action "filters-snn-mean") +# (action "filters-noise-pick") +# (action "tools-opacity-increase" "greater") +# (action "dialogs-brushes" "b") +# (action "context-font-select-next") +# (action "image-convert-u16") +# (action "filters-video-degradation") +# (action "filters-sepia") +# (action "context-brush-aspect-decrease") +# (action "context-foreground-green-maximum") +# (action "context-foreground-green-increase-skip") +# (action "context-brush-spacing-set") +# (action "edit-fill-fg" "comma") +# (action "drawable-rotate-180") +# (action "plug-in-gflare") +# (action "gimp-palette-export-text") +# (action "tools-crop" "c") +# (action "file-gbr-export-internal") +# (action "tools-paintbrush-force-set") +# (action "layers-blend-space-rgb-non-linear") +# (action "tools-size-decrease-skip" "braceleft") +# (action "plug-in-goat-exercise-python") +# (action "tools-airbrush-flow-minimum") +# (action "plug-in-unit-editor") +# (action "view-open-display") +# (action "paths-color-tag-green") +# (action "context-background-saturation-decrease-skip") +# (action "context-palette-foreground-previous-skip") +# (action "context-opacity-decrease") +# (action "view-zoom-2-1" "2" "KP_2") +# (action "tools-hardness-decrease-skip") +# (action "context-foreground-red-increase-skip") +# (action "filters-stretch-contrast-hsv") +# (action "context-background-value-increase-skip") +# (action "view-flip-reset") +# (action "plug-in-pagecurl") +# (action "dialogs-patterns" "p") +# (action "tools-aspect-maximum") +# (action "layers-merge-layers-last-values") +# (action "filters-gegl-gray-component-replacement") +# (action "paths-lock-content") +# (action "dialogs-gradients" "g") +# (action "context-brush-spikes-maximum") +# (action "filters-kaleidoscope") +# (action "context-background-blue-minimum") +# (action "edit-paste-merged") +# (action "context-background-blue-decrease") +# (action "script-fu-guide-new-percent") +# (action "context-foreground-hue-decrease") +# (action "view-display-black-point-compensation") +# (action "view-padding-color-light-check") +# (action "view-navigation-window") +# (action "context-swatch-background-first") +# (action "context-palette-background-next-skip") +# (action "script-fu-circuit") +# (action "paths-selection-from-paths" "v") +# (action "filters-repeat" "f") +# (action "view-rotate-15") +# (action "context-colormap-background-next-skip") +# (action "filters-gegl-gluas") +# (action "view-zoom-fit-in" "j") +# (action "paths-stroke-last-values") +# (action "layers-composite-space-rgb-non-linear") +# (action "view-zoom-1-16" "percent" "KP_5") +# (action "context-brush-radius-set") +# (action "paths-edit") +# (action "filters-hue-chroma") +# (action "tools-hardness-set-to-default") +# (action "filters-illusion") +# (action "context-paint-mode-next") +# (action "view-rotate-180") +# (action "filters-dither") +# (action "filters-linear-sinusoid") +# (action "context-brush-spacing-increase") +# (action "select-flood") +# (action "plug-in-gimpressionist") +# (action "filters-difference-of-gaussians") +# (action "plug-in-curve-bend") +# (action "view-show-scrollbars") +# (action "paths-color-tag-gray") +# (action "python-fu-palette-to-gradient") +# (action "script-fu-reverse-layers") +# (action "layers-color-tag-red") +# (action "filters-shift") +# (action "filters-gegl-segment-kmeans") +# (action "edit-undo-clear") +# (action "tools-aspect-set") +# (action "filters-offset" "o") +# (action "filters-gegl-domain-transform") +# (action "view-show-statusbar") +# (action "layers-opacity-decrease") +# (action "view-snap-to-equidistance") +# (action "filters-component-extract") +# (action "plug-in-lic") +# (action "tools-by-color-select" "o") +# (action "script-fu-add-bevel") +# (action "script-fu-weave") +# (action "context-brush-radius-increase") +# (action "channels-color-tag-violet") +# (action "windows-hide-docks") +# (action "context-tool-select-next") +# (action "channels-new-last-values") +# (action "context-palette-background-first") +# (action "tools-angle-increase") +# (action "windows-show-tabs") +# (action "filters-noise-simplex") +# (action "tools-gradient" "g") +# (action "plug-in-warp") +# (action "edit-named-copy") +# (action "filters-gegl-aces-rrt") +# (action "tools-offset") +# (action "context-brush-select-next") +# (action "context-opacity-increase") +# (action "dialogs-mypaint-brushes") +# (action "tools-shear" "h") +# (action "tools-angle-set") +# (action "context-brush-radius-maximum") +# (action "layers-mask-add-last-values") +# (action "filters-gegl-box-blur") +# (action "script-fu-paste-as-pattern") +# (action "view-rotate-reset") +# (action "view-scroll-center" "j") +# (action "dialogs-layers" "l") +# (action "tools-force-decrease-skip") +# (action "view-reset" "exclam") +# (action "layers-mode-previous") +# (action "layers-edit") +# (action "plug-in-dbbrowser") +# (action "paths-edit-attributes") +# (action "script-fu-make-brush-rectangular-feathered") +# (action "context-background-value-minimum") +# (action "filters-noise-perlin") +# (action "filters-posterize") +# (action "context-brush-shape-circle") +# (action "layers-lower") +# (action "context-brush-radius-increase-less") +# (action "layers-new" "n") +# (action "image-softproof-intent-absolute-colorimetric") +# (action "tools-text" "t") +# (action "plug-in-nl-filter") +# (action "image-color-profile-save") +# (action "context-background-blue-increase") +# (action "context-palette-background-next") +# (action "context-brush-hardness-minimum") +# (action "tools-airbrush-rate-set") +# (action "gimp-help-concepts-usage") +# (action "image-softproof-intent-saturation") +# (action "context-background-hue-set") +# (action "context-foreground-hue-increase") +# (action "context-foreground-blue-decrease") +# (action "tools-force-increase-skip") +# (action "channels-selection-intersect") +# (action "tools-scale" "s") +# (action "file-save-as" "s") +# (action "file-save-and-close") +# (action "filters-vignette") +# (action "view-rotate-345") +# (action "context-pattern-select-last") +# (action "context-paint-mode-first") +# (action "plug-in-animationoptimize") +# (action "dialogs-templates") +# (action "channels-color-tag-gray") +# (action "context-background-green-increase") +# (action "image-resize") +# (action "filters-gegl-ctx-script") +# (action "script-fu-round-corners") +# (action "context-swatch-foreground-first") +# (action "tools-spacing-maximum") +# (action "channels-selection-add") +# (action "tools-hardness-set") +# (action "plug-in-spyrogimp") +# (action "view-rotate-other") +# (action "dialogs-dynamics") +# (action "tools-free-select" "f") +# (action "layers-duplicate" "d") +# (action "select-copy-float") +# (action "gimp-online-roadmap") +# (action "tools-object-2-last") +# (action "dialogs-gradient-editor") +# (action "tools-warp" "w") +# (action "filters-c2g") +# (action "filters-displace") +# (action "plug-in-screenshot") +# (action "tools-rect-select" "r") +# (action "filters-motion-blur-zoom") +# (action "windows-tabs-position-bottom") +# (action "image-convert-non-linear") +# (action "view-show-rulers" "r") +# (action "view-zoom-1-1" "1" "KP_1") +# (action "tools-angle-decrease-skip") +# (action "context-background-blue-set") +# (action "view-zoom-1-2" "at" "KP_2") +# (action "plug-in-metadata-editor") +# (action "channels-new") +# (action "view-dot-for-dot") +# (action "filters-shadows-highlights") +# (action "plug-in-sparkle") +# (action "tools-fuzzy-select" "u") +# (action "filters-edge-neon") +# (action "gimp-help-using-selections") +# (action "file-export" "e") +# (action "filters-noise-rgb") +# (action "filters-image-gradient") +# (action "tools-airbrush-rate-minimum") +# (action "tools-aspect-decrease-percent") +# (action "plug-in-film") +# (action "script-fu-guide-new") +# (action "context-palette-foreground-first") +# (action "view-zoom-1-4" "numbersign" "KP_3") +# (action "view-snap-to-canvas") +# (action "filters-bump-map") +# (action "filters-slic") +# (action "filters-color-temperature") +# (action "script-fu-old-photo") +# (action "context-brush-spikes-decrease") +# (action "context-background-red-minimum") +# (action "debug-dump-keyboard-shortcuts") +# (action "select-invert" "i") +# (action "context-brush-radius-decrease-percent") +# (action "tools-hardness-decrease-percent") +# (action "view-padding-color-custom") +# (action "filters-recursive-transform") +# (action "tools-opacity-set") +# (action "context-foreground-value-minimum") +# (action "layers-raise-to-top") +# (action "filters-normal-map") +# (action "tools-measure" "m") +# (action "filters-gegl-alpha-clip") +# (action "layers-mask-add") +# (action "context-brush-spacing-minimum") +# (action "tools-spacing-increase-skip") +# (action "context-background-green-set") +# (action "context-background-value-set") +# (action "view-display-intent-relative-colorimetric") +# (action "context-foreground-blue-increase") +# (action "view-zoom-1-8" "dollar" "KP_4") +# (action "script-fu-paste-as-brush") +# (action "view-zoom-16-1" "5" "KP_5") +# (action "gimp-palette-export-css") +# (action "filters-emboss") +# (action "image-rotate-270") +# (action "tools-opacity-increase-percent") +# (action "context-brush-spikes-increase-skip") +# (action "image-scale") +# (action "script-fu-set-cmap") +# (action "channels-raise") +# (action "filters-noise-hurl") +# (action "context-brush-angle-maximum") +# (action "context-colormap-foreground-set") +# (action "image-convert-grayscale") +# (action "image-duplicate" "d") +# (action "dialogs-undo-history") +# (action "select-feather") +# (action "select-stroke-last-values") +# (action "script-fu-waves-anim") +# (action "image-crop-to-content") +# (action "context-background-value-decrease") +# (action "filters-oilify") +# (action "paths-copy") +# (action "select-grow") +# (action "context-opacity-increase-skip") +# (action "view-scroll-page-left") +# (action "plug-in-gradmap") +# (action "context-colors-default" "d") +# (action "context-palette-select-previous") +# (action "filters-gegl-bilateral-filter") +# (action "context-swatch-foreground-last") +# (action "layers-mask-selection-subtract") +# (action "context-background-red-set") +# (action "layers-scale") +# (action "script-fu-test-sphere-v3") +# (action "tools-levels") +# (action "tools-size-increase-percent") +# (action "filters-edge-laplace") +# (action "image-configure-grid") +# (action "tools-spacing-decrease-percent") +# (action "context-opacity-set") +# (action "image-convert-indexed") +# (action "context-foreground-red-maximum") +# (action "context-background-green-minimum") +# (action "plug-in-wavelet-decompose") +# (action "script-fu-burn-in-anim") +# (action "plug-in-jigsaw") +# (action "dialogs-selection-editor") +# (action "image-convert-rgb") +# (action "gimp-help-concepts-paths") +# (action "image-color-profile-discard") +# (action "plug-in-flame") +# (action "debug-mem-profile") +# (action "context-brush-spikes-increase") +# (action "image-color-profile-use-srgb") +# (action "python-fu-foggify") +# (action "tools-airbrush-rate-decrease") +# (action "script-fu-guides-from-selection") +# (action "view-zoom-maximum") +# (action "dialogs-tool-presets") +# (action "tools-aspect-decrease") +# (action "view-zoom-in" "plus" "KP_Add" "ZoomIn") +# (action "paths-selection-to-path") +# (action "context-background-blue-decrease-skip") +# (action "view-color-management-softproof") +# (action "tools-warp-effect-hardness-set") +# (action "tools-opacity-minimum") +# (action "filters-softglow") +# (action "filters-color-enhance") +# (action "tools-opacity-decrease" "less") +# (action "tools-force-set-to-default") +# (action "context-brush-hardness-decrease-skip") +# (action "edit-cut" "x" "Cut") +# (action "context-pattern-select-next") +# (action "layers-mask-selection-add") +# (action "context-background-green-increase-skip") +# (action "image-color-profile-convert") +# (action "filters-waterpixels") +# (action "context-palette-select-set") +# (action "python-fu-palette-to-gradient-repeating") +# (action "select-border") +# (action "context-foreground-hue-set") +# (action "dialogs-images") +# (action "script-fu-xach-effect") +# (action "dialogs-document-history") +# (action "dialogs-keyboard-shortcuts") +# (action "script-fu-clothify") +# (action "plug-in-animationplay") +# (action "tools-dodge-burn" "d") +# (action "tools-object-2-next") +# (action "context-palette-foreground-next-skip") +# (action "plug-in-reset-all") +# (action "layers-select-bottom" "End") +# (action "context-foreground-hue-minimum") +# (action "view-zoom-8-1" "4" "KP_4") +# (action "tools-airbrush-rate-increase-skip") +# (action "context-colormap-foreground-next-skip") +# (action "layers-visible") +# (action "context-swatch-background-next-skip") +# (action "plug-in-mail-image") +# (action "context-palette-background-previous") +# (action "layers-mode-first") +# (action "context-palette-foreground-set") +# (action "file-copy-location") +# (action "dialogs-action-search" "slash" "KP_Divide") +# (action "context-foreground-blue-minimum") +# (action "tools-size-minimum") +# (action "filters-convolution-matrix") +# (action "layers-mask-show") +# (action "layers-composite-mode-union") +# (action "plug-in-retinex") +# (action "edit-paste-merged-in-place") +# (action "edit-paste-float-in-place") +# (action "edit-copy" "c" "Copy") +# (action "tools-object-2-previous") +# (action "python-fu-palette-sort") +# (action "context-brush-hardness-set") +# (action "tools-ink-blob-angle-set") +# (action "context-tool-select-first") +# (action "filters-erode") +# (action "edit-fill-bg" "period") +# (action "image-print-size") +# (action "context-foreground-green-minimum") +# (action "filters-gegl-color-warp") +# (action "script-fu-unsharp-mask") +# (action "tools-handle-transform" "l") +# (action "filters-gaussian-blur") +# (action "context-colormap-background-previous") +# (action "image-merge-layers" "m") +# (action "filters-high-pass") +# (action "tools-move" "m") +# (action "context-pattern-select-previous") +# (action "context-background-hue-maximum") +# (action "script-fu-guides-remove") +# (action "context-foreground-saturation-increase-skip") +# (action "image-softproof-black-point-compensation") +# (action "channels-select-previous") +# (action "tools-flip" "f") +# (action "context-brush-angle-set") +# (action "edit-fill-pattern" "semicolon") +# (action "layers-composite-mode-clip-to-layer") +# (action "edit-paste-in-place" "v" "Paste") +# (action "tools-vector" "b") +# (action "script-fu-make-brush-elliptical-feathered") +# (action "tools-aspect-minimum") +# (action "view-snap-to-bbox") +# (action "quick-mask-configure") +# (action "tools-object-1-first") +# (action "gimp-palette-export-java") +# (action "plug-in-grid") +# (action "script-fu-lava") +# (action "channels-color-tag-red") +# (action "context-brush-radius-decrease-skip") +# (action "context-brush-spikes-minimum") +# (action "layers-opacity-opaque") +# (action "context-foreground-blue-decrease-skip") +# (action "context-foreground-blue-set") +# (action "tools-angle-decrease") +# (action "context-brush-radius-decrease") +# (action "tools-object-1-previous") +# (action "paths-export") +# (action "plug-in-animationoptimize-diff") +# (action "filters-dropshadow") +# (action "context-font-select-previous") +# (action "filters-maze") +# (action "plug-in-tile") +# (action "image-convert-u32") +# (action "paths-delete") +# (action "quick-mask-toggle" "q") +# (action "tools-paintbrush" "p") +# (action "layers-select-flattened-previous") +# (action "file-revert") +# (action "context-swatch-foreground-next" "0") +# (action "layers-anchor" "h") +# (action "context-foreground-saturation-maximum") +# (action "layers-opacity-set") +# (action "context-brush-aspect-maximum") +# (action "plug-in-goat-exercise-c") +# (action "quick-mask-invert-on") +# (action "layers-mask-selection-intersect") +# (action "image-softproof-intent-relative-colorimetric") +# (action "dialogs-dashboard") +# (action "drawable-levels-stretch") +# (action "layers-lock-content") +# (action "context-gradient-select-first") +# (action "tools-size-increase-skip" "braceright") +# (action "layers-mask-selection-replace") +# (action "script-fu-ripply-anim") +# (action "filters-supernova") +# (action "view-scroll-page-up") +# (action "context-background-saturation-increase-skip") +# (action "tools-hardness-increase-skip") +# (action "filters-focus-blur") +# (action "tools-eraser" "e") +# (action "dialogs-preferences") +# (action "channels-color-tag-yellow") +# (action "filters-brightness-contrast") +# (action "tools-size-set-to-default" "backslash") +# (action "drawable-lock-content") +# (action "dialogs-vectors") +# (action "view-scroll-down") +# (action "plug-in-palettemap") +# (action "tools-transform-preview-opacity-set") +# (action "filters-color-rotate") +# (action "view-padding-color-dark-check") +# (action "tools-ink-blob-aspect-set") +# (action "context-paint-mode-previous") +# (action "context-swatch-background-last") +# (action "channels-selection-subtract") +# (action "context-background-green-decrease") +# (action "context-colors-swap" "x") +# (action "filters-colorize") +# (action "image-resize-to-layers") +# (action "filters-gaussian-blur-selective") +# (action "view-rotate-set-absolute") +# (action "context-background-hue-decrease-skip") +# (action "file-gih-export-internal") +# (action "filters-waves") +# (action "tools-airbrush-flow-decrease-skip") +# (action "dialogs-device-status") +# (action "context-brush-radius-minimum") +# (action "view-scroll-page-right") +(action "file-print-gtk" "p") +# (action "debug-gtk-inspector") +# (action "filters-gegl-levels") +# (action "channels-lower") +# (action "dialogs-about") +# (action "filters-noise-reduction") +# (action "context-foreground-saturation-set") +# (action "filters-reinhard-2005") +# (action "plug-in-compose") +# (action "filters-panorama-projection") +# (action "layers-mask-delete") +# (action "filters-gegl-graph") +# (action "layers-composite-mode-auto") +# (action "filters-recent-01") +# (action "filters-noise-spread") +# (action "script-fu-sota-chrome-it") +# (action "windows-show-display-next" "Tab" "Forward") +# (action "filters-recent-02") +# (action "layers-color-tag-yellow") +# (action "gimp-online-docs-web-site") +# (action "context-foreground-green-set") +# (action "context-foreground-value-set") +# (action "context-background-saturation-increase") +# (action "filters-recent-03") +# (action "context-foreground-saturation-decrease") +# (action "dialogs-module-dialog") +# (action "plug-in-goat-exercise-gjs") +# (action "filters-invert-value") +# (action "view-color-management-enable") +# (action "view-show-layer-boundary") +# (action "context-gradient-select-last") +# (action "select-none" "a") +# (action "filters-recent-04") +# (action "channels-select-top") +# (action "tools-brightness-contrast") +# (action "view-show-selection" "t") +# (action "tools-aspect-increase-percent") +# (action "filters-recent-05") +# (action "context-background-red-increase") +# (action "context-background-blue-maximum") +# (action "filters-recent-06") +# (action "layers-alpha-remove") +# (action "context-foreground-value-decrease-skip") +# (action "plug-in-animationunoptimize") +# (action "tools-rotate" "r") +# (action "edit-strong-undo" "z") +# (action "layers-merge-down") +# (action "gimp-help-using-web") +# (action "filters-gegl-voronoi-diagram") +# (action "tools-airbrush" "a") +# (action "filters-recent-07") +# (action "image-convert-linear") +# (action "plug-in-spheredesigner") +# (action "script-fu-blend-anim") +# (action "layers-new-from-visible") +# (action "filters-recent-08") +# (action "tools-paintbrush-angle-set") +# (action "tools-force-increase-percent") +# (action "context-brush-spikes-set") +# (action "filters-variable-blur") +# (action "file-create-template") +# (action "filters-recent-09") +# (action "tools-mypaint-brush-radius-set") +# (action "dialogs-colors") +# (action "layers-color-tag-violet") +# (action "view-rotate-90") +# (action "edit-redo" "y") +# (action "tools-paintbrush-hardness-set") +# (action "tools-angle-decrease-percent") +# (action "context-brush-spacing-decrease-skip") +# (action "file-open-recent-01" "1") +# (action "context-brush-shape-diamond") +# (action "tools-threshold") +# (action "plug-in-despeckle") +# (action "filters-gegl-connected-components") +# (action "dialogs-palettes") +# (action "filters-polar-coordinates") +# (action "filters-mean-curvature-blur") +# (action "tools-zoom" "z") +# (action "windows-tabs-position-left") +# (action "filters-motion-blur-circular") +# (action "file-open-recent-02" "2") +# (action "paths-import") +# (action "dialogs-input-devices") +# (action "filters-gegl-bevel") +# (action "channels-color-tag-orange") +# (action "view-scroll-bottom-border") +# (action "context-foreground-hue-decrease-skip") +# (action "context-palette-foreground-previous") +# (action "file-open-recent-03" "3") +# (action "tools-paintbrush-spacing-set") +# (action "script-fu-coffee-stain") +# (action "plug-in-depth-merge") +# (action "tools-object-2-first") +# (action "layers-delete") +# (action "tools-object-1-last") +# (action "paths-duplicate") +# (action "filters-fractal-trace") +# (action "file-open-recent-04" "4") +# (action "edit-clear" "Delete") +# (action "file-quit" "q") +# (action "filters-checkerboard") +# (action "file-open-recent-05" "5") +# (action "tools-ink-blob-pixel-size-set") +# (action "layers-resize-to-image") +# (action "tools-ink-blob-size-set") +# (action "python-fu-histogram-export") +# (action "file-open-recent-06" "6") +# (action "layers-color-tag-none") +# (action "filters-red-eye-removal") +# (action "layers-mask-edit") +# (action "context-foreground-saturation-increase") +# (action "file-open-recent-07" "7") +# (action "view-scroll-up") +# (action "tools-spacing-increase-percent") +# (action "context-colormap-foreground-previous") +# (action "filters-little-planet") +# (action "layers-alpha-selection-replace") +# (action "plug-in-plug-in-details") +# (action "context-brush-angle-minimum") +# (action "file-open-recent-08" "8") +# (action "context-background-value-maximum") +# (action "layers-mask-add-button") +# (action "context-swatch-background-set") +# (action "filters-noise-slur") +# (action "image-rotate-180") +# (action "filters-edge-sobel") +# (action "tools-angle-increase-skip") +# (action "file-open-recent-09" "9") +# (action "tools-heal" "h") +# (action "gimp-help-using-simpleobjects") +# (action "filters-photocopy") +# (action "tools-spacing-decrease") +# (action "filters-channel-mixer") +# (action "dialogs-cursor") +# (action "file-pat-export-internal") +# (action "layers-lock-position") +# (action "plug-in-fractalexplorer") +# (action "layers-color-tag-orange") +# (action "image-resize-to-selection") +# (action "context-brush-hardness-maximum") +# (action "context-swatch-foreground-next-skip") +# (action "paths-visible") +# (action "channels-visible") +# (action "filters-gegl-bilateral-filter-fast") +# (action "select-sharpen") +# (action "context-gradient-select-set") +# (action "debug-dump-attached-data") +# (action "image-flip-vertical") +# (action "layers-text-along-vectors") +# (action "layers-text-to-vectors") +# (action "script-fu-make-brush-rectangular") +# (action "view-snap-to-grid") +# (action "tools-mypaint-brush" "y") +# (action "filters-newsprint") +# (action "context-swatch-background-next") +# (action "context-brush-angle-decrease-skip") +# (action "file-show-in-file-manager" "f") +# (action "dialogs-indexed-palette") +# (action "gimp-help-using-fileformats") +# (action "layers-composite-mode-intersection") +# (action "layers-alpha-selection-add") +# (action "dialogs-tool-options") +# (action "edit-copy-visible" "c" "Copy") +# (action "filters-distance-map") +# (action "gimp-online-bugs-features") +# (action "paths-lock-position") +# (action "dialogs-histogram") +# (action "channels-select-bottom") +# (action "filters-mantiuk-2006") +# (action "filters-gegl-gradient-map") +# (action "filters-gegl-color-assimilation-grid") +# (action "tools-force-minimum") +# (action "filters-tile-glass") +# (action "file-export-as" "e") +# (action "image-new" "n") +# (action "filters-dilate") +# (action "filters-invert-linear") +# (action "context-palette-select-last") +# (action "plug-in-decompose") +# (action "filters-plasma") +# (action "tools-aspect-decrease-skip") +# (action "context-gradient-select-next") +# (action "layers-select-previous" "Page_Up") +# (action "windows-tab-position") +# (action "script-fu-drop-shadow") +# (action "paths-selection-replace") +# (action "view-display-intent-saturation") +# (action "context-background-red-maximum") +# (action "context-background-saturation-minimum") +# (action "filters-gegl-negative-darkroom") +# (action "select-cut-float" "l") +# (action "dialogs-buffers") +# (action "tools-color-picker" "o") +# (action "tools-warp-effect-size-set") +# (action "filters-gegl-inner-glow") +# (action "context-foreground-value-maximum") +# (action "filters-bayer-matrix") +# (action "context-background-saturation-set") +# (action "tools-spacing-increase") +# (action "filters-gegl-demosaic-bimedian") +# (action "channels-color-tag-brown") +# (action "view-show-sample-points") +# (action "paths-stroke") +# (action "filters-recent-10") +# (action "view-zoom-out" "minus" "KP_Subtract" "ZoomOut") +# (action "filters-gegl-fractal-explorer") +# (action "tools-opacity-decrease-skip" "less") +# (action "view-scroll-right") +# (action "view-zoom-revert" "grave") +# (action "filters-diffraction-patterns") +# (action "tools-align" "q") +# (action "windows-show-display-previous" "Tab" "Back") +# (action "filters-tile-seamless") +# (action "gimp-palette-export-php") +# (action "tools-angle-minimum") +# (action "filters-curves") +# (action "layers-opacity-transparent") +# (action "channels-raise-to-top") +# (action "tools-airbrush-flow-increase") +# (action "context-background-blue-increase-skip") +# (action "filters-whirl-pinch") +# (action "context-brush-select-set") +# (action "help-context-help" "F1") +# (action "tools-pencil" "n") +# (action "context-brush-hardness-increase-skip") +# (action "filters-edge") +# (action "tools-object-1-next") +# (action "layers-opacity-decrease-skip") +# (action "dialogs-channels") +# (action "filters-apply-canvas") +# (action "tools-opacity-decrease-percent") +# (action "file-open" "o") +# (action "script-fu-gradient-example") +# (action "debug-benchmark-projection") +# (action "script-fu-perspective-shadow") +# (action "plug-in-script-fu-console") +# (action "view-snap-to-vectors") +# (action "context-background-red-decrease-skip") +# (action "view-scroll-left") +# (action "context-dynamics-toggle") +# (action "file-pdf-export-multi") +# (action "select-shrink") +# (action "view-zoom-fill") +# (action "plug-in-metadata-viewer") +# (action "gimp-online-developer-web-site") +# (action "plug-in-small-tiles") +# (action "filters-threshold-alpha") +# (action "layers-alpha-selection-intersect") +# (action "context-tool-select-previous") +# (action "context-brush-aspect-decrease-skip") +# (action "view-display-intent-absolute-colorimetric") +# (action "tools-hardness-minimum") +# (action "plug-in-colormap-swap") +# (action "script-fu-distress-selection") +# (action "filters-antialias") +# (action "tools-object-2-set") +# (action "tools-spacing-set") +# (action "layers-merge-down-button") +# (action "file-open-recent-10" "0") +# (action "channels-lower-to-bottom") +# (action "layers-color-tag-blue") +# (action "plug-in-align-layers") +# (action "filters-hue-saturation") +# (action "tools-ink" "k") +# (action "view-show-guides" "t") +# (action "script-fu-tile-blur") +# (action "filters-exposure") +# (action "windows-tabs-position-top") +# (action "filters-mono-mixer") +# (action "view-move-to-screen-wayland-1") +# (action "filters-threshold") +# (action "tools-force-decrease") +# (action "filters-gegl-color-overlay") +# (action "tools-perspective-clone") +# (action "filters-bloom") +# (action "tools-opacity-maximum") +# (action "dialogs-brush-editor") +# (action "paths-selection-subtract") +# (action "context-font-select-set") +# (action "context-foreground-saturation-minimum") +# (action "layers-new-last-values") +# (action "context-colormap-foreground-last") +# (action "paths-raise") +# (action "paths-fill-last-values") +# (action "drawable-flip-horizontal") +# (action "layers-select-flattened-next") +# (action "tools-clone" "c") +# (action "edit-named-cut") +# (action "view-color-management-reset") +# (action "layers-select-top" "Home") +# (action "view-fullscreen" "F11") +# (action "layers-blend-space-auto") +# (action "filters-stretch-contrast") +# (action "plug-in-imagemap") +# (action "filters-deinterlace") +# (action "filters-gegl-demosaic-simple") +# (action "context-brush-angle-decrease") +# (action "filters-noise-hsv") +# (action "tools-mypaint-brush-pixel-size-set") +# (action "channels-color-tag-green") +# (action "tools-cage" "g") +# (action "context-foreground-hue-maximum") +# (action "gimp-help-using-docks") +# (action "file-close-all" "w") +# (action "context-background-saturation-decrease") +# (action "tools-paintbrush-size-set") +# (action "filters-gegl-absolute") +# (action "file-overwrite") +# (action "context-foreground-red-increase") +# (action "filters-saturation") +# (action "layers-alpha-add") +# (action "context-foreground-blue-maximum") +# (action "gimp-help-main") +# (action "view-padding-color-theme") +# (action "context-foreground-green-decrease-skip") +# (action "image-flatten") +# (action "tools-force-set") +# (action "context-foreground-blue-increase-skip") +# (action "image-crop-to-selection") +# (action "tools-smudge" "s") +# (action "view-show-menubar") +# (action "tools-paintbrush-aspect-ratio-set") +# (action "tools-paintbrush-pixel-size-set") +# (action "layers-mode-last") +# (action "view-zoom-in-skip") +# (action "filters-motion-blur-linear") +# (action "paths-select-previous") +# (action "context-pattern-select-first") +# (action "context-background-value-decrease-skip") +# (action "dialogs-tips") +# (action "plug-in-checkerboard") +# (action "view-zoom") +# (action "context-background-red-decrease") +# (action "view-scroll-vertical") +# (action "context-palette-select-next") +# (action "paths-selection-intersect") +# (action "context-tool-select-set") +# (action "context-foreground-red-decrease-skip") +# (action "layers-merge-group") +# (action "file-open-location") +# (action "image-rotate-90") +# (action "tools-gegl") +# (action "file-open-as-layers" "o") +# (action "script-fu-line-nova") +# (action "context-brush-radius-increase-skip") +# (action "filters-gegl-local-threshold") +# (action "layers-alpha-selection-subtract") +# (action "tools-foreground-select-brush-size-set") +# (action "filters-noise-solid") +# (action "tools-size-increase" "bracketright") +# (action "dialogs-navigation") +# (action "filters-color-balance") +# (action "tools-unified-transform" "t") +# (action "filters-cubism") +# (action "tools-force-increase") +# (action "tools-by-color-select-short") +# (action "image-softproof-profile") +# (action "tools-angle-increase-percent") +# (action "dialogs-palette-editor") +# (action "edit-paste-into-in-place") +# (action "drawable-rotate-270") +# (action "view-zoom-other") +# (action "context-swatch-background-previous") +# (action "context-foreground-value-decrease") +# (action "filters-gegl-band-tune") +# (action "filters-gegl-styles") +# (action "context-foreground-red-set") +# (action "filters-alien-map") +# (action "drawable-equalize") +# (action "context-colormap-background-first") +# (action "tools-iscissors" "i") +# (action "debug-show-image-graph") +# (action "filters-gegl-denoise-dct") +# (action "context-background-hue-increase-skip") +# (action "dialogs-fonts") +# (action "context-brush-angle-increase") +# (action "tools-airbrush-flow-maximum") +# (action "tools-airbrush-flow-increase-skip") +# (action "paths-select-next") +# (action "tools-paint-select-pixel-size-set") +# (action "filters-lens-flare") +# (action "plug-in-sample-colorize") +# (action "tools-hardness-increase") +# (action "layers-crop-to-content") +# (action "context-gradient-select-previous") +# (action "view-flip-vertically") +# (action "channels-edit-attributes") +# (action "tools-ellipse-select" "e") +# (action "script-fu-spinning-globe") +# (action "plug-in-hot") +# (action "tools-bucket-fill" "b") +# (action "filters-apply-lens") +# (action "context-brush-aspect-set") +# (action "plug-in-destripe") +# (action "image-properties" "Return") +# (action "paths-merge-visible") +# (action "tools-spacing-minimum") +# (action "python-fu-palette-offset") +# (action "drawable-rotate-90") +# (action "filters-gegl-lens-correct") +# (action "context-brush-select-previous") +# (action "plug-in-map-object") +# (action "view-rotate-270") +# (action "script-fu-slide") +# (action "windows-display-0001") +# (action "tools-hardness-increase-percent") +# (action "context-brush-radius-increase-percent") +# (action "script-fu-addborder") +# (action "dialogs-sample-points") +# (action "context-brush-aspect-increase") +# (action "paths-color-tag-none") +# (action "channels-lock-position") +# (action "filters-noise-cell") +# (action "context-opacity-opaque") +# (action "filters-gegl-unpremultiply") +# (action "script-fu-selection-rounded-rectangle") +# (action "plug-in-guillotine") +# (action "context-brush-radius-decrease-less") +# (action "context-opacity-transparent") +# (action "plug-in-script-fu-server") +# (action "channels-lock-content") +# (action "tools-perspective" "p") +# (action "context-foreground-value-increase-skip") +# (action "paths-new-last-values") +# (action "filters-spherize") +# (action "view-zoom-4-1" "3" "KP_3") +# (action "context-colormap-background-set") +# (action "context-colormap-foreground-next") +# (action "paths-color-tag-red") +# (action "quick-mask-invert-off") +# (action "context-foreground-value-increase") +# (action "filters-ripple") +# (action "layers-color-tag-gray") +# (action "context-brush-spacing-increase-skip") +# (action "filters-stress") +# (action "tools-foreground-select") +# (action "image-convert-u8") +# (action "paths-fill") +# (action "gimp-palette-export-python") +# (action "context-foreground-hue-increase-skip") +# (action "tools-aspect-set-to-default") +# (action "context-background-hue-decrease") +# (action "context-pattern-select-set") +# (action "filters-reshow" "f") +# (action "context-colormap-foreground-first") +# (action "layers-mode-next") +# (action "plug-in-recompose") +# (action "gimp-online-main-web-site") +# (action "context-colormap-background-last") +# (action "layers-color-tag-brown") +# (action "context-palette-foreground-last") +# (action "python-fu-gradient-save-as-css") +# (action "tools-object-1-set") +# (action "view-shrink-wrap" "j") +# (action "paths-new") +# (action "layers-composite-mode-clip-to-backdrop") +# (action "dialogs-symmetry") +# (action "layers-crop-to-selection") +# (action "filters-rgb-clip") +# (action "channels-color-tag-none") +# (action "tools-convolve" "u") +# (action "view-softproof-gamut-check") +# (action "dialogs-error-console") +# (action "layers-composite-space-auto") +# (action "layers-opacity-increase") +# (action "script-fu-carve-it") +# (action "layers-text-discard") +# (action "filters-spiral") +# (action "layers-lock-alpha") +# (action "edit-paste-as-new-image" "v" "Paste") +# (action "script-fu-font-map") + +# end of shortcutsrc diff --git a/common/GIMP/3.0/templaterc b/common/GIMP/3.0/templaterc new file mode 100644 index 0000000..bf22379 --- /dev/null +++ b/common/GIMP/3.0/templaterc @@ -0,0 +1,923 @@ +# GIMP templaterc +# +# This file will be entirely rewritten each time you exit. + +(GimpTemplate "A0 (300 ppi)" + (width 9933) + (height 14043) + (unit millimeters) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (simulation-profile NULL) + (simulation-bpc no) + (simulation-intent relative-colorimetric) + (fill-type background)) +(GimpTemplate "A1 (300 ppi)" + (width 7016) + (height 9933) + (unit millimeters) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (simulation-profile NULL) + (simulation-bpc no) + (simulation-intent relative-colorimetric) + (fill-type background)) +(GimpTemplate "A2 (300 ppi)" + (width 4960) + (height 7016) + (unit millimeters) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (simulation-profile NULL) + (simulation-bpc no) + (simulation-intent relative-colorimetric) + (fill-type background)) +(GimpTemplate "A3 (300 ppi)" + (width 3508) + (height 4960) + (unit millimeters) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (simulation-profile NULL) + (simulation-bpc no) + (simulation-intent relative-colorimetric) + (fill-type background)) +(GimpTemplate "A4 (300 ppi)" + (width 2480) + (height 3508) + (unit millimeters) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (simulation-profile NULL) + (simulation-bpc no) + (simulation-intent relative-colorimetric) + (fill-type background)) +(GimpTemplate "A5 (300 ppi)" + (width 1748) + (height 2480) + (unit millimeters) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (simulation-profile NULL) + (simulation-bpc no) + (simulation-intent relative-colorimetric) + (fill-type background)) +(GimpTemplate "A6 (300 ppi)" + (width 1240) + (height 1748) + (unit millimeters) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (simulation-profile NULL) + (simulation-bpc no) + (simulation-intent relative-colorimetric) + (fill-type background)) +(GimpTemplate "A7 (300 ppi)" + (width 874) + (height 1240) + (unit millimeters) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (simulation-profile NULL) + (simulation-bpc no) + (simulation-intent relative-colorimetric) + (fill-type background)) +(GimpTemplate "B4 (300 ppi)" + (width 2953) + (height 4169) + (unit millimeters) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (simulation-profile NULL) + (simulation-bpc no) + (simulation-intent relative-colorimetric) + (fill-type background)) +(GimpTemplate "B5 (300 ppi)" + (width 2079) + (height 2953) + (unit millimeters) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (simulation-profile NULL) + (simulation-bpc no) + (simulation-intent relative-colorimetric) + (fill-type background)) +(GimpTemplate "B5-Japan (300 ppi)" + (width 2150) + (height 3035) + (unit millimeters) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (simulation-profile NULL) + (simulation-bpc no) + (simulation-intent relative-colorimetric) + (fill-type background)) +(GimpTemplate "US Letter (300 ppi)" + (width 2550) + (height 3300) + (unit inches) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (simulation-profile NULL) + (simulation-bpc no) + (simulation-intent relative-colorimetric) + (fill-type background)) +(GimpTemplate "US Legal (300 ppi)" + (width 2550) + (height 4200) + (unit inches) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (simulation-profile NULL) + (simulation-bpc no) + (simulation-intent relative-colorimetric) + (fill-type background)) +(GimpTemplate "88.9×50.8 US Business Card" + (icon-name "gimp-business-card") + (width 1050) + (height 600) + (unit millimeters) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (simulation-profile NULL) + (simulation-bpc no) + (simulation-intent relative-colorimetric) + (fill-type background)) +(GimpTemplate "85×55 Western Europe Business Card" + (icon-name "gimp-business-card") + (width 1004) + (height 650) + (unit millimeters) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (simulation-profile NULL) + (simulation-bpc no) + (simulation-intent relative-colorimetric) + (fill-type background)) +(GimpTemplate "90×50 Eastern Europe Business Card" + (icon-name "gimp-business-card") + (width 1063) + (height 591) + (unit millimeters) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (simulation-profile NULL) + (simulation-bpc no) + (simulation-intent relative-colorimetric) + (fill-type background)) +(GimpTemplate "90×55 Business Card (AU, IN etc.)" + (icon-name "gimp-business-card") + (width 1063) + (height 650) + (unit millimeters) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (simulation-profile NULL) + (simulation-bpc no) + (simulation-intent relative-colorimetric) + (fill-type background)) +(GimpTemplate "87×49 Vistaprint Business Card" + (icon-name "gimp-business-card") + (width 1028) + (height 579) + (unit millimeters) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (simulation-profile NULL) + (simulation-bpc no) + (simulation-intent relative-colorimetric) + (fill-type background)) +(GimpTemplate "Toilet paper (US, 300 ppi)" + (icon-name "gimp-toilet-paper") + (width 1350) + (height 1350) + (unit inches) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (simulation-profile NULL) + (simulation-bpc no) + (simulation-intent relative-colorimetric) + (fill-type background)) +(GimpTemplate "CD cover (300 ppi)" + (icon-name "media-optical") + (width 1417) + (height 1417) + (unit millimeters) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (simulation-profile NULL) + (simulation-bpc no) + (simulation-intent relative-colorimetric) + (fill-type background)) +(GimpTemplate "Web banner leaderboard 728x90" + (icon-name "gimp-web") + (width 728) + (height 90) + (unit pixels) + (xresolution 72) + (yresolution 72) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (simulation-profile NULL) + (simulation-bpc no) + (simulation-intent relative-colorimetric) + (fill-type background)) +(GimpTemplate "Web banner large rectangle 336×280" + (icon-name "gimp-web") + (width 336) + (height 280) + (unit pixels) + (xresolution 72) + (yresolution 72) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (simulation-profile NULL) + (simulation-bpc no) + (simulation-intent relative-colorimetric) + (fill-type background)) +(GimpTemplate "Web banner medium rectangle 300×250" + (icon-name "gimp-web") + (width 300) + (height 250) + (unit pixels) + (xresolution 72) + (yresolution 72) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (simulation-profile NULL) + (simulation-bpc no) + (simulation-intent relative-colorimetric) + (fill-type background)) +(GimpTemplate "Web banner large mobile 320×100" + (icon-name "gimp-web") + (width 320) + (height 100) + (unit pixels) + (xresolution 72) + (yresolution 72) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (simulation-profile NULL) + (simulation-bpc no) + (simulation-intent relative-colorimetric) + (fill-type background)) +(GimpTemplate "Web banner large skyscraper 300×600" + (icon-name "gimp-web") + (width 300) + (height 600) + (unit pixels) + (xresolution 72) + (yresolution 72) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (simulation-profile NULL) + (simulation-bpc no) + (simulation-intent relative-colorimetric) + (fill-type background)) +(GimpTemplate "1280×720 (HD 720p)" + (icon-name "gimp-video") + (width 1280) + (height 720) + (unit pixels) + (xresolution 72) + (yresolution 72) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (simulation-profile NULL) + (simulation-bpc no) + (simulation-intent relative-colorimetric) + (fill-type background)) +(GimpTemplate "1920×1080 (Full HD 1080p)" + (icon-name "gimp-video") + (width 1920) + (height 1080) + (unit pixels) + (xresolution 72) + (yresolution 72) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (simulation-profile NULL) + (simulation-bpc no) + (simulation-intent relative-colorimetric) + (fill-type background)) +(GimpTemplate "3840x2160 (4K UHD)" + (icon-name "gimp-video") + (width 3840) + (height 2160) + (unit pixels) + (xresolution 72) + (yresolution 72) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (simulation-profile NULL) + (simulation-bpc no) + (simulation-intent relative-colorimetric) + (fill-type background)) +(GimpTemplate "4096×2160 (Digital Cinema Initiatives 4K)" + (icon-name "gimp-video") + (width 4096) + (height 2160) + (unit pixels) + (xresolution 72) + (yresolution 72) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (simulation-profile NULL) + (simulation-bpc no) + (simulation-intent relative-colorimetric) + (fill-type background)) +(GimpTemplate "1366×768 HD" + (icon-name "gimp-display") + (width 1366) + (height 768) + (unit pixels) + (xresolution 72) + (yresolution 72) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (simulation-profile NULL) + (simulation-bpc no) + (simulation-intent relative-colorimetric) + (fill-type background)) +(GimpTemplate "1920×1200 WUXGA" + (icon-name "gimp-display") + (width 1920) + (height 1200) + (unit pixels) + (xresolution 72) + (yresolution 72) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (simulation-profile NULL) + (simulation-bpc no) + (simulation-intent relative-colorimetric) + (fill-type background)) +(GimpTemplate "2560x1600 WQXGA" + (icon-name "gimp-display") + (width 2560) + (height 1600) + (unit pixels) + (xresolution 72) + (yresolution 72) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (simulation-profile NULL) + (simulation-bpc no) + (simulation-intent relative-colorimetric) + (fill-type background)) +(GimpTemplate "3840×2160 4K UHD" + (icon-name "gimp-display") + (width 3840) + (height 2160) + (unit pixels) + (xresolution 72) + (yresolution 72) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (simulation-profile NULL) + (simulation-bpc no) + (simulation-intent relative-colorimetric) + (fill-type background)) +(GimpTemplate "Apple iPhone 6/7" + (icon-name "gimp-smartphone") + (width 750) + (height 1334) + (unit millimeters) + (xresolution 326) + (yresolution 326) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (simulation-profile NULL) + (simulation-bpc no) + (simulation-intent relative-colorimetric) + (fill-type background)) +(GimpTemplate "Apple iPhone 5" + (icon-name "gimp-smartphone") + (width 640) + (height 1136) + (unit millimeters) + (xresolution 326) + (yresolution 326) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (simulation-profile NULL) + (simulation-bpc no) + (simulation-intent relative-colorimetric) + (fill-type background)) +(GimpTemplate "Apple iPad 3&4, Air" + (icon-name "gimp-smartphone") + (width 2048) + (height 2732) + (unit millimeters) + (xresolution 264) + (yresolution 264) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (simulation-profile NULL) + (simulation-bpc no) + (simulation-intent relative-colorimetric) + (fill-type background)) +(GimpTemplate "Samsung Galaxy S6" + (icon-name "gimp-smartphone") + (width 1440) + (height 2560) + (unit millimeters) + (xresolution 577) + (yresolution 577) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (simulation-profile NULL) + (simulation-bpc no) + (simulation-intent relative-colorimetric) + (fill-type background)) +(GimpTemplate "Samsung Galaxy S5" + (icon-name "gimp-smartphone") + (width 1080) + (height 1920) + (unit millimeters) + (xresolution 360) + (yresolution 360) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (simulation-profile NULL) + (simulation-bpc no) + (simulation-intent relative-colorimetric) + (fill-type background)) +(GimpTemplate "Samsung Galaxy Tab 2&3 10,1 inch" + (icon-name "gimp-smartphone") + (width 800) + (height 1280) + (unit millimeters) + (xresolution 149) + (yresolution 149) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (simulation-profile NULL) + (simulation-bpc no) + (simulation-intent relative-colorimetric) + (fill-type background)) +(GimpTemplate "Web profile / avatar / icon 512×512" + (icon-name "gimp-web") + (width 512) + (height 512) + (unit pixels) + (xresolution 150) + (yresolution 150) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (simulation-profile NULL) + (simulation-bpc no) + (simulation-intent relative-colorimetric) + (fill-type background)) +(GimpTemplate "Web banner leaderboard 728×90" + (icon-name "gimp-web") + (width 728) + (height 90) + (unit pixels) + (xresolution 72) + (yresolution 72) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (simulation-profile NULL) + (simulation-bpc no) + (simulation-intent relative-colorimetric) + (fill-type background)) +(GimpTemplate "Web banner half page 300×600" + (icon-name "gimp-web") + (width 300) + (height 600) + (unit pixels) + (xresolution 72) + (yresolution 72) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (simulation-profile NULL) + (simulation-bpc no) + (simulation-intent relative-colorimetric) + (fill-type background)) +(GimpTemplate "Web banner wide skyscraper 160×600" + (icon-name "gimp-web") + (width 160) + (height 600) + (unit pixels) + (xresolution 72) + (yresolution 72) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (simulation-profile NULL) + (simulation-bpc no) + (simulation-intent relative-colorimetric) + (fill-type background)) +(GimpTemplate "Web banner mobile leaderboard 320×50" + (icon-name "gimp-web") + (width 320) + (height 50) + (unit pixels) + (xresolution 72) + (yresolution 72) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (simulation-profile NULL) + (simulation-bpc no) + (simulation-intent relative-colorimetric) + (fill-type background)) +(GimpTemplate "Display - 4:3 - 1024×768 (XGA)" + (icon-name "gimp-display") + (width 1024) + (height 768) + (unit pixels) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (simulation-profile NULL) + (simulation-bpc no) + (simulation-intent relative-colorimetric) + (fill-type background)) +(GimpTemplate "Display - 4:3 - 1152×864 (XGA+)" + (icon-name "gimp-display") + (width 1152) + (height 864) + (unit pixels) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (simulation-profile NULL) + (simulation-bpc no) + (simulation-intent relative-colorimetric) + (fill-type background)) +(GimpTemplate "Display - 4:3 - 1600×1200 (UXGA)" + (icon-name "gimp-display") + (width 1600) + (height 1200) + (unit pixels) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (simulation-profile NULL) + (simulation-bpc no) + (simulation-intent relative-colorimetric) + (fill-type background)) +(GimpTemplate "Display - 4:3 - 2048×1536 (QXGA)" + (icon-name "gimp-display") + (width 2048) + (height 1536) + (unit pixels) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (simulation-profile NULL) + (simulation-bpc no) + (simulation-intent relative-colorimetric) + (fill-type background)) +(GimpTemplate "Display - 16:10 - 1680×1050 (WSXGA+)" + (icon-name "gimp-display") + (width 1680) + (height 1050) + (unit pixels) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (simulation-profile NULL) + (simulation-bpc no) + (simulation-intent relative-colorimetric) + (fill-type background)) +(GimpTemplate "Display - 16:10 - 1920×1200 (WUXGA)" + (icon-name "gimp-display") + (width 1920) + (height 1200) + (unit pixels) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (simulation-profile NULL) + (simulation-bpc no) + (simulation-intent relative-colorimetric) + (fill-type background)) +(GimpTemplate "Display - 16:10 - 2560×1600 (WQXGA)" + (icon-name "gimp-display") + (width 2560) + (height 1600) + (unit pixels) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (simulation-profile NULL) + (simulation-bpc no) + (simulation-intent relative-colorimetric) + (fill-type background)) +(GimpTemplate "Display - 16:10 - 3840×2400 (WQUXGA)" + (icon-name "gimp-display") + (width 3840) + (height 2400) + (unit pixels) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (simulation-profile NULL) + (simulation-bpc no) + (simulation-intent relative-colorimetric) + (fill-type background)) +(GimpTemplate "Display - 16:9 - 1280×720 (HD 720p)" + (icon-name "gimp-video") + (width 1280) + (height 720) + (unit pixels) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (simulation-profile NULL) + (simulation-bpc no) + (simulation-intent relative-colorimetric) + (fill-type background)) +(GimpTemplate "Display - 16:9 - 1920×1080 (Full HD 1080p)" + (icon-name "gimp-video") + (width 1920) + (height 1080) + (unit pixels) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (simulation-profile NULL) + (simulation-bpc no) + (simulation-intent relative-colorimetric) + (fill-type background)) +(GimpTemplate "Display - 16:9 - 3840×2160 (4K UHD)" + (icon-name "gimp-video") + (width 3840) + (height 2160) + (unit pixels) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (simulation-profile NULL) + (simulation-bpc no) + (simulation-intent relative-colorimetric) + (fill-type background)) +(GimpTemplate "Display - 16:9 - 7680×4320 (8K UHD)" + (icon-name "gimp-video") + (width 7680) + (height 4320) + (unit pixels) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (simulation-profile NULL) + (simulation-bpc no) + (simulation-intent relative-colorimetric) + (fill-type background)) +(GimpTemplate "Display - 17:9 - 2048×1080 (DCI 2K)" + (icon-name "gimp-video") + (width 2048) + (height 1080) + (unit pixels) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (simulation-profile NULL) + (simulation-bpc no) + (simulation-intent relative-colorimetric) + (fill-type background)) +(GimpTemplate "Display - 17:9 - 4096×2160 (DCI 4K)" + (icon-name "gimp-video") + (width 4096) + (height 2160) + (unit pixels) + (xresolution 300) + (yresolution 300) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (simulation-profile NULL) + (simulation-bpc no) + (simulation-intent relative-colorimetric) + (fill-type background)) +(GimpTemplate "Phone - 18.5:9 - 1440×2960" + (icon-name "gimp-smartphone") + (width 1440) + (height 2960) + (unit pixels) + (xresolution 500) + (yresolution 500) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (simulation-profile NULL) + (simulation-bpc no) + (simulation-intent relative-colorimetric) + (fill-type background)) +(GimpTemplate "Phone - 19:9 - 1440×3040" + (icon-name "gimp-smartphone") + (width 1440) + (height 3040) + (unit pixels) + (xresolution 500) + (yresolution 500) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (simulation-profile NULL) + (simulation-bpc no) + (simulation-intent relative-colorimetric) + (fill-type background)) +(GimpTemplate "Phone - 19.5:9 - 1440×3120" + (icon-name "gimp-smartphone") + (width 1440) + (height 3120) + (unit pixels) + (xresolution 500) + (yresolution 500) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (simulation-profile NULL) + (simulation-bpc no) + (simulation-intent relative-colorimetric) + (fill-type background)) +(GimpTemplate "Phone - 20:9 - 1440×3200" + (icon-name "gimp-smartphone") + (width 1440) + (height 3200) + (unit pixels) + (xresolution 500) + (yresolution 500) + (resolution-unit inches) + (image-type rgb) + (precision u8-non-linear) + (color-profile NULL) + (simulation-profile NULL) + (simulation-bpc no) + (simulation-intent relative-colorimetric) + (fill-type background)) + +# end of templaterc diff --git a/common/GIMP/3.0/unitrc b/common/GIMP/3.0/unitrc new file mode 100644 index 0000000..0fdcbf6 --- /dev/null +++ b/common/GIMP/3.0/unitrc @@ -0,0 +1,39 @@ +# GIMP units +# +# This file contains the user unit database. You can edit this list with the +# unit editor. You are not supposed to edit it manually, but of course you +# can do. +# This file will be entirely rewritten each time you exit. + +(unit-info "centimeters" + (factor 2.54) + (digits 2) + (symbol "cm") + (abbreviation "cm")) +(unit-info "meters" + (factor 0.025399999999999999) + (digits 4) + (symbol "m") + (abbreviation "m")) +(unit-info "feet" + (factor 0.083333000000000004) + (digits 4) + (symbol "'") + (abbreviation "ft")) +(unit-info "yards" + (factor 0.027778000000000001) + (digits 4) + (symbol "yd") + (abbreviation "yd")) +(unit-info "typogr. points" + (factor 72.269999999999996) + (digits 0) + (symbol "tpt") + (abbreviation "tpt")) +(unit-info "typogr. picas" + (factor 6.0225) + (digits 1) + (symbol "tpc") + (abbreviation "tpc")) + +# end of units diff --git a/common/LightBurn/prefs.ini b/common/LightBurn/prefs.ini new file mode 100644 index 0000000..1f44272 --- /dev/null +++ b/common/LightBurn/prefs.ini @@ -0,0 +1,1316 @@ +{ + "AdjustImgPosX": 2781, + "AdjustImgPosY": 146, + "AdjustImgSizeX": 1866, + "AdjustImgSizeY": 979, + "AlignH": 0, + "AlignV": 2, + "AlwaysTextDlg": false, + "AnchorH": 1, + "AnchorV": 1, + "Antialiasing": true, + "AutoCheckForUpdates": true, + "AutoSaveSeconds": 120, + "BoolHelpPosX": -1, + "BoolHelpPosY": -1, + "BypassSystemDialogs": false, + "CameraRotate90": false, + "ClickSelTolerance": 3, + "ColorCameraView": true, + "ControlMoveIncrement": 1, + "CutList": [ + { + "index": 0, + "maxPower": 70, + "maxPower2": 20, + "name": "VirtArray", + "numPasses": 4, + "priority": 0, + "speed": 12, + "tabCount": 1, + "tabCountMax": 1, + "type": "Cut" + }, + { + "index": 1, + "maxPower": 90, + "maxPower2": 20, + "name": "Inner Cut", + "priority": 1, + "speed": 3, + "tabCount": 1, + "tabCountMax": 1, + "type": "Cut" + }, + { + "index": 2, + "maxPower": 90, + "maxPower2": 20, + "name": "C02", + "priority": 2, + "speed": 3, + "tabCount": 1, + "tabCountMax": 1, + "type": "Cut" + }, + { + "index": 3, + "maxPower": 90, + "maxPower2": 20, + "name": "Etch", + "priority": 0, + "speed": 3, + "tabCount": 1, + "tabCountMax": 1, + "type": "Cut" + }, + { + "index": 4, + "maxPower": 90, + "maxPower2": 20, + "name": "C04", + "priority": 3, + "speed": 3, + "tabCount": 1, + "tabCountMax": 1, + "type": "Cut" + }, + { + "index": 5, + "maxPower": 90, + "maxPower2": 20, + "name": "C05", + "priority": 0, + "speed": 3, + "tabCount": 1, + "tabCountMax": 1, + "type": "Cut" + }, + { + "index": 6, + "maxPower": 90, + "maxPower2": 20, + "name": "Deep Etch", + "priority": 1, + "speed": 3, + "tabCount": 1, + "tabCountMax": 1, + "type": "Cut" + }, + { + "index": 7, + "maxPower": 90, + "maxPower2": 20, + "name": "C07", + "priority": 2, + "speed": 3, + "tabCount": 1, + "tabCountMax": 1, + "type": "Cut" + }, + { + "index": 8, + "maxPower": 90, + "maxPower2": 20, + "name": "C08", + "priority": 4, + "speed": 3, + "tabCount": 1, + "tabCountMax": 1, + "type": "Cut" + }, + { + "index": 9, + "maxPower": 90, + "maxPower2": 20, + "name": "C09", + "priority": 2, + "speed": 3, + "tabCount": 1, + "tabCountMax": 1, + "type": "Cut" + }, + { + "index": 10, + "maxPower": 90, + "maxPower2": 20, + "name": "C10", + "priority": 3, + "speed": 3, + "tabCount": 1, + "tabCountMax": 1, + "type": "Cut" + }, + { + "index": 11, + "maxPower": 90, + "maxPower2": 20, + "name": "C11", + "priority": 0, + "speed": 3, + "tabCount": 1, + "tabCountMax": 1, + "type": "Cut" + }, + { + "index": 12, + "maxPower": 90, + "maxPower2": 20, + "name": "C12", + "priority": 0, + "speed": 3, + "tabCount": 1, + "tabCountMax": 1, + "type": "Cut" + }, + { + "index": 13, + "maxPower": 90, + "maxPower2": 20, + "name": "C13", + "priority": 0, + "speed": 3, + "tabCount": 1, + "tabCountMax": 1, + "type": "Cut" + }, + { + "index": 14, + "maxPower": 90, + "maxPower2": 20, + "name": "C14", + "priority": 0, + "speed": 3, + "tabCount": 1, + "tabCountMax": 1, + "type": "Cut" + }, + { + "index": 15, + "maxPower": 90, + "maxPower2": 20, + "name": "C15", + "priority": 0, + "speed": 3, + "tabCount": 1, + "tabCountMax": 1, + "type": "Cut" + }, + { + "index": 16, + "maxPower": 90, + "maxPower2": 20, + "name": "C16", + "priority": 0, + "speed": 3, + "tabCount": 1, + "tabCountMax": 1, + "type": "Cut" + }, + { + "index": 17, + "maxPower": 90, + "maxPower2": 20, + "name": "C17", + "priority": 0, + "speed": 3, + "tabCount": 1, + "tabCountMax": 1, + "type": "Cut" + }, + { + "index": 18, + "maxPower": 90, + "maxPower2": 20, + "name": "C18", + "priority": 0, + "speed": 3, + "tabCount": 1, + "tabCountMax": 1, + "type": "Cut" + }, + { + "index": 19, + "maxPower": 90, + "maxPower2": 20, + "name": "C19", + "priority": 0, + "speed": 3, + "tabCount": 1, + "tabCountMax": 1, + "type": "Cut" + }, + { + "index": 20, + "maxPower": 90, + "maxPower2": 20, + "name": "C20", + "priority": 0, + "speed": 3, + "tabCount": 1, + "tabCountMax": 1, + "type": "Cut" + }, + { + "index": 21, + "maxPower": 90, + "maxPower2": 20, + "name": "C21", + "priority": 0, + "speed": 3, + "tabCount": 1, + "tabCountMax": 1, + "type": "Cut" + }, + { + "index": 22, + "maxPower": 90, + "maxPower2": 20, + "name": "C22", + "priority": 0, + "speed": 3, + "tabCount": 1, + "tabCountMax": 1, + "type": "Cut" + }, + { + "index": 23, + "maxPower": 90, + "maxPower2": 20, + "name": "C23", + "priority": 0, + "speed": 3, + "tabCount": 1, + "tabCountMax": 1, + "type": "Cut" + }, + { + "index": 24, + "maxPower": 90, + "maxPower2": 20, + "name": "C24", + "priority": 0, + "speed": 3, + "tabCount": 1, + "tabCountMax": 1, + "type": "Cut" + }, + { + "index": 25, + "maxPower": 90, + "maxPower2": 20, + "name": "C25", + "priority": 0, + "speed": 3, + "tabCount": 1, + "tabCountMax": 1, + "type": "Cut" + }, + { + "index": 26, + "maxPower": 90, + "maxPower2": 20, + "name": "C26", + "priority": 0, + "speed": 3, + "tabCount": 1, + "tabCountMax": 1, + "type": "Cut" + }, + { + "index": 27, + "maxPower": 90, + "maxPower2": 20, + "name": "C27", + "priority": 0, + "speed": 3, + "tabCount": 1, + "tabCountMax": 1, + "type": "Cut" + }, + { + "index": 28, + "maxPower": 90, + "maxPower2": 20, + "name": "C28", + "priority": 0, + "speed": 3, + "tabCount": 1, + "tabCountMax": 1, + "type": "Cut" + }, + { + "index": 29, + "maxPower": 90, + "maxPower2": 20, + "name": "C29", + "priority": 0, + "speed": 3, + "tabCount": 1, + "tabCountMax": 1, + "type": "Cut" + }, + { + "ditherMode": "stucki", + "index": 0, + "maxPower": 20, + "maxPower2": 20, + "name": "C00", + "speed": 100, + "type": "Image" + }, + { + "ditherMode": "stucki", + "index": 1, + "maxPower": 20, + "maxPower2": 20, + "name": "C01", + "speed": 100, + "type": "Image" + }, + { + "ditherMode": "stucki", + "index": 2, + "maxPower": 20, + "maxPower2": 20, + "name": "C02", + "speed": 100, + "type": "Image" + }, + { + "ditherMode": "stucki", + "index": 3, + "maxPower": 20, + "maxPower2": 20, + "name": "C03", + "speed": 100, + "type": "Image" + }, + { + "ditherMode": "stucki", + "index": 4, + "maxPower": 20, + "maxPower2": 20, + "name": "C04", + "speed": 100, + "type": "Image" + }, + { + "ditherMode": "stucki", + "index": 5, + "maxPower": 20, + "maxPower2": 20, + "name": "C05", + "speed": 100, + "type": "Image" + }, + { + "ditherMode": "stucki", + "index": 6, + "maxPower": 20, + "maxPower2": 20, + "name": "C06", + "speed": 100, + "type": "Image" + }, + { + "ditherMode": "stucki", + "index": 7, + "maxPower": 20, + "maxPower2": 20, + "name": "C07", + "speed": 100, + "type": "Image" + }, + { + "ditherMode": "stucki", + "index": 8, + "maxPower": 20, + "maxPower2": 20, + "name": "C08", + "speed": 100, + "type": "Image" + }, + { + "ditherMode": "stucki", + "index": 9, + "maxPower": 20, + "maxPower2": 20, + "name": "C09", + "speed": 100, + "type": "Image" + }, + { + "ditherMode": "stucki", + "index": 10, + "maxPower": 20, + "maxPower2": 20, + "name": "C10", + "speed": 100, + "type": "Image" + }, + { + "ditherMode": "stucki", + "index": 11, + "maxPower": 20, + "maxPower2": 20, + "name": "C11", + "speed": 100, + "type": "Image" + }, + { + "ditherMode": "stucki", + "index": 12, + "maxPower": 20, + "maxPower2": 20, + "name": "C12", + "speed": 100, + "type": "Image" + }, + { + "ditherMode": "stucki", + "index": 13, + "maxPower": 20, + "maxPower2": 20, + "name": "C13", + "speed": 100, + "type": "Image" + }, + { + "ditherMode": "stucki", + "index": 14, + "maxPower": 20, + "maxPower2": 20, + "name": "C14", + "speed": 100, + "type": "Image" + }, + { + "ditherMode": "stucki", + "index": 15, + "maxPower": 20, + "maxPower2": 20, + "name": "C15", + "speed": 100, + "type": "Image" + }, + { + "ditherMode": "stucki", + "index": 16, + "maxPower": 20, + "maxPower2": 20, + "name": "C16", + "speed": 100, + "type": "Image" + }, + { + "ditherMode": "stucki", + "index": 17, + "maxPower": 20, + "maxPower2": 20, + "name": "C17", + "speed": 100, + "type": "Image" + }, + { + "ditherMode": "stucki", + "index": 18, + "maxPower": 20, + "maxPower2": 20, + "name": "C18", + "speed": 100, + "type": "Image" + }, + { + "ditherMode": "stucki", + "index": 19, + "maxPower": 20, + "maxPower2": 20, + "name": "C19", + "speed": 100, + "type": "Image" + }, + { + "ditherMode": "stucki", + "index": 20, + "maxPower": 20, + "maxPower2": 20, + "name": "C20", + "speed": 100, + "type": "Image" + }, + { + "ditherMode": "stucki", + "index": 21, + "maxPower": 20, + "maxPower2": 20, + "name": "C21", + "speed": 100, + "type": "Image" + }, + { + "ditherMode": "stucki", + "index": 22, + "maxPower": 20, + "maxPower2": 20, + "name": "C22", + "speed": 100, + "type": "Image" + }, + { + "ditherMode": "stucki", + "index": 23, + "maxPower": 20, + "maxPower2": 20, + "name": "C23", + "speed": 100, + "type": "Image" + }, + { + "ditherMode": "stucki", + "index": 24, + "maxPower": 20, + "maxPower2": 20, + "name": "C24", + "speed": 100, + "type": "Image" + }, + { + "ditherMode": "stucki", + "index": 25, + "maxPower": 20, + "maxPower2": 20, + "name": "C25", + "speed": 100, + "type": "Image" + }, + { + "ditherMode": "stucki", + "index": 26, + "maxPower": 20, + "maxPower2": 20, + "name": "C26", + "speed": 100, + "type": "Image" + }, + { + "ditherMode": "stucki", + "index": 27, + "maxPower": 20, + "maxPower2": 20, + "name": "C27", + "speed": 100, + "type": "Image" + }, + { + "ditherMode": "stucki", + "index": 28, + "maxPower": 20, + "maxPower2": 20, + "name": "C28", + "speed": 100, + "type": "Image" + }, + { + "ditherMode": "stucki", + "index": 29, + "maxPower": 20, + "maxPower2": 20, + "name": "C29", + "speed": 100, + "type": "Image" + } + ], + "CutOrigin": 2, + "DXFAutoClose": 0.009999999776482582, + "DXFAutoDetectUnits": true, + "DXFExportArcs": true, + "DXFUnits": 0, + "DarkBackground": false, + "DefaultCutSetting": { + "index": 0, + "maxPower": 100, + "maxPower2": 20, + "name": "Hexagon", + "priority": 0, + "runBlower": false, + "speed": 10, + "tabCount": 1, + "tabCountMax": 1, + "type": "Cut" + }, + "DefaultDevice": 0, + "DefaultFontHeight": 25, + "DefaultFontName": "Arial", + "DefaultImgSetting": { + "index": 0, + "maxPower": 100, + "maxPower2": 20, + "name": "Hexagon", + "priority": 0, + "runBlower": false, + "speed": 10, + "tabCount": 1, + "tabCountMax": 1, + "type": "Cut" + }, + "DeleteAfterTrace": false, + "DeviceList": [ + { + "Checklist": "", + "DefaultCutList": [ + { + "index": 0, + "maxPower": 90, + "maxPower2": 20, + "name": "Outer Cut", + "priority": 0, + "speed": 3, + "tabCount": 1, + "tabCountMax": 1, + "type": "Cut" + }, + { + "index": 1, + "maxPower": 90, + "maxPower2": 20, + "name": "Inner Cut", + "priority": 1, + "speed": 3, + "tabCount": 1, + "tabCountMax": 1, + "type": "Cut" + }, + { + "index": 2, + "maxPower": 90, + "maxPower2": 20, + "name": "C02", + "priority": 2, + "speed": 3, + "tabCount": 1, + "tabCountMax": 1, + "type": "Cut" + }, + { + "index": 3, + "maxPower": 90, + "maxPower2": 20, + "name": "Etch", + "priority": 0, + "speed": 3, + "tabCount": 1, + "tabCountMax": 1, + "type": "Cut" + }, + { + "index": 4, + "maxPower": 90, + "maxPower2": 20, + "name": "C04", + "priority": 3, + "speed": 3, + "tabCount": 1, + "tabCountMax": 1, + "type": "Cut" + }, + { + "index": 5, + "maxPower": 90, + "maxPower2": 20, + "name": "C05", + "priority": 0, + "speed": 3, + "tabCount": 1, + "tabCountMax": 1, + "type": "Cut" + }, + { + "index": 6, + "maxPower": 90, + "maxPower2": 20, + "name": "Deep Etch", + "priority": 1, + "speed": 3, + "tabCount": 1, + "tabCountMax": 1, + "type": "Cut" + }, + { + "index": 7, + "maxPower": 90, + "maxPower2": 20, + "name": "C07", + "priority": 2, + "speed": 3, + "tabCount": 1, + "tabCountMax": 1, + "type": "Cut" + }, + { + "index": 8, + "maxPower": 90, + "maxPower2": 20, + "name": "C08", + "priority": 4, + "speed": 3, + "tabCount": 1, + "tabCountMax": 1, + "type": "Cut" + }, + { + "index": 9, + "maxPower": 90, + "maxPower2": 20, + "name": "C09", + "priority": 2, + "speed": 3, + "tabCount": 1, + "tabCountMax": 1, + "type": "Cut" + }, + { + "index": 10, + "maxPower": 90, + "maxPower2": 20, + "name": "C10", + "priority": 3, + "speed": 3, + "tabCount": 1, + "tabCountMax": 1, + "type": "Cut" + }, + { + "index": 11, + "maxPower": 90, + "maxPower2": 20, + "name": "C11", + "priority": 0, + "speed": 3, + "tabCount": 1, + "tabCountMax": 1, + "type": "Cut" + }, + { + "index": 12, + "maxPower": 90, + "maxPower2": 20, + "name": "C12", + "priority": 0, + "speed": 3, + "tabCount": 1, + "tabCountMax": 1, + "type": "Cut" + }, + { + "index": 13, + "maxPower": 90, + "maxPower2": 20, + "name": "C13", + "priority": 0, + "speed": 3, + "tabCount": 1, + "tabCountMax": 1, + "type": "Cut" + }, + { + "index": 14, + "maxPower": 90, + "maxPower2": 20, + "name": "C14", + "priority": 0, + "speed": 3, + "tabCount": 1, + "tabCountMax": 1, + "type": "Cut" + }, + { + "index": 15, + "maxPower": 90, + "maxPower2": 20, + "name": "C15", + "priority": 0, + "speed": 3, + "tabCount": 1, + "tabCountMax": 1, + "type": "Cut" + }, + { + "index": 16, + "maxPower": 90, + "maxPower2": 20, + "name": "C16", + "priority": 0, + "speed": 3, + "tabCount": 1, + "tabCountMax": 1, + "type": "Cut" + }, + { + "index": 17, + "maxPower": 90, + "maxPower2": 20, + "name": "C17", + "priority": 0, + "speed": 3, + "tabCount": 1, + "tabCountMax": 1, + "type": "Cut" + }, + { + "index": 18, + "maxPower": 90, + "maxPower2": 20, + "name": "C18", + "priority": 0, + "speed": 3, + "tabCount": 1, + "tabCountMax": 1, + "type": "Cut" + }, + { + "index": 19, + "maxPower": 90, + "maxPower2": 20, + "name": "C19", + "priority": 0, + "speed": 3, + "tabCount": 1, + "tabCountMax": 1, + "type": "Cut" + }, + { + "index": 20, + "maxPower": 90, + "maxPower2": 20, + "name": "C20", + "priority": 0, + "speed": 3, + "tabCount": 1, + "tabCountMax": 1, + "type": "Cut" + }, + { + "index": 21, + "maxPower": 90, + "maxPower2": 20, + "name": "C21", + "priority": 0, + "speed": 3, + "tabCount": 1, + "tabCountMax": 1, + "type": "Cut" + }, + { + "index": 22, + "maxPower": 90, + "maxPower2": 20, + "name": "C22", + "priority": 0, + "speed": 3, + "tabCount": 1, + "tabCountMax": 1, + "type": "Cut" + }, + { + "index": 23, + "maxPower": 90, + "maxPower2": 20, + "name": "C23", + "priority": 0, + "speed": 3, + "tabCount": 1, + "tabCountMax": 1, + "type": "Cut" + }, + { + "index": 24, + "maxPower": 90, + "maxPower2": 20, + "name": "C24", + "priority": 0, + "speed": 3, + "tabCount": 1, + "tabCountMax": 1, + "type": "Cut" + }, + { + "index": 25, + "maxPower": 90, + "maxPower2": 20, + "name": "C25", + "priority": 0, + "speed": 3, + "tabCount": 1, + "tabCountMax": 1, + "type": "Cut" + }, + { + "index": 26, + "maxPower": 90, + "maxPower2": 20, + "name": "C26", + "priority": 0, + "speed": 3, + "tabCount": 1, + "tabCountMax": 1, + "type": "Cut" + }, + { + "index": 27, + "maxPower": 90, + "maxPower2": 20, + "name": "C27", + "priority": 0, + "speed": 3, + "tabCount": 1, + "tabCountMax": 1, + "type": "Cut" + }, + { + "index": 28, + "maxPower": 90, + "maxPower2": 20, + "name": "C28", + "priority": 0, + "speed": 3, + "tabCount": 1, + "tabCountMax": 1, + "type": "Cut" + }, + { + "index": 29, + "maxPower": 90, + "maxPower2": 20, + "name": "C29", + "priority": 0, + "speed": 3, + "tabCount": 1, + "tabCountMax": 1, + "type": "Cut" + }, + { + "index": 0, + "maxPower": 90, + "maxPower2": 20, + "name": "VirtArray", + "priority": 0, + "speed": 3, + "tabCount": 1, + "tabCountMax": 1, + "type": "Cut" + } + ], + "DefaultToolCutList": [ + ], + "DisplayName": "Longer Ray5 WiFi", + "EnableLaser2Offset": false, + "EnableProcessOffset": false, + "GUID": "LTM0OGRhNT", + "Height": 400, + "HomeOnStartup": false, + "Info": "192.168.1.105", + "Laser2OffsetX": 0, + "Laser2OffsetY": 0, + "LastCamera": "", + "LastDevLibraryPath": "", + "MirrorX": false, + "MirrorY": false, + "Name": "GRBL", + "ProcessOffsetX": 0, + "ProcessOffsetY": 0, + "ProfilePath": "GRBL", + "ReverseIntervalCompensation": false, + "Settings": { + "AirAssistM7": false, + "AlignH": 0, + "AlignV": 2, + "BaudRate": 115200, + "Checklist": false, + "ClickSelTolerance": 3, + "ContinuousFrame": false, + "CutOrigin": 2, + "DockState_ArtBrowser": false, + "DockState_Camera": true, + "DockState_Console": true, + "DockState_CutLibrary": true, + "DockState_LaserFiles": false, + "DockState_Move": true, + "DockState_ShapeProperties": true, + "DockState_VariableText": true, + "EnableBoundsCheck": true, + "EnableDTR": false, + "EnableGrblJCommand": false, + "EnableU": false, + "EnableZ": false, + "EndGCode": "", + "ForceSValueOutput": false, + "GCodeClustering": false, + "GridShade": 224, + "GridSnap": 1, + "GridSnapEnabled": true, + "GridSpacing": 10, + "LaserFire_Enable": true, + "LaserFire_Power": 2, + "LaserFrame_Enable": true, + "LastExportExt": "gc", + "LastMachineFileExtension": "", + "LastMachineFilePath": "/home/connor/docs/lightburn", + "NegativeWorkspace": false, + "NegativeZ": false, + "NetworkPort": 8080, + "OMTechPolar": false, + "ObjSnap": 10, + "ObjSnapEnabled": true, + "OptimizeZ": false, + "RelativeZOnly": true, + "S_Scale": 1000, + "Sim_CornerTolerance": 0.009999999776482582, + "Sim_FastWhiteScan": true, + "Sim_FastWhiteScanSpeed": 100, + "Sim_GlobalFactor": 1, + "Sim_MaxAccelX": 3000, + "Sim_MaxAccelY": 3000, + "Sim_MaxSpeedX": 500, + "Sim_MaxSpeedY": 400, + "Sim_MinCornerSpeed": 1, + "Sim_RapidSpeed": 400, + "Sim_ScanAccelX": 3000, + "Sim_ScanAccelY": 3000, + "Sim_SpeedFactor": 1, + "SkipWhiteFlag": true, + "SkipWhiteSpeed": 100, + "StartGCode": "", + "SwapXYOutput": false, + "TabPulseWidth": 0.05000000074505806, + "TransferMode": 0, + "Units": 0, + "UseG0ForOverscan": false, + "UserFinishX": 0, + "UserFinishY": 0, + "UserOriginX": 0, + "UserOriginY": 0, + "overwriteFileByDefault": false, + "rotaryMode": false + }, + "Type": "TCP", + "Width": 400 + } + ], + "DiscardOutOfBoundsShapes": false, + "DisplayFontHeight": 7, + "DisplayTolerance": 1, + "DockLockInner": true, + "DockMoveAsGroup": true, + "DockPadding": 0, + "DragSelThreshold": 2, + "EnableRTL": false, + "FilledView": false, + "FontFavorites": [ + ], + "FontRecents": [ + { + "flags": 0, + "name": "Stencilia-A" + }, + { + "flags": 0, + "name": "Arial" + }, + { + "flags": 0, + "name": "Z003" + } + ], + "FontsHidden": [ + ], + "Fonts_ShowSHX": true, + "Fonts_ShowTTF": true, + "Frame_ImageBounds": false, + "Frame_Individually": true, + "Frame_Mode": 1, + "Frame_OutsideOnly": true, + "GridArray_BetweenCentersX": false, + "GridArray_BetweenCentersY": false, + "GridArray_CreateVirtual": false, + "GridArray_GroupResults": false, + "GridArray_RandomOrientation": false, + "GridArray_RandomSeed": 0, + "GridArray_SelectResults": true, + "GridArray_XReverse": false, + "GridArray_XShiftByHalf": false, + "GridArray_XSpace": 1, + "GridArray_YReverse": false, + "GridArray_YShiftByHalf": true, + "GridArray_YSpace": -12, + "GridShade": 224, + "GridSnap": 1, + "GridSnapEnabled": true, + "GridSpacing": 10, + "GroupImportedShapes": false, + "Hpgl_1000": false, + "IgnoreStartIfMonitorOff": false, + "ImportHiddenAILayers": false, + "InvertMouseZoom": false, + "JogContinuous": false, + "Language": "en", + "LastArtLibraryPath": "", + "LastBarCode_CodeType": 58, + "LastBarCode_EvalType": 0, + "LastBarCode_Opt1": -1, + "LastBarCode_Opt2": 0, + "LastBarCode_Opt3": 0, + "LastBarCode_ProcessControlChars": false, + "LastBarCode_ShowText": true, + "LastBarCode_VarOffset": 0, + "LastCSVPath": "", + "LastExportPath": "", + "LastExportType": "", + "LastImportPath": "/tmp", + "LastLibraryPath": "", + "LastMachineSettingsPath": "", + "LastProjectPath": "/home/connor/docs/lightburn", + "LastUpdateCheck": 64, + "LoadDefaultCutLayers": true, + "LockAspect": false, + "LooseColorMatch": true, + "MachineSettingsPosX": -1, + "MachineSettingsPosY": -1, + "MachineSettingsSizeX": -1, + "MachineSettingsSizeY": -1, + "MatchToolLayerColors": false, + "MeasurePosX": 3610, + "MeasurePosY": 627, + "MoveJogDistance": 0.25, + "MoveJogSpeed": 100, + "MoveJogZSpeed": 10, + "NodeCursorSize": 0, + "NormalMoveIncrement": 5, + "ObjSnap": 10, + "ObjSnapEnabled": true, + "OffsetCorners": 1, + "OffsetDeleteOriginals": false, + "OffsetDirection": 0, + "OffsetDistance": 6, + "OffsetOptimizeOutput": false, + "OffsetOuterOnly": false, + "OffsetSelectOutput": false, + "Optimize_AllowReverse": true, + "Optimize_ByDirection": false, + "Optimize_ByGroup": -1, + "Optimize_ByLayer": 0, + "Optimize_ByPriority": 1, + "Optimize_ChooseCorners": false, + "Optimize_CutPriority": true, + "Optimize_CutSelected": false, + "Optimize_HideBacklash": false, + "Optimize_InnerToOuter": true, + "Optimize_OptimalEntryPoint": false, + "Optimize_OptimizeCuts": true, + "Optimize_OverlapDist": 0.02500000037252903, + "Optimize_ReduceDirChanges": false, + "Optimize_ReduceTravel": true, + "Optimize_RemoveOverlaps": false, + "Optimize_UseSelectedOrigin": false, + "Optimize_WhichDirection": 0, + "OutputTolerance": 0.05000000074505806, + "PlayFailedTransferSound": true, + "PreviewInverted": false, + "PreviewPlaySpeed": 0, + "PreviewPosX": 654, + "PreviewPosY": 56, + "PreviewRapidRate": 200, + "PreviewShadeByPower": false, + "PreviewShowTraversals": true, + "PreviewSizeX": 1251, + "PreviewSizeY": 1364, + "ProjectSaveVersion": 1, + "RadialArral_End": 360, + "RadialArral_Start": 0, + "RadialArray_GroupResults": false, + "RadialArray_NumCopies": 8, + "RadialArray_RotateCopies": true, + "RadialArray_SelectResults": true, + "RadialArray_UseLastAsCenter": true, + "RecentFiles": [ + "/home/connor/docs/lightburn/livy_sign.lbrn2", + "/home/connor/docs/lightburn/gridfinity/bases/12x8_v2.lbrn2", + "/home/connor/docs/lightburn/gridfinity/bases/12x8.lbrn2", + "/home/connor/docs/lightburn/frame_bigger.lbrn2", + "/home/connor/docs/lightburn/frame.lbrn2", + "/home/connor/docs/lightburn/gridfinity/bases/joined_version.lbrn2", + "/home/connor/docs/lightburn/gridfinity/bases/11x10_4.lbrn2", + "/home/connor/docs/lightburn/gridfinity/bases/11x10_3.lbrn2", + "/home/connor/docs/lightburn/gridfinity/bases/11x10_2.lbrn2", + "/home/connor/docs/lightburn/gridfinity/bases/11x10_1.lbrn2", + "/home/connor/docs/lightburn/gridfinity/bases/11x10.lbrn2", + "/home/connor/docs/lightburn/gridfinity/bases/6x5.lbrn2", + "/home/connor/docs/lightburn/gridfinity/bases/6x6.lbrn2", + "/home/connor/docs/lightburn/louisville_map/map_1.lbrn2", + "/home/connor/docs/lightburn/louisville_map/road_1.lbrn2", + "/home/connor/docs/lightburn/louisville_map/road_.lbrn2", + "/home/connor/docs/lightburn/louisville_map/road_3.lbrn2", + "/home/connor/docs/lightburn/louisville_map/road_2.lbrn2", + "/home/connor/docs/lightburn/louisville_map/map_4.lbrn2", + "/home/connor/docs/lightburn/louisville_map/map_3.lbrn2", + "/home/connor/docs/lightburn/cardbox/cardbox.lbrn2", + "/home/connor/docs/lightburn/cardbox/display.lbrn2", + "/home/connor/docs/lightburn/louisville_map/map_2.lbrn2", + "/home/connor/docs/lightburn/cardbox/cardbox2.lbrn2" + ], + "ReduceMotion": false, + "SHXPath": "", + "SaveDragHandleStates": false, + "SaveJobLog": false, + "SaveJobOriginPrefsToProject": false, + "SaveSelectionPrefsToProject": false, + "SelectImportedShapes": true, + "ShiftMoveIncrement": 20, + "ShowAlarm2Helper": true, + "ShowCenterCross": false, + "ShowConnectionLostHelper": false, + "ShowCylinderCorrectionOnMain": false, + "ShowDockWindowHelp": true, + "ShowFullSpanCursor": false, + "ShowLaserPosition": true, + "ShowLicenseExpired": true, + "ShowLicenseExpiringSoon": true, + "ShowLinuxEOLWarning": false, + "ShowLockedShapesWarning": true, + "ShowPaletteLabels": true, + "ShowRotaryOnMain": false, + "ShowWin32Warning": true, + "SimpleMode": false, + "SupportHeight": 10, + "Svg96dpi": true, + "ToolButtonSize": 2, + "ToolCutList": [ + { + "frame": true, + "hide": false, + "index": 30, + "name": "T1", + "type": "Tool" + }, + { + "frame": true, + "hide": false, + "index": 31, + "name": "T2", + "type": "Tool" + } + ], + "TrialDayNag": 62, + "UseDefaultCameraCapture": false, + "UseExternalFileDialog": false, + "UseGestures": false, + "UseHighestCameraRes": true, + "UseSystemClipboard": true, + "WindowIsMaximized": true, + "WindowPosX": 0, + "WindowPosY": 0, + "WindowSizeX": 1722, + "WindowSizeY": 958, + "WindowState": "000000ff00000000fd00000002000000000000000000000000fc0200000001fb0000001400410072007400420072006f00770073006500720000000000ffffffff000000d800ffffff00000001000001e3000004b0fc0200000002fc0000008a0000020e0000014b0100001cfa000000000200000007fb0000000c0064007700430075007400730100000000ffffffff0000012e00fffffffb0000001e004d006f00760065004c00610073006500720057006900640067006500740100000000ffffffff0000010e00fffffffb0000001a0043006f006e0073006f006c00650057006900640067006500740100000000ffffffff000000ae00fffffffb00000020004c006100730065007200460069006c006500730057006900640067006500740000000000ffffffff000000e700fffffffb0000002600430061006d0065007200610043006f006e00740072006f006c0057006900640067006500740100000000ffffffff000000bb00fffffffb00000024005600610072006900610062006c006500540065007800740057006900640067006500740100000000ffffffff000000b500fffffffb0000002a0053006800610070006500500072006f00700065007200740069006500730057006900640067006500740100000000ffffffff000000a900fffffffc0000029e0000029c000001a40008001cfa000000000200000002fb0000000e00640077004c00610073006500720100000000ffffffff0000010e0007fffffb00000020004300750074004c0069006200720061007200790057006900640067006500740100000000ffffffff0000018700ffffff000007c6000004b000000004000000040000000800000008fc0000000400000000000000020000000e007400620054006f006f006c00730300000000ffffffff000000000000000000000016007400620042006f006f006c0054006f006f006c00730300000123ffffffff000000000000000000000002000000030000000c00740062004d00610069006e0100000000ffffffff00000000000000000000001a007400620041007200720061006e00670065006d0065006e00740100000234ffffffff00000000000000000000001a007400620041007200720061006e00670065004c006f006e00670000000000ffffffff000000000000000000000002000000040000001c00740062004e0075006d0065007200690063004500640069007400730100000000ffffffff00000000000000000000000c0074006200540065007800740100000289ffffffff00000000000000000000000e00740062004d006f00640065007301000005dbffffffff000000000000000000000012007400620044006f0063006b0069006e00670100000621ffffffff00000000000000000000000300000001000000180074006200430075007400500061006c00650074007400650100000000ffffffff0000000000000000", + "units": 0 +} diff --git a/common/OrcaSlicer/user/default/machine/Creality K2 Pro 0.4 nozzle - Copy.info b/common/OrcaSlicer/user/default/machine/Creality K2 Pro 0.4 nozzle - Copy.info new file mode 100644 index 0000000..27c138c --- /dev/null +++ b/common/OrcaSlicer/user/default/machine/Creality K2 Pro 0.4 nozzle - Copy.info @@ -0,0 +1,5 @@ +sync_info = update +user_id = +setting_id = +base_id = GM001 +updated_time = 1765390291 diff --git a/common/OrcaSlicer/user/default/machine/Creality K2 Pro 0.4 nozzle - Copy.json b/common/OrcaSlicer/user/default/machine/Creality K2 Pro 0.4 nozzle - Copy.json new file mode 100644 index 0000000..2674902 --- /dev/null +++ b/common/OrcaSlicer/user/default/machine/Creality K2 Pro 0.4 nozzle - Copy.json @@ -0,0 +1,14 @@ +{ + "from": "User", + "inherits": "Creality K2 Pro 0.4 nozzle", + "name": "Creality K2 Pro 0.4 nozzle - Copy", + "print_host": "10.0.0.34:4408", + "printer_extruder_id": [ + "1" + ], + "printer_extruder_variant": [ + "Direct Drive Standard" + ], + "printer_settings_id": "Creality K2 Pro 0.4 nozzle - Copy", + "version": "2.3.1.20" +} diff --git a/common/OrcaSlicer/user/hints.cereal b/common/OrcaSlicer/user/hints.cereal new file mode 100644 index 0000000000000000000000000000000000000000..32354e902f066d3296273d77500be8ea6e7d086f GIT binary patch literal 12 KcmZQ%KmY&$7ytqQ literal 0 HcmV?d00001 diff --git a/hosts/system76/config/beets/config.yaml b/common/beets/config.yaml similarity index 100% rename from hosts/system76/config/beets/config.yaml rename to common/beets/config.yaml diff --git a/hosts/system76/config/beets/state.pickle b/common/beets/state.pickle similarity index 100% rename from hosts/system76/config/beets/state.pickle rename to common/beets/state.pickle diff --git a/hosts/mainframe/config/bob/config.json b/common/bob/config.json similarity index 95% rename from hosts/mainframe/config/bob/config.json rename to common/bob/config.json index 45f1831..c6a0193 100644 --- a/hosts/mainframe/config/bob/config.json +++ b/common/bob/config.json @@ -1,3 +1,3 @@ { "add_neovim_binary_to_path": true -} \ No newline at end of file +} diff --git a/hosts/system76/config/bottom/bottom.toml b/common/bottom/bottom.toml similarity index 100% rename from hosts/system76/config/bottom/bottom.toml rename to common/bottom/bottom.toml diff --git a/common/cura/5.11/cura.cfg b/common/cura/5.11/cura.cfg new file mode 100644 index 0000000..b554e3d --- /dev/null +++ b/common/cura/5.11/cura.cfg @@ -0,0 +1,44 @@ +[general] +visible_settings = top_layers;support_angle;wall_line_count;infill_sparse_density;support_type;shell;retraction_hop_enabled;support_offset;prime_tower_enable;multi_material_paint_depth;material;adhesion_extruder_nr;machine_settings;platform_adhesion;speed;prime_tower_position_y;adhesion_type;experimental;travel;layer_height;xy_offset;wall_thickness;meshfix;support;cool_fan_enabled;infill;dual;infill_pattern;blackmagic;material_print_temperature;bottom_thickness;support_enable;retraction_enable;top_thickness;cooling;prime_blob_enable;support_extruder_nr;cool_fan_speed;material_bed_temperature;resolution;top_bottom;support_use_towers;top_bottom_thickness;support_structure;bottom_layers;interlocking_enable;speed_print;prime_tower_position_x +last_run_version = 5.11.0 +accepted_user_agreement = True +window_width = 799 +window_height = 382 +window_left = 1719 +window_top = 961 +version = 7 + +[view] +settings_ypos = 60.0 + +[cura] + +[info] + +[tool] + +[local_file] + +[layerview] + +[cura_drive] + +[gcodereader] + +[backend] + +[usb_printing] + +[metadata] +setting_version = 25 + +[mesh] + +[um3networkprinting] + +[cluster_api] + +[physics] + +[output_devices] + diff --git a/common/cura/5.11/plugins.json b/common/cura/5.11/plugins.json new file mode 100644 index 0000000..66c79bf --- /dev/null +++ b/common/cura/5.11/plugins.json @@ -0,0 +1 @@ +{"disabled": [], "to_install": {}, "to_remove": []} \ No newline at end of file diff --git a/hosts/sctfw004/config/fastfetch/config-compact.jsonc b/common/fastfetch/config-compact.jsonc similarity index 100% rename from hosts/sctfw004/config/fastfetch/config-compact.jsonc rename to common/fastfetch/config-compact.jsonc diff --git a/hosts/sctfw004/config/fastfetch/config-pokemon.jsonc b/common/fastfetch/config-pokemon.jsonc similarity index 100% rename from hosts/sctfw004/config/fastfetch/config-pokemon.jsonc rename to common/fastfetch/config-pokemon.jsonc diff --git a/hosts/sctfw004/config/fastfetch/config-v2.jsonc b/common/fastfetch/config-v2.jsonc similarity index 100% rename from hosts/sctfw004/config/fastfetch/config-v2.jsonc rename to common/fastfetch/config-v2.jsonc diff --git a/hosts/sctfw004/config/fastfetch/config.jsonc b/common/fastfetch/config.jsonc similarity index 100% rename from hosts/sctfw004/config/fastfetch/config.jsonc rename to common/fastfetch/config.jsonc diff --git a/hosts/sctfw004/config/fastfetch/ubuntu.png b/common/fastfetch/ubuntu.png similarity index 100% rename from hosts/sctfw004/config/fastfetch/ubuntu.png rename to common/fastfetch/ubuntu.png diff --git a/hosts/system76/config/glow/glow.yml b/common/glow/glow.yml similarity index 100% rename from hosts/system76/config/glow/glow.yml rename to common/glow/glow.yml diff --git a/common/inkscape/preferences.xml b/common/inkscape/preferences.xml new file mode 100644 index 0000000..52697e4 --- /dev/null +++ b/common/inkscape/preferences.xml @@ -0,0 +1,1185 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/hosts/sctfw004/config/mimeapps.list b/common/mimeapps.list similarity index 79% rename from hosts/sctfw004/config/mimeapps.list rename to common/mimeapps.list index 311a118..16f0013 100644 --- a/hosts/sctfw004/config/mimeapps.list +++ b/common/mimeapps.list @@ -1,6 +1,8 @@ -[Default Applications] -x-scheme-handler/sc-1a5d6cc5d5f07e3e=/home/connorjohnstone/.local/share/applications/connectwisecontrol-1a5d6cc5d5f07e3e.desktop -x-scheme-handler/claude-cli=claude-code-url-handler.desktop - [Added Associations] application/pdf=org.pwmt.zathura-pdf-poppler.desktop; +application/x-compressed-tar=xarchiver.desktop;org.gnome.Nautilus.desktop; + +[Default Applications] +x-scheme-handler/claude-cli=claude-code-url-handler.desktop +x-scheme-handler/sc-1a5d6cc5d5f07e3e=/home/connorjohnstone/.local/share/applications/connectwisecontrol-1a5d6cc5d5f07e3e.desktop + diff --git a/hosts/system76/config/mpd/mpd.conf b/common/mpd/mpd.conf similarity index 100% rename from hosts/system76/config/mpd/mpd.conf rename to common/mpd/mpd.conf diff --git a/hosts/system76/config/mpv/script-opts/subs2srs.conf b/common/mpv/script-opts/subs2srs.conf similarity index 100% rename from hosts/system76/config/mpv/script-opts/subs2srs.conf rename to common/mpv/script-opts/subs2srs.conf diff --git a/common/obs-studio/basic/profiles/Untitled/basic.ini b/common/obs-studio/basic/profiles/Untitled/basic.ini new file mode 100644 index 0000000..231b377 --- /dev/null +++ b/common/obs-studio/basic/profiles/Untitled/basic.ini @@ -0,0 +1,2 @@ +[General] +Name=Untitled diff --git a/common/obs-studio/basic/scenes/Untitled.json b/common/obs-studio/basic/scenes/Untitled.json new file mode 100644 index 0000000..27c7ea3 --- /dev/null +++ b/common/obs-studio/basic/scenes/Untitled.json @@ -0,0 +1,351 @@ +{ + "DesktopAudioDevice1": { + "prev_ver": 536870914, + "name": "Desktop Audio", + "uuid": "1e5165bb-aa6c-4ef4-8641-186f0d9157c0", + "id": "pulse_output_capture", + "versioned_id": "pulse_output_capture", + "settings": { + "device_id": "default" + }, + "mixers": 255, + "sync": 0, + "flags": 0, + "volume": 1.0, + "balance": 0.5, + "enabled": true, + "muted": false, + "push-to-mute": false, + "push-to-mute-delay": 0, + "push-to-talk": false, + "push-to-talk-delay": 0, + "hotkeys": { + "libobs.mute": [], + "libobs.unmute": [], + "libobs.push-to-mute": [], + "libobs.push-to-talk": [] + }, + "deinterlace_mode": 0, + "deinterlace_field_order": 0, + "monitoring_type": 0, + "private_settings": {} + }, + "AuxAudioDevice1": { + "prev_ver": 536870914, + "name": "Mic/Aux", + "uuid": "7bc14d95-f97e-44e8-9a10-da9b28d8eab9", + "id": "pulse_input_capture", + "versioned_id": "pulse_input_capture", + "settings": { + "device_id": "default" + }, + "mixers": 255, + "sync": 0, + "flags": 0, + "volume": 1.0, + "balance": 0.5, + "enabled": true, + "muted": false, + "push-to-mute": false, + "push-to-mute-delay": 0, + "push-to-talk": false, + "push-to-talk-delay": 0, + "hotkeys": { + "libobs.mute": [], + "libobs.unmute": [], + "libobs.push-to-mute": [], + "libobs.push-to-talk": [] + }, + "deinterlace_mode": 0, + "deinterlace_field_order": 0, + "monitoring_type": 0, + "private_settings": {} + }, + "current_scene": "Scene", + "current_program_scene": "Scene", + "scene_order": [ + { + "name": "Scene" + } + ], + "name": "Untitled", + "sources": [ + { + "prev_ver": 536870914, + "name": "Scene", + "uuid": "571cfff7-75f0-452e-bb93-fc946789807a", + "id": "scene", + "versioned_id": "scene", + "settings": { + "id_counter": 9, + "custom_size": false, + "items": [ + { + "name": "Video Capture Device (V4L2)", + "source_uuid": "19e6b7b9-d2c9-40b2-be3c-45dc514d9988", + "visible": true, + "locked": false, + "rot": 0.0, + "scale_ref": { + "x": 1920.0, + "y": 1080.0 + }, + "align": 5, + "bounds_type": 0, + "bounds_align": 0, + "bounds_crop": false, + "crop_left": 0, + "crop_top": 0, + "crop_right": 0, + "crop_bottom": 0, + "id": 9, + "group_item_backup": false, + "pos": { + "x": 0.0, + "y": 0.0 + }, + "pos_rel": { + "x": -1.7777777910232544, + "y": -1.0 + }, + "scale": { + "x": 1.0, + "y": 1.0 + }, + "scale_rel": { + "x": 1.0, + "y": 1.0 + }, + "bounds": { + "x": 0.0, + "y": 0.0 + }, + "bounds_rel": { + "x": 0.0, + "y": 0.0 + }, + "scale_filter": "disable", + "blend_method": "default", + "blend_type": "normal", + "show_transition": { + "duration": 0 + }, + "hide_transition": { + "duration": 0 + }, + "private_settings": {} + } + ] + }, + "mixers": 0, + "sync": 0, + "flags": 0, + "volume": 1.0, + "balance": 0.5, + "enabled": true, + "muted": false, + "push-to-mute": false, + "push-to-mute-delay": 0, + "push-to-talk": false, + "push-to-talk-delay": 0, + "hotkeys": { + "OBSBasic.SelectScene": [], + "libobs.show_scene_item.9": [], + "libobs.hide_scene_item.9": [] + }, + "deinterlace_mode": 0, + "deinterlace_field_order": 0, + "monitoring_type": 0, + "canvas_uuid": "6c69626f-6273-4c00-9d88-c5136d61696e", + "private_settings": {} + }, + { + "prev_ver": 536870914, + "name": "Video Capture Device (V4L2)", + "uuid": "19e6b7b9-d2c9-40b2-be3c-45dc514d9988", + "id": "v4l2_input", + "versioned_id": "v4l2_input", + "settings": { + "device_id": "/dev/video2", + "Power Line Frequency": 0, + "White Balance Temperature": 5333, + "Sharpness": 34, + "White Balance, Automatic": true, + "Saturation": 58, + "Contrast": 45, + "input": 0, + "pixelformat": 1196444237, + "resolution": 8246337209400, + "framerate": 30 + }, + "mixers": 0, + "sync": 0, + "flags": 0, + "volume": 1.0, + "balance": 0.5, + "enabled": true, + "muted": false, + "push-to-mute": false, + "push-to-mute-delay": 0, + "push-to-talk": false, + "push-to-talk-delay": 0, + "hotkeys": {}, + "deinterlace_mode": 0, + "deinterlace_field_order": 0, + "monitoring_type": 0, + "private_settings": {}, + "filters": [ + { + "prev_ver": 536870914, + "name": "Kodak DSCS 3151", + "uuid": "47e24031-4864-4371-a440-9c8abf5b1def", + "id": "clut_filter", + "versioned_id": "clut_filter", + "settings": { + "image_path": "/tmp/LUTpack/Film Presets/kodak_dscs_3151.png", + "clut_amount": 0.5292, + "passthrough_alpha": false + }, + "mixers": 0, + "sync": 0, + "flags": 0, + "volume": 1.0, + "balance": 0.5, + "enabled": true, + "muted": false, + "push-to-mute": false, + "push-to-mute-delay": 0, + "push-to-talk": false, + "push-to-talk-delay": 0, + "hotkeys": {}, + "deinterlace_mode": 0, + "deinterlace_field_order": 0, + "monitoring_type": 0, + "private_settings": {} + }, + { + "prev_ver": 536870914, + "name": "Vista", + "uuid": "572153dd-a931-4882-85e8-301f9acee18a", + "id": "clut_filter", + "versioned_id": "clut_filter", + "settings": { + "image_path": "/tmp/LUTpack/Film Presets/agfa_agfacolor_vista_800.png", + "clut_amount": 0.5209 + }, + "mixers": 0, + "sync": 0, + "flags": 0, + "volume": 1.0, + "balance": 0.5, + "enabled": false, + "muted": false, + "push-to-mute": false, + "push-to-mute-delay": 0, + "push-to-talk": false, + "push-to-talk-delay": 0, + "hotkeys": {}, + "deinterlace_mode": 0, + "deinterlace_field_order": 0, + "monitoring_type": 0, + "private_settings": {} + }, + { + "prev_ver": 536870914, + "name": "Webcam 3", + "uuid": "093704e2-1de9-426d-879f-c17227e87b16", + "id": "clut_filter", + "versioned_id": "clut_filter", + "settings": { + "image_path": "/tmp/LUTpack/Webcam Presets/webcam_preset_3.png", + "clut_amount": 0.4123, + "passthrough_alpha": false + }, + "mixers": 0, + "sync": 0, + "flags": 0, + "volume": 1.0, + "balance": 0.5, + "enabled": false, + "muted": false, + "push-to-mute": false, + "push-to-mute-delay": 0, + "push-to-talk": false, + "push-to-talk-delay": 0, + "hotkeys": {}, + "deinterlace_mode": 0, + "deinterlace_field_order": 0, + "monitoring_type": 0, + "private_settings": {} + } + ] + } + ], + "groups": [], + "quick_transitions": [ + { + "name": "Cut", + "duration": 300, + "hotkeys": [], + "id": 1, + "fade_to_black": false + }, + { + "name": "Fade", + "duration": 300, + "hotkeys": [], + "id": 2, + "fade_to_black": false + }, + { + "name": "Fade", + "duration": 300, + "hotkeys": [], + "id": 3, + "fade_to_black": true + } + ], + "transitions": [], + "saved_projectors": [], + "canvases": [], + "current_transition": "Fade", + "transition_duration": 300, + "preview_locked": false, + "scaling_enabled": false, + "scaling_level": -2, + "scaling_off_x": 0.0, + "scaling_off_y": 0.0, + "virtual-camera": { + "type2": 3 + }, + "modules": { + "scripts-tool": [], + "output-timer": { + "streamTimerHours": 0, + "streamTimerMinutes": 0, + "streamTimerSeconds": 30, + "recordTimerHours": 0, + "recordTimerMinutes": 0, + "recordTimerSeconds": 30, + "autoStartStreamTimer": false, + "autoStartRecordTimer": false, + "pauseRecordTimer": true + }, + "auto-scene-switcher": { + "interval": 300, + "non_matching_scene": "", + "switch_if_not_matching": false, + "active": false, + "switches": [] + } + }, + "resolution": { + "x": 1920, + "y": 1080 + }, + "version": 2, + "migration_resolution": { + "x": 1920, + "y": 1080 + } +} \ No newline at end of file diff --git a/common/obs-studio/basic/scenes/Untitled.json.bak b/common/obs-studio/basic/scenes/Untitled.json.bak new file mode 100644 index 0000000..27c7ea3 --- /dev/null +++ b/common/obs-studio/basic/scenes/Untitled.json.bak @@ -0,0 +1,351 @@ +{ + "DesktopAudioDevice1": { + "prev_ver": 536870914, + "name": "Desktop Audio", + "uuid": "1e5165bb-aa6c-4ef4-8641-186f0d9157c0", + "id": "pulse_output_capture", + "versioned_id": "pulse_output_capture", + "settings": { + "device_id": "default" + }, + "mixers": 255, + "sync": 0, + "flags": 0, + "volume": 1.0, + "balance": 0.5, + "enabled": true, + "muted": false, + "push-to-mute": false, + "push-to-mute-delay": 0, + "push-to-talk": false, + "push-to-talk-delay": 0, + "hotkeys": { + "libobs.mute": [], + "libobs.unmute": [], + "libobs.push-to-mute": [], + "libobs.push-to-talk": [] + }, + "deinterlace_mode": 0, + "deinterlace_field_order": 0, + "monitoring_type": 0, + "private_settings": {} + }, + "AuxAudioDevice1": { + "prev_ver": 536870914, + "name": "Mic/Aux", + "uuid": "7bc14d95-f97e-44e8-9a10-da9b28d8eab9", + "id": "pulse_input_capture", + "versioned_id": "pulse_input_capture", + "settings": { + "device_id": "default" + }, + "mixers": 255, + "sync": 0, + "flags": 0, + "volume": 1.0, + "balance": 0.5, + "enabled": true, + "muted": false, + "push-to-mute": false, + "push-to-mute-delay": 0, + "push-to-talk": false, + "push-to-talk-delay": 0, + "hotkeys": { + "libobs.mute": [], + "libobs.unmute": [], + "libobs.push-to-mute": [], + "libobs.push-to-talk": [] + }, + "deinterlace_mode": 0, + "deinterlace_field_order": 0, + "monitoring_type": 0, + "private_settings": {} + }, + "current_scene": "Scene", + "current_program_scene": "Scene", + "scene_order": [ + { + "name": "Scene" + } + ], + "name": "Untitled", + "sources": [ + { + "prev_ver": 536870914, + "name": "Scene", + "uuid": "571cfff7-75f0-452e-bb93-fc946789807a", + "id": "scene", + "versioned_id": "scene", + "settings": { + "id_counter": 9, + "custom_size": false, + "items": [ + { + "name": "Video Capture Device (V4L2)", + "source_uuid": "19e6b7b9-d2c9-40b2-be3c-45dc514d9988", + "visible": true, + "locked": false, + "rot": 0.0, + "scale_ref": { + "x": 1920.0, + "y": 1080.0 + }, + "align": 5, + "bounds_type": 0, + "bounds_align": 0, + "bounds_crop": false, + "crop_left": 0, + "crop_top": 0, + "crop_right": 0, + "crop_bottom": 0, + "id": 9, + "group_item_backup": false, + "pos": { + "x": 0.0, + "y": 0.0 + }, + "pos_rel": { + "x": -1.7777777910232544, + "y": -1.0 + }, + "scale": { + "x": 1.0, + "y": 1.0 + }, + "scale_rel": { + "x": 1.0, + "y": 1.0 + }, + "bounds": { + "x": 0.0, + "y": 0.0 + }, + "bounds_rel": { + "x": 0.0, + "y": 0.0 + }, + "scale_filter": "disable", + "blend_method": "default", + "blend_type": "normal", + "show_transition": { + "duration": 0 + }, + "hide_transition": { + "duration": 0 + }, + "private_settings": {} + } + ] + }, + "mixers": 0, + "sync": 0, + "flags": 0, + "volume": 1.0, + "balance": 0.5, + "enabled": true, + "muted": false, + "push-to-mute": false, + "push-to-mute-delay": 0, + "push-to-talk": false, + "push-to-talk-delay": 0, + "hotkeys": { + "OBSBasic.SelectScene": [], + "libobs.show_scene_item.9": [], + "libobs.hide_scene_item.9": [] + }, + "deinterlace_mode": 0, + "deinterlace_field_order": 0, + "monitoring_type": 0, + "canvas_uuid": "6c69626f-6273-4c00-9d88-c5136d61696e", + "private_settings": {} + }, + { + "prev_ver": 536870914, + "name": "Video Capture Device (V4L2)", + "uuid": "19e6b7b9-d2c9-40b2-be3c-45dc514d9988", + "id": "v4l2_input", + "versioned_id": "v4l2_input", + "settings": { + "device_id": "/dev/video2", + "Power Line Frequency": 0, + "White Balance Temperature": 5333, + "Sharpness": 34, + "White Balance, Automatic": true, + "Saturation": 58, + "Contrast": 45, + "input": 0, + "pixelformat": 1196444237, + "resolution": 8246337209400, + "framerate": 30 + }, + "mixers": 0, + "sync": 0, + "flags": 0, + "volume": 1.0, + "balance": 0.5, + "enabled": true, + "muted": false, + "push-to-mute": false, + "push-to-mute-delay": 0, + "push-to-talk": false, + "push-to-talk-delay": 0, + "hotkeys": {}, + "deinterlace_mode": 0, + "deinterlace_field_order": 0, + "monitoring_type": 0, + "private_settings": {}, + "filters": [ + { + "prev_ver": 536870914, + "name": "Kodak DSCS 3151", + "uuid": "47e24031-4864-4371-a440-9c8abf5b1def", + "id": "clut_filter", + "versioned_id": "clut_filter", + "settings": { + "image_path": "/tmp/LUTpack/Film Presets/kodak_dscs_3151.png", + "clut_amount": 0.5292, + "passthrough_alpha": false + }, + "mixers": 0, + "sync": 0, + "flags": 0, + "volume": 1.0, + "balance": 0.5, + "enabled": true, + "muted": false, + "push-to-mute": false, + "push-to-mute-delay": 0, + "push-to-talk": false, + "push-to-talk-delay": 0, + "hotkeys": {}, + "deinterlace_mode": 0, + "deinterlace_field_order": 0, + "monitoring_type": 0, + "private_settings": {} + }, + { + "prev_ver": 536870914, + "name": "Vista", + "uuid": "572153dd-a931-4882-85e8-301f9acee18a", + "id": "clut_filter", + "versioned_id": "clut_filter", + "settings": { + "image_path": "/tmp/LUTpack/Film Presets/agfa_agfacolor_vista_800.png", + "clut_amount": 0.5209 + }, + "mixers": 0, + "sync": 0, + "flags": 0, + "volume": 1.0, + "balance": 0.5, + "enabled": false, + "muted": false, + "push-to-mute": false, + "push-to-mute-delay": 0, + "push-to-talk": false, + "push-to-talk-delay": 0, + "hotkeys": {}, + "deinterlace_mode": 0, + "deinterlace_field_order": 0, + "monitoring_type": 0, + "private_settings": {} + }, + { + "prev_ver": 536870914, + "name": "Webcam 3", + "uuid": "093704e2-1de9-426d-879f-c17227e87b16", + "id": "clut_filter", + "versioned_id": "clut_filter", + "settings": { + "image_path": "/tmp/LUTpack/Webcam Presets/webcam_preset_3.png", + "clut_amount": 0.4123, + "passthrough_alpha": false + }, + "mixers": 0, + "sync": 0, + "flags": 0, + "volume": 1.0, + "balance": 0.5, + "enabled": false, + "muted": false, + "push-to-mute": false, + "push-to-mute-delay": 0, + "push-to-talk": false, + "push-to-talk-delay": 0, + "hotkeys": {}, + "deinterlace_mode": 0, + "deinterlace_field_order": 0, + "monitoring_type": 0, + "private_settings": {} + } + ] + } + ], + "groups": [], + "quick_transitions": [ + { + "name": "Cut", + "duration": 300, + "hotkeys": [], + "id": 1, + "fade_to_black": false + }, + { + "name": "Fade", + "duration": 300, + "hotkeys": [], + "id": 2, + "fade_to_black": false + }, + { + "name": "Fade", + "duration": 300, + "hotkeys": [], + "id": 3, + "fade_to_black": true + } + ], + "transitions": [], + "saved_projectors": [], + "canvases": [], + "current_transition": "Fade", + "transition_duration": 300, + "preview_locked": false, + "scaling_enabled": false, + "scaling_level": -2, + "scaling_off_x": 0.0, + "scaling_off_y": 0.0, + "virtual-camera": { + "type2": 3 + }, + "modules": { + "scripts-tool": [], + "output-timer": { + "streamTimerHours": 0, + "streamTimerMinutes": 0, + "streamTimerSeconds": 30, + "recordTimerHours": 0, + "recordTimerMinutes": 0, + "recordTimerSeconds": 30, + "autoStartStreamTimer": false, + "autoStartRecordTimer": false, + "pauseRecordTimer": true + }, + "auto-scene-switcher": { + "interval": 300, + "non_matching_scene": "", + "switch_if_not_matching": false, + "active": false, + "switches": [] + } + }, + "resolution": { + "x": 1920, + "y": 1080 + }, + "version": 2, + "migration_resolution": { + "x": 1920, + "y": 1080 + } +} \ No newline at end of file diff --git a/common/obs-studio/global.ini b/common/obs-studio/global.ini new file mode 100644 index 0000000..b824f99 --- /dev/null +++ b/common/obs-studio/global.ini @@ -0,0 +1,72 @@ +[General] +Pre19Defaults=false +Pre21Defaults=false +Pre23Defaults=false +Pre24.1Defaults=false +MaxLogs=10 +InfoIncrement=-1 +ProcessPriority=Normal +EnableAutoUpdates=true +ConfirmOnExit=true +HotkeyFocusType=NeverDisableHotkeys +FirstRun=true +LastVersion=536870914 +Pre31Migrated=true +BrowserHWAccel=true + +[Video] +Renderer=OpenGL + +[BasicWindow] +PreviewEnabled=true +PreviewProgramMode=false +SceneDuplicationMode=true +SwapScenesMode=true +SnappingEnabled=true +ScreenSnapping=true +SourceSnapping=true +CenterSnapping=false +SnapDistance=10 +SpacingHelpersEnabled=true +RecordWhenStreaming=false +KeepRecordingWhenStreamStops=false +SysTrayEnabled=true +SysTrayWhenStarted=false +SaveProjectors=false +ShowTransitions=true +ShowListboxToolbars=true +ShowStatusBar=true +ShowSourceIcons=true +ShowContextToolbars=true +StudioModeLabels=true +VerticalVolControl=false +MultiviewMouseSwitch=true +MultiviewDrawNames=true +MultiviewDrawAreas=true +MediaControlsCountdownTimer=true +geometry=AdnQywADAAAAAAoAAAAAAAAAE/kAAAV2AAAKAAAAAAAAABP5AAAFdgAAAAEAAAAACgAAAAoAAAAAAAAAE/kAAAV2 +DockState=AAAA/wAAAAD9AAAAAQAAAAMAAAn6AAAA2PwBAAAABvsAAAAUAHMAYwBlAG4AZQBzAEQAbwBjAGsBAAAAAAAAAfwAAACYAP////sAAAAWAHMAbwB1AHIAYwBlAHMARABvAGMAawEAAAIAAAAB+wAAAJgA////+wAAABIAbQBpAHgAZQByAEQAbwBjAGsBAAAD/wAAApIAAADeAP////sAAAAeAHQAcgBhAG4AcwBpAHQAaQBvAG4AcwBEAG8AYwBrAQAABpUAAAGGAAAApQD////7AAAAGABjAG8AbgB0AHIAbwBsAHMARABvAGMAawEAAAgfAAAB2wAAAKIA////+wAAABIAcwB0AGEAdABzAEQAbwBjAGsCAAADogAAAmwAAAK8AAAAyAAACfoAAARiAAAABAAAAAQAAAAIAAAACPwAAAAA +AlwaysOnTop=false +EditPropertiesMode=false +DocksLocked=false +SideDocks=false + +[Basic] +Profile=Untitled +ProfileDir=Untitled +SceneCollection=Untitled +SceneCollectionFile=Untitled +ConfigOnNewProfile=true + +[PropertiesWindow] +cx=1173 +cy=1368 + +[ScriptLogWindow] +geometry=AdnQywADAAAAAAoBAAAAGQAADFgAAAGoAAAKAQAAABkAAAxYAAABqAAAAAEAAAAACgAAAAoBAAAAGQAADFgAAAGo + +[Locations] +Configuration=/home/connor/.config +SceneCollections=/home/connor/.config +Profiles=/home/connor/.config +PluginManagerSettings=/home/connor/.config diff --git a/common/obs-studio/user.ini b/common/obs-studio/user.ini new file mode 100644 index 0000000..49490d7 --- /dev/null +++ b/common/obs-studio/user.ini @@ -0,0 +1,79 @@ +[General] +Pre19Defaults=false +Pre21Defaults=false +Pre23Defaults=false +Pre24.1Defaults=false +MaxLogs=10 +InfoIncrement=-1 +ProcessPriority=Normal +EnableAutoUpdates=true +ConfirmOnExit=true +HotkeyFocusType=NeverDisableHotkeys +FirstRun=true +LastVersion=503447552 + +[Video] +Renderer=OpenGL + +[BasicWindow] +PreviewEnabled=true +PreviewProgramMode=false +SceneDuplicationMode=true +SwapScenesMode=true +SnappingEnabled=true +ScreenSnapping=true +SourceSnapping=true +CenterSnapping=false +SnapDistance=10 +SpacingHelpersEnabled=true +RecordWhenStreaming=false +KeepRecordingWhenStreamStops=false +SysTrayEnabled=true +SysTrayWhenStarted=false +SaveProjectors=false +ShowTransitions=true +ShowListboxToolbars=true +ShowStatusBar=true +ShowSourceIcons=true +ShowContextToolbars=true +StudioModeLabels=true +VerticalVolControl=false +MultiviewMouseSwitch=true +MultiviewDrawNames=true +MultiviewDrawAreas=true +MediaControlsCountdownTimer=true +geometry=AdnQywADAAAAAAAAAAAAAAAACasAAAUUAAAAAAAAAAAAAAmrAAAFFAAAAAACAAAACgAAAAAAAAAAAAAACasAAAUU +DockState=AAAA/wAAAAD9AAAAAQAAAAMAAAmsAAAA2PwBAAAABvsAAAAUAHMAYwBlAG4AZQBzAEQAbwBjAGsBAAAAAAAAAd4AAACYAP////sAAAAWAHMAbwB1AHIAYwBlAHMARABvAGMAawEAAAHiAAAB3QAAAJgA////+wAAABIAbQBpAHgAZQByAEQAbwBjAGsBAAADwwAAAfcAAADeAP////sAAAAeAHQAcgBhAG4AcwBpAHQAaQBvAG4AcwBEAG8AYwBrAQAABb4AAAH2AAAArQD////7AAAAGABjAG8AbgB0AHIAbwBsAHMARABvAGMAawEAAAe4AAAB9AAAAM4A////+wAAABIAcwB0AGEAdABzAEQAbwBjAGsCAAADogAAAmwAAAK8AAAAyAAACawAAAP9AAAABAAAAAQAAAAIAAAACPwAAAAA +AlwaysOnTop=false +EditPropertiesMode=false +DocksLocked=false +SideDocks=false + +[Basic] +Profile=Untitled +ProfileDir=Untitled +SceneCollection=Untitled +SceneCollectionFile=Untitled.json +ConfigOnNewProfile=true + +[PropertiesWindow] +cx=1173 +cy=1368 + +[ScriptLogWindow] +geometry=AdnQywADAAAAAAoBAAAAGQAADFgAAAGoAAAKAQAAABkAAAxYAAABqAAAAAEAAAAACgAAAAoBAAAAGQAADFgAAAGo + +[Appearance] +FontScale=10 +Density=1 + +[Accessibility] +SelectRed=255 +SelectGreen=65280 +SelectBlue=16744192 +MixerGreen=2522918 +MixerYellow=2523007 +MixerRed=2500223 +MixerGreenActive=5046092 +MixerYellowActive=5046271 +MixerRedActive=5000447 diff --git a/hosts/sctfw004/config/swayimg/config b/common/swayimg/config similarity index 100% rename from hosts/sctfw004/config/swayimg/config rename to common/swayimg/config diff --git a/hosts/sctfw004/config/swayimg/init.lua b/common/swayimg/init.lua similarity index 100% rename from hosts/sctfw004/config/swayimg/init.lua rename to common/swayimg/init.lua diff --git a/hosts/system76/config/swaync/config.json b/common/swaync/config.json similarity index 100% rename from hosts/system76/config/swaync/config.json rename to common/swaync/config.json diff --git a/hosts/system76/config/swaync/style.css b/common/swaync/style.css similarity index 100% rename from hosts/system76/config/swaync/style.css rename to common/swaync/style.css diff --git a/hosts/sctfw004/config/user-dirs.dirs b/common/user-dirs.dirs similarity index 93% rename from hosts/sctfw004/config/user-dirs.dirs rename to common/user-dirs.dirs index c238ea2..1815fc5 100644 --- a/hosts/sctfw004/config/user-dirs.dirs +++ b/common/user-dirs.dirs @@ -6,7 +6,7 @@ # absolute path. No other format is supported. # XDG_DESKTOP_DIR="$HOME/" -XDG_DOWNLOAD_DIR="$HOME/Downloads" +XDG_DOWNLOAD_DIR="$HOME/downloads" XDG_TEMPLATES_DIR="$HOME/" XDG_PUBLICSHARE_DIR="$HOME/" XDG_DOCUMENTS_DIR="$HOME/" diff --git a/hosts/sctfw004/config/uv/uv-receipt.json b/common/uv/uv-receipt.json similarity index 100% rename from hosts/sctfw004/config/uv/uv-receipt.json rename to common/uv/uv-receipt.json diff --git a/hosts/mainframe/config/mimeapps.list b/hosts/mainframe/config/mimeapps.list deleted file mode 100644 index 169dcfb..0000000 --- a/hosts/mainframe/config/mimeapps.list +++ /dev/null @@ -1,3 +0,0 @@ - -[Default Applications] -x-scheme-handler/claude-cli=claude-code-url-handler.desktop diff --git a/hosts/mainframe/config/user-dirs.dirs b/hosts/mainframe/config/user-dirs.dirs deleted file mode 100644 index 7375b4a..0000000 --- a/hosts/mainframe/config/user-dirs.dirs +++ /dev/null @@ -1,15 +0,0 @@ -# This file is written by xdg-user-dirs-update -# If you want to change or add directories, just edit the line you're -# interested in. All local changes will be retained on the next run. -# Format is XDG_xxx_DIR="$HOME/yyy", where yyy is a shell-escaped -# homedir-relative path, or XDG_xxx_DIR="/yyy", where /yyy is an -# absolute path. No other format is supported. -# -XDG_DESKTOP_DIR="$HOME/" -XDG_DOWNLOAD_DIR="$HOME/" -XDG_TEMPLATES_DIR="$HOME/" -XDG_PUBLICSHARE_DIR="$HOME/" -XDG_DOCUMENTS_DIR="$HOME/" -XDG_MUSIC_DIR="$HOME/" -XDG_PICTURES_DIR="$HOME/" -XDG_VIDEOS_DIR="$HOME/" diff --git a/hosts/nas/config/bob/config.json b/hosts/nas/config/bob/config.json deleted file mode 100644 index 9e26dfe..0000000 --- a/hosts/nas/config/bob/config.json +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/hosts/sctfw004/config/bob/config.json b/hosts/sctfw004/config/bob/config.json deleted file mode 100644 index 9e26dfe..0000000 --- a/hosts/sctfw004/config/bob/config.json +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/hosts/sctfw004/config/gh/config.yml b/hosts/sctfw004/config/gh/config.yml deleted file mode 100644 index 5d14b83..0000000 --- a/hosts/sctfw004/config/gh/config.yml +++ /dev/null @@ -1,17 +0,0 @@ -# The current version of the config schema -version: 1 -# What protocol to use when performing git operations. Supported values: ssh, https -git_protocol: https -# What editor gh should run when creating issues, pull requests, etc. If blank, will refer to environment. -editor: -# When to interactively prompt. This is a global config that cannot be overridden by hostname. Supported values: enabled, disabled -prompt: enabled -# A pager program to send command output to, e.g. "less". If blank, will refer to environment. Set the value to "cat" to disable the pager. -pager: -# Aliases allow you to create nicknames for gh commands -aliases: - co: pr checkout -# The path to a unix socket through which send HTTP connections. If blank, HTTP traffic will be handled by net/http.DefaultTransport. -http_unix_socket: -# What web browser gh should use when opening URLs. If blank, will refer to environment. -browser: diff --git a/hosts/sctfw004/config/gh/hosts.yml b/hosts/sctfw004/config/gh/hosts.yml deleted file mode 100644 index c32664e..0000000 --- a/hosts/sctfw004/config/gh/hosts.yml +++ /dev/null @@ -1,5 +0,0 @@ -github.com: - git_protocol: ssh - users: - connor-johnstone: - user: connor-johnstone diff --git a/hosts/sctfw004/config/gtk-2.0/gtkfilechooser.ini b/hosts/sctfw004/config/gtk-2.0/gtkfilechooser.ini deleted file mode 100644 index 2c980e0..0000000 --- a/hosts/sctfw004/config/gtk-2.0/gtkfilechooser.ini +++ /dev/null @@ -1,11 +0,0 @@ -[Filechooser Settings] -LocationMode=path-bar -ShowHidden=false -ShowSizeColumn=true -GeometryX=31 -GeometryY=0 -GeometryWidth=948 -GeometryHeight=647 -SortColumn=name -SortOrder=ascending -StartupMode=recent diff --git a/hosts/sctfw004/config/pavucontrol.ini b/hosts/sctfw004/config/pavucontrol.ini deleted file mode 100644 index 0d78034..0000000 --- a/hosts/sctfw004/config/pavucontrol.ini +++ /dev/null @@ -1,8 +0,0 @@ -[window] -width=1896 -height=1121 -sinkInputType=1 -sourceOutputType=1 -sinkType=0 -sourceType=1 -showVolumeMeters=1 diff --git a/hosts/sctfw004/config/zoom.conf b/hosts/sctfw004/config/zoom.conf deleted file mode 100644 index ae27d19..0000000 --- a/hosts/sctfw004/config/zoom.conf +++ /dev/null @@ -1,3 +0,0 @@ -[General] -initialize_flag=1 -random_key="vdMTT5fo/jNYQ34IidotpXAfH9STJX7BbHw0Cixytbw=" diff --git a/hosts/sctfw004/config/zoomus.conf b/hosts/sctfw004/config/zoomus.conf deleted file mode 100644 index 7059f74..0000000 --- a/hosts/sctfw004/config/zoomus.conf +++ /dev/null @@ -1,66 +0,0 @@ -[General] -GeoLocale=system -SensitiveInfoMaskOn=true -ShowBiDirecSyncNoti=true -autoPlayGif=false -bForceMaximizeWM=false -captureHDCamera=true -cefInstanceCountLimit=-1 -cefRefreshTime=0 -chatListPanelLastWidth=320 -com.zoom.client.langid=0 -conf.webserver=https://zoom.us -currentMeetingId=82199284629 -deviceID=44:F7:9F:DA:68:95 -disableCef=false -disableUsePasskey=false -enable.host.auto.grab=true -enableAlphaBuffer=true -enableCefGpu=false -enableCefLog=false -enableCefOsrMode=true -enableCefTa=false -enableCloudSwitch=true -enableLog=true -enableMiniWindow=true -enableQmlCache=true -enableScreenSaveGuard=false -enableStartMeetingWithRoomSystem=false -enableTestMode=false -enableUnifywebviewTa=false -enablegpucomputeutilization=false -fake.version= -flashChatTime=0 -forceEnableTrayIcon=true -forceSSOURL= -hideCrashReport=false -host.auto.grab.interval=10 -isTransCoding=false -legacyAvatarCacheCleaned=1781022922 -logLevel=info -newMeetingWithVideo=true -noSandbox=false -playSoundForNewMessage=false -shareBarTopMargin=0 -shortcut_as_global_ShortcutID_Screenshot=false -shortcut_as_global_ShortcutID_ShowHideFloatingMeetingControls=true -showOneTimePTAICTipHubble=false -showOneTimeQueriesOptionTip=true -showOneTimeSmartRecognitionCoackMark=true -showOneTimeTranslationUpSellTip=false -showSystemTitlebar=false -speaker_volume=255 -sso_domain=.zoom.us -sso_gov_domain=.zoomgov.com -system.audio.type=default -systemDockMargin=0 -timeFormat12HoursEnable=true -translationFreeTrialTipShowTime=0 -upcoming_meeting_header_image= -useSystemTheme=false -userEmailAddress= -webview.debug.enable=false -xwayland=true - -[AS] -showframewindow=true diff --git a/hosts/system76/config/bob/config.json b/hosts/system76/config/bob/config.json deleted file mode 100644 index 45f1831..0000000 --- a/hosts/system76/config/bob/config.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "add_neovim_binary_to_path": true -} \ No newline at end of file diff --git a/hosts/system76/config/gtk-2.0/gtkfilechooser.ini b/hosts/system76/config/gtk-2.0/gtkfilechooser.ini deleted file mode 100644 index 8f4b507..0000000 --- a/hosts/system76/config/gtk-2.0/gtkfilechooser.ini +++ /dev/null @@ -1,11 +0,0 @@ -[Filechooser Settings] -LocationMode=path-bar -ShowHidden=false -ShowSizeColumn=true -GeometryX=3336 -GeometryY=579 -GeometryWidth=1008 -GeometryHeight=692 -SortColumn=name -SortOrder=ascending -StartupMode=recent diff --git a/hosts/system76/config/mimeapps.list b/hosts/system76/config/mimeapps.list deleted file mode 100644 index d6a46fe..0000000 --- a/hosts/system76/config/mimeapps.list +++ /dev/null @@ -1,5 +0,0 @@ -[Added Associations] -application/x-compressed-tar=xarchiver.desktop;org.gnome.Nautilus.desktop; - -[Default Applications] -x-scheme-handler/claude-cli=claude-code-url-handler.desktop diff --git a/hosts/system76/config/pavucontrol.ini b/hosts/system76/config/pavucontrol.ini deleted file mode 100644 index d67bbba..0000000 --- a/hosts/system76/config/pavucontrol.ini +++ /dev/null @@ -1,8 +0,0 @@ -[window] -width=500 -height=400 -sinkInputType=1 -sourceOutputType=1 -sinkType=0 -sourceType=1 -showVolumeMeters=1 diff --git a/hosts/system76/config/swayimg/config b/hosts/system76/config/swayimg/config deleted file mode 100644 index 85451d7..0000000 --- a/hosts/system76/config/swayimg/config +++ /dev/null @@ -1,278 +0,0 @@ -# Swayimg configuration file. -# vim: filetype=dosini - -# This file contains the default configuration. -# The viewer searches for the config file in the following locations: -# 1. $XDG_CONFIG_HOME/swayimg/config -# 2. $HOME/.config/swayimg/config -# 3. $XDG_CONFIG_DIRS/swayimg/config -# 4. /etc/xdg/swayimg/config - -# Any of these options can be overridden using the --config argument -# on the command line, for instance: -# $ swayimg --config="general.mode=gallery" - -################################################################################ -# General configuration -################################################################################ -[general] -# Mode at startup (viewer/slideshow/gallery) -mode = viewer -# Window size (fullscreen/image, or absolute size) -size = image -# Sway/Hyprland only: Window position (auto or absolute coordinates, e.g. 10,20) -position = auto -# Sway/Hyprland only: create floating window above the currently focused one -overlay = no -# Use window decoration (yes/no) -decoration = no -# Action performed by SIGUSR1 signal (same format as for key bindings) -sigusr1 = reload -# Action performed by SIGUSR2 signal (same format as for key bindings) -sigusr2 = next_file -# Application ID and window class name -app_id = swayimg - -################################################################################ -# Viewer mode configuration -################################################################################ -[viewer] -# Window background color (auto/extend/mirror/RGBA) -window = #00000000 -# Background for transparent images (grid/RGBA) -transparency = grid -# Default image scale (optimal/width/height/fit/fill/real/keep) -scale = optimal -# Initial image position on the window (center/top/bottom/free/...) -position = center -# Anti-aliasing mode (none/box/bilinear/bicubic/mks13) -antialiasing = mks13 -# Loop image list: jump to first image when end of list is reached (yes/no) -loop = yes -# Number of previously viewed images to store in cache -history = 1 -# Number of preloaded images (read ahead) -preload = 1 - -################################################################################ -# Slideshow mode configuration -################################################################################ -[slideshow] -# Slideshow image display time (seconds) -time = 3 -# Window background color (auto/extend/mirror/RGBA) -window = auto -# Background for transparent images (grid/RGBA) -transparency = #000000ff -# Default image scale (optimal/width/height/fit/fill/real) -scale = fit -# Initial image position on the window (center/top/bottom/free/...) -position = center -# Anti-aliasing mode (none/box/bilinear/bicubic/mks13) -antialiasing = mks13 - -################################################################################ -# Gallery mode configuration -################################################################################ -[gallery] -# Height and width of each thumbnail (pixels) -size = 200 -# Max number of invisible thumbnails stored in memory cache -cache = 100 -# Load not only visible but also adjacent thumbnails -preload = no -# Enable/disable storing thumbnails in persistent storage (yes/no) -pstore = no -# Fill the entire tile with thumbnail (yes/no) -fill = yes -# Anti-aliasing mode for thumbnails (none/box/bilinear/bicubic/mks13) -antialiasing = mks13 -# Background color of the window (RGBA) -window = #00000000 -# Background color of non-selected tiles (RGBA) -background = #202020ff -# Background color of the selected tile (RGBA) -select = #404040ff -# Border color of the selected tile (RGBA) -border = #000000ff -# Shadow color of the selected tile (RGBA) -shadow = #000000ff - -################################################################################ -# Image list configuration -################################################################################ -[list] -# Default order (none/alpha/numeric/mtime/size/random) -order = alpha -# Reverse order (yes/no) -reverse = no -# Read directories recursively (yes/no) -recursive = no -# Add files from the same directory as the first file (yes/no) -all = no -# Enable file system monitoring for adding new images to the list (yes/no) -fsmon = yes - -################################################################################ -# Font configuration -################################################################################ -[font] -# Font name -name = monospace -# Font size (pt) -size = 14 -# Font color (RGBA) -color = #ccccccff -# Shadow color (RGBA) -shadow = #000000d0 -# Background color (RGBA) -background = #00000000 - -################################################################################ -# Image meta info scheme (format, size, EXIF, etc.) -################################################################################ -[info] -# Show on startup (yes/no) -show = no -# Text padding from window edges -padding = 10 -# Timeout to hide info (seconds, 0 to always show) -info_timeout = 5 -# Timeout to hide status message (seconds) -status_timeout = 3 - -# Display scheme for viewer mode (position = content) -[info.viewer] -top_left = +name,+format,+filesize,+imagesize,+exif -top_right = index -bottom_left = scale,frame -bottom_right = status - -# Display scheme for slideshow mode (position = content) -[info.slideshow] -top_left = none -top_right = none -bottom_left = none -bottom_right = dir,status - -# Display scheme for gallery mode (position = content) -[info.gallery] -top_left = none -top_right = index -bottom_left = none -bottom_right = name,status - -################################################################################ -# Viewer mode key binding configuration: key = action [parameters] -################################################################################ -[keys.viewer] -F1 = help -Home = first_file -End = last_file -Prior = prev_file -Next = next_file -Space = next_file -Shift+r = rand_file -Shift+d = prev_dir -d = next_dir -Shift+o = prev_frame -o = next_frame -c = skip_file -s = mode slideshow -n = animation -f = fullscreen -Return = mode gallery -Left = step_left 10 -Right = step_right 10 -Up = step_up 10 -Down = step_down 10 -Equal = zoom +10 -Plus = zoom +10 -Minus = zoom -10 -w = zoom width -Shift+w = zoom height -z = zoom fit -Shift+z = zoom fill -0 = zoom real -BackSpace = zoom optimal -k = zoom keep -Alt+s = zoom -Alt+p = position -bracketleft = rotate_left -bracketright = rotate_right -m = flip_vertical -Shift+m = flip_horizontal -a = antialiasing -r = reload -i = info -Shift+Delete = exec rm -f '%' && echo "File removed: %"; skip_file -Escape = exit -q = exit -# Mouse related -ScrollLeft = step_right 5 -ScrollRight = step_left 5 -ScrollUp = step_up 5 -ScrollDown = step_down 5 -Ctrl+ScrollUp = zoom +10 mouse -Ctrl+ScrollDown = zoom -10 mouse -Shift+ScrollUp = prev_file -Shift+ScrollDown = next_file -Alt+ScrollUp = prev_frame -Alt+ScrollDown = next_frame -MouseLeft = drag -MouseSide = prev_file -MouseExtra = next_file - -################################################################################ -# Slideshow mode key binding configuration: key = action [parameters] -################################################################################ -[keys.slideshow] -F1 = help -Home = first_file -End = last_file -Prior = prev_file -Next = next_file -Shift+r = rand_file -Shift+d = prev_dir -d = next_dir -Space = pause -i = info -f = fullscreen -Return = mode -Escape = exit -q = exit - -################################################################################ -# Gallery mode key binding configuration: key = action [parameters] -################################################################################ -[keys.gallery] -F1 = help -Home = first_file -End = last_file -Left = step_left -Right = step_right -Up = step_up -Down = step_down -Prior = page_up -Next = page_down -c = skip_file -s = mode slideshow -f = fullscreen -Return = mode viewer -a = antialiasing -r = reload -i = info -Equal = thumb +20 -Plus = thumb +20 -Minus = thumb -20 -Shift+Delete = exec rm -f '%' && echo "File removed: %"; skip_file -Escape = exit -q = exit -# Mouse related -ScrollLeft = step_right -ScrollRight = step_left -ScrollUp = step_up -ScrollDown = step_down -Ctrl+ScrollUp = thumb +20 -Ctrl+ScrollDown = thumb -20 -MouseLeft = mode viewer diff --git a/hosts/system76/config/user-dirs.dirs b/hosts/system76/config/user-dirs.dirs deleted file mode 100644 index 7375b4a..0000000 --- a/hosts/system76/config/user-dirs.dirs +++ /dev/null @@ -1,15 +0,0 @@ -# This file is written by xdg-user-dirs-update -# If you want to change or add directories, just edit the line you're -# interested in. All local changes will be retained on the next run. -# Format is XDG_xxx_DIR="$HOME/yyy", where yyy is a shell-escaped -# homedir-relative path, or XDG_xxx_DIR="/yyy", where /yyy is an -# absolute path. No other format is supported. -# -XDG_DESKTOP_DIR="$HOME/" -XDG_DOWNLOAD_DIR="$HOME/" -XDG_TEMPLATES_DIR="$HOME/" -XDG_PUBLICSHARE_DIR="$HOME/" -XDG_DOCUMENTS_DIR="$HOME/" -XDG_MUSIC_DIR="$HOME/" -XDG_PICTURES_DIR="$HOME/" -XDG_VIDEOS_DIR="$HOME/" diff --git a/hosts/system76/config/zoom.conf b/hosts/system76/config/zoom.conf deleted file mode 100644 index d05fc50..0000000 --- a/hosts/system76/config/zoom.conf +++ /dev/null @@ -1,3 +0,0 @@ -[General] -initialize_flag=1 -random_key="iWXNyZBvOkqtifCZhpYbhHkKdWvhAG7CjZekjmmfcd8=" diff --git a/hosts/system76/config/zoomus.conf b/hosts/system76/config/zoomus.conf deleted file mode 100644 index c8f9471..0000000 --- a/hosts/system76/config/zoomus.conf +++ /dev/null @@ -1,81 +0,0 @@ -[General] -CefOsrWindowlessFrameRate=30 -GeoLocale=system -SensitiveInfoMaskOn=true -ShowBiDirecSyncNoti=true -autoPlayGif=false -autoScale=true -bForceMaximizeWM=false -captureHDCamera=true -cefInstanceCountLimit=-1 -cefRefreshTime=0 -chatListPanelLastWidth=230 -com.disable.connection.pk.status=false -com.zoom.client.langid=0 -com.zoom.pt.settings.closedcaption.fontsize=16 -conf.webserver=https://zoom.us -currentMeetingId=82199284629 -deviceID=28:A0:6B:E5:A9:C0 -disableCef=false -disableUsePasskey=false -enable.host.auto.grab=true -enableAlphaBuffer=true -enableCefGpu=false -enableCefLog=false -enableCefOsrIme=true -enableCefOsrMode=true -enableCefRemoteDebug=false -enableCefRemoteDebugPort=9222 -enableCefTa=false -enableCloudSwitch=true -enableLog=true -enableMiniWindow=true -enableQmlCache=true -enableScreenSaveGuard=false -enableStartMeetingWithRoomSystem=false -enableTestMode=false -enableUnifywebviewTa=false -enableWaylandShare=false -enablegpucomputeutilization=false -fake.version= -flashChatTime=0 -forceEnableTrayIcon=true -forceSSOURL= -hideCrashReport=false -host.auto.grab.interval=10 -isTransCoding=false -legacyAvatarCacheCleaned=1776020340 -logLevel=info -newMeetingWithVideo=true -noSandbox=false -playSoundForNewMessage=false -shareBarTopMargin=0 -shortcut_as_global_ShortcutID_Screenshot=false -shortcut_as_global_ShortcutID_ScreenshotIncludeChatWindow=false -shortcut_as_global_ShortcutID_ShowHideFloatingMeetingControls=true -showOneTimePTAICTipHubble=false -showOneTimeQAMostUpvoteHubble=true -showOneTimeQueriesOptionTip=true -showOneTimeSmartRecognitionCoackMark=true -showOneTimeTranslationUpSellTip=false -showSystemTitlebar=false -speaker_volume=255 -sso_domain=.zoom.us -sso_gov_domain=.zoomgov.com -system.audio.type=default -systemDockMargin=0 -timeFormat12HoursEnable=true -translationFreeTrialTipShowTime=0 -upcoming_meeting_header_image= -useSystemTheme=false -userEmailAddress= -waylandDesktopNotifications=false -webview.debug.enable=false -xwayland=true - -[AS] -showframewindow=true - -[CodeSnippet] -lastCodeType=0 -wrapMode=0 diff --git a/meta/base.conf.yaml b/meta/base.conf.yaml index 5b0069b..06078c6 100644 --- a/meta/base.conf.yaml +++ b/meta/base.conf.yaml @@ -25,6 +25,7 @@ ~/.config/starship.toml: common/starship.toml ~/.gitconfig: common/git/config ~/.ssh/config: common/ssh/config + ~/.config/bob: common/bob + ~/.config/user-dirs.dirs: common/user-dirs.dirs ~/.config/lazygit: common/lazygit - ~/.config/ncmpcpp: common/ncmpcpp ~/.config/neofetch: common/neofetch diff --git a/meta/hosts/mainframe.conf.yaml b/meta/hosts/mainframe.conf.yaml index d124699..789bdce 100644 --- a/meta/hosts/mainframe.conf.yaml +++ b/meta/hosts/mainframe.conf.yaml @@ -10,11 +10,8 @@ force: true - link: - ~/.config/bob: hosts/mainframe/config/bob ~/.config/inbox-tidy: hosts/mainframe/config/inbox-tidy ~/.config/llmfit: hosts/mainframe/config/llmfit - ~/.config/mimeapps.list: hosts/mainframe/config/mimeapps.list - ~/.config/user-dirs.dirs: hosts/mainframe/config/user-dirs.dirs ~/.ssh/config.local: hosts/mainframe/ssh/config.local ~/.config/git/identity: hosts/mainframe/git/identity ~/.config/paru: common/paru diff --git a/meta/hosts/nas.conf.yaml b/meta/hosts/nas.conf.yaml index dece73a..0ac1471 100644 --- a/meta/hosts/nas.conf.yaml +++ b/meta/hosts/nas.conf.yaml @@ -10,7 +10,6 @@ force: true - link: - ~/.config/bob: hosts/nas/config/bob ~/.ssh/config.local: hosts/nas/ssh/config.local ~/.config/git/identity: hosts/nas/git/identity ~/.config/paru: common/paru diff --git a/meta/hosts/sctfw004.conf.yaml b/meta/hosts/sctfw004.conf.yaml index e36429a..60390dd 100644 --- a/meta/hosts/sctfw004.conf.yaml +++ b/meta/hosts/sctfw004.conf.yaml @@ -10,22 +10,29 @@ force: true - link: - ~/.config/bob: hosts/sctfw004/config/bob - ~/.config/fastfetch: hosts/sctfw004/config/fastfetch - ~/.config/gh: hosts/sctfw004/config/gh - ~/.config/gtk-2.0: hosts/sctfw004/config/gtk-2.0 + ~/.config/beets: common/beets + ~/.config/bottom: common/bottom + ~/.config/fastfetch: common/fastfetch + ~/.config/glow: common/glow + ~/.config/mpd: common/mpd + ~/.config/uv: common/uv + ~/.config/mpv: common/mpv + ~/.config/swayimg: common/swayimg + ~/.config/swaync: common/swaync + ~/.config/mimeapps.list: common/mimeapps.list + ~/.config/ncmpcpp: common/ncmpcpp + ~/.config/GIMP: common/GIMP + ~/.config/inkscape: common/inkscape + ~/.config/FreeCAD: common/FreeCAD + ~/.config/cura: common/cura + ~/.config/OrcaSlicer: common/OrcaSlicer + ~/.config/LightBurn: common/LightBurn + ~/.config/obs-studio: common/obs-studio ~/.config/gtk-3.0: hosts/sctfw004/config/gtk-3.0 - ~/.config/mimeapps.list: hosts/sctfw004/config/mimeapps.list - ~/.config/pavucontrol.ini: hosts/sctfw004/config/pavucontrol.ini - ~/.config/swayimg: hosts/sctfw004/config/swayimg ~/.config/swaync: hosts/sctfw004/config/swaync ~/.config/tiling-assistant: hosts/sctfw004/config/tiling-assistant ~/.config/traggo: hosts/sctfw004/config/traggo - ~/.config/user-dirs.dirs: hosts/sctfw004/config/user-dirs.dirs - ~/.config/uv: hosts/sctfw004/config/uv ~/.config/xdg-desktop-portal: hosts/sctfw004/config/xdg-desktop-portal - ~/.config/zoom.conf: hosts/sctfw004/config/zoom.conf - ~/.config/zoomus.conf: hosts/sctfw004/config/zoomus.conf ~/.ssh/config.local: hosts/sctfw004/ssh/config.local ~/.config/wallust: common/wallust ~/.config/hypr/colors.conf: hosts/sctfw004/hypr/colors.conf diff --git a/meta/hosts/system76.conf.yaml b/meta/hosts/system76.conf.yaml index e2ddd6c..3cb01d8 100644 --- a/meta/hosts/system76.conf.yaml +++ b/meta/hosts/system76.conf.yaml @@ -9,21 +9,26 @@ force: true - link: - ~/.config/beets: hosts/system76/config/beets - ~/.config/bob: hosts/system76/config/bob - ~/.config/bottom: hosts/system76/config/bottom - ~/.config/glow: hosts/system76/config/glow - ~/.config/gtk-2.0: hosts/system76/config/gtk-2.0 + ~/.config/beets: common/beets + ~/.config/bottom: common/bottom + ~/.config/fastfetch: common/fastfetch + ~/.config/glow: common/glow + ~/.config/mpd: common/mpd + ~/.config/uv: common/uv + ~/.config/mpv: common/mpv + ~/.config/swayimg: common/swayimg + ~/.config/swaync: common/swaync + ~/.config/mimeapps.list: common/mimeapps.list + ~/.config/ncmpcpp: common/ncmpcpp + ~/.config/GIMP: common/GIMP + ~/.config/inkscape: common/inkscape + ~/.config/FreeCAD: common/FreeCAD + ~/.config/cura: common/cura + ~/.config/OrcaSlicer: common/OrcaSlicer + ~/.config/LightBurn: common/LightBurn + ~/.config/obs-studio: common/obs-studio ~/.config/gtk-3.0: hosts/system76/config/gtk-3.0 - ~/.config/mimeapps.list: hosts/system76/config/mimeapps.list - ~/.config/mpd: hosts/system76/config/mpd - ~/.config/mpv: hosts/system76/config/mpv - ~/.config/pavucontrol.ini: hosts/system76/config/pavucontrol.ini - ~/.config/swayimg: hosts/system76/config/swayimg ~/.config/swaync: hosts/system76/config/swaync - ~/.config/user-dirs.dirs: hosts/system76/config/user-dirs.dirs - ~/.config/zoom.conf: hosts/system76/config/zoom.conf - ~/.config/zoomus.conf: hosts/system76/config/zoomus.conf ~/.ssh/config.local: hosts/system76/ssh/config.local ~/.config/wallust: common/wallust ~/.config/hypr/colors.conf: hosts/system76/hypr/colors.conf