diff --git a/alacritty/.config/alacritty/alacritty.toml b/alacritty/.config/alacritty/alacritty.toml new file mode 100644 index 000000000..4cf6ab3ca --- /dev/null +++ b/alacritty/.config/alacritty/alacritty.toml @@ -0,0 +1,72 @@ +[colors] +transparent_background_colors = true + +[colors.bright] +black = "0x434c5e" +blue = "0xc5a6ff" +cyan = "0xa6fffc" +green = "0xa6ffa6" +magenta = "0xffa6fc" +red = "0xffa6a6" +white = "0xe5e9f0" +yellow = "0xffffa6" + +[colors.cursor] +cursor = "0xe5e9f0" +text = "0x283036" + +[colors.normal] +black = "0x283036" +blue = "0x9059ff" +cyan = "0x59fff9" +green = "0x59ff59" +magenta = "0xff59f9" +red = "0xff5959" +white = "0xe5e9f0" +yellow = "0xffff59" + +[colors.primary] +background = "0x283036" +foreground = "0xe5e9f0" + +[env] +TERM = "alacritty" + +[font] +size = 7.0 + +[font.bold] +family = "Hack Nerd Font" +style = "Bold" + +[font.bold_italic] +family = "Hack Nerd Font" +style = "Bold Italic" + +[font.italic] +family = "Hack Nerd Font" +style = "Italic" + +[font.normal] +family = "Hack Nerd Font" +style = "Regular" + +[font.offset] +x = 0 +y = 0 + +[shell] +program = "/bin/fish" + +[window] +dynamic_padding = false +opacity = 0.85 +title = "Alacritty" + +[window.class] +general = "Alacritty" +instance = "Alacritty" + +[window.padding] +x = 10 +y = 10 diff --git a/alacritty/.config/alacritty/alacritty.yml b/alacritty/.config/alacritty/alacritty.yml deleted file mode 100644 index b5676a53a..000000000 --- a/alacritty/.config/alacritty/alacritty.yml +++ /dev/null @@ -1,813 +0,0 @@ -# Configuration for Alacritty, the GPU enhanced terminal emulator. - -# Import additional configuration files -# -# Imports are loaded in order, skipping all missing files, with the importing -# file being loaded last. If a field is already present in a previous import, it -# will be replaced. -# -# All imports must either be absolute paths starting with `/`, or paths relative -# to the user's home directory starting with `~/`. -#import: -# - /path/to/alacritty.yml - -# Any items in the `env` entry below will be added as -# environment variables. Some entries may override variables -# set by alacritty itself. -env: - # TERM variable - # - # This value is used to set the `$TERM` environment variable for - # each instance of Alacritty. If it is not present, alacritty will - # check the local terminfo database and use `alacritty` if it is - # available, otherwise `xterm-256color` is used. - TERM: alacritty - -window: - # Window dimensions (changes require restart) - # - # Number of lines/columns (not pixels) in the terminal. The number of columns - # must be at least `2`, while using a value of `0` for columns and lines will - # fall back to the window manager's recommended size. - #dimensions: - # columns: 0 - # lines: 0 - - # Window position (changes require restart) - # - # Specified in number of pixels. - # If the position is not set, the window manager will handle the placement. - #position: - # x: 0 - # y: 0 - - # Window padding (changes require restart) - # - # Blank space added around the window in pixels. This padding is scaled - # by DPI and the specified value is always added at both opposing sides. - padding: - x: 10 - y: 10 - - # Spread additional padding evenly around the terminal content. - dynamic_padding: false - - # Window decorations - # - # Values for `decorations`: - # - full: Borders and title bar - # - none: Neither borders nor title bar - # - # Values for `decorations` (macOS only): - # - transparent: Title bar, transparent background and title bar buttons - # - buttonless: Title bar, transparent background and no title bar buttons - #decorations: full - - # Background opacity - # - # Window opacity as a floating point number from `0.0` to `1.0`. - # The value `0.0` is completely transparent and `1.0` is opaque. - opacity: 0.85 - - # Startup Mode (changes require restart) - # - # Values for `startup_mode`: - # - Windowed - # - Maximized - # - Fullscreen - # - # Values for `startup_mode` (macOS only): - # - SimpleFullscreen - #startup_mode: Windowed - - # Window title - title: Alacritty - - # Allow terminal applications to change Alacritty's window title. - #dynamic_title: true - - # Window class (Linux/BSD only): - class: - # Application instance name - instance: Alacritty - # General application class - general: Alacritty - - # GTK theme variant (Linux/BSD only) - # - # Override the variant of the GTK theme. Commonly supported values are `dark` - # and `light`. Set this to `None` to use the default theme variant. - #gtk_theme_variant: None - - scrolling: - # Maximum number of lines in the scrollback buffer. - # Specifying '0' will disable scrolling. - history: 10000 - - # Scrolling distance multiplier. - #multiplier: 3 - -# Font configuration -font: - # Normal (roman) font face - normal: - # Font family - # - # Default: - # - (macOS) Menlo - # - (Linux/BSD) monospace - # - (Windows) Consolas - family: Hack Nerd Font - - # The `style` can be specified to pick a specific face. - style: Regular - - # Bold font face - bold: - # Font family - # - # If the bold family is not specified, it will fall back to the - # value specified for the normal font. - family: Hack Nerd Font - - # The `style` can be specified to pick a specific face. - style: Bold - - # Italic font face - italic: - # Font family - # - # If the italic family is not specified, it will fall back to the - # value specified for the normal font. - family: Hack Nerd Font - - # The `style` can be specified to pick a specific face. - style: Italic - - # Bold italic font face - bold_italic: - # Font family - # - # If the bold italic family is not specified, it will fall back to the - # value specified for the normal font. - family: Hack Nerd Font - - # The `style` can be specified to pick a specific face. - style: Bold Italic - - # Point size - size: 7.0 - - # Offset is the extra space around each character. `offset.y` can be thought - # of as modifying the line spacing, and `offset.x` as modifying the letter - # spacing. - offset: - x: 0 - y: 0 - -# Glyph offset determines the locations of the glyphs within their cells with -# the default being at the bottom. Increasing `x` moves the glyph to the -# right, increasing `y` moves the glyph upward. -#glyph_offset: -# x: 0 -# y: 0 - -# Thin stroke font rendering (macOS only) -# -# Thin strokes are suitable for retina displays, but for non-retina screens -# it is recommended to set `use_thin_strokes` to `false`. -#use_thin_strokes: true - -# If `true`, bold text is drawn using the bright color variants. -#draw_bold_text_with_bright_colors: false - -schemes: - dracula: &dracula # Default colors - primary: - background: "0x282a36" - foreground: "0xf8f8f2" - - # Normal colors - normal: - black: "0x000000" - red: "0xff5555" - green: "0x50fa7b" - yellow: "0xf1fa8c" - blue: "0xbd93f9" - magenta: "0xff79c6" - cyan: "0x8be9fd" - white: "0xbfbfbf" - - # Bright colors - bright: - black: "0x4d4d4d" - red: "0xff6e67" - green: "0x5af78e" - yellow: "0xf4f99d" - blue: "0xcaa9fa" - magenta: "0xff92d0" - cyan: "0x9aedfe" - white: "0xe6e6e6" - - cursor: - text: CellBackground - cursor: CellForeground - vi_mode_cursor: - text: CellBackground - cursor: CellForeground - search: - matches: - foreground: "0x44475a" - background: "0x50fa7b" - focused_match: - foreground: "0x44475a" - background: "0xffb86c" - bar: - background: "0x282a36" - foreground: "0xf8f8f2" - line_indicator: - foreground: None - background: None - selection: - text: CellForeground - background: "0x44475a" - - minimal-mistakes: &minimal-mistakes # Minimal-Mistakes colors - transparent_background_colors: true - - primary: - background: "0x283036" - foreground: "0xe5e9f0" - - # Colors the cursor will use if `custom_cursor_colors` is true - cursor: - text: "0x283036" - cursor: "0xe5e9f0" - - # Normal colors - normal: - black: "0x283036" - red: "0xff5959" - green: "0x59ff59" - yellow: "0xffff59" - blue: "0x9059ff" - magenta: "0xff59f9" - cyan: "0x59fff9" - white: "0xe5e9f0" - - # Bright colors - bright: - black: "0x434c5e" - red: "0xffa6a6" - green: "0xa6ffa6" - yellow: "0xffffa6" - blue: "0xc5a6ff" - magenta: "0xffa6fc" - cyan: "0xa6fffc" - white: "0xe5e9f0" - -colors: *minimal-mistakes -# Bell -# -# The bell is rung every time the BEL control character is received. -#bell: -# Visual Bell Animation -# -# Animation effect for flashing the screen when the visual bell is rung. -# -# Values for `animation`: -# - Ease -# - EaseOut -# - EaseOutSine -# - EaseOutQuad -# - EaseOutCubic -# - EaseOutQuart -# - EaseOutQuint -# - EaseOutExpo -# - EaseOutCirc -# - Linear -#animation: EaseOutExpo - -# Duration of the visual bell flash in milliseconds. A `duration` of `0` will -# disable the visual bell animation. -#duration: 0 - -# Visual bell animation color. -#color: '#ffffff' - -# Bell Command -# -# This program is executed whenever the bell is rung. -# -# When set to `command: None`, no command will be executed. -# -# Example: -# command: -# program: notify-send -# args: ["Hello, World!"] -# -#command: None - -#selection: -# This string contains all characters that are used as separators for -# "semantic words" in Alacritty. -#semantic_escape_chars: ",│`|:\"' ()[]{}<>\t" - -# When set to `true`, selected text will be copied to the primary clipboard. -#save_to_clipboard: false - -#cursor: -# Cursor style -#style: -# Cursor shape -# -# Values for `shape`: -# - ▇ Block -# - _ Underline -# - | Beam -#shape: Block - -# Cursor blinking state -# -# Values for `blinking`: -# - Never: Prevent the cursor from ever blinking -# - Off: Disable blinking by default -# - On: Enable blinking by default -# - Always: Force the cursor to always blink -#blinking: Off - -# Vi mode cursor style -# -# If the vi mode cursor style is `None` or not specified, it will fall back to -# the style of the active value of the normal cursor. -# -# See `cursor.style` for available options. -#vi_mode_style: None - -# Cursor blinking interval in milliseconds. -#blink_interval: 750 - -# If this is `true`, the cursor will be rendered as a hollow box when the -# window is not focused. -#unfocused_hollow: true - -# Thickness of the cursor relative to the cell width as floating point number -# from `0.0` to `1.0`. -#thickness: 0.15 - -# Live config reload (changes require restart) -#live_config_reload: true - -# Shell -# -# You can set `shell.program` to the path of your favorite shell, e.g. -# `/bin/fish`. Entries in `shell.args` are passed unmodified as arguments to the -# shell. -# -# Default: -# - (macOS) /bin/bash --login -# - (Linux/BSD) user login shell -# - (Windows) powershell -shell: - program: /bin/fish -# args: -# - --login - -# Startup directory -# -# Directory the shell is started in. If this is unset, or `None`, the working -# directory of the parent process will be used. -#working_directory: None - -# Send ESC (\x1b) before characters when alt is pressed. -#alt_send_esc: true - -# Offer IPC using `alacritty msg` (unix only) -#ipc_socket: true - -#mouse: -# Click settings -# -# The `double_click` and `triple_click` settings control the time -# alacritty should wait for accepting multiple clicks as one double -# or triple click. -#double_click: { threshold: 300 } -#triple_click: { threshold: 300 } - -# If this is `true`, the cursor is temporarily hidden when typing. -#hide_when_typing: false - -# Regex hints -# -# Terminal hints can be used to find text in the visible part of the terminal -# and pipe it to other applications. -#hints: -# Keys used for the hint labels. -#alphabet: "jfkdls;ahgurieowpq" - -# List with all available hints -# -# Each hint must have a `regex` and either an `action` or a `command` field. -# The fields `mouse`, `binding` and `post_processing` are optional. -# -# The fields `command`, `binding.key`, `binding.mods`, `binding.mode` and -# `mouse.mods` accept the same values as they do in the `key_bindings` section. -# -# The `mouse.enabled` field controls if the hint should be underlined while -# the mouse with all `mouse.mods` keys held or the vi mode cursor is above it. -# -# If the `post_processing` field is set to `true`, heuristics will be used to -# shorten the match if there are characters likely not to be part of the hint -# (e.g. a trailing `.`). This is most useful for URIs. -# -# Values for `action`: -# - Copy -# Copy the hint's text to the clipboard. -# - Paste -# Paste the hint's text to the terminal or search. -# - Select -# Select the hint's text. -# - MoveViModeCursor -# Move the vi mode cursor to the beginning of the hint. -#enabled: -# - regex: "(ipfs:|ipns:|magnet:|mailto:|gemini:|gopher:|https:|http:|news:|file:|git:|ssh:|ftp:)\ -# [^\u0000-\u001F\u007F-\u009F<>\"\\s{-}\\^⟨⟩`]+" -# command: xdg-open -# post_processing: true -# mouse: -# enabled: true -# mods: None -# binding: -# key: U -# mods: Control|Shift - -# Mouse bindings -# -# Mouse bindings are specified as a list of objects, much like the key -# bindings further below. -# -# To trigger mouse bindings when an application running within Alacritty -# captures the mouse, the `Shift` modifier is automatically added as a -# requirement. -# -# Each mouse binding will specify a: -# -# - `mouse`: -# -# - Middle -# - Left -# - Right -# - Numeric identifier such as `5` -# -# - `action` (see key bindings for actions not exclusive to mouse mode) -# -# - Mouse exclusive actions: -# -# - ExpandSelection -# Expand the selection to the current mouse cursor location. -# -# And optionally: -# -# - `mods` (see key bindings) -#mouse_bindings: -# - { mouse: Right, action: ExpandSelection } -# - { mouse: Right, mods: Control, action: ExpandSelection } -# - { mouse: Middle, mode: ~Vi, action: PasteSelection } - -# Key bindings -# -# Key bindings are specified as a list of objects. For example, this is the -# default paste binding: -# -# `- { key: V, mods: Control|Shift, action: Paste }` -# -# Each key binding will specify a: -# -# - `key`: Identifier of the key pressed -# -# - A-Z -# - F1-F24 -# - Key0-Key9 -# -# A full list with available key codes can be found here: -# https://docs.rs/glutin/*/glutin/event/enum.VirtualKeyCode.html#variants -# -# Instead of using the name of the keys, the `key` field also supports using -# the scancode of the desired key. Scancodes have to be specified as a -# decimal number. This command will allow you to display the hex scancodes -# for certain keys: -# -# `showkey --scancodes`. -# -# Then exactly one of: -# -# - `chars`: Send a byte sequence to the running application -# -# The `chars` field writes the specified string to the terminal. This makes -# it possible to pass escape sequences. To find escape codes for bindings -# like `PageUp` (`"\x1b[5~"`), you can run the command `showkey -a` outside -# of tmux. Note that applications use terminfo to map escape sequences back -# to keys. It is therefore required to update the terminfo when changing an -# escape sequence. -# -# - `action`: Execute a predefined action -# -# - ToggleViMode -# - SearchForward -# Start searching toward the right of the search origin. -# - SearchBackward -# Start searching toward the left of the search origin. -# - Copy -# - Paste -# - IncreaseFontSize -# - DecreaseFontSize -# - ResetFontSize -# - ScrollPageUp -# - ScrollPageDown -# - ScrollHalfPageUp -# - ScrollHalfPageDown -# - ScrollLineUp -# - ScrollLineDown -# - ScrollToTop -# - ScrollToBottom -# - ClearHistory -# Remove the terminal's scrollback history. -# - Hide -# Hide the Alacritty window. -# - Minimize -# Minimize the Alacritty window. -# - Quit -# Quit Alacritty. -# - ToggleFullscreen -# - SpawnNewInstance -# Spawn a new instance of Alacritty. -# - CreateNewWindow -# Create a new Alacritty window from the current process. -# - ClearLogNotice -# Clear Alacritty's UI warning and error notice. -# - ClearSelection -# Remove the active selection. -# - ReceiveChar -# - None -# -# - Vi mode exclusive actions: -# -# - Open -# Perform the action of the first matching hint under the vi mode cursor -# with `mouse.enabled` set to `true`. -# - ToggleNormalSelection -# - ToggleLineSelection -# - ToggleBlockSelection -# - ToggleSemanticSelection -# Toggle semantic selection based on `selection.semantic_escape_chars`. -# -# - Vi mode exclusive cursor motion actions: -# -# - Up -# One line up. -# - Down -# One line down. -# - Left -# One character left. -# - Right -# One character right. -# - First -# First column, or beginning of the line when already at the first column. -# - Last -# Last column, or beginning of the line when already at the last column. -# - FirstOccupied -# First non-empty cell in this terminal row, or first non-empty cell of -# the line when already at the first cell of the row. -# - High -# Top of the screen. -# - Middle -# Center of the screen. -# - Low -# Bottom of the screen. -# - SemanticLeft -# Start of the previous semantically separated word. -# - SemanticRight -# Start of the next semantically separated word. -# - SemanticLeftEnd -# End of the previous semantically separated word. -# - SemanticRightEnd -# End of the next semantically separated word. -# - WordLeft -# Start of the previous whitespace separated word. -# - WordRight -# Start of the next whitespace separated word. -# - WordLeftEnd -# End of the previous whitespace separated word. -# - WordRightEnd -# End of the next whitespace separated word. -# - Bracket -# Character matching the bracket at the cursor's location. -# - SearchNext -# Beginning of the next match. -# - SearchPrevious -# Beginning of the previous match. -# - SearchStart -# Start of the match to the left of the vi mode cursor. -# - SearchEnd -# End of the match to the right of the vi mode cursor. -# -# - Search mode exclusive actions: -# - SearchFocusNext -# Move the focus to the next search match. -# - SearchFocusPrevious -# Move the focus to the previous search match. -# - SearchConfirm -# - SearchCancel -# - SearchClear -# Reset the search regex. -# - SearchDeleteWord -# Delete the last word in the search regex. -# - SearchHistoryPrevious -# Go to the previous regex in the search history. -# - SearchHistoryNext -# Go to the next regex in the search history. -# -# - macOS exclusive actions: -# - ToggleSimpleFullscreen -# Enter fullscreen without occupying another space. -# -# - Linux/BSD exclusive actions: -# -# - CopySelection -# Copy from the selection buffer. -# - PasteSelection -# Paste from the selection buffer. -# -# - `command`: Fork and execute a specified command plus arguments -# -# The `command` field must be a map containing a `program` string and an -# `args` array of command line parameter strings. For example: -# `{ program: "alacritty", args: ["-e", "vttest"] }` -# -# And optionally: -# -# - `mods`: Key modifiers to filter binding actions -# -# - Command -# - Control -# - Option -# - Super -# - Shift -# - Alt -# -# Multiple `mods` can be combined using `|` like this: -# `mods: Control|Shift`. -# Whitespace and capitalization are relevant and must match the example. -# -# - `mode`: Indicate a binding for only specific terminal reported modes -# -# This is mainly used to send applications the correct escape sequences -# when in different modes. -# -# - AppCursor -# - AppKeypad -# - Search -# - Alt -# - Vi -# -# A `~` operator can be used before a mode to apply the binding whenever -# the mode is *not* active, e.g. `~Alt`. -# -# Bindings are always filled by default, but will be replaced when a new -# binding with the same triggers is defined. To unset a default binding, it can -# be mapped to the `ReceiveChar` action. Alternatively, you can use `None` for -# a no-op if you do not wish to receive input characters for that binding. -# -# If the same trigger is assigned to multiple actions, all of them are executed -# in the order they were defined in. -#key_bindings: -#- { key: Paste, action: Paste } -#- { key: Copy, action: Copy } -#- { key: L, mods: Control, action: ClearLogNotice } -#- { key: L, mods: Control, mode: ~Vi|~Search, chars: "\x0c" } -#- { key: PageUp, mods: Shift, mode: ~Alt, action: ScrollPageUp, } -#- { key: PageDown, mods: Shift, mode: ~Alt, action: ScrollPageDown } -#- { key: Home, mods: Shift, mode: ~Alt, action: ScrollToTop, } -#- { key: End, mods: Shift, mode: ~Alt, action: ScrollToBottom } - -# Vi Mode -#- { key: Space, mods: Shift|Control, mode: ~Search, action: ToggleViMode } -#- { key: Space, mods: Shift|Control, mode: Vi|~Search, action: ScrollToBottom } -#- { key: Escape, mode: Vi|~Search, action: ClearSelection } -#- { key: I, mode: Vi|~Search, action: ToggleViMode } -#- { key: I, mode: Vi|~Search, action: ScrollToBottom } -#- { key: C, mods: Control, mode: Vi|~Search, action: ToggleViMode } -#- { key: Y, mods: Control, mode: Vi|~Search, action: ScrollLineUp } -#- { key: E, mods: Control, mode: Vi|~Search, action: ScrollLineDown } -#- { key: G, mode: Vi|~Search, action: ScrollToTop } -#- { key: G, mods: Shift, mode: Vi|~Search, action: ScrollToBottom } -#- { key: B, mods: Control, mode: Vi|~Search, action: ScrollPageUp } -#- { key: F, mods: Control, mode: Vi|~Search, action: ScrollPageDown } -#- { key: U, mods: Control, mode: Vi|~Search, action: ScrollHalfPageUp } -#- { key: D, mods: Control, mode: Vi|~Search, action: ScrollHalfPageDown } -#- { key: Y, mode: Vi|~Search, action: Copy } -#- { key: Y, mode: Vi|~Search, action: ClearSelection } -#- { key: Copy, mode: Vi|~Search, action: ClearSelection } -#- { key: V, mode: Vi|~Search, action: ToggleNormalSelection } -#- { key: V, mods: Shift, mode: Vi|~Search, action: ToggleLineSelection } -#- { key: V, mods: Control, mode: Vi|~Search, action: ToggleBlockSelection } -#- { key: V, mods: Alt, mode: Vi|~Search, action: ToggleSemanticSelection } -#- { key: Return, mode: Vi|~Search, action: Open } -#- { key: K, mode: Vi|~Search, action: Up } -#- { key: J, mode: Vi|~Search, action: Down } -#- { key: H, mode: Vi|~Search, action: Left } -#- { key: L, mode: Vi|~Search, action: Right } -#- { key: Up, mode: Vi|~Search, action: Up } -#- { key: Down, mode: Vi|~Search, action: Down } -#- { key: Left, mode: Vi|~Search, action: Left } -#- { key: Right, mode: Vi|~Search, action: Right } -#- { key: Key0, mode: Vi|~Search, action: First } -#- { key: Key4, mods: Shift, mode: Vi|~Search, action: Last } -#- { key: Key6, mods: Shift, mode: Vi|~Search, action: FirstOccupied } -#- { key: H, mods: Shift, mode: Vi|~Search, action: High } -#- { key: M, mods: Shift, mode: Vi|~Search, action: Middle } -#- { key: L, mods: Shift, mode: Vi|~Search, action: Low } -#- { key: B, mode: Vi|~Search, action: SemanticLeft } -#- { key: W, mode: Vi|~Search, action: SemanticRight } -#- { key: E, mode: Vi|~Search, action: SemanticRightEnd } -#- { key: B, mods: Shift, mode: Vi|~Search, action: WordLeft } -#- { key: W, mods: Shift, mode: Vi|~Search, action: WordRight } -#- { key: E, mods: Shift, mode: Vi|~Search, action: WordRightEnd } -#- { key: Key5, mods: Shift, mode: Vi|~Search, action: Bracket } -#- { key: Slash, mode: Vi|~Search, action: SearchForward } -#- { key: Slash, mods: Shift, mode: Vi|~Search, action: SearchBackward } -#- { key: N, mode: Vi|~Search, action: SearchNext } -#- { key: N, mods: Shift, mode: Vi|~Search, action: SearchPrevious } - -# Search Mode -#- { key: Return, mode: Search|Vi, action: SearchConfirm } -#- { key: Escape, mode: Search, action: SearchCancel } -#- { key: C, mods: Control, mode: Search, action: SearchCancel } -#- { key: U, mods: Control, mode: Search, action: SearchClear } -#- { key: W, mods: Control, mode: Search, action: SearchDeleteWord } -#- { key: P, mods: Control, mode: Search, action: SearchHistoryPrevious } -#- { key: N, mods: Control, mode: Search, action: SearchHistoryNext } -#- { key: Up, mode: Search, action: SearchHistoryPrevious } -#- { key: Down, mode: Search, action: SearchHistoryNext } -#- { key: Return, mode: Search|~Vi, action: SearchFocusNext } -#- { key: Return, mods: Shift, mode: Search|~Vi, action: SearchFocusPrevious } - -# (Windows, Linux, and BSD only) -#- { key: V, mods: Control|Shift, mode: ~Vi, action: Paste } -#- { key: C, mods: Control|Shift, action: Copy } -#- { key: F, mods: Control|Shift, mode: ~Search, action: SearchForward } -#- { key: B, mods: Control|Shift, mode: ~Search, action: SearchBackward } -#- { key: C, mods: Control|Shift, mode: Vi|~Search, action: ClearSelection } -#- { key: Insert, mods: Shift, action: PasteSelection } -#- { key: Key0, mods: Control, action: ResetFontSize } -#- { key: Equals, mods: Control, action: IncreaseFontSize } -#- { key: Plus, mods: Control, action: IncreaseFontSize } -#- { key: NumpadAdd, mods: Control, action: IncreaseFontSize } -#- { key: Minus, mods: Control, action: DecreaseFontSize } -#- { key: NumpadSubtract, mods: Control, action: DecreaseFontSize } - -# (Windows only) -#- { key: Return, mods: Alt, action: ToggleFullscreen } - -# (macOS only) -#- { key: K, mods: Command, mode: ~Vi|~Search, chars: "\x0c" } -#- { key: K, mods: Command, mode: ~Vi|~Search, action: ClearHistory } -#- { key: Key0, mods: Command, action: ResetFontSize } -#- { key: Equals, mods: Command, action: IncreaseFontSize } -#- { key: Plus, mods: Command, action: IncreaseFontSize } -#- { key: NumpadAdd, mods: Command, action: IncreaseFontSize } -#- { key: Minus, mods: Command, action: DecreaseFontSize } -#- { key: NumpadSubtract, mods: Command, action: DecreaseFontSize } -#- { key: V, mods: Command, action: Paste } -#- { key: C, mods: Command, action: Copy } -#- { key: C, mods: Command, mode: Vi|~Search, action: ClearSelection } -#- { key: H, mods: Command, action: Hide } -#- { key: H, mods: Command|Alt, action: HideOtherApplications } -#- { key: M, mods: Command, action: Minimize } -#- { key: Q, mods: Command, action: Quit } -#- { key: W, mods: Command, action: Quit } -#- { key: N, mods: Command, action: SpawnNewInstance } -#- { key: F, mods: Command|Control, action: ToggleFullscreen } -#- { key: F, mods: Command, mode: ~Search, action: SearchForward } -#- { key: B, mods: Command, mode: ~Search, action: SearchBackward } - -#debug: -# Display the time it takes to redraw each frame. -#render_timer: false - -# Keep the log file after quitting Alacritty. -#persistent_logging: false - -# Log level -# -# Values for `log_level`: -# - Off -# - Error -# - Warn -# - Info -# - Debug -# - Trace -#log_level: Warn - -# Print all received window events. -#print_events: false diff --git a/ckb-next/.config/ckb-next/ckb-next.conf b/ckb-next/.config/ckb-next/ckb-next.conf index 5dfeae48f..7a9202c1a 100644 --- a/ckb-next/.config/ckb-next/ckb-next.conf +++ b/ckb-next/.config/ckb-next/ckb-next.conf @@ -54,7 +54,7 @@ 0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\0\Lighting\Animations\%7BA97F00C0-5217-4F43-ADC6-67207554972E%7D\ScriptGuid={E0BBA19E-C328-4C0E-8E3C-A06D5722B4FC} 0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\0\Lighting\Animations\%7BA97F00C0-5217-4F43-ADC6-67207554972E%7D\ScriptName=Wave 0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\0\Lighting\Animations\%7BA97F00C0-5217-4F43-ADC6-67207554972E%7D\UseRealNames=true -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\0\Lighting\Brightness=2 +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\0\Lighting\Brightness=1 0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\0\Lighting\KeyMap=K68 GB 0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\0\Lighting\Keys\0=#ffffff 0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\0\Lighting\Keys\1=#ffffff @@ -197,7 +197,7 @@ 0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\0\Lighting\Keys\y=#ffffff 0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\0\Lighting\Keys\z=#ffffff 0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\0\Lighting\UseRealNames=true -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\0\Modified=f964ca98 +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\0\Modified=f6d5b3de 0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\0\Name=Rainbow 0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\0\Performance\AngleSnap=false 0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\0\Performance\DPI\0=@Point(400 400) @@ -255,197 +255,219 @@ 0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Binding\KeyMap=K68 GB 0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Binding\UseRealNames=true 0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Binding\WinLock=false -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\GUID={CE5F67B4-B66E-422A-A208-E45022AB0D7A} +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\GUID={51EB6E3A-27A0-4AD6-A35C-6B67E0329A3D} 0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\HwModified=4f79ed4f -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Animations\List={71F2D53C-6C9C-42FA-BB56-BCB2604F79E8} -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Animations\%7B71F2D53C-6C9C-42FA-BB56-BCB2604F79E8%7D\BlendMode=Normal -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Animations\%7B71F2D53C-6C9C-42FA-BB56-BCB2604F79E8%7D\Keys=space, down, quote, dot, right, colon, slash, bslash_iso, a, b, c, d, e, f, g, h, i, rbrace, j, k, l, m, n, o, p, q, r, s, t, u, up, v, w, x, y, z, comma, lbrace, hash, left, bslash, front, wheel, dpi, thumb, back -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Animations\%7B71F2D53C-6C9C-42FA-BB56-BCB2604F79E8%7D\Name=Breath -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Animations\%7B71F2D53C-6C9C-42FA-BB56-BCB2604F79E8%7D\Opacity=1 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Animations\%7B71F2D53C-6C9C-42FA-BB56-BCB2604F79E8%7D\Parameters\color=0:00ffffff 50:ffffffff 100:00ffffff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Animations\%7B71F2D53C-6C9C-42FA-BB56-BCB2604F79E8%7D\Parameters\delay=0 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Animations\%7B71F2D53C-6C9C-42FA-BB56-BCB2604F79E8%7D\Parameters\duration=5 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Animations\%7B71F2D53C-6C9C-42FA-BB56-BCB2604F79E8%7D\Parameters\kpdelay=0 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Animations\%7B71F2D53C-6C9C-42FA-BB56-BCB2604F79E8%7D\Parameters\kphold=1 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Animations\%7B71F2D53C-6C9C-42FA-BB56-BCB2604F79E8%7D\Parameters\kpmode=0 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Animations\%7B71F2D53C-6C9C-42FA-BB56-BCB2604F79E8%7D\Parameters\kpmodestop=false -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Animations\%7B71F2D53C-6C9C-42FA-BB56-BCB2604F79E8%7D\Parameters\kprelease=false -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Animations\%7B71F2D53C-6C9C-42FA-BB56-BCB2604F79E8%7D\Parameters\kprepeat=5 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Animations\%7B71F2D53C-6C9C-42FA-BB56-BCB2604F79E8%7D\Parameters\kpstop=0 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Animations\%7B71F2D53C-6C9C-42FA-BB56-BCB2604F79E8%7D\Parameters\kptrigger=0 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Animations\%7B71F2D53C-6C9C-42FA-BB56-BCB2604F79E8%7D\Parameters\randomize=0 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Animations\%7B71F2D53C-6C9C-42FA-BB56-BCB2604F79E8%7D\Parameters\repeat=5 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Animations\%7B71F2D53C-6C9C-42FA-BB56-BCB2604F79E8%7D\Parameters\stop=-1 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Animations\%7B71F2D53C-6C9C-42FA-BB56-BCB2604F79E8%7D\Parameters\trigger=1 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Animations\%7B71F2D53C-6C9C-42FA-BB56-BCB2604F79E8%7D\ScriptGuid={54DD2975-E192-457D-BCFC-D912A24E33B4} -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Animations\%7B71F2D53C-6C9C-42FA-BB56-BCB2604F79E8%7D\ScriptName=Gradient -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Animations\%7B71F2D53C-6C9C-42FA-BB56-BCB2604F79E8%7D\UseRealNames=true -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Brightness=1 +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Animations\List={5BC3FB17-BB85-4D51-A799-264866E16C52}, {E3CF82E0-AEED-45C9-AB33-88D432CA9F40} +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Animations\%7B5BC3FB17-BB85-4D51-A799-264866E16C52%7D\BlendMode=Multiply +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Animations\%7B5BC3FB17-BB85-4D51-A799-264866E16C52%7D\Keys=space, down, quote, bspace, dot, rwin, rmenu, prev, tab, right, num0, num1, num2, num3, num4, num5, play, num6, colon, num7, num8, ralt, num9, esc, numslash, slash, prtscn, mute, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, bslash_iso, light, m1, m2, m3, home, rctrl, numplus, grave, a, b, pause, c, stop, d, e, f, g, f1, h, f2, i, g10, f3, rbrace, j, g11, f4, k, g12, f5, l, g13, f6, m, g14, f7, n, g15, f8, o, g16, f9, p, g17, q, g18, r, lwin, s, numminus, minus, t, u, up, v, w, x, y, z, end, rshift, mr, ins, comma, numdot, lctrl, g1, g2, g3, g4, g5, g6, g7, g8, g9, lbrace, lalt, numstar, lshift, numlock, f10, f11, f12, pgdn, hash, del, pgup, caps, lock, equal, left, numenter, next, enter, scroll, bslash, front, wheel, dpi, thumb, back +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Animations\%7B5BC3FB17-BB85-4D51-A799-264866E16C52%7D\Name=Random +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Animations\%7B5BC3FB17-BB85-4D51-A799-264866E16C52%7D\Opacity=1 +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Animations\%7B5BC3FB17-BB85-4D51-A799-264866E16C52%7D\Parameters\delay=0 +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Animations\%7B5BC3FB17-BB85-4D51-A799-264866E16C52%7D\Parameters\duration=0.5 +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Animations\%7B5BC3FB17-BB85-4D51-A799-264866E16C52%7D\Parameters\fade=0 +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Animations\%7B5BC3FB17-BB85-4D51-A799-264866E16C52%7D\Parameters\kpdelay=0 +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Animations\%7B5BC3FB17-BB85-4D51-A799-264866E16C52%7D\Parameters\kpmode=1 +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Animations\%7B5BC3FB17-BB85-4D51-A799-264866E16C52%7D\Parameters\kpmodestop=false +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Animations\%7B5BC3FB17-BB85-4D51-A799-264866E16C52%7D\Parameters\kprelease=false +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Animations\%7B5BC3FB17-BB85-4D51-A799-264866E16C52%7D\Parameters\kpstop=-1 +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Animations\%7B5BC3FB17-BB85-4D51-A799-264866E16C52%7D\Parameters\kptrigger=0 +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Animations\%7B5BC3FB17-BB85-4D51-A799-264866E16C52%7D\Parameters\stop=-1 +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Animations\%7B5BC3FB17-BB85-4D51-A799-264866E16C52%7D\Parameters\trigger=1 +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Animations\%7B5BC3FB17-BB85-4D51-A799-264866E16C52%7D\Parameters\useopacity=0 +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Animations\%7B5BC3FB17-BB85-4D51-A799-264866E16C52%7D\ScriptGuid={22418DA4-A181-4B93-A4D3-03682BA283D2} +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Animations\%7B5BC3FB17-BB85-4D51-A799-264866E16C52%7D\ScriptName=Random +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Animations\%7B5BC3FB17-BB85-4D51-A799-264866E16C52%7D\UseRealNames=true +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Animations\%7BE3CF82E0-AEED-45C9-AB33-88D432CA9F40%7D\BlendMode=Add +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Animations\%7BE3CF82E0-AEED-45C9-AB33-88D432CA9F40%7D\Keys=space, down, quote, bspace, dot, rwin, rmenu, prev, tab, right, num0, num1, num2, num3, num4, num5, play, num6, colon, num7, num8, ralt, num9, esc, numslash, slash, prtscn, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, bslash_iso, home, rctrl, numplus, grave, a, b, pause, c, stop, d, e, f, g, f1, h, f2, i, g10, f3, rbrace, j, g11, f4, k, g12, f5, l, g13, f6, m, g14, f7, n, g15, f8, o, g16, f9, p, g17, q, g18, r, lwin, s, numminus, minus, t, u, up, v, w, x, y, z, end, rshift, ins, comma, numdot, lctrl, g1, g2, g3, g4, g5, g6, g7, g8, g9, lbrace, lalt, numstar, lshift, numlock, f10, f11, f12, pgdn, hash, del, pgup, caps, equal, left, numenter, next, enter, scroll, bslash +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Animations\%7BE3CF82E0-AEED-45C9-AB33-88D432CA9F40%7D\Name=Ripple +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Animations\%7BE3CF82E0-AEED-45C9-AB33-88D432CA9F40%7D\Opacity=1 +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Animations\%7BE3CF82E0-AEED-45C9-AB33-88D432CA9F40%7D\Parameters\color=0:ffff007f 100:00ff007f +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Animations\%7BE3CF82E0-AEED-45C9-AB33-88D432CA9F40%7D\Parameters\delay=0 +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Animations\%7BE3CF82E0-AEED-45C9-AB33-88D432CA9F40%7D\Parameters\duration=1 +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Animations\%7BE3CF82E0-AEED-45C9-AB33-88D432CA9F40%7D\Parameters\kpdelay=0 +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Animations\%7BE3CF82E0-AEED-45C9-AB33-88D432CA9F40%7D\Parameters\kpmode=0 +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Animations\%7BE3CF82E0-AEED-45C9-AB33-88D432CA9F40%7D\Parameters\kpmodestop=false +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Animations\%7BE3CF82E0-AEED-45C9-AB33-88D432CA9F40%7D\Parameters\kprelease=false +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Animations\%7BE3CF82E0-AEED-45C9-AB33-88D432CA9F40%7D\Parameters\kprepeat=1 +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Animations\%7BE3CF82E0-AEED-45C9-AB33-88D432CA9F40%7D\Parameters\kpstop=0 +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Animations\%7BE3CF82E0-AEED-45C9-AB33-88D432CA9F40%7D\Parameters\kptrigger=1 +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Animations\%7BE3CF82E0-AEED-45C9-AB33-88D432CA9F40%7D\Parameters\length=10 +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Animations\%7BE3CF82E0-AEED-45C9-AB33-88D432CA9F40%7D\Parameters\randomize=0 +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Animations\%7BE3CF82E0-AEED-45C9-AB33-88D432CA9F40%7D\Parameters\repeat=1 +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Animations\%7BE3CF82E0-AEED-45C9-AB33-88D432CA9F40%7D\Parameters\stop=-1 +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Animations\%7BE3CF82E0-AEED-45C9-AB33-88D432CA9F40%7D\Parameters\symmetric=1 +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Animations\%7BE3CF82E0-AEED-45C9-AB33-88D432CA9F40%7D\Parameters\trigger=0 +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Animations\%7BE3CF82E0-AEED-45C9-AB33-88D432CA9F40%7D\Parameters\x_offset=0.000000 +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Animations\%7BE3CF82E0-AEED-45C9-AB33-88D432CA9F40%7D\Parameters\y_offset=0.000000 +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Animations\%7BE3CF82E0-AEED-45C9-AB33-88D432CA9F40%7D\ScriptGuid={097D69F0-70B2-48B8-AFE2-25A1CDB02C9D} +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Animations\%7BE3CF82E0-AEED-45C9-AB33-88D432CA9F40%7D\ScriptName=Ripple +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Animations\%7BE3CF82E0-AEED-45C9-AB33-88D432CA9F40%7D\UseRealNames=true +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Brightness=0 0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\KeyMap=K68 GB -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\0=#ffffff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\1=#ffffff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\2=#ffffff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\3=#ffffff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\4=#ffffff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\5=#ffffff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\6=#ffffff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\7=#ffffff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\8=#ffffff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\9=#ffffff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\a=#ff0000 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\b=#ff0000 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\back=#ff0000 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\bslash=#ff0000 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\bslash_iso=#ff0000 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\bspace=#ffffff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\c=#ff0000 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\caps=#ffffff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\colon=#ff0000 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\comma=#ff0000 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\d=#ff0000 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\del=#ffffff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\dot=#ff0000 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\down=#ff0000 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\dpi=#ff0000 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\e=#ff0000 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\end=#ffffff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\enter=#ffffff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\equal=#ffffff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\esc=#ffffff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\f=#ff0000 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\f1=#ffffff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\f10=#ffffff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\f11=#ffffff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\f12=#ffffff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\f2=#ffffff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\f3=#ffffff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\f4=#ffffff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\f5=#ffffff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\f6=#ffffff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\f7=#ffffff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\f8=#ffffff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\f9=#ffffff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\front=#ff0000 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\g=#ff0000 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\g1=#ff8080 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\g10=#ff8080 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\g11=#ff8080 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\g12=#ff8080 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\g13=#ff8080 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\g14=#ff8080 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\g15=#ff8080 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\g16=#ff8080 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\g17=#ff8080 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\g18=#ff8080 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\g2=#ff8080 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\g3=#ff8080 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\g4=#ff8080 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\g5=#ff8080 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\g6=#ff8080 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\g7=#ff8080 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\g8=#ff8080 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\g9=#ff8080 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\grave=#ffffff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\h=#ff0000 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\hash=#ff0000 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\home=#ffffff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\i=#ff0000 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\ins=#ffffff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\j=#ff0000 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\k=#ff0000 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\l=#ff0000 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\lalt=#ffffff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\lbrace=#ff0000 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\lctrl=#ffffff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\left=#ff0000 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\light=#ffffff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\lock=#ffffff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\lshift=#ffffff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\lwin=#ffffff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\m=#ff0000 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\m1=#ffffff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\m2=#ffffff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\m3=#ffffff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\minus=#ffffff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\mr=#ffffff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\mute=#ffffff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\n=#ff0000 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\next=#ff8080 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\num0=#ff8080 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\num1=#ff8080 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\num2=#ff8080 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\num3=#ff8080 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\num4=#ff8080 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\num5=#ff8080 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\num6=#ff8080 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\num7=#ff8080 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\num8=#ff8080 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\num9=#ff8080 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\numdot=#ff8080 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\numenter=#ff8080 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\numlock=#ff8080 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\numminus=#ff8080 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\numplus=#ff8080 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\numslash=#ff8080 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\numstar=#ff8080 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\o=#ff0000 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\p=#ff0000 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\pause=#ffffff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\pgdn=#ffffff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\pgup=#ffffff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\play=#ff8080 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\prev=#ff8080 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\prtscn=#ffffff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\q=#ff0000 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\quote=#ff0000 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\r=#ff0000 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\ralt=#ffffff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\rbrace=#ff0000 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\rctrl=#ffffff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\right=#ff0000 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\rmenu=#ffffff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\rshift=#ffffff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\rwin=#ffffff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\s=#ff0000 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\scroll=#ffffff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\slash=#ff0000 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\space=#ff0000 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\stop=#ff8080 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\t=#ff0000 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\tab=#ffffff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\thumb=#ff0000 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\u=#ff0000 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\up=#ff0000 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\v=#ff0000 +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\0=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\1=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\2=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\3=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\4=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\5=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\6=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\7=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\8=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\9=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\a=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\b=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\back=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\bslash=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\bslash_iso=#9700ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\bspace=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\c=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\caps=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\colon=#9700ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\comma=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\d=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\del=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\dot=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\down=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\dpi=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\e=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\end=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\enter=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\equal=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\esc=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\f=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\f1=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\f10=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\f11=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\f12=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\f2=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\f3=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\f4=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\f5=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\f6=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\f7=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\f8=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\f9=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\front=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\g=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\g1=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\g10=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\g11=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\g12=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\g13=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\g14=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\g15=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\g16=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\g17=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\g18=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\g2=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\g3=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\g4=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\g5=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\g6=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\g7=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\g8=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\g9=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\grave=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\h=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\hash=#9700ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\home=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\i=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\ins=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\j=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\k=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\l=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\lalt=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\lbrace=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\lctrl=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\left=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\light=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\lock=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\lshift=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\lwin=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\m=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\m1=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\m2=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\m3=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\minus=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\mr=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\mute=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\n=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\next=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\num0=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\num1=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\num2=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\num3=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\num4=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\num5=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\num6=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\num7=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\num8=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\num9=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\numdot=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\numenter=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\numlock=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\numminus=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\numplus=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\numslash=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\numstar=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\o=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\p=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\pause=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\pgdn=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\pgup=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\play=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\prev=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\prtscn=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\q=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\quote=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\r=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\ralt=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\rbrace=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\rctrl=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\right=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\rmenu=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\rshift=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\rwin=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\s=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\scroll=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\slash=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\space=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\stop=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\t=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\tab=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\thumb=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\u=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\up=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\v=#aa00ff 0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\voldn=#ffffff 0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\volup=#ffffff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\w=#ff0000 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\wheel=#ff0000 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\x=#ff0000 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\y=#ff0000 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\z=#ff0000 +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\w=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\wheel=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\x=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\y=#aa00ff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\Keys\z=#aa00ff 0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Lighting\UseRealNames=true -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Modified=94e16ec0 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Name=Breathing +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Modified=60b1a9b1 +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Name=Trippy 0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Performance\AngleSnap=false 0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Performance\DPI\0=@Point(400 400) 0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Performance\DPI\0RGB=#ffff0000 0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Performance\DPI\1=@Point(450 450) 0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Performance\DPI\1Disabled=false -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Performance\DPI\1RGB=#ffffc000 +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Performance\DPI\1RGB=#ff4000ff 0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Performance\DPI\2=@Point(800 800) 0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Performance\DPI\2Disabled=false -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Performance\DPI\2RGB=#ffffff00 +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Performance\DPI\2RGB=#ff8000ff 0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Performance\DPI\3=@Point(1500 1500) 0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Performance\DPI\3Disabled=false -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Performance\DPI\3RGB=#ff00ff00 +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Performance\DPI\3RGB=#ffff00ff 0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Performance\DPI\4=@Point(3000 3000) 0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Performance\DPI\4Disabled=false -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Performance\DPI\4RGB=#ff00ffff +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Performance\DPI\4RGB=#ffff80ff 0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Performance\DPI\5=@Point(6000 6000) 0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Performance\DPI\5Disabled=false 0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Performance\DPI\5RGB=#ffffffff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Performance\DPI\6RGB=#ffc0c0c0 +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Performance\DPI\6RGB=#ff000000 0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Performance\DPI\CurIdx=1 0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Performance\Indicators\0\Enable=false 0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Performance\Indicators\0\Hardware=0 @@ -476,264 +498,14 @@ 0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Performance\Indicators\7\RGB0=#00ffffff 0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Performance\Indicators\7\RGB1=#ff000000 0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Performance\Indicators\7\RGB2=#ff000000 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Performance\Indicators\DPI=false +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Performance\Indicators\DPI=true 0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Performance\LiftHeight=3 0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\Performance\MuteDevice=sink 0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\1\WindowInfo\enabled=false -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Binding\KeyMap=K68 GB -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Binding\UseRealNames=true -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Binding\WinLock=false -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\GUID={51EB6E3A-27A0-4AD6-A35C-6B67E0329A3D} -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\HwModified=4f79ed4f -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Animations\List={5BC3FB17-BB85-4D51-A799-264866E16C52}, {E3CF82E0-AEED-45C9-AB33-88D432CA9F40} -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Animations\%7B5BC3FB17-BB85-4D51-A799-264866E16C52%7D\BlendMode=Multiply -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Animations\%7B5BC3FB17-BB85-4D51-A799-264866E16C52%7D\Keys=space, down, quote, bspace, dot, rwin, rmenu, prev, tab, right, num0, num1, num2, num3, num4, num5, play, num6, colon, num7, num8, ralt, num9, esc, numslash, slash, prtscn, mute, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, bslash_iso, light, m1, m2, m3, home, rctrl, numplus, grave, a, b, pause, c, stop, d, e, f, g, f1, h, f2, i, g10, f3, rbrace, j, g11, f4, k, g12, f5, l, g13, f6, m, g14, f7, n, g15, f8, o, g16, f9, p, g17, q, g18, r, lwin, s, numminus, minus, t, u, up, v, w, x, y, z, end, rshift, mr, ins, comma, numdot, lctrl, g1, g2, g3, g4, g5, g6, g7, g8, g9, lbrace, lalt, numstar, lshift, numlock, f10, f11, f12, pgdn, hash, del, pgup, caps, lock, equal, left, numenter, next, enter, scroll, bslash, front, wheel, dpi, thumb, back -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Animations\%7B5BC3FB17-BB85-4D51-A799-264866E16C52%7D\Name=Random -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Animations\%7B5BC3FB17-BB85-4D51-A799-264866E16C52%7D\Opacity=1 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Animations\%7B5BC3FB17-BB85-4D51-A799-264866E16C52%7D\Parameters\delay=0 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Animations\%7B5BC3FB17-BB85-4D51-A799-264866E16C52%7D\Parameters\duration=0.5 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Animations\%7B5BC3FB17-BB85-4D51-A799-264866E16C52%7D\Parameters\fade=0 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Animations\%7B5BC3FB17-BB85-4D51-A799-264866E16C52%7D\Parameters\kpdelay=0 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Animations\%7B5BC3FB17-BB85-4D51-A799-264866E16C52%7D\Parameters\kpmode=1 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Animations\%7B5BC3FB17-BB85-4D51-A799-264866E16C52%7D\Parameters\kpmodestop=false -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Animations\%7B5BC3FB17-BB85-4D51-A799-264866E16C52%7D\Parameters\kprelease=false -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Animations\%7B5BC3FB17-BB85-4D51-A799-264866E16C52%7D\Parameters\kpstop=-1 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Animations\%7B5BC3FB17-BB85-4D51-A799-264866E16C52%7D\Parameters\kptrigger=0 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Animations\%7B5BC3FB17-BB85-4D51-A799-264866E16C52%7D\Parameters\stop=-1 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Animations\%7B5BC3FB17-BB85-4D51-A799-264866E16C52%7D\Parameters\trigger=1 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Animations\%7B5BC3FB17-BB85-4D51-A799-264866E16C52%7D\Parameters\useopacity=0 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Animations\%7B5BC3FB17-BB85-4D51-A799-264866E16C52%7D\ScriptGuid={22418DA4-A181-4B93-A4D3-03682BA283D2} -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Animations\%7B5BC3FB17-BB85-4D51-A799-264866E16C52%7D\ScriptName=Random -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Animations\%7B5BC3FB17-BB85-4D51-A799-264866E16C52%7D\UseRealNames=true -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Animations\%7BE3CF82E0-AEED-45C9-AB33-88D432CA9F40%7D\BlendMode=Add -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Animations\%7BE3CF82E0-AEED-45C9-AB33-88D432CA9F40%7D\Keys=space, down, quote, bspace, dot, rwin, rmenu, prev, tab, right, num0, num1, num2, num3, num4, num5, play, num6, colon, num7, num8, ralt, num9, esc, numslash, slash, prtscn, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, bslash_iso, home, rctrl, numplus, grave, a, b, pause, c, stop, d, e, f, g, f1, h, f2, i, g10, f3, rbrace, j, g11, f4, k, g12, f5, l, g13, f6, m, g14, f7, n, g15, f8, o, g16, f9, p, g17, q, g18, r, lwin, s, numminus, minus, t, u, up, v, w, x, y, z, end, rshift, ins, comma, numdot, lctrl, g1, g2, g3, g4, g5, g6, g7, g8, g9, lbrace, lalt, numstar, lshift, numlock, f10, f11, f12, pgdn, hash, del, pgup, caps, equal, left, numenter, next, enter, scroll, bslash -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Animations\%7BE3CF82E0-AEED-45C9-AB33-88D432CA9F40%7D\Name=Ripple -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Animations\%7BE3CF82E0-AEED-45C9-AB33-88D432CA9F40%7D\Opacity=1 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Animations\%7BE3CF82E0-AEED-45C9-AB33-88D432CA9F40%7D\Parameters\color=0:ffff007f 100:00ff007f -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Animations\%7BE3CF82E0-AEED-45C9-AB33-88D432CA9F40%7D\Parameters\delay=0 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Animations\%7BE3CF82E0-AEED-45C9-AB33-88D432CA9F40%7D\Parameters\duration=1 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Animations\%7BE3CF82E0-AEED-45C9-AB33-88D432CA9F40%7D\Parameters\kpdelay=0 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Animations\%7BE3CF82E0-AEED-45C9-AB33-88D432CA9F40%7D\Parameters\kpmode=0 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Animations\%7BE3CF82E0-AEED-45C9-AB33-88D432CA9F40%7D\Parameters\kpmodestop=false -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Animations\%7BE3CF82E0-AEED-45C9-AB33-88D432CA9F40%7D\Parameters\kprelease=false -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Animations\%7BE3CF82E0-AEED-45C9-AB33-88D432CA9F40%7D\Parameters\kprepeat=1 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Animations\%7BE3CF82E0-AEED-45C9-AB33-88D432CA9F40%7D\Parameters\kpstop=0 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Animations\%7BE3CF82E0-AEED-45C9-AB33-88D432CA9F40%7D\Parameters\kptrigger=1 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Animations\%7BE3CF82E0-AEED-45C9-AB33-88D432CA9F40%7D\Parameters\length=10 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Animations\%7BE3CF82E0-AEED-45C9-AB33-88D432CA9F40%7D\Parameters\randomize=0 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Animations\%7BE3CF82E0-AEED-45C9-AB33-88D432CA9F40%7D\Parameters\repeat=1 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Animations\%7BE3CF82E0-AEED-45C9-AB33-88D432CA9F40%7D\Parameters\stop=-1 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Animations\%7BE3CF82E0-AEED-45C9-AB33-88D432CA9F40%7D\Parameters\symmetric=1 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Animations\%7BE3CF82E0-AEED-45C9-AB33-88D432CA9F40%7D\Parameters\trigger=0 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Animations\%7BE3CF82E0-AEED-45C9-AB33-88D432CA9F40%7D\Parameters\x_offset=0.000000 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Animations\%7BE3CF82E0-AEED-45C9-AB33-88D432CA9F40%7D\Parameters\y_offset=0.000000 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Animations\%7BE3CF82E0-AEED-45C9-AB33-88D432CA9F40%7D\ScriptGuid={097D69F0-70B2-48B8-AFE2-25A1CDB02C9D} -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Animations\%7BE3CF82E0-AEED-45C9-AB33-88D432CA9F40%7D\ScriptName=Ripple -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Animations\%7BE3CF82E0-AEED-45C9-AB33-88D432CA9F40%7D\UseRealNames=true -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Brightness=1 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\KeyMap=K68 GB -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\0=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\1=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\2=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\3=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\4=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\5=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\6=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\7=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\8=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\9=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\a=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\b=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\back=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\bslash=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\bslash_iso=#9700ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\bspace=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\c=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\caps=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\colon=#9700ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\comma=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\d=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\del=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\dot=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\down=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\dpi=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\e=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\end=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\enter=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\equal=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\esc=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\f=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\f1=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\f10=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\f11=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\f12=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\f2=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\f3=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\f4=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\f5=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\f6=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\f7=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\f8=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\f9=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\front=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\g=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\g1=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\g10=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\g11=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\g12=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\g13=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\g14=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\g15=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\g16=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\g17=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\g18=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\g2=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\g3=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\g4=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\g5=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\g6=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\g7=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\g8=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\g9=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\grave=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\h=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\hash=#9700ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\home=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\i=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\ins=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\j=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\k=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\l=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\lalt=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\lbrace=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\lctrl=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\left=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\light=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\lock=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\lshift=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\lwin=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\m=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\m1=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\m2=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\m3=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\minus=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\mr=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\mute=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\n=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\next=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\num0=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\num1=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\num2=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\num3=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\num4=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\num5=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\num6=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\num7=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\num8=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\num9=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\numdot=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\numenter=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\numlock=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\numminus=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\numplus=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\numslash=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\numstar=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\o=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\p=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\pause=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\pgdn=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\pgup=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\play=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\prev=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\prtscn=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\q=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\quote=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\r=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\ralt=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\rbrace=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\rctrl=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\right=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\rmenu=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\rshift=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\rwin=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\s=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\scroll=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\slash=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\space=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\stop=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\t=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\tab=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\thumb=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\u=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\up=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\v=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\voldn=#ffffff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\volup=#ffffff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\w=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\wheel=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\x=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\y=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\Keys\z=#aa00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Lighting\UseRealNames=true -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Modified=19e476be -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Name=Trippy -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Performance\AngleSnap=false -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Performance\DPI\0=@Point(400 400) -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Performance\DPI\0RGB=#ffff0000 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Performance\DPI\1=@Point(450 450) -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Performance\DPI\1Disabled=false -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Performance\DPI\1RGB=#ff4000ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Performance\DPI\2=@Point(800 800) -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Performance\DPI\2Disabled=false -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Performance\DPI\2RGB=#ff8000ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Performance\DPI\3=@Point(1500 1500) -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Performance\DPI\3Disabled=false -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Performance\DPI\3RGB=#ffff00ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Performance\DPI\4=@Point(3000 3000) -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Performance\DPI\4Disabled=false -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Performance\DPI\4RGB=#ffff80ff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Performance\DPI\5=@Point(6000 6000) -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Performance\DPI\5Disabled=false -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Performance\DPI\5RGB=#ffffffff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Performance\DPI\6RGB=#ff000000 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Performance\DPI\CurIdx=1 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Performance\Indicators\0\Enable=false -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Performance\Indicators\0\Hardware=0 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Performance\Indicators\0\RGB0=#ff00ff00 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Performance\Indicators\0\RGB1=#ff000000 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Performance\Indicators\1\Enable=false -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Performance\Indicators\1\Hardware=0 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Performance\Indicators\1\RGB0=#ff00ff00 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Performance\Indicators\1\RGB1=#ff000000 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Performance\Indicators\2\Enable=false -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Performance\Indicators\2\Hardware=0 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Performance\Indicators\2\RGB0=#ff00ff00 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Performance\Indicators\2\RGB1=#ff000000 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Performance\Indicators\3\Enable=true -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Performance\Indicators\3\RGB0=#00ffffff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Performance\Indicators\3\RGB1=#ff000000 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Performance\Indicators\4\Enable=true -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Performance\Indicators\4\RGB0=#ffff0000 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Performance\Indicators\4\RGB1=#ff000000 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Performance\Indicators\5\Enable=true -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Performance\Indicators\5\RGB0=#ffff0000 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Performance\Indicators\5\RGB1=#ffffff00 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Performance\Indicators\5\RGB2=#ffffffff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Performance\Indicators\6\Enable=true -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Performance\Indicators\6\RGB0=#ffffffff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Performance\Indicators\6\RGB1=#ff000000 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Performance\Indicators\7\Enable=true -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Performance\Indicators\7\RGB0=#00ffffff -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Performance\Indicators\7\RGB1=#ff000000 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Performance\Indicators\7\RGB2=#ff000000 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Performance\Indicators\DPI=true -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Performance\LiftHeight=3 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\Performance\MuteDevice=sink -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\2\WindowInfo\enabled=false 0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\CurrentMode={51EB6E3A-27A0-4AD6-A35C-6B67E0329A3D} 0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\HwModified=7ffd -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\ModeCount=3 -0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\Modified=4eae9586 +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\ModeCount=2 +0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\Modified=de12646a 0E029022AF4C18835CBDCC7EF5001BC3\%7B5B1E2E81-ED4F-4F79-9EB5-F8ACA67D1BF0%7D\Name=Multi 0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Binding\KeyMap=K68 GB 0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Binding\UseRealNames=true @@ -929,7 +701,7 @@ 0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\y=#ffffff 0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\Keys\z=#ffffff 0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Lighting\UseRealNames=true -0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Modified=d8d5ec26 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Modified=28be173f 0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Name=Rainbow 0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Performance\AngleSnap=false 0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\0\Performance\DPI\0=@Point(400 400) @@ -1157,7 +929,7 @@ 0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\y=#ff0000 0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\Keys\z=#ff0000 0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Lighting\UseRealNames=true -0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Modified=b77de05b +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Modified=cd0638a8 0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Name=Breathing 0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Performance\AngleSnap=false 0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\1\Performance\DPI\0=@Point(400 400) @@ -1407,7 +1179,7 @@ 0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\y=#aa00ff 0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\Keys\z=#aa00ff 0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Lighting\UseRealNames=true -0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Modified=81dc7d90 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Modified=92a5296d 0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Name=Trippy 0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Performance\AngleSnap=false 0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\2\Performance\DPI\0=@Point(400 400) @@ -1465,7 +1237,7 @@ 0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\CurrentMode={11C11AE3-3195-4DFC-B8AC-2FEA703414E5} 0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\HwModified=40b6f054 0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\ModeCount=3 -0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\Modified=fc67f3d8 +0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\Modified=3724de35 0E029022AF4C18835CBDCC7EF5001BC3\%7BBA7FC152-2D51-4C26-A7A6-A036CC93D924%7D\Name=Demo [Popups] @@ -1474,7 +1246,7 @@ BGWarning=true [Program] CkbMigrationChecked=true CkbNextIniMigrationChecked=true -GlobalBrightness=1 +GlobalBrightness=0 NewDidLoginItem=true RGBIcon=true SettingsVersion=1 diff --git a/clifm/.config/clifm/profiles/default/dirhist.clifm b/clifm/.config/clifm/profiles/default/dirhist.clifm index 938c61da7..2cd56c7a1 100644 --- a/clifm/.config/clifm/profiles/default/dirhist.clifm +++ b/clifm/.config/clifm/profiles/default/dirhist.clifm @@ -1,3 +1,5 @@ /home/repo /home/repo/Downloads/GiveMeDaBadge /home/repo +/home/repo/.config/BetterDiscord/plugins +/home/repo diff --git a/dconf/.config/dconf/user b/dconf/.config/dconf/user index 47f694500..3b98bc0fd 100644 Binary files a/dconf/.config/dconf/user and b/dconf/.config/dconf/user differ diff --git a/fish/.config/fish/config.fish b/fish/.config/fish/config.fish index 45f81eb3c..a46630366 100644 --- a/fish/.config/fish/config.fish +++ b/fish/.config/fish/config.fish @@ -7,7 +7,3 @@ end for functions in "$HOME/.config/fish/functions/"* source $functions end - -# bun -set --export BUN_INSTALL "$HOME/.bun" -set --export PATH $BUN_INSTALL/bin $PATH diff --git a/fish/.config/fish/functions/99_ssh.fish b/fish/.config/fish/functions/99_ssh.fish index 56f4c6db1..f7b61beac 100644 --- a/fish/.config/fish/functions/99_ssh.fish +++ b/fish/.config/fish/functions/99_ssh.fish @@ -3,7 +3,3 @@ function chris ssh linknsync@213.246.150.150 end - -function sshme - ssh ubuntu@129.151.81.74 -end diff --git a/flexiflow/.config/flexiflow/flexiflow_bar/bar_updates.ini b/flexiflow/.config/flexiflow/flexiflow_bar/bar_updates.ini index 186e92f07..3e2dbcbae 100644 --- a/flexiflow/.config/flexiflow/flexiflow_bar/bar_updates.ini +++ b/flexiflow/.config/flexiflow/flexiflow_bar/bar_updates.ini @@ -1,2 +1,2 @@ -LastUsed=1696088482 +LastUsed=1696795353 Message='Fully Updated' diff --git a/flexiflow_bar/.local/bin/flexiflow_bar/bar_updates b/flexiflow_bar/.local/bin/flexiflow_bar/bar_updates index 29b4032b5..91ffd0ba0 100755 --- a/flexiflow_bar/.local/bin/flexiflow_bar/bar_updates +++ b/flexiflow_bar/.local/bin/flexiflow_bar/bar_updates @@ -1,37 +1,20 @@ #!/usr/bin/env bash get_updates() { - configFile=$HOME/.config/flexiflow/flexiflow_bar/bar_updates.ini - # load colors . $HOME/.config/flexiflow_bar/bar_themes/minimal-mistakes - updates=$(yay -Qu | wc -l) - timestamp=$(date +%s) + updates=$(checkupdates | wc -l) icon="" - if [ "$updates" -eq 0 ]; then + if [[ "$updates" -eq 0 ]]; then updatecount="Fully Updated" - elif [ "$updates" -eq 1 ]; then + elif [[ "$updates" -eq 1 ]]; then updatecount="$updates Update" else updatecount="$updates Updates" fi - [[ -f $configFile ]] && . $configFile - if [[ -z "$LastUsed" ]] || [[ -z "$Message" ]]; then - printf "%s %s \n" "^c$Foreground^^b$Purple^ $icon " "^c$Foreground^^b$Purple_Bright^ $updatecount" - newtime=$(expr $timestamp + 900) - echo -e "LastUsed=${newtime}\nMessage='${updatecount}'" >$configFile - else - if [[ "$timestamp" -ge "$LastUsed" ]]; then - printf "%s %s \n" "^c$Foreground^^b$Purple^ $icon " "^c$Foreground^^b$Purple_Bright^ $updatecount" - newtime=$(expr $timestamp + 900) - echo -e "LastUsed=${newtime}\nMessage='${updatecount}'" >$configFile - else - updatecount="$Message" - printf "%s %s \n" "^c$Foreground^^b$Purple^ $icon " "^c$Foreground^^b$Purple_Bright^ $updatecount" - fi - fi + printf "%s %s \n" "^c$Foreground^^b$Purple^ $icon " "^c$Foreground^^b$Purple_Bright^ $updatecount" } get_updates diff --git a/gimp/.config/GIMP/2.10/action-history b/gimp/.config/GIMP/2.10/action-history index 5a2119b42..f1caf3106 100755 --- a/gimp/.config/GIMP/2.10/action-history +++ b/gimp/.config/GIMP/2.10/action-history @@ -1,6 +1,6 @@ # GIMP action-history -(history-item "file-quit" 2) +(history-item "file-quit" 3) (history-item "select-none" 3) (history-item "layers-new" 0) (history-item "tools-scale" 2) @@ -8,9 +8,9 @@ (history-item "file-export-as" 3) (history-item "image-new" 3) (history-item "python-fu-heal-selection" 0) -(history-item "edit-paste" 1) -(history-item "layers-duplicate" 0) -(history-item "file-open" 2) +(history-item "edit-paste" 0) +(history-item "file-open" 1) +(history-item "layers-duplicate" 2) (history-item "layers-alpha-selection-replace" 1) (history-item "windows-tab-position" 1) (history-item "tools-rotate" 0) diff --git a/gimp/.config/GIMP/2.10/devicerc b/gimp/.config/GIMP/2.10/devicerc index 90271df87..faa336307 100755 --- a/gimp/.config/GIMP/2.10/devicerc +++ b/gimp/.config/GIMP/2.10/devicerc @@ -27,18 +27,49 @@ (point-types 2 smooth smooth) (n-samples 256) (samples 256 0 0.0039220000000000001 0.0078429999999999993 0.011764999999999999 0.015685999999999999 0.019608 0.023529000000000001 0.027451 0.031372999999999998 0.035293999999999999 0.039216000000000001 0.043137000000000002 0.047058999999999997 0.050979999999999998 0.054901999999999999 0.058824000000000001 0.062744999999999995 0.066667000000000004 0.070587999999999998 0.074510000000000007 0.078431000000000001 0.082352999999999996 0.086275000000000004 0.090195999999999998 0.094117999999999993 0.098039000000000001 0.101961 0.105882 0.109804 0.11372500000000001 0.117647 0.121569 0.12548999999999999 0.129412 0.13333300000000001 0.13725499999999999 0.141176 0.145098 0.14902000000000001 0.15294099999999999 0.156863 0.16078400000000001 0.16470599999999999 0.168627 0.17254900000000001 0.17647099999999999 0.180392 0.18431400000000001 0.18823500000000001 0.19215699999999999 0.196078 0.20000000000000001 0.20392199999999999 0.207843 0.21176500000000001 0.21568599999999999 0.219608 0.22352900000000001 0.22745099999999999 0.231373 0.235294 0.23921600000000001 0.24313699999999999 0.247059 0.25097999999999998 0.25490200000000002 0.258824 0.26274500000000001 0.26666699999999999 0.270588 0.27450999999999998 0.27843099999999998 0.28235300000000002 0.286275 0.29019600000000001 0.29411799999999999 0.298039 0.30196099999999998 0.30588199999999999 0.30980400000000002 0.31372499999999998 0.31764700000000001 0.32156899999999999 0.32549 0.32941199999999998 0.33333299999999999 0.33725500000000003 0.34117599999999998 0.34509800000000002 0.34902 0.352941 0.35686299999999999 0.36078399999999999 0.36470599999999997 0.36862699999999998 0.37254900000000002 0.376471 0.38039200000000001 0.38431399999999999 0.388235 0.39215699999999998 0.39607799999999999 0.40000000000000002 0.403922 0.40784300000000001 0.41176499999999999 0.415686 0.41960799999999998 0.42352899999999999 0.42745100000000003 0.43137300000000001 0.43529400000000001 0.439216 0.443137 0.44705899999999998 0.45097999999999999 0.45490199999999997 0.45882400000000001 0.46274500000000002 0.466667 0.47058800000000001 0.47450999999999999 0.478431 0.48235299999999998 0.48627500000000001 0.49019600000000002 0.494118 0.49803900000000001 0.50196099999999999 0.50588200000000005 0.50980400000000003 0.51372499999999999 0.51764699999999997 0.52156899999999995 0.52549000000000001 0.52941199999999999 0.53333299999999995 0.53725500000000004 0.54117599999999999 0.54509799999999997 0.54901999999999995 0.55294100000000002 0.556863 0.56078399999999995 0.56470600000000004 0.56862699999999999 0.57254899999999997 0.57647099999999996 0.58039200000000002 0.584314 0.58823499999999995 0.59215700000000004 0.596078 0.59999999999999998 0.60392199999999996 0.60784300000000002 0.611765 0.61568599999999996 0.61960800000000005 0.623529 0.62745099999999998 0.63137299999999996 0.63529400000000003 0.63921600000000001 0.64313699999999996 0.64705900000000005 0.65098 0.65490199999999998 0.65882399999999997 0.66274500000000003 0.66666700000000001 0.67058799999999996 0.67451000000000005 0.67843100000000001 0.68235299999999999 0.68627499999999997 0.69019600000000003 0.69411800000000001 0.69803899999999997 0.70196099999999995 0.70588200000000001 0.70980399999999999 0.71372500000000005 0.71764700000000003 0.72156900000000002 0.72548999999999997 0.72941199999999995 0.73333300000000001 0.73725499999999999 0.74117599999999995 0.74509800000000004 0.74902000000000002 0.75294099999999997 0.75686299999999995 0.76078400000000002 0.764706 0.76862699999999995 0.77254900000000004 0.77647100000000002 0.78039199999999997 0.78431399999999996 0.78823500000000002 0.792157 0.79607799999999995 0.80000000000000004 0.80392200000000003 0.80784299999999998 0.81176499999999996 0.81568600000000002 0.819608 0.82352899999999996 0.82745100000000005 0.83137300000000003 0.83529399999999998 0.83921599999999996 0.84313700000000003 0.84705900000000001 0.85097999999999996 0.85490200000000005 0.85882400000000003 0.86274499999999998 0.86666699999999997 0.87058800000000003 0.87451000000000001 0.87843099999999996 0.88235300000000005 0.88627500000000003 0.89019599999999999 0.89411799999999997 0.89803900000000003 0.90196100000000001 0.90588199999999997 0.90980399999999995 0.91372500000000001 0.91764699999999999 0.92156899999999997 0.92549000000000003 0.92941200000000002 0.93333299999999997 0.93725499999999995 0.94117600000000001 0.94509799999999999 0.94901999999999997 0.95294100000000004 0.95686300000000002 0.96078399999999997 0.96470599999999995 0.96862700000000002 0.972549 0.97647099999999998 0.98039200000000004 0.98431400000000002 0.98823499999999997 0.99215699999999996 0.99607800000000002 1))) -(GimpDeviceInfo "ckb1: CORSAIR K68 RGB Mechanical Gaming Keyboard vM" - (name "ckb1: CORSAIR K68 RGB Mechanical Gaming Keyboard vM") - (tool-options "GimpRectangleSelectOptions" - (tool "gimp-rect-select-tool") - (corner-radius 46.200000000000003)) - (use-fg-bg no) +(GimpDeviceInfo "ELAN0001:00 04F3:3140 Mouse" + (icon-name "gimp-cursor") + (name "ELAN0001:00 04F3:3140 Mouse") + (tool-options "GimpBucketFillOptions" + (tool "gimp-bucket-fill-tool") + (foreground (color-rgb 0.1803921568627451 0.20392156862745098 0.25098039215686274)) + (pattern "Pine") + (brush-size 51) + (brush-hardness 0.5)) + (use-fg-bg yes) (use-opacity-paint-mode no) (use-brush no) (use-dynamics no) (use-mypaint-brush no) (use-gradient no) - (use-pattern no) + (use-pattern yes) + (use-palette no) + (use-font no) + (mode disabled) + (axes 4 x y pressure xtilt) + (keys 0) + (pressure-curve + (curve-type smooth) + (points 0) + (point-types 0) + (n-samples 256) + (samples 256 0 0.0039215686274509803 0.0078431372549019607 0.011764705882352941 0.015686274509803921 0.019607843137254902 0.023529411764705882 0.027450980392156862 0.031372549019607843 0.035294117647058823 0.039215686274509803 0.043137254901960784 0.047058823529411764 0.050980392156862744 0.054901960784313725 0.058823529411764705 0.062745098039215685 0.066666666666666666 0.070588235294117646 0.074509803921568626 0.078431372549019607 0.082352941176470587 0.086274509803921567 0.090196078431372548 0.094117647058823528 0.098039215686274508 0.10196078431372549 0.10588235294117647 0.10980392156862745 0.11372549019607843 0.11764705882352941 0.12156862745098039 0.12549019607843137 0.12941176470588237 0.13333333333333333 0.13725490196078433 0.14117647058823529 0.14509803921568629 0.14901960784313725 0.15294117647058825 0.15686274509803921 0.16078431372549021 0.16470588235294117 0.16862745098039217 0.17254901960784313 0.17647058823529413 0.1803921568627451 0.18431372549019609 0.18823529411764706 0.19215686274509805 0.19607843137254902 0.20000000000000001 0.20392156862745098 0.20784313725490197 0.21176470588235294 0.21568627450980393 0.2196078431372549 0.22352941176470589 0.22745098039215686 0.23137254901960785 0.23529411764705882 0.23921568627450981 0.24313725490196078 0.24705882352941178 0.25098039215686274 0.25490196078431371 0.25882352941176473 0.2627450980392157 0.26666666666666666 0.27058823529411763 0.27450980392156865 0.27843137254901962 0.28235294117647058 0.28627450980392155 0.29019607843137257 0.29411764705882354 0.29803921568627451 0.30196078431372547 0.30588235294117649 0.30980392156862746 0.31372549019607843 0.31764705882352939 0.32156862745098042 0.32549019607843138 0.32941176470588235 0.33333333333333331 0.33725490196078434 0.3411764705882353 0.34509803921568627 0.34901960784313724 0.35294117647058826 0.35686274509803922 0.36078431372549019 0.36470588235294116 0.36862745098039218 0.37254901960784315 0.37647058823529411 0.38039215686274508 0.3843137254901961 0.38823529411764707 0.39215686274509803 0.396078431372549 0.40000000000000002 0.40392156862745099 0.40784313725490196 0.41176470588235292 0.41568627450980394 0.41960784313725491 0.42352941176470588 0.42745098039215684 0.43137254901960786 0.43529411764705883 0.4392156862745098 0.44313725490196076 0.44705882352941179 0.45098039215686275 0.45490196078431372 0.45882352941176469 0.46274509803921571 0.46666666666666667 0.47058823529411764 0.47450980392156861 0.47843137254901963 0.4823529411764706 0.48627450980392156 0.49019607843137253 0.49411764705882355 0.49803921568627452 0.50196078431372548 0.50588235294117645 0.50980392156862742 0.51372549019607838 0.51764705882352946 0.52156862745098043 0.52549019607843139 0.52941176470588236 0.53333333333333333 0.53725490196078429 0.54117647058823526 0.54509803921568623 0.5490196078431373 0.55294117647058827 0.55686274509803924 0.5607843137254902 0.56470588235294117 0.56862745098039214 0.5725490196078431 0.57647058823529407 0.58039215686274515 0.58431372549019611 0.58823529411764708 0.59215686274509804 0.59607843137254901 0.59999999999999998 0.60392156862745094 0.60784313725490191 0.61176470588235299 0.61568627450980395 0.61960784313725492 0.62352941176470589 0.62745098039215685 0.63137254901960782 0.63529411764705879 0.63921568627450975 0.64313725490196083 0.6470588235294118 0.65098039215686276 0.65490196078431373 0.6588235294117647 0.66274509803921566 0.66666666666666663 0.6705882352941176 0.67450980392156867 0.67843137254901964 0.68235294117647061 0.68627450980392157 0.69019607843137254 0.69411764705882351 0.69803921568627447 0.70196078431372544 0.70588235294117652 0.70980392156862748 0.71372549019607845 0.71764705882352942 0.72156862745098038 0.72549019607843135 0.72941176470588232 0.73333333333333328 0.73725490196078436 0.74117647058823533 0.74509803921568629 0.74901960784313726 0.75294117647058822 0.75686274509803919 0.76078431372549016 0.76470588235294112 0.7686274509803922 0.77254901960784317 0.77647058823529413 0.7803921568627451 0.78431372549019607 0.78823529411764703 0.792156862745098 0.79607843137254897 0.80000000000000004 0.80392156862745101 0.80784313725490198 0.81176470588235294 0.81568627450980391 0.81960784313725488 0.82352941176470584 0.82745098039215681 0.83137254901960789 0.83529411764705885 0.83921568627450982 0.84313725490196079 0.84705882352941175 0.85098039215686272 0.85490196078431369 0.85882352941176465 0.86274509803921573 0.8666666666666667 0.87058823529411766 0.87450980392156863 0.8784313725490196 0.88235294117647056 0.88627450980392153 0.8901960784313725 0.89411764705882357 0.89803921568627454 0.90196078431372551 0.90588235294117647 0.90980392156862744 0.9137254901960784 0.91764705882352937 0.92156862745098034 0.92549019607843142 0.92941176470588238 0.93333333333333335 0.93725490196078431 0.94117647058823528 0.94509803921568625 0.94901960784313721 0.95294117647058818 0.95686274509803926 0.96078431372549022 0.96470588235294119 0.96862745098039216 0.97254901960784312 0.97647058823529409 0.98039215686274506 0.98431372549019602 0.9882352941176471 0.99215686274509807 0.99607843137254903 1))) +(GimpDeviceInfo "ELAN0001:00 04F3:3140 Touchpad" + (icon-name "gimp-cursor") + (name "ELAN0001:00 04F3:3140 Touchpad") + (tool-options "GimpBucketFillOptions" + (tool "gimp-bucket-fill-tool") + (foreground (color-rgb 0.1803921568627451 0.20392156862745098 0.25098039215686274)) + (pattern "Pine") + (brush-size 51) + (brush-hardness 0.5)) + (use-fg-bg yes) + (use-opacity-paint-mode no) + (use-brush no) + (use-dynamics no) + (use-mypaint-brush no) + (use-gradient no) + (use-pattern yes) (use-palette no) (use-font no) (mode disabled) @@ -98,6 +129,99 @@ (point-types 0) (n-samples 256) (samples 256 0 0.0039215686274509803 0.0078431372549019607 0.011764705882352941 0.015686274509803921 0.019607843137254902 0.023529411764705882 0.027450980392156862 0.031372549019607843 0.035294117647058823 0.039215686274509803 0.043137254901960784 0.047058823529411764 0.050980392156862744 0.054901960784313725 0.058823529411764705 0.062745098039215685 0.066666666666666666 0.070588235294117646 0.074509803921568626 0.078431372549019607 0.082352941176470587 0.086274509803921567 0.090196078431372548 0.094117647058823528 0.098039215686274508 0.10196078431372549 0.10588235294117647 0.10980392156862745 0.11372549019607843 0.11764705882352941 0.12156862745098039 0.12549019607843137 0.12941176470588237 0.13333333333333333 0.13725490196078433 0.14117647058823529 0.14509803921568629 0.14901960784313725 0.15294117647058825 0.15686274509803921 0.16078431372549021 0.16470588235294117 0.16862745098039217 0.17254901960784313 0.17647058823529413 0.1803921568627451 0.18431372549019609 0.18823529411764706 0.19215686274509805 0.19607843137254902 0.20000000000000001 0.20392156862745098 0.20784313725490197 0.21176470588235294 0.21568627450980393 0.2196078431372549 0.22352941176470589 0.22745098039215686 0.23137254901960785 0.23529411764705882 0.23921568627450981 0.24313725490196078 0.24705882352941178 0.25098039215686274 0.25490196078431371 0.25882352941176473 0.2627450980392157 0.26666666666666666 0.27058823529411763 0.27450980392156865 0.27843137254901962 0.28235294117647058 0.28627450980392155 0.29019607843137257 0.29411764705882354 0.29803921568627451 0.30196078431372547 0.30588235294117649 0.30980392156862746 0.31372549019607843 0.31764705882352939 0.32156862745098042 0.32549019607843138 0.32941176470588235 0.33333333333333331 0.33725490196078434 0.3411764705882353 0.34509803921568627 0.34901960784313724 0.35294117647058826 0.35686274509803922 0.36078431372549019 0.36470588235294116 0.36862745098039218 0.37254901960784315 0.37647058823529411 0.38039215686274508 0.3843137254901961 0.38823529411764707 0.39215686274509803 0.396078431372549 0.40000000000000002 0.40392156862745099 0.40784313725490196 0.41176470588235292 0.41568627450980394 0.41960784313725491 0.42352941176470588 0.42745098039215684 0.43137254901960786 0.43529411764705883 0.4392156862745098 0.44313725490196076 0.44705882352941179 0.45098039215686275 0.45490196078431372 0.45882352941176469 0.46274509803921571 0.46666666666666667 0.47058823529411764 0.47450980392156861 0.47843137254901963 0.4823529411764706 0.48627450980392156 0.49019607843137253 0.49411764705882355 0.49803921568627452 0.50196078431372548 0.50588235294117645 0.50980392156862742 0.51372549019607838 0.51764705882352946 0.52156862745098043 0.52549019607843139 0.52941176470588236 0.53333333333333333 0.53725490196078429 0.54117647058823526 0.54509803921568623 0.5490196078431373 0.55294117647058827 0.55686274509803924 0.5607843137254902 0.56470588235294117 0.56862745098039214 0.5725490196078431 0.57647058823529407 0.58039215686274515 0.58431372549019611 0.58823529411764708 0.59215686274509804 0.59607843137254901 0.59999999999999998 0.60392156862745094 0.60784313725490191 0.61176470588235299 0.61568627450980395 0.61960784313725492 0.62352941176470589 0.62745098039215685 0.63137254901960782 0.63529411764705879 0.63921568627450975 0.64313725490196083 0.6470588235294118 0.65098039215686276 0.65490196078431373 0.6588235294117647 0.66274509803921566 0.66666666666666663 0.6705882352941176 0.67450980392156867 0.67843137254901964 0.68235294117647061 0.68627450980392157 0.69019607843137254 0.69411764705882351 0.69803921568627447 0.70196078431372544 0.70588235294117652 0.70980392156862748 0.71372549019607845 0.71764705882352942 0.72156862745098038 0.72549019607843135 0.72941176470588232 0.73333333333333328 0.73725490196078436 0.74117647058823533 0.74509803921568629 0.74901960784313726 0.75294117647058822 0.75686274509803919 0.76078431372549016 0.76470588235294112 0.7686274509803922 0.77254901960784317 0.77647058823529413 0.7803921568627451 0.78431372549019607 0.78823529411764703 0.792156862745098 0.79607843137254897 0.80000000000000004 0.80392156862745101 0.80784313725490198 0.81176470588235294 0.81568627450980391 0.81960784313725488 0.82352941176470584 0.82745098039215681 0.83137254901960789 0.83529411764705885 0.83921568627450982 0.84313725490196079 0.84705882352941175 0.85098039215686272 0.85490196078431369 0.85882352941176465 0.86274509803921573 0.8666666666666667 0.87058823529411766 0.87450980392156863 0.8784313725490196 0.88235294117647056 0.88627450980392153 0.8901960784313725 0.89411764705882357 0.89803921568627454 0.90196078431372551 0.90588235294117647 0.90980392156862744 0.9137254901960784 0.91764705882352937 0.92156862745098034 0.92549019607843142 0.92941176470588238 0.93333333333333335 0.93725490196078431 0.94117647058823528 0.94509803921568625 0.94901960784313721 0.95294117647058818 0.95686274509803926 0.96078431372549022 0.96470588235294119 0.96862745098039216 0.97254901960784312 0.97647058823529409 0.98039215686274506 0.98431372549019602 0.9882352941176471 0.99215686274509807 0.99607843137254903 1))) +(GimpDeviceInfo "Virtual core XTEST pointer" + (icon-name "gimp-cursor") + (name "Virtual core XTEST pointer") + (tool-options "GimpCropOptions" + (tool "gimp-crop-tool") + (pattern "Pine")) + (use-fg-bg no) + (use-opacity-paint-mode no) + (use-brush no) + (use-dynamics no) + (use-mypaint-brush no) + (use-gradient no) + (use-pattern no) + (use-palette no) + (use-font no) + (mode disabled) + (axes 2 x y) + (keys 0) + (pressure-curve + (curve-type smooth) + (points 4 0 0 1 1) + (point-types 2 smooth smooth) + (n-samples 256) + (samples 256 0 0.0039220000000000001 0.0078429999999999993 0.011764999999999999 0.015685999999999999 0.019608 0.023529000000000001 0.027451 0.031372999999999998 0.035293999999999999 0.039216000000000001 0.043137000000000002 0.047058999999999997 0.050979999999999998 0.054901999999999999 0.058824000000000001 0.062744999999999995 0.066667000000000004 0.070587999999999998 0.074510000000000007 0.078431000000000001 0.082352999999999996 0.086275000000000004 0.090195999999999998 0.094117999999999993 0.098039000000000001 0.101961 0.105882 0.109804 0.11372500000000001 0.117647 0.121569 0.12548999999999999 0.129412 0.13333300000000001 0.13725499999999999 0.141176 0.145098 0.14902000000000001 0.15294099999999999 0.156863 0.16078400000000001 0.16470599999999999 0.168627 0.17254900000000001 0.17647099999999999 0.180392 0.18431400000000001 0.18823500000000001 0.19215699999999999 0.196078 0.20000000000000001 0.20392199999999999 0.207843 0.21176500000000001 0.21568599999999999 0.219608 0.22352900000000001 0.22745099999999999 0.231373 0.235294 0.23921600000000001 0.24313699999999999 0.247059 0.25097999999999998 0.25490200000000002 0.258824 0.26274500000000001 0.26666699999999999 0.270588 0.27450999999999998 0.27843099999999998 0.28235300000000002 0.286275 0.29019600000000001 0.29411799999999999 0.298039 0.30196099999999998 0.30588199999999999 0.30980400000000002 0.31372499999999998 0.31764700000000001 0.32156899999999999 0.32549 0.32941199999999998 0.33333299999999999 0.33725500000000003 0.34117599999999998 0.34509800000000002 0.34902 0.352941 0.35686299999999999 0.36078399999999999 0.36470599999999997 0.36862699999999998 0.37254900000000002 0.376471 0.38039200000000001 0.38431399999999999 0.388235 0.39215699999999998 0.39607799999999999 0.40000000000000002 0.403922 0.40784300000000001 0.41176499999999999 0.415686 0.41960799999999998 0.42352899999999999 0.42745100000000003 0.43137300000000001 0.43529400000000001 0.439216 0.443137 0.44705899999999998 0.45097999999999999 0.45490199999999997 0.45882400000000001 0.46274500000000002 0.466667 0.47058800000000001 0.47450999999999999 0.478431 0.48235299999999998 0.48627500000000001 0.49019600000000002 0.494118 0.49803900000000001 0.50196099999999999 0.50588200000000005 0.50980400000000003 0.51372499999999999 0.51764699999999997 0.52156899999999995 0.52549000000000001 0.52941199999999999 0.53333299999999995 0.53725500000000004 0.54117599999999999 0.54509799999999997 0.54901999999999995 0.55294100000000002 0.556863 0.56078399999999995 0.56470600000000004 0.56862699999999999 0.57254899999999997 0.57647099999999996 0.58039200000000002 0.584314 0.58823499999999995 0.59215700000000004 0.596078 0.59999999999999998 0.60392199999999996 0.60784300000000002 0.611765 0.61568599999999996 0.61960800000000005 0.623529 0.62745099999999998 0.63137299999999996 0.63529400000000003 0.63921600000000001 0.64313699999999996 0.64705900000000005 0.65098 0.65490199999999998 0.65882399999999997 0.66274500000000003 0.66666700000000001 0.67058799999999996 0.67451000000000005 0.67843100000000001 0.68235299999999999 0.68627499999999997 0.69019600000000003 0.69411800000000001 0.69803899999999997 0.70196099999999995 0.70588200000000001 0.70980399999999999 0.71372500000000005 0.71764700000000003 0.72156900000000002 0.72548999999999997 0.72941199999999995 0.73333300000000001 0.73725499999999999 0.74117599999999995 0.74509800000000004 0.74902000000000002 0.75294099999999997 0.75686299999999995 0.76078400000000002 0.764706 0.76862699999999995 0.77254900000000004 0.77647100000000002 0.78039199999999997 0.78431399999999996 0.78823500000000002 0.792157 0.79607799999999995 0.80000000000000004 0.80392200000000003 0.80784299999999998 0.81176499999999996 0.81568600000000002 0.819608 0.82352899999999996 0.82745100000000005 0.83137300000000003 0.83529399999999998 0.83921599999999996 0.84313700000000003 0.84705900000000001 0.85097999999999996 0.85490200000000005 0.85882400000000003 0.86274499999999998 0.86666699999999997 0.87058800000000003 0.87451000000000001 0.87843099999999996 0.88235300000000005 0.88627500000000003 0.89019599999999999 0.89411799999999997 0.89803900000000003 0.90196100000000001 0.90588199999999997 0.90980399999999995 0.91372500000000001 0.91764699999999999 0.92156899999999997 0.92549000000000003 0.92941200000000002 0.93333299999999997 0.93725499999999995 0.94117600000000001 0.94509799999999999 0.94901999999999997 0.95294100000000004 0.95686300000000002 0.96078399999999997 0.96470599999999995 0.96862700000000002 0.972549 0.97647099999999998 0.98039200000000004 0.98431400000000002 0.98823499999999997 0.99215699999999996 0.99607800000000002 1))) +(GimpDeviceInfo "ckb1: CORSAIR K68 RGB Mechanical Gaming Keyboard vM" + (name "ckb1: CORSAIR K68 RGB Mechanical Gaming Keyboard vM") + (tool-options "GimpRectangleSelectOptions" + (tool "gimp-rect-select-tool") + (corner-radius 46.200000000000003)) + (use-fg-bg no) + (use-opacity-paint-mode no) + (use-brush no) + (use-dynamics no) + (use-mypaint-brush no) + (use-gradient no) + (use-pattern no) + (use-palette no) + (use-font no) + (mode disabled) + (axes 4 x y pressure xtilt) + (keys 0) + (pressure-curve + (curve-type smooth) + (points 0) + (point-types 0) + (n-samples 256) + (samples 256 0 0.0039215686274509803 0.0078431372549019607 0.011764705882352941 0.015686274509803921 0.019607843137254902 0.023529411764705882 0.027450980392156862 0.031372549019607843 0.035294117647058823 0.039215686274509803 0.043137254901960784 0.047058823529411764 0.050980392156862744 0.054901960784313725 0.058823529411764705 0.062745098039215685 0.066666666666666666 0.070588235294117646 0.074509803921568626 0.078431372549019607 0.082352941176470587 0.086274509803921567 0.090196078431372548 0.094117647058823528 0.098039215686274508 0.10196078431372549 0.10588235294117647 0.10980392156862745 0.11372549019607843 0.11764705882352941 0.12156862745098039 0.12549019607843137 0.12941176470588237 0.13333333333333333 0.13725490196078433 0.14117647058823529 0.14509803921568629 0.14901960784313725 0.15294117647058825 0.15686274509803921 0.16078431372549021 0.16470588235294117 0.16862745098039217 0.17254901960784313 0.17647058823529413 0.1803921568627451 0.18431372549019609 0.18823529411764706 0.19215686274509805 0.19607843137254902 0.20000000000000001 0.20392156862745098 0.20784313725490197 0.21176470588235294 0.21568627450980393 0.2196078431372549 0.22352941176470589 0.22745098039215686 0.23137254901960785 0.23529411764705882 0.23921568627450981 0.24313725490196078 0.24705882352941178 0.25098039215686274 0.25490196078431371 0.25882352941176473 0.2627450980392157 0.26666666666666666 0.27058823529411763 0.27450980392156865 0.27843137254901962 0.28235294117647058 0.28627450980392155 0.29019607843137257 0.29411764705882354 0.29803921568627451 0.30196078431372547 0.30588235294117649 0.30980392156862746 0.31372549019607843 0.31764705882352939 0.32156862745098042 0.32549019607843138 0.32941176470588235 0.33333333333333331 0.33725490196078434 0.3411764705882353 0.34509803921568627 0.34901960784313724 0.35294117647058826 0.35686274509803922 0.36078431372549019 0.36470588235294116 0.36862745098039218 0.37254901960784315 0.37647058823529411 0.38039215686274508 0.3843137254901961 0.38823529411764707 0.39215686274509803 0.396078431372549 0.40000000000000002 0.40392156862745099 0.40784313725490196 0.41176470588235292 0.41568627450980394 0.41960784313725491 0.42352941176470588 0.42745098039215684 0.43137254901960786 0.43529411764705883 0.4392156862745098 0.44313725490196076 0.44705882352941179 0.45098039215686275 0.45490196078431372 0.45882352941176469 0.46274509803921571 0.46666666666666667 0.47058823529411764 0.47450980392156861 0.47843137254901963 0.4823529411764706 0.48627450980392156 0.49019607843137253 0.49411764705882355 0.49803921568627452 0.50196078431372548 0.50588235294117645 0.50980392156862742 0.51372549019607838 0.51764705882352946 0.52156862745098043 0.52549019607843139 0.52941176470588236 0.53333333333333333 0.53725490196078429 0.54117647058823526 0.54509803921568623 0.5490196078431373 0.55294117647058827 0.55686274509803924 0.5607843137254902 0.56470588235294117 0.56862745098039214 0.5725490196078431 0.57647058823529407 0.58039215686274515 0.58431372549019611 0.58823529411764708 0.59215686274509804 0.59607843137254901 0.59999999999999998 0.60392156862745094 0.60784313725490191 0.61176470588235299 0.61568627450980395 0.61960784313725492 0.62352941176470589 0.62745098039215685 0.63137254901960782 0.63529411764705879 0.63921568627450975 0.64313725490196083 0.6470588235294118 0.65098039215686276 0.65490196078431373 0.6588235294117647 0.66274509803921566 0.66666666666666663 0.6705882352941176 0.67450980392156867 0.67843137254901964 0.68235294117647061 0.68627450980392157 0.69019607843137254 0.69411764705882351 0.69803921568627447 0.70196078431372544 0.70588235294117652 0.70980392156862748 0.71372549019607845 0.71764705882352942 0.72156862745098038 0.72549019607843135 0.72941176470588232 0.73333333333333328 0.73725490196078436 0.74117647058823533 0.74509803921568629 0.74901960784313726 0.75294117647058822 0.75686274509803919 0.76078431372549016 0.76470588235294112 0.7686274509803922 0.77254901960784317 0.77647058823529413 0.7803921568627451 0.78431372549019607 0.78823529411764703 0.792156862745098 0.79607843137254897 0.80000000000000004 0.80392156862745101 0.80784313725490198 0.81176470588235294 0.81568627450980391 0.81960784313725488 0.82352941176470584 0.82745098039215681 0.83137254901960789 0.83529411764705885 0.83921568627450982 0.84313725490196079 0.84705882352941175 0.85098039215686272 0.85490196078431369 0.85882352941176465 0.86274509803921573 0.8666666666666667 0.87058823529411766 0.87450980392156863 0.8784313725490196 0.88235294117647056 0.88627450980392153 0.8901960784313725 0.89411764705882357 0.89803921568627454 0.90196078431372551 0.90588235294117647 0.90980392156862744 0.9137254901960784 0.91764705882352937 0.92156862745098034 0.92549019607843142 0.92941176470588238 0.93333333333333335 0.93725490196078431 0.94117647058823528 0.94509803921568625 0.94901960784313721 0.95294117647058818 0.95686274509803926 0.96078431372549022 0.96470588235294119 0.96862745098039216 0.97254901960784312 0.97647058823529409 0.98039215686274506 0.98431372549019602 0.9882352941176471 0.99215686274509807 0.99607843137254903 1))) +(GimpDeviceInfo "Logitech G203 Prodigy Gaming Mouse" + (icon-name "gimp-cursor") + (name "Logitech G203 Prodigy Gaming Mouse") + (tool-options "GimpMoveOptions" + (tool "gimp-move-tool")) + (use-fg-bg no) + (use-opacity-paint-mode no) + (use-brush no) + (use-dynamics no) + (use-mypaint-brush no) + (use-gradient no) + (use-pattern no) + (use-palette no) + (use-font no) + (mode disabled) + (axes 4 x y pressure xtilt) + (keys 0) + (pressure-curve + (curve-type smooth) + (points 0) + (point-types 0) + (n-samples 256) + (samples 256 0 0.0039215686274509803 0.0078431372549019607 0.011764705882352941 0.015686274509803921 0.019607843137254902 0.023529411764705882 0.027450980392156862 0.031372549019607843 0.035294117647058823 0.039215686274509803 0.043137254901960784 0.047058823529411764 0.050980392156862744 0.054901960784313725 0.058823529411764705 0.062745098039215685 0.066666666666666666 0.070588235294117646 0.074509803921568626 0.078431372549019607 0.082352941176470587 0.086274509803921567 0.090196078431372548 0.094117647058823528 0.098039215686274508 0.10196078431372549 0.10588235294117647 0.10980392156862745 0.11372549019607843 0.11764705882352941 0.12156862745098039 0.12549019607843137 0.12941176470588237 0.13333333333333333 0.13725490196078433 0.14117647058823529 0.14509803921568629 0.14901960784313725 0.15294117647058825 0.15686274509803921 0.16078431372549021 0.16470588235294117 0.16862745098039217 0.17254901960784313 0.17647058823529413 0.1803921568627451 0.18431372549019609 0.18823529411764706 0.19215686274509805 0.19607843137254902 0.20000000000000001 0.20392156862745098 0.20784313725490197 0.21176470588235294 0.21568627450980393 0.2196078431372549 0.22352941176470589 0.22745098039215686 0.23137254901960785 0.23529411764705882 0.23921568627450981 0.24313725490196078 0.24705882352941178 0.25098039215686274 0.25490196078431371 0.25882352941176473 0.2627450980392157 0.26666666666666666 0.27058823529411763 0.27450980392156865 0.27843137254901962 0.28235294117647058 0.28627450980392155 0.29019607843137257 0.29411764705882354 0.29803921568627451 0.30196078431372547 0.30588235294117649 0.30980392156862746 0.31372549019607843 0.31764705882352939 0.32156862745098042 0.32549019607843138 0.32941176470588235 0.33333333333333331 0.33725490196078434 0.3411764705882353 0.34509803921568627 0.34901960784313724 0.35294117647058826 0.35686274509803922 0.36078431372549019 0.36470588235294116 0.36862745098039218 0.37254901960784315 0.37647058823529411 0.38039215686274508 0.3843137254901961 0.38823529411764707 0.39215686274509803 0.396078431372549 0.40000000000000002 0.40392156862745099 0.40784313725490196 0.41176470588235292 0.41568627450980394 0.41960784313725491 0.42352941176470588 0.42745098039215684 0.43137254901960786 0.43529411764705883 0.4392156862745098 0.44313725490196076 0.44705882352941179 0.45098039215686275 0.45490196078431372 0.45882352941176469 0.46274509803921571 0.46666666666666667 0.47058823529411764 0.47450980392156861 0.47843137254901963 0.4823529411764706 0.48627450980392156 0.49019607843137253 0.49411764705882355 0.49803921568627452 0.50196078431372548 0.50588235294117645 0.50980392156862742 0.51372549019607838 0.51764705882352946 0.52156862745098043 0.52549019607843139 0.52941176470588236 0.53333333333333333 0.53725490196078429 0.54117647058823526 0.54509803921568623 0.5490196078431373 0.55294117647058827 0.55686274509803924 0.5607843137254902 0.56470588235294117 0.56862745098039214 0.5725490196078431 0.57647058823529407 0.58039215686274515 0.58431372549019611 0.58823529411764708 0.59215686274509804 0.59607843137254901 0.59999999999999998 0.60392156862745094 0.60784313725490191 0.61176470588235299 0.61568627450980395 0.61960784313725492 0.62352941176470589 0.62745098039215685 0.63137254901960782 0.63529411764705879 0.63921568627450975 0.64313725490196083 0.6470588235294118 0.65098039215686276 0.65490196078431373 0.6588235294117647 0.66274509803921566 0.66666666666666663 0.6705882352941176 0.67450980392156867 0.67843137254901964 0.68235294117647061 0.68627450980392157 0.69019607843137254 0.69411764705882351 0.69803921568627447 0.70196078431372544 0.70588235294117652 0.70980392156862748 0.71372549019607845 0.71764705882352942 0.72156862745098038 0.72549019607843135 0.72941176470588232 0.73333333333333328 0.73725490196078436 0.74117647058823533 0.74509803921568629 0.74901960784313726 0.75294117647058822 0.75686274509803919 0.76078431372549016 0.76470588235294112 0.7686274509803922 0.77254901960784317 0.77647058823529413 0.7803921568627451 0.78431372549019607 0.78823529411764703 0.792156862745098 0.79607843137254897 0.80000000000000004 0.80392156862745101 0.80784313725490198 0.81176470588235294 0.81568627450980391 0.81960784313725488 0.82352941176470584 0.82745098039215681 0.83137254901960789 0.83529411764705885 0.83921568627450982 0.84313725490196079 0.84705882352941175 0.85098039215686272 0.85490196078431369 0.85882352941176465 0.86274509803921573 0.8666666666666667 0.87058823529411766 0.87450980392156863 0.8784313725490196 0.88235294117647056 0.88627450980392153 0.8901960784313725 0.89411764705882357 0.89803921568627454 0.90196078431372551 0.90588235294117647 0.90980392156862744 0.9137254901960784 0.91764705882352937 0.92156862745098034 0.92549019607843142 0.92941176470588238 0.93333333333333335 0.93725490196078431 0.94117647058823528 0.94509803921568625 0.94901960784313721 0.95294117647058818 0.95686274509803926 0.96078431372549022 0.96470588235294119 0.96862745098039216 0.97254901960784312 0.97647058823529409 0.98039215686274506 0.98431372549019602 0.9882352941176471 0.99215686274509807 0.99607843137254903 1))) +(GimpDeviceInfo "Logitech G203 Prodigy Gaming Mouse Consumer Control" + (icon-name "gimp-cursor") + (name "Logitech G203 Prodigy Gaming Mouse Consumer Control") + (tool-options "GimpMoveOptions" + (tool "gimp-move-tool")) + (use-fg-bg no) + (use-opacity-paint-mode no) + (use-brush no) + (use-dynamics no) + (use-mypaint-brush no) + (use-gradient no) + (use-pattern no) + (use-palette no) + (use-font no) + (mode disabled) + (axes 4 x y pressure xtilt) + (keys 0) + (pressure-curve + (curve-type smooth) + (points 0) + (point-types 0) + (n-samples 256) + (samples 256 0 0.0039215686274509803 0.0078431372549019607 0.011764705882352941 0.015686274509803921 0.019607843137254902 0.023529411764705882 0.027450980392156862 0.031372549019607843 0.035294117647058823 0.039215686274509803 0.043137254901960784 0.047058823529411764 0.050980392156862744 0.054901960784313725 0.058823529411764705 0.062745098039215685 0.066666666666666666 0.070588235294117646 0.074509803921568626 0.078431372549019607 0.082352941176470587 0.086274509803921567 0.090196078431372548 0.094117647058823528 0.098039215686274508 0.10196078431372549 0.10588235294117647 0.10980392156862745 0.11372549019607843 0.11764705882352941 0.12156862745098039 0.12549019607843137 0.12941176470588237 0.13333333333333333 0.13725490196078433 0.14117647058823529 0.14509803921568629 0.14901960784313725 0.15294117647058825 0.15686274509803921 0.16078431372549021 0.16470588235294117 0.16862745098039217 0.17254901960784313 0.17647058823529413 0.1803921568627451 0.18431372549019609 0.18823529411764706 0.19215686274509805 0.19607843137254902 0.20000000000000001 0.20392156862745098 0.20784313725490197 0.21176470588235294 0.21568627450980393 0.2196078431372549 0.22352941176470589 0.22745098039215686 0.23137254901960785 0.23529411764705882 0.23921568627450981 0.24313725490196078 0.24705882352941178 0.25098039215686274 0.25490196078431371 0.25882352941176473 0.2627450980392157 0.26666666666666666 0.27058823529411763 0.27450980392156865 0.27843137254901962 0.28235294117647058 0.28627450980392155 0.29019607843137257 0.29411764705882354 0.29803921568627451 0.30196078431372547 0.30588235294117649 0.30980392156862746 0.31372549019607843 0.31764705882352939 0.32156862745098042 0.32549019607843138 0.32941176470588235 0.33333333333333331 0.33725490196078434 0.3411764705882353 0.34509803921568627 0.34901960784313724 0.35294117647058826 0.35686274509803922 0.36078431372549019 0.36470588235294116 0.36862745098039218 0.37254901960784315 0.37647058823529411 0.38039215686274508 0.3843137254901961 0.38823529411764707 0.39215686274509803 0.396078431372549 0.40000000000000002 0.40392156862745099 0.40784313725490196 0.41176470588235292 0.41568627450980394 0.41960784313725491 0.42352941176470588 0.42745098039215684 0.43137254901960786 0.43529411764705883 0.4392156862745098 0.44313725490196076 0.44705882352941179 0.45098039215686275 0.45490196078431372 0.45882352941176469 0.46274509803921571 0.46666666666666667 0.47058823529411764 0.47450980392156861 0.47843137254901963 0.4823529411764706 0.48627450980392156 0.49019607843137253 0.49411764705882355 0.49803921568627452 0.50196078431372548 0.50588235294117645 0.50980392156862742 0.51372549019607838 0.51764705882352946 0.52156862745098043 0.52549019607843139 0.52941176470588236 0.53333333333333333 0.53725490196078429 0.54117647058823526 0.54509803921568623 0.5490196078431373 0.55294117647058827 0.55686274509803924 0.5607843137254902 0.56470588235294117 0.56862745098039214 0.5725490196078431 0.57647058823529407 0.58039215686274515 0.58431372549019611 0.58823529411764708 0.59215686274509804 0.59607843137254901 0.59999999999999998 0.60392156862745094 0.60784313725490191 0.61176470588235299 0.61568627450980395 0.61960784313725492 0.62352941176470589 0.62745098039215685 0.63137254901960782 0.63529411764705879 0.63921568627450975 0.64313725490196083 0.6470588235294118 0.65098039215686276 0.65490196078431373 0.6588235294117647 0.66274509803921566 0.66666666666666663 0.6705882352941176 0.67450980392156867 0.67843137254901964 0.68235294117647061 0.68627450980392157 0.69019607843137254 0.69411764705882351 0.69803921568627447 0.70196078431372544 0.70588235294117652 0.70980392156862748 0.71372549019607845 0.71764705882352942 0.72156862745098038 0.72549019607843135 0.72941176470588232 0.73333333333333328 0.73725490196078436 0.74117647058823533 0.74509803921568629 0.74901960784313726 0.75294117647058822 0.75686274509803919 0.76078431372549016 0.76470588235294112 0.7686274509803922 0.77254901960784317 0.77647058823529413 0.7803921568627451 0.78431372549019607 0.78823529411764703 0.792156862745098 0.79607843137254897 0.80000000000000004 0.80392156862745101 0.80784313725490198 0.81176470588235294 0.81568627450980391 0.81960784313725488 0.82352941176470584 0.82745098039215681 0.83137254901960789 0.83529411764705885 0.83921568627450982 0.84313725490196079 0.84705882352941175 0.85098039215686272 0.85490196078431369 0.85882352941176465 0.86274509803921573 0.8666666666666667 0.87058823529411766 0.87450980392156863 0.8784313725490196 0.88235294117647056 0.88627450980392153 0.8901960784313725 0.89411764705882357 0.89803921568627454 0.90196078431372551 0.90588235294117647 0.90980392156862744 0.9137254901960784 0.91764705882352937 0.92156862745098034 0.92549019607843142 0.92941176470588238 0.93333333333333335 0.93725490196078431 0.94117647058823528 0.94509803921568625 0.94901960784313721 0.95294117647058818 0.95686274509803926 0.96078431372549022 0.96470588235294119 0.96862745098039216 0.97254901960784312 0.97647058823529409 0.98039215686274506 0.98431372549019602 0.9882352941176471 0.99215686274509807 0.99607843137254903 1))) (GimpDeviceInfo "MSFT0001:01 04F3:3140 Mouse" (icon-name "gimp-cursor") (name "MSFT0001:01 04F3:3140 Mouse") @@ -146,76 +270,6 @@ (point-types 0) (n-samples 256) (samples 256 0 0.0039215686274509803 0.0078431372549019607 0.011764705882352941 0.015686274509803921 0.019607843137254902 0.023529411764705882 0.027450980392156862 0.031372549019607843 0.035294117647058823 0.039215686274509803 0.043137254901960784 0.047058823529411764 0.050980392156862744 0.054901960784313725 0.058823529411764705 0.062745098039215685 0.066666666666666666 0.070588235294117646 0.074509803921568626 0.078431372549019607 0.082352941176470587 0.086274509803921567 0.090196078431372548 0.094117647058823528 0.098039215686274508 0.10196078431372549 0.10588235294117647 0.10980392156862745 0.11372549019607843 0.11764705882352941 0.12156862745098039 0.12549019607843137 0.12941176470588237 0.13333333333333333 0.13725490196078433 0.14117647058823529 0.14509803921568629 0.14901960784313725 0.15294117647058825 0.15686274509803921 0.16078431372549021 0.16470588235294117 0.16862745098039217 0.17254901960784313 0.17647058823529413 0.1803921568627451 0.18431372549019609 0.18823529411764706 0.19215686274509805 0.19607843137254902 0.20000000000000001 0.20392156862745098 0.20784313725490197 0.21176470588235294 0.21568627450980393 0.2196078431372549 0.22352941176470589 0.22745098039215686 0.23137254901960785 0.23529411764705882 0.23921568627450981 0.24313725490196078 0.24705882352941178 0.25098039215686274 0.25490196078431371 0.25882352941176473 0.2627450980392157 0.26666666666666666 0.27058823529411763 0.27450980392156865 0.27843137254901962 0.28235294117647058 0.28627450980392155 0.29019607843137257 0.29411764705882354 0.29803921568627451 0.30196078431372547 0.30588235294117649 0.30980392156862746 0.31372549019607843 0.31764705882352939 0.32156862745098042 0.32549019607843138 0.32941176470588235 0.33333333333333331 0.33725490196078434 0.3411764705882353 0.34509803921568627 0.34901960784313724 0.35294117647058826 0.35686274509803922 0.36078431372549019 0.36470588235294116 0.36862745098039218 0.37254901960784315 0.37647058823529411 0.38039215686274508 0.3843137254901961 0.38823529411764707 0.39215686274509803 0.396078431372549 0.40000000000000002 0.40392156862745099 0.40784313725490196 0.41176470588235292 0.41568627450980394 0.41960784313725491 0.42352941176470588 0.42745098039215684 0.43137254901960786 0.43529411764705883 0.4392156862745098 0.44313725490196076 0.44705882352941179 0.45098039215686275 0.45490196078431372 0.45882352941176469 0.46274509803921571 0.46666666666666667 0.47058823529411764 0.47450980392156861 0.47843137254901963 0.4823529411764706 0.48627450980392156 0.49019607843137253 0.49411764705882355 0.49803921568627452 0.50196078431372548 0.50588235294117645 0.50980392156862742 0.51372549019607838 0.51764705882352946 0.52156862745098043 0.52549019607843139 0.52941176470588236 0.53333333333333333 0.53725490196078429 0.54117647058823526 0.54509803921568623 0.5490196078431373 0.55294117647058827 0.55686274509803924 0.5607843137254902 0.56470588235294117 0.56862745098039214 0.5725490196078431 0.57647058823529407 0.58039215686274515 0.58431372549019611 0.58823529411764708 0.59215686274509804 0.59607843137254901 0.59999999999999998 0.60392156862745094 0.60784313725490191 0.61176470588235299 0.61568627450980395 0.61960784313725492 0.62352941176470589 0.62745098039215685 0.63137254901960782 0.63529411764705879 0.63921568627450975 0.64313725490196083 0.6470588235294118 0.65098039215686276 0.65490196078431373 0.6588235294117647 0.66274509803921566 0.66666666666666663 0.6705882352941176 0.67450980392156867 0.67843137254901964 0.68235294117647061 0.68627450980392157 0.69019607843137254 0.69411764705882351 0.69803921568627447 0.70196078431372544 0.70588235294117652 0.70980392156862748 0.71372549019607845 0.71764705882352942 0.72156862745098038 0.72549019607843135 0.72941176470588232 0.73333333333333328 0.73725490196078436 0.74117647058823533 0.74509803921568629 0.74901960784313726 0.75294117647058822 0.75686274509803919 0.76078431372549016 0.76470588235294112 0.7686274509803922 0.77254901960784317 0.77647058823529413 0.7803921568627451 0.78431372549019607 0.78823529411764703 0.792156862745098 0.79607843137254897 0.80000000000000004 0.80392156862745101 0.80784313725490198 0.81176470588235294 0.81568627450980391 0.81960784313725488 0.82352941176470584 0.82745098039215681 0.83137254901960789 0.83529411764705885 0.83921568627450982 0.84313725490196079 0.84705882352941175 0.85098039215686272 0.85490196078431369 0.85882352941176465 0.86274509803921573 0.8666666666666667 0.87058823529411766 0.87450980392156863 0.8784313725490196 0.88235294117647056 0.88627450980392153 0.8901960784313725 0.89411764705882357 0.89803921568627454 0.90196078431372551 0.90588235294117647 0.90980392156862744 0.9137254901960784 0.91764705882352937 0.92156862745098034 0.92549019607843142 0.92941176470588238 0.93333333333333335 0.93725490196078431 0.94117647058823528 0.94509803921568625 0.94901960784313721 0.95294117647058818 0.95686274509803926 0.96078431372549022 0.96470588235294119 0.96862745098039216 0.97254901960784312 0.97647058823529409 0.98039215686274506 0.98431372549019602 0.9882352941176471 0.99215686274509807 0.99607843137254903 1))) -(GimpDeviceInfo "Virtual core XTEST pointer" - (icon-name "gimp-cursor") - (name "Virtual core XTEST pointer") - (tool-options "GimpCropOptions" - (tool "gimp-crop-tool") - (pattern "Pine")) - (use-fg-bg no) - (use-opacity-paint-mode no) - (use-brush no) - (use-dynamics no) - (use-mypaint-brush no) - (use-gradient no) - (use-pattern no) - (use-palette no) - (use-font no) - (mode disabled) - (axes 2 x y) - (keys 0) - (pressure-curve - (curve-type smooth) - (points 4 0 0 1 1) - (point-types 2 smooth smooth) - (n-samples 256) - (samples 256 0 0.0039220000000000001 0.0078429999999999993 0.011764999999999999 0.015685999999999999 0.019608 0.023529000000000001 0.027451 0.031372999999999998 0.035293999999999999 0.039216000000000001 0.043137000000000002 0.047058999999999997 0.050979999999999998 0.054901999999999999 0.058824000000000001 0.062744999999999995 0.066667000000000004 0.070587999999999998 0.074510000000000007 0.078431000000000001 0.082352999999999996 0.086275000000000004 0.090195999999999998 0.094117999999999993 0.098039000000000001 0.101961 0.105882 0.109804 0.11372500000000001 0.117647 0.121569 0.12548999999999999 0.129412 0.13333300000000001 0.13725499999999999 0.141176 0.145098 0.14902000000000001 0.15294099999999999 0.156863 0.16078400000000001 0.16470599999999999 0.168627 0.17254900000000001 0.17647099999999999 0.180392 0.18431400000000001 0.18823500000000001 0.19215699999999999 0.196078 0.20000000000000001 0.20392199999999999 0.207843 0.21176500000000001 0.21568599999999999 0.219608 0.22352900000000001 0.22745099999999999 0.231373 0.235294 0.23921600000000001 0.24313699999999999 0.247059 0.25097999999999998 0.25490200000000002 0.258824 0.26274500000000001 0.26666699999999999 0.270588 0.27450999999999998 0.27843099999999998 0.28235300000000002 0.286275 0.29019600000000001 0.29411799999999999 0.298039 0.30196099999999998 0.30588199999999999 0.30980400000000002 0.31372499999999998 0.31764700000000001 0.32156899999999999 0.32549 0.32941199999999998 0.33333299999999999 0.33725500000000003 0.34117599999999998 0.34509800000000002 0.34902 0.352941 0.35686299999999999 0.36078399999999999 0.36470599999999997 0.36862699999999998 0.37254900000000002 0.376471 0.38039200000000001 0.38431399999999999 0.388235 0.39215699999999998 0.39607799999999999 0.40000000000000002 0.403922 0.40784300000000001 0.41176499999999999 0.415686 0.41960799999999998 0.42352899999999999 0.42745100000000003 0.43137300000000001 0.43529400000000001 0.439216 0.443137 0.44705899999999998 0.45097999999999999 0.45490199999999997 0.45882400000000001 0.46274500000000002 0.466667 0.47058800000000001 0.47450999999999999 0.478431 0.48235299999999998 0.48627500000000001 0.49019600000000002 0.494118 0.49803900000000001 0.50196099999999999 0.50588200000000005 0.50980400000000003 0.51372499999999999 0.51764699999999997 0.52156899999999995 0.52549000000000001 0.52941199999999999 0.53333299999999995 0.53725500000000004 0.54117599999999999 0.54509799999999997 0.54901999999999995 0.55294100000000002 0.556863 0.56078399999999995 0.56470600000000004 0.56862699999999999 0.57254899999999997 0.57647099999999996 0.58039200000000002 0.584314 0.58823499999999995 0.59215700000000004 0.596078 0.59999999999999998 0.60392199999999996 0.60784300000000002 0.611765 0.61568599999999996 0.61960800000000005 0.623529 0.62745099999999998 0.63137299999999996 0.63529400000000003 0.63921600000000001 0.64313699999999996 0.64705900000000005 0.65098 0.65490199999999998 0.65882399999999997 0.66274500000000003 0.66666700000000001 0.67058799999999996 0.67451000000000005 0.67843100000000001 0.68235299999999999 0.68627499999999997 0.69019600000000003 0.69411800000000001 0.69803899999999997 0.70196099999999995 0.70588200000000001 0.70980399999999999 0.71372500000000005 0.71764700000000003 0.72156900000000002 0.72548999999999997 0.72941199999999995 0.73333300000000001 0.73725499999999999 0.74117599999999995 0.74509800000000004 0.74902000000000002 0.75294099999999997 0.75686299999999995 0.76078400000000002 0.764706 0.76862699999999995 0.77254900000000004 0.77647100000000002 0.78039199999999997 0.78431399999999996 0.78823500000000002 0.792157 0.79607799999999995 0.80000000000000004 0.80392200000000003 0.80784299999999998 0.81176499999999996 0.81568600000000002 0.819608 0.82352899999999996 0.82745100000000005 0.83137300000000003 0.83529399999999998 0.83921599999999996 0.84313700000000003 0.84705900000000001 0.85097999999999996 0.85490200000000005 0.85882400000000003 0.86274499999999998 0.86666699999999997 0.87058800000000003 0.87451000000000001 0.87843099999999996 0.88235300000000005 0.88627500000000003 0.89019599999999999 0.89411799999999997 0.89803900000000003 0.90196100000000001 0.90588199999999997 0.90980399999999995 0.91372500000000001 0.91764699999999999 0.92156899999999997 0.92549000000000003 0.92941200000000002 0.93333299999999997 0.93725499999999995 0.94117600000000001 0.94509799999999999 0.94901999999999997 0.95294100000000004 0.95686300000000002 0.96078399999999997 0.96470599999999995 0.96862700000000002 0.972549 0.97647099999999998 0.98039200000000004 0.98431400000000002 0.98823499999999997 0.99215699999999996 0.99607800000000002 1))) -(GimpDeviceInfo "Logitech G203 Prodigy Gaming Mouse" - (icon-name "gimp-cursor") - (name "Logitech G203 Prodigy Gaming Mouse") - (tool-options "GimpMoveOptions" - (tool "gimp-move-tool")) - (use-fg-bg no) - (use-opacity-paint-mode no) - (use-brush no) - (use-dynamics no) - (use-mypaint-brush no) - (use-gradient no) - (use-pattern no) - (use-palette no) - (use-font no) - (mode disabled) - (axes 4 x y pressure xtilt) - (keys 0) - (pressure-curve - (curve-type smooth) - (points 0) - (point-types 0) - (n-samples 256) - (samples 256 0 0.0039215686274509803 0.0078431372549019607 0.011764705882352941 0.015686274509803921 0.019607843137254902 0.023529411764705882 0.027450980392156862 0.031372549019607843 0.035294117647058823 0.039215686274509803 0.043137254901960784 0.047058823529411764 0.050980392156862744 0.054901960784313725 0.058823529411764705 0.062745098039215685 0.066666666666666666 0.070588235294117646 0.074509803921568626 0.078431372549019607 0.082352941176470587 0.086274509803921567 0.090196078431372548 0.094117647058823528 0.098039215686274508 0.10196078431372549 0.10588235294117647 0.10980392156862745 0.11372549019607843 0.11764705882352941 0.12156862745098039 0.12549019607843137 0.12941176470588237 0.13333333333333333 0.13725490196078433 0.14117647058823529 0.14509803921568629 0.14901960784313725 0.15294117647058825 0.15686274509803921 0.16078431372549021 0.16470588235294117 0.16862745098039217 0.17254901960784313 0.17647058823529413 0.1803921568627451 0.18431372549019609 0.18823529411764706 0.19215686274509805 0.19607843137254902 0.20000000000000001 0.20392156862745098 0.20784313725490197 0.21176470588235294 0.21568627450980393 0.2196078431372549 0.22352941176470589 0.22745098039215686 0.23137254901960785 0.23529411764705882 0.23921568627450981 0.24313725490196078 0.24705882352941178 0.25098039215686274 0.25490196078431371 0.25882352941176473 0.2627450980392157 0.26666666666666666 0.27058823529411763 0.27450980392156865 0.27843137254901962 0.28235294117647058 0.28627450980392155 0.29019607843137257 0.29411764705882354 0.29803921568627451 0.30196078431372547 0.30588235294117649 0.30980392156862746 0.31372549019607843 0.31764705882352939 0.32156862745098042 0.32549019607843138 0.32941176470588235 0.33333333333333331 0.33725490196078434 0.3411764705882353 0.34509803921568627 0.34901960784313724 0.35294117647058826 0.35686274509803922 0.36078431372549019 0.36470588235294116 0.36862745098039218 0.37254901960784315 0.37647058823529411 0.38039215686274508 0.3843137254901961 0.38823529411764707 0.39215686274509803 0.396078431372549 0.40000000000000002 0.40392156862745099 0.40784313725490196 0.41176470588235292 0.41568627450980394 0.41960784313725491 0.42352941176470588 0.42745098039215684 0.43137254901960786 0.43529411764705883 0.4392156862745098 0.44313725490196076 0.44705882352941179 0.45098039215686275 0.45490196078431372 0.45882352941176469 0.46274509803921571 0.46666666666666667 0.47058823529411764 0.47450980392156861 0.47843137254901963 0.4823529411764706 0.48627450980392156 0.49019607843137253 0.49411764705882355 0.49803921568627452 0.50196078431372548 0.50588235294117645 0.50980392156862742 0.51372549019607838 0.51764705882352946 0.52156862745098043 0.52549019607843139 0.52941176470588236 0.53333333333333333 0.53725490196078429 0.54117647058823526 0.54509803921568623 0.5490196078431373 0.55294117647058827 0.55686274509803924 0.5607843137254902 0.56470588235294117 0.56862745098039214 0.5725490196078431 0.57647058823529407 0.58039215686274515 0.58431372549019611 0.58823529411764708 0.59215686274509804 0.59607843137254901 0.59999999999999998 0.60392156862745094 0.60784313725490191 0.61176470588235299 0.61568627450980395 0.61960784313725492 0.62352941176470589 0.62745098039215685 0.63137254901960782 0.63529411764705879 0.63921568627450975 0.64313725490196083 0.6470588235294118 0.65098039215686276 0.65490196078431373 0.6588235294117647 0.66274509803921566 0.66666666666666663 0.6705882352941176 0.67450980392156867 0.67843137254901964 0.68235294117647061 0.68627450980392157 0.69019607843137254 0.69411764705882351 0.69803921568627447 0.70196078431372544 0.70588235294117652 0.70980392156862748 0.71372549019607845 0.71764705882352942 0.72156862745098038 0.72549019607843135 0.72941176470588232 0.73333333333333328 0.73725490196078436 0.74117647058823533 0.74509803921568629 0.74901960784313726 0.75294117647058822 0.75686274509803919 0.76078431372549016 0.76470588235294112 0.7686274509803922 0.77254901960784317 0.77647058823529413 0.7803921568627451 0.78431372549019607 0.78823529411764703 0.792156862745098 0.79607843137254897 0.80000000000000004 0.80392156862745101 0.80784313725490198 0.81176470588235294 0.81568627450980391 0.81960784313725488 0.82352941176470584 0.82745098039215681 0.83137254901960789 0.83529411764705885 0.83921568627450982 0.84313725490196079 0.84705882352941175 0.85098039215686272 0.85490196078431369 0.85882352941176465 0.86274509803921573 0.8666666666666667 0.87058823529411766 0.87450980392156863 0.8784313725490196 0.88235294117647056 0.88627450980392153 0.8901960784313725 0.89411764705882357 0.89803921568627454 0.90196078431372551 0.90588235294117647 0.90980392156862744 0.9137254901960784 0.91764705882352937 0.92156862745098034 0.92549019607843142 0.92941176470588238 0.93333333333333335 0.93725490196078431 0.94117647058823528 0.94509803921568625 0.94901960784313721 0.95294117647058818 0.95686274509803926 0.96078431372549022 0.96470588235294119 0.96862745098039216 0.97254901960784312 0.97647058823529409 0.98039215686274506 0.98431372549019602 0.9882352941176471 0.99215686274509807 0.99607843137254903 1))) -(GimpDeviceInfo "Logitech G203 Prodigy Gaming Mouse Consumer Control" - (icon-name "gimp-cursor") - (name "Logitech G203 Prodigy Gaming Mouse Consumer Control") - (tool-options "GimpMoveOptions" - (tool "gimp-move-tool")) - (use-fg-bg no) - (use-opacity-paint-mode no) - (use-brush no) - (use-dynamics no) - (use-mypaint-brush no) - (use-gradient no) - (use-pattern no) - (use-palette no) - (use-font no) - (mode disabled) - (axes 4 x y pressure xtilt) - (keys 0) - (pressure-curve - (curve-type smooth) - (points 0) - (point-types 0) - (n-samples 256) - (samples 256 0 0.0039215686274509803 0.0078431372549019607 0.011764705882352941 0.015686274509803921 0.019607843137254902 0.023529411764705882 0.027450980392156862 0.031372549019607843 0.035294117647058823 0.039215686274509803 0.043137254901960784 0.047058823529411764 0.050980392156862744 0.054901960784313725 0.058823529411764705 0.062745098039215685 0.066666666666666666 0.070588235294117646 0.074509803921568626 0.078431372549019607 0.082352941176470587 0.086274509803921567 0.090196078431372548 0.094117647058823528 0.098039215686274508 0.10196078431372549 0.10588235294117647 0.10980392156862745 0.11372549019607843 0.11764705882352941 0.12156862745098039 0.12549019607843137 0.12941176470588237 0.13333333333333333 0.13725490196078433 0.14117647058823529 0.14509803921568629 0.14901960784313725 0.15294117647058825 0.15686274509803921 0.16078431372549021 0.16470588235294117 0.16862745098039217 0.17254901960784313 0.17647058823529413 0.1803921568627451 0.18431372549019609 0.18823529411764706 0.19215686274509805 0.19607843137254902 0.20000000000000001 0.20392156862745098 0.20784313725490197 0.21176470588235294 0.21568627450980393 0.2196078431372549 0.22352941176470589 0.22745098039215686 0.23137254901960785 0.23529411764705882 0.23921568627450981 0.24313725490196078 0.24705882352941178 0.25098039215686274 0.25490196078431371 0.25882352941176473 0.2627450980392157 0.26666666666666666 0.27058823529411763 0.27450980392156865 0.27843137254901962 0.28235294117647058 0.28627450980392155 0.29019607843137257 0.29411764705882354 0.29803921568627451 0.30196078431372547 0.30588235294117649 0.30980392156862746 0.31372549019607843 0.31764705882352939 0.32156862745098042 0.32549019607843138 0.32941176470588235 0.33333333333333331 0.33725490196078434 0.3411764705882353 0.34509803921568627 0.34901960784313724 0.35294117647058826 0.35686274509803922 0.36078431372549019 0.36470588235294116 0.36862745098039218 0.37254901960784315 0.37647058823529411 0.38039215686274508 0.3843137254901961 0.38823529411764707 0.39215686274509803 0.396078431372549 0.40000000000000002 0.40392156862745099 0.40784313725490196 0.41176470588235292 0.41568627450980394 0.41960784313725491 0.42352941176470588 0.42745098039215684 0.43137254901960786 0.43529411764705883 0.4392156862745098 0.44313725490196076 0.44705882352941179 0.45098039215686275 0.45490196078431372 0.45882352941176469 0.46274509803921571 0.46666666666666667 0.47058823529411764 0.47450980392156861 0.47843137254901963 0.4823529411764706 0.48627450980392156 0.49019607843137253 0.49411764705882355 0.49803921568627452 0.50196078431372548 0.50588235294117645 0.50980392156862742 0.51372549019607838 0.51764705882352946 0.52156862745098043 0.52549019607843139 0.52941176470588236 0.53333333333333333 0.53725490196078429 0.54117647058823526 0.54509803921568623 0.5490196078431373 0.55294117647058827 0.55686274509803924 0.5607843137254902 0.56470588235294117 0.56862745098039214 0.5725490196078431 0.57647058823529407 0.58039215686274515 0.58431372549019611 0.58823529411764708 0.59215686274509804 0.59607843137254901 0.59999999999999998 0.60392156862745094 0.60784313725490191 0.61176470588235299 0.61568627450980395 0.61960784313725492 0.62352941176470589 0.62745098039215685 0.63137254901960782 0.63529411764705879 0.63921568627450975 0.64313725490196083 0.6470588235294118 0.65098039215686276 0.65490196078431373 0.6588235294117647 0.66274509803921566 0.66666666666666663 0.6705882352941176 0.67450980392156867 0.67843137254901964 0.68235294117647061 0.68627450980392157 0.69019607843137254 0.69411764705882351 0.69803921568627447 0.70196078431372544 0.70588235294117652 0.70980392156862748 0.71372549019607845 0.71764705882352942 0.72156862745098038 0.72549019607843135 0.72941176470588232 0.73333333333333328 0.73725490196078436 0.74117647058823533 0.74509803921568629 0.74901960784313726 0.75294117647058822 0.75686274509803919 0.76078431372549016 0.76470588235294112 0.7686274509803922 0.77254901960784317 0.77647058823529413 0.7803921568627451 0.78431372549019607 0.78823529411764703 0.792156862745098 0.79607843137254897 0.80000000000000004 0.80392156862745101 0.80784313725490198 0.81176470588235294 0.81568627450980391 0.81960784313725488 0.82352941176470584 0.82745098039215681 0.83137254901960789 0.83529411764705885 0.83921568627450982 0.84313725490196079 0.84705882352941175 0.85098039215686272 0.85490196078431369 0.85882352941176465 0.86274509803921573 0.8666666666666667 0.87058823529411766 0.87450980392156863 0.8784313725490196 0.88235294117647056 0.88627450980392153 0.8901960784313725 0.89411764705882357 0.89803921568627454 0.90196078431372551 0.90588235294117647 0.90980392156862744 0.9137254901960784 0.91764705882352937 0.92156862745098034 0.92549019607843142 0.92941176470588238 0.93333333333333335 0.93725490196078431 0.94117647058823528 0.94509803921568625 0.94901960784313721 0.95294117647058818 0.95686274509803926 0.96078431372549022 0.96470588235294119 0.96862745098039216 0.97254901960784312 0.97647058823529409 0.98039215686274506 0.98431372549019602 0.9882352941176471 0.99215686274509807 0.99607843137254903 1))) (GimpDeviceInfo "SINOWEALTH Game Mouse" (icon-name "gimp-cursor") (name "SINOWEALTH Game Mouse") diff --git a/gimp/.config/GIMP/2.10/menurc b/gimp/.config/GIMP/2.10/menurc index a74c5eb9d..8b61415ab 100755 --- a/gimp/.config/GIMP/2.10/menurc +++ b/gimp/.config/GIMP/2.10/menurc @@ -57,6 +57,7 @@ ; (gtk_accel_path "/plug-in/script-fu-addborder" "") ; (gtk_accel_path "/view/view-display-intent-absolute-colorimetric" "") ; (gtk_accel_path "/filters/filters-focus-blur" "") +; (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" "") @@ -171,8 +172,8 @@ ; (gtk_accel_path "/windows/windows-menu" "") ; (gtk_accel_path "/tools/tools-object-1-first" "") ; (gtk_accel_path "/image/image-flip-horizontal" "") -; (gtk_accel_path "/tools/tools-force-decrease-percent" "") ; (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" "") @@ -311,7 +312,6 @@ ; (gtk_accel_path "/plug-in/plug-in-lic" "") ; (gtk_accel_path "/context/context-background-value-increase" "") ; (gtk_accel_path "/dialogs/dialogs-channels" "") -; (gtk_accel_path "/filters/filters-component-extract" "") ; (gtk_accel_path "/tools/tools-size-maximum" "") ; (gtk_accel_path "/dockable/dialogs-dashboard" "") ; (gtk_accel_path "/vectors/vectors-select-previous" "") @@ -325,8 +325,8 @@ ; (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 "/plug-in/file-gif-save2" "") ; (gtk_accel_path "/drawable/drawable-flip-horizontal" "") ; (gtk_accel_path "/layers/layers-merge-group" "") ; (gtk_accel_path "/file/file-open" "o") @@ -480,7 +480,7 @@ ; (gtk_accel_path "/drawable/drawable-lock-position" "") ; (gtk_accel_path "/context/context-palette-background-first" "") ; (gtk_accel_path "/select/select-grow" "") -; (gtk_accel_path "/filters/filters-invert-linear" "") +; (gtk_accel_path "/dockable/dockable-tab-style-icon" "") ; (gtk_accel_path "/filters/filters-recent-09" "") ; (gtk_accel_path "/help/help-context-help" "F1") ; (gtk_accel_path "/dockable/dialogs-images" "") @@ -500,12 +500,12 @@ ; (gtk_accel_path "/file/file-quit" "q") ; (gtk_accel_path "/context/context-foreground-saturation-decrease" "") ; (gtk_accel_path "/image/image-menubar" "") -; (gtk_accel_path "/dockable/dockable-tab-style-icon" "") ; (gtk_accel_path "/filters/filters-recent-07" "") ; (gtk_accel_path "/plug-in/script-fu-circuit" "") -; (gtk_accel_path "/plug-in/script-fu-make-brush-rectangular" "") -; (gtk_accel_path "/plug-in/script-fu-erase-rows" "") (gtk_accel_path "/tools/tools-ellipse-select" "") +; (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") @@ -747,10 +747,10 @@ ; (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 "/plug-in/plug-in-decompose" "") +; (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 "/vectors/vectors-import" "") +; (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" "") @@ -896,14 +896,14 @@ ; (gtk_accel_path "/dialogs/dialogs-templates" "") ; (gtk_accel_path "/context/context-background-blue-minimum" "") ; (gtk_accel_path "/filters/filters-tile-seamless" "") +; (gtk_accel_path "/filters/filters-lens-flare" "") ; (gtk_accel_path "/filters/filters-red-eye-removal" "") (gtk_accel_path "/quick-mask/quick-mask-invert-off" "q") ; (gtk_accel_path "/layers/layers-resize-to-image" "") -; (gtk_accel_path "/filters/filters-lens-flare" "") +; (gtk_accel_path "/view/view-color-management-softproof" "") ; (gtk_accel_path "/filters/filters-render-fractals-menu" "") ; (gtk_accel_path "/context/context-brush-angle-decrease-skip" "") ; (gtk_accel_path "/plug-in/gimp-help-using-web" "") -; (gtk_accel_path "/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" "") @@ -1119,6 +1119,7 @@ ; (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" "") @@ -1201,6 +1202,7 @@ ; (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" "") @@ -1211,7 +1213,7 @@ ; (gtk_accel_path "/layers/layers-composite-space-rgb-linear" "") ; (gtk_accel_path "/windows/windows-show-display-next" "Tab") ; (gtk_accel_path "/context/context-background-hue-decrease" "") -; (gtk_accel_path "/filters/filters-noise-slur" "") +; (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" "") @@ -1223,6 +1225,7 @@ ; (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" "") diff --git a/gimp/.config/GIMP/2.10/pluginrc b/gimp/.config/GIMP/2.10/pluginrc index 60882ead2..a5affab32 100644 --- a/gimp/.config/GIMP/2.10/pluginrc +++ b/gimp/.config/GIMP/2.10/pluginrc @@ -6,7 +6,39 @@ (protocol-version 26) (file-version 5) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/warp/warp" 1655102016 +(plug-in-def "${gimp_plug_in_dir}/plug-ins/web-browser/web-browser" 1699270928 + (proc-def "plug-in-web-browser" 1 + "Open an URL in the user specified web browser" + "Opens the given URL in the user specified web browser." + "Henrik Brix Andersen " + "2003" + "2003/09/16" + "" + 0 + (icon icon-name -1 "") + "" + 1 0 + (proc-arg 4 "url" "URL to open"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/wavelet-decompose/wavelet-decompose" 1699270928 + (proc-def "plug-in-wavelet-decompose" 1 + "Wavelet decompose" + "Compute and render wavelet scales" + "Miroslav Talasek " + "Miroslav Talasek " + "19january 2017" + "_Wavelet-decompose..." + 1 + (menu-path "/Filters/Enhance") + (icon icon-name -1 "") + "RGB*, GRAY*" + 6 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image (unused)") + (proc-arg 16 "drawable" "Input drawable") + (proc-arg 0 "scales" "Number of scales (1-7)") + (proc-arg 0 "create-group" "Create a layer group to store the decomposition") + (proc-arg 0 "create-masks" "Add a layer mask to each scales layers"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/warp/warp" 1699270928 (proc-def "plug-in-warp" 1 "Twist or smear image in many different ways" "Smears an image along vector paths calculated as the gradient of a separate control matrix. The effect can look like brushstrokes of acrylic or watercolor paint, in some cases." @@ -36,7 +68,53 @@ (proc-arg 0 "vector-map" "Fixed vector control map") (proc-arg 3 "vector-scale" "Scaling factor for fixed vector map (0=don't use)") (proc-arg 3 "vector-angle" "Angle for fixed vector map"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/tile/tile" 1655102016 +(plug-in-def "${gimp_plug_in_dir}/plug-ins/van-gogh-lic/van-gogh-lic" 1699270928 + (proc-def "plug-in-lic" 1 + "Special effects that nobody understands" + "No help yet" + "Tom Bech & Federico Mena Quintero" + "Tom Bech & Federico Mena Quintero" + "Version 0.14, September 24 1997" + "_Van Gogh (LIC)..." + 1 + (menu-path "/Filters/Artistic") + (icon icon-name -1 "") + "RGB*" + 3 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Input drawable"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/unit-editor/unit-editor" 1699270928 + (proc-def "plug-in-unit-editor" 1 + "Create or alter units used in GIMP" + "The GIMP unit editor" + "Michael Natterer " + "Michael Natterer " + "2000" + "U_nits" + 1 + (menu-path "/Edit/Preferences") + (icon icon-name -1 "gimp-tool-measure") + "" + 1 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0) }"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/tile-small/tile-small" 1699270928 + (proc-def "plug-in-small-tiles" 1 + "Tile image into smaller versions of the original" + "More here later" + "Andy Thomas" + "Andy Thomas" + "1997" + "_Small Tiles..." + 0 + (icon icon-name -1 "") + "RGB*, GRAY*" + 4 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image (unused)") + (proc-arg 16 "drawable" "Input drawable") + (proc-arg 0 "num-tiles" "Number of tiles to make"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/tile/tile" 1699270928 (proc-def "plug-in-tile" 1 "Create an array of copies of the image" "This function creates a new image with a single layer sized to the specified 'new_width' and 'new_height' parameters. The specified drawable is tiled into this layer. The new layer will have the same type as the specified drawable and the new image will have a corresponding base type." @@ -57,7 +135,71 @@ (proc-arg 0 "new-image" "Create a new image?") (proc-arg 13 "new-image" "Output image (-1 if new-image == FALSE)") (proc-arg 14 "new-layer" "Output layer (-1 if new-image == FALSE)"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/smooth-palette/smooth-palette" 1655102016 +(plug-in-def "${gimp_plug_in_dir}/plug-ins/sphere-designer/sphere-designer" 1699270928 + (proc-def "plug-in-spheredesigner" 1 + "Create an image of a textured sphere" + "This plug-in can be used to create textured and/or bumpmapped spheres, and uses a small lightweight raytracer to perform the task with good quality" + "Vidar Madsen" + "Vidar Madsen" + "1999" + "Sphere _Designer..." + 1 + (menu-path "/Filters/Render") + (icon icon-name -1 "") + "RGB*, GRAY*" + 3 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image (unused)") + (proc-arg 16 "drawable" "Input drawable"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/sparkle/sparkle" 1699270928 + (proc-def "plug-in-sparkle" 1 + "Turn bright spots into starry sparkles" + "Uses a percentage based luminoisty threhsold to find candidate pixels for adding some sparkles (spikes). " + "John Beale, & (ported to GIMP v0.54) Michael J. Hammel & ted to GIMP v1.0) & Seth Burgess & Spencer Kimball" + "John Beale" + "Version 1.27, September 2003" + "_Sparkle..." + 1 + (menu-path "/Filters/Light and Shadow/Light") + (icon icon-name -1 "") + "RGB*, GRAY*" + 16 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image (unused)") + (proc-arg 16 "drawable" "Input drawable") + (proc-arg 3 "lum-threshold" "Luminosity threshold (0.0 - 1.0)") + (proc-arg 3 "flare-inten" "Flare intensity (0.0 - 1.0)") + (proc-arg 0 "spike-len" "Spike length (in pixels)") + (proc-arg 0 "spike-pts" "# of spike points") + (proc-arg 0 "spike-angle" "Spike angle (0-360 degrees, -1: random)") + (proc-arg 3 "density" "Spike density (0.0 - 1.0)") + (proc-arg 3 "transparency" "Transparency (0.0 - 1.0)") + (proc-arg 3 "random-hue" "Random hue (0.0 - 1.0)") + (proc-arg 3 "random-saturation" "Random saturation (0.0 - 1.0)") + (proc-arg 0 "preserve-luminosity" "Preserve luminosity (TRUE/FALSE)") + (proc-arg 0 "inverse" "Inverse (TRUE/FALSE)") + (proc-arg 0 "border" "Add border (TRUE/FALSE)") + (proc-arg 0 "color-type" "Color of sparkles: { NATURAL (0), FOREGROUND (1), BACKGROUND (2) }"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/softglow/softglow" 1699270928 + (proc-def "plug-in-softglow" 1 + "Simulate glow by making highlights intense and fuzzy" + "Gives an image a softglow effect by intensifying the highlights in the image. This is done by screening a modified version of the drawable with itself. The modified version is desaturated and then a sigmoidal transfer function is applied to force the distribution of intensities into very small and very large only. This desaturated version is then blurred to give it a fuzzy 'vaseline-on-the-lens' effect. The glow radius parameter controls the sharpness of the glow effect. The brightness parameter controls the degree of intensification applied to image highlights. The sharpness parameter controls how defined or alternatively, diffuse, the glow effect should be." + "Spencer Kimball" + "Bit Specialists, Inc." + "2001" + "_Softglow (legacy)..." + 1 + (menu-path "/Filters/Artistic") + (icon icon-name -1 "") + "RGB*, GRAY*" + 6 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image (unused)") + (proc-arg 16 "drawable" "Input drawable") + (proc-arg 3 "glow-radius" "Glow radius (radius in pixels)") + (proc-arg 3 "brightness" "Glow brightness (0.0 - 1.0)") + (proc-arg 3 "sharpness" "Glow sharpness (0.0 - 1.0)"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/smooth-palette/smooth-palette" 1699270928 (proc-def "plug-in-smooth-palette" 1 "Derive a smooth color palette from the image" "help!" @@ -79,7 +221,139 @@ (proc-arg 0 "show-image" "Show Image?") (proc-arg 13 "new-image" "Output image") (proc-arg 14 "new-layer" "Output layer"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/screenshot/screenshot" 1655102016 +(plug-in-def "${gimp_plug_in_dir}/plug-ins/sharpen/sharpen" 1699270928 + (proc-def "plug-in-sharpen" 1 + "Make image sharper (less powerful than Unsharp Mask)" + "This plug-in selectively performs a convolution filter on an image." + "Michael Sweet " + "Copyright 1997-1998 by Michael Sweet" + "1.4.2 - 3 June 1998" + "_Sharpen..." + 0 + (icon icon-name -1 "") + "RGB*, GRAY*" + 4 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Input drawable") + (proc-arg 0 "percent" "Percent sharpening (default = 10)"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/selection-to-path/selection-to-path" 1699270928 + (proc-def "plug-in-sel2path" 1 + "Converts a selection to a path" + "Converts a selection to a path" + "Andy Thomas" + "Andy Thomas" + "1999" + "" + 0 + (icon icon-name -1 "") + "RGB*, INDEXED*, GRAY*" + 3 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Input drawable (unused)")) + (proc-def "plug-in-sel2path-advanced" 1 + "Converts a selection to a path (with advanced user menu)" + "Converts a selection to a path (with advanced user menu)" + "Andy Thomas" + "Andy Thomas" + "1999" + "" + 0 + (icon icon-name -1 "") + "RGB*, INDEXED*, GRAY*" + 23 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Input drawable (unused)") + (proc-arg 3 "align-threshold" "align_threshold") + (proc-arg 3 "corner-always-threshold" "corner_always_threshold") + (proc-arg 2 "corner-surround" "corner_surround") + (proc-arg 3 "corner-threshold" "corner_threshold") + (proc-arg 3 "error-threshold" "error_threshold") + (proc-arg 2 "filter-alternative-surround" "filter_alternative_surround") + (proc-arg 3 "filter-epsilon" "filter_epsilon") + (proc-arg 2 "filter-iteration-count" "filter_iteration_count") + (proc-arg 3 "filter-percent" "filter_percent") + (proc-arg 2 "filter-secondary-surround" "filter_secondary_surround") + (proc-arg 2 "filter-surround" "filter_surround") + (proc-arg 2 "keep-knees" "{1-Yes, 0-No}") + (proc-arg 3 "line-reversion-threshold" "line_reversion_threshold") + (proc-arg 3 "line-threshold" "line_threshold") + (proc-arg 3 "reparameterize-improvement" "reparameterize_improvement") + (proc-arg 3 "reparameterize-threshold" "reparameterize_threshold") + (proc-arg 3 "subdivide-search" "subdivide_search") + (proc-arg 2 "subdivide-surround" "subdivide_surround") + (proc-arg 3 "subdivide-threshold" "subdivide_threshold") + (proc-arg 2 "tangent-surround" "tangent_surround"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/script-fu/script-fu" 1699270928 + (proc-def "extension-script-fu" 2 + "A scheme interpreter for scripting GIMP operations" + "More help here later" + "Spencer Kimball & Peter Mattis" + "Spencer Kimball & Peter Mattis" + "1997" + "" + 0 + (icon icon-name -1 "") + "" + 0 0) + (proc-def "plug-in-script-fu-console" 1 + "Interactive console for Script-Fu development" + "Provides an interface which allows interactive scheme development." + "Spencer Kimball & Peter Mattis" + "Spencer Kimball & Peter Mattis" + "1997" + "_Console" + 1 + (menu-path "/Filters/Languages/Script-Fu") + (icon icon-name -1 "") + "" + 1 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0) }")) + (proc-def "plug-in-script-fu-text-console" 1 + "Provides a text console mode for script-fu development" + "Provides an interface which allows interactive scheme development." + "Spencer Kimball & Peter Mattis" + "Spencer Kimball & Peter Mattis" + "1997" + "" + 0 + (icon icon-name -1 "") + "" + 1 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0) }")) + (proc-def "plug-in-script-fu-server" 1 + "Server for remote Script-Fu operation" + "Provides a server for remote script-fu operation. NOTE that for security reasons this procedure's API was changed in an incompatible way since GIMP 2.8.12. You now have to pass the IP to listen on as first parameter. Calling this procedure with the old API will fail on purpose." + "Spencer Kimball & Peter Mattis" + "Spencer Kimball & Peter Mattis" + "1997" + "_Start Server..." + 1 + (menu-path "/Filters/Languages/Script-Fu") + (icon icon-name -1 "") + "" + 4 0 + (proc-arg 0 "run-mode" "The run mode { RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "ip" "The ip on which to listen for requests") + (proc-arg 0 "port" "The port on which to listen for requests") + (proc-arg 4 "logfile" "The file to log server activity to")) + (proc-def "plug-in-script-fu-eval" 1 + "Evaluate scheme code" + "Evaluate the code under the scheme interpreter (primarily for batch mode)" + "Manish Singh" + "Manish Singh" + "1998" + "" + 0 + (icon icon-name -1 "") + "" + 2 0 + (proc-arg 0 "run-mode" "The run mode { RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "code" "The code to evaluate")) + (locale-def "gimp20-script-fu")) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/screenshot/screenshot" 1699270928 (proc-def "plug-in-screenshot" 1 "Create an image from an area of the screen" "The plug-in takes screenshots of an interactively selected window or of the desktop, either the whole desktop or an interactively selected region. When called non-interactively, it may grab the root window or use the window-id passed as a parameter. The last four parameters are optional and can be used to specify the corners of the region to be grabbed.On Mac OS X or on gnome-shell, when called non-interactively, the plug-inonly can take screenshots of the entire root window.Grabbing a window or a region is not supportednon-interactively. To grab a region or a particularwindow, you need to use the interactive mode." @@ -100,7 +374,63 @@ (proc-arg 0 "x2" "Region right x coord for SHOOT-REGION") (proc-arg 0 "y2" "Region bottom y coord for SHOOT-REGION") (proc-arg 13 "image" "Output image"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/print/print" 1655102016 +(plug-in-def "${gimp_plug_in_dir}/plug-ins/sample-colorize/sample-colorize" 1699270928 + (proc-def "plug-in-sample-colorize" 1 + "Colorize image using a sample image as a guide" + "This plug-in colorizes the contents of the specified (gray) layer with the help of a sample (color) layer. It analyzes all colors in the sample layer. The sample colors are sorted by brightness (== intentisty) and amount and stored in a sample colortable (where brightness is the index) The pixels of the destination layer are remapped with the help of the sample colortable. If use_subcolors is TRUE, the remapping process uses all sample colors of the corresponding brightness-intensity and distributes the subcolors according to their amount in the sample (If the sample has 5 green, 3 yellow, and 1 red pixel of the intensity value 105, the destination pixels at intensity value 105 are randomly painted in green, yellow and red in a relation of 5:3:1 If use_subcolors is FALSE only one sample color per intensity is used. (green will be used in this example) The brightness intensity value is transformed at the remapping process according to the levels: out_lo, out_hi, in_lo, in_high and gamma The in_low / in_high levels specify an initial mapping of the intensity. The gamma value determines how intensities are interpolated between the in_lo and in_high levels. A gamma value of 1.0 results in linear interpolation. Higher gamma values results in more high-level intensities Lower gamma values results in more low-level intensities The out_low/out_high levels constrain the resulting intensity index The intensity index is used to pick the corresponding color in the sample colortable. If hold_inten is FALSE the picked color is used 1:1 as resulting remap_color. If hold_inten is TRUE The brightness of the picked color is adjusted back to the origial intensity value (only hue and saturation are taken from the picked sample color) (or to the input level, if orig_inten is set FALSE) Works on both Grayscale and RGB image with/without alpha channel. (the image with the dst_drawable is converted to RGB if necessary) The sample_drawable should be of type RGB or RGBA" + "Wolfgang Hofer" + "hof@hotbot.com" + "02/2000" + "_Sample Colorize..." + 1 + (menu-path "/Colors/Map") + (icon icon-name -1 "") + "RGB*, GRAY*" + 13 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image (unused)") + (proc-arg 16 "dst-drawable" "The drawable to be colorized (Type GRAY* or RGB*)") + (proc-arg 16 "sample-drawable" "Sample drawable (should be of Type RGB or RGBA)") + (proc-arg 0 "hold-inten" "hold brightness intensity levels (TRUE, FALSE)") + (proc-arg 0 "orig-inten" "TRUE: hold brightness of original intensity levels. FALSE: Hold Intensity of input levels") + (proc-arg 0 "rnd-subcolors" "TRUE: Use all subcolors of same intensity, FALSE: use only one color per intensity") + (proc-arg 0 "guess-missing" "TRUE: guess samplecolors for the missing intensity values FALSE: use only colors found in the sample") + (proc-arg 0 "in-low" "intensity of lowest input (0 <= in_low <= 254)") + (proc-arg 0 "in-high" "intensity of highest input (1 <= in_high <= 255)") + (proc-arg 3 "gamma" "gamma adjustment factor (0.1 <= gamma <= 10) where 1.0 is linear") + (proc-arg 0 "out-low" "lowest sample color intensity (0 <= out_low <= 254)") + (proc-arg 0 "out-high" "highest sample color intensity (1 <= out_high <= 255)"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/qbist/qbist" 1699270928 + (proc-def "plug-in-qbist" 1 + "Generate a huge variety of abstract patterns" + "This Plug-in is based on an article by Jörn Loviscach (appeared in c't 10/95, page 326). It generates modern art pictures from a random genetic formula." + "Jörn Loviscach, Jens Ch. Restemeier" + "Jörn Loviscach, Jens Ch. Restemeier" + "January 2001, 1.12" + "_Qbist..." + 1 + (menu-path "/Filters/Render/Pattern") + (icon icon-name -1 "") + "RGB*" + 3 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image (unused)") + (proc-arg 16 "drawable" "Input drawable"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/procedure-browser/procedure-browser" 1699270928 + (proc-def "plug-in-dbbrowser" 1 + "List available procedures in the PDB" + "" + "Thomas Noel" + "Thomas Noel" + "23th june 1997" + "Procedure _Browser" + 1 + (menu-path "/Help/Programming") + (icon icon-name -1 "") + "" + 1 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0) }"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/print/print" 1699270928 (proc-def "file-print-gtk" 1 "Print the image" "Print the image using the GTK+ Print API." @@ -115,7 +445,62 @@ 2 0 (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0) }") (proc-arg 13 "image" "Image to print"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/nl-filter/nl-filter" 1655102016 +(plug-in-def "${gimp_plug_in_dir}/plug-ins/plugin-browser/plugin-browser" 1699270928 + (proc-def "plug-in-plug-in-details" 1 + "Display information about plug-ins" + "Allows one to browse the plug-in menus system. You can search for plug-in names, sort by name or menu location and you can view a tree representation of the plug-in menus. Can also be of help to find where new plug-ins have installed themselves in the menus." + "Andy Thomas" + "Andy Thomas" + "1999" + "_Plug-in Browser" + 1 + (menu-path "/Help/Programming") + (icon icon-name -1 "gimp-plugin") + "" + 1 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0) }"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/photocopy/photocopy" 1699270928 + (proc-def "plug-in-photocopy" 1 + "Simulate color distortion produced by a copy machine" + "Propagates dark values in an image based on each pixel's relative darkness to a neighboring average. The idea behind this filter is to give the look of a photocopied version of the image, with toner transferred based on the relative darkness of a particular region. This is achieved by darkening areas of the image which are measured to be darker than a neighborhood average and setting other pixels to white. In this way, sufficiently large shifts in intensity are darkened to black. The rate at which they are darkened to black is determined by the second pct_black parameter. The mask_radius parameter controls the size of the pixel neighborhood over which the average intensity is computed and then compared to each pixel in the neighborhood to decide whether or not to darken it to black. Large values for mask_radius result in very thick black areas bordering the regions of white and much less detail for black areas everywhere including inside regions of color. Small values result in less toner overall and more detail everywhere. Small values for the pct_black make the blend from the white regions to the black border lines smoother and the toner regions themselves thinner and less noticeable; larger values achieve the opposite effect." + "Spencer Kimball" + "Bit Specialists, Inc." + "2001" + "_Photocopy (legacy)..." + 1 + (menu-path "/Filters/Artistic") + (icon icon-name -1 "") + "RGB*, GRAY*" + 7 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image (unused)") + (proc-arg 16 "drawable" "Input drawable") + (proc-arg 3 "mask-radius" "Photocopy mask radius (radius of pixel neighborhood)") + (proc-arg 3 "sharpness" "Sharpness (detail level) (0.0 - 1.0)") + (proc-arg 3 "pct-black" "Percentage of darkened pixels to set to black (0.0 - 1.0)") + (proc-arg 3 "pct-white" "Percentage of non-darkened pixels left white (0.0 - 1.0)"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/pagecurl/pagecurl" 1699270928 + (proc-def "plug-in-pagecurl" 1 + "Curl up one of the image corners" + "This plug-in creates a pagecurl-effect." + "Federico Mena Quintero and Simon Budig" + "Federico Mena Quintero and Simon Budig" + "July 2004, 1.0" + "_Pagecurl..." + 1 + (menu-path "/Filters/Distorts") + (icon icon-name -1 "") + "RGB*, GRAY*" + 7 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Input drawable") + (proc-arg 0 "colors" "FG- and BG-Color (0), Current gradient (1), Current gradient reversed (2)") + (proc-arg 0 "edge" "Edge to curl (1-4, clockwise, starting in the lower right edge)") + (proc-arg 0 "orientation" "Vertical (0), Horizontal (1)") + (proc-arg 0 "shade" "Shade the region under the curl (1) or not (0)") + (proc-arg 14 "curl-layer" "The new layer with the curl."))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/nl-filter/nl-filter" 1699270928 (proc-def "plug-in-nlfilt" 1 "Nonlinear swiss army knife filter" "This is the pnmnlfilt, in gimp's clothing. See the pnmnlfilt manpage for details." @@ -134,7 +519,53 @@ (proc-arg 3 "alpha" "The amount of the filter to apply") (proc-arg 3 "radius" "The filter radius") (proc-arg 0 "filter" "The Filter to Run, 0 - alpha trimmed mean; 1 - optimal estimation (alpha controls noise variance); 2 - edge enhancement"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/map-object/map-object" 1655102016 +(plug-in-def "${gimp_plug_in_dir}/plug-ins/metadata-viewer/metadata-viewer" 1699270928 + (proc-def "plug-in-metadata-viewer" 1 + "View metadata (Exif, IPTC, XMP)" + "View metadata information attached to the current image. This can include Exif, IPTC and/or XMP information." + "Hartmut Kuhse, Michael Natterer, Ben Touchette" + "Hartmut Kuhse, Michael Natterer, Ben Touchette" + "2013, 2017" + "_View Metadata" + 1 + (menu-path "/Image/Metadata") + (icon icon-name -1 "") + "*" + 2 0 + (proc-arg 0 "run-mode" "Run mode { RUN-INTERACTIVE (0) }") + (proc-arg 13 "image" "Input image"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/metadata-editor/metadata-editor" 1699270928 + (proc-def "plug-in-metadata-editor" 1 + "Edit metadata (IPTC, EXIF, XMP)" + "Edit metadata information attached to the current image. Some or all of this metadata will be saved in the file, depending on the output file format." + "Ben Touchette" + "Ben Touchette" + "2017" + "_Edit Metadata" + 1 + (menu-path "/Image/Metadata") + (icon icon-name -1 "") + "*" + 2 0 + (proc-arg 0 "run-mode" "Run mode { RUN-INTERACTIVE (0) }") + (proc-arg 13 "image" "Input image"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/max-rgb/max-rgb" 1699270928 + (proc-def "plug-in-max-rgb" 1 + "Reduce image to pure red, green, and blue" + "There's no help yet." + "Shuji Narazaki (narazaki@InetQ.or.jp)" + "Shuji Narazaki" + "May 2000" + "Maxim_um RGB..." + 0 + (icon icon-name -1 "") + "RGB*" + 4 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image (not used)") + (proc-arg 16 "drawable" "Input drawable") + (proc-arg 0 "max-p" "{ MINIMIZE (0), MAXIMIZE (1) }"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/map-object/map-object" 1699270928 (proc-def "plug-in-map-object" 1 "Map the image to an object (plane, sphere, box or cylinder)" "No help yet" @@ -196,7 +627,87 @@ (proc-arg 16 "box-right-drawable" "Box right face") (proc-arg 16 "cyl-top-drawable" "Cylinder top face (set these to -1 if not used)") (proc-arg 16 "cyl-bottom-drawable" "Cylinder bottom face"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/imagemap/imagemap" 1655102016 +(plug-in-def "${gimp_plug_in_dir}/plug-ins/mail/mail" 1699270928 + (proc-def "plug-in-mail-image" 1 + "Send the image by email" + "The preferred email composer is used to send emails and must be properly configured." + "Adrian Likins, Reagan Blundell" + "Adrian Likins, Reagan Blundell, Daniel Risacher, Spencer Kimball and Peter Mattis" + "1995-1997" + "Send by E_mail..." + 1 + (menu-path "/File/Send") + (icon icon-name -1 "gtk-edit") + "*" + 9 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to save") + (proc-arg 4 "filename" "The name of the file to save the image in") + (proc-arg 4 "to-address" "The email address to send to") + (proc-arg 4 "from-address" "The email address for the From: field") + (proc-arg 4 "subject" "The subject") + (proc-arg 4 "comment" "The Comment") + (proc-arg 0 "encapsulation" "ignored"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/lighting/lighting" 1699270928 + (proc-def "plug-in-lighting" 1 + "Apply various lighting effects to an image" + "No help yet" + "Tom Bech & Federico Mena Quintero" + "Tom Bech & Federico Mena Quintero" + "Version 0.2.0, March 15 1998" + "_Lighting Effects..." + 1 + (menu-path "/Filters/Light and Shadow/Light") + (icon icon-name -1 "") + "RGB*" + 24 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Input drawable") + (proc-arg 16 "bumpdrawable" "Bumpmap drawable (set to 0 if disabled)") + (proc-arg 16 "envdrawable" "Environmentmap drawable (set to 0 if disabled)") + (proc-arg 0 "dobumpmap" "Enable bumpmapping (TRUE/FALSE)") + (proc-arg 0 "doenvmap" "Enable envmapping (TRUE/FALSE)") + (proc-arg 0 "bumpmaptype" "Type of mapping (0=linear,1=log, 2=sinusoidal, 3=spherical)") + (proc-arg 0 "lighttype" "Type of lightsource (0=point,1=directional,3=spot,4=none)") + (proc-arg 10 "lightcolor" "Lightsource color (r,g,b)") + (proc-arg 3 "lightposition-x" "Lightsource position (x,y,z)") + (proc-arg 3 "lightposition-y" "Lightsource position (x,y,z)") + (proc-arg 3 "lightposition-z" "Lightsource position (x,y,z)") + (proc-arg 3 "lightdirection-x" "Lightsource direction [x,y,z]") + (proc-arg 3 "lightdirection-y" "Lightsource direction [x,y,z]") + (proc-arg 3 "lightdirection-z" "Lightsource direction [x,y,z]") + (proc-arg 3 "ambient-intensity" "Material ambient intensity (0..1)") + (proc-arg 3 "diffuse-intensity" "Material diffuse intensity (0..1)") + (proc-arg 3 "diffuse-reflectivity" "Material diffuse reflectivity (0..1)") + (proc-arg 3 "specular-reflectivity" "Material specular reflectivity (0..1)") + (proc-arg 3 "highlight" "Material highlight (0..->), note: it's exponential") + (proc-arg 0 "antialiasing" "Apply antialiasing (TRUE/FALSE)") + (proc-arg 0 "newimage" "Create a new image (TRUE/FALSE)") + (proc-arg 0 "transparentbackground" "Make background transparent (TRUE/FALSE)"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/jigsaw/jigsaw" 1699270928 + (proc-def "plug-in-jigsaw" 1 + "Add a jigsaw-puzzle pattern to the image" + "Jigsaw puzzle look" + "Nigel Wetten" + "Nigel Wetten" + "May 2000" + "_Jigsaw..." + 1 + (menu-path "/Filters/Render/Pattern") + (icon icon-name -1 "") + "RGB*" + 8 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Input drawable") + (proc-arg 0 "x" "Number of tiles across > 0") + (proc-arg 0 "y" "Number of tiles down > 0") + (proc-arg 0 "style" "The style/shape of the jigsaw puzzle { 0, 1 }") + (proc-arg 0 "blend-lines" "Number of lines for shading bevels >= 0") + (proc-arg 3 "blend-amount" "The power of the light highlights 0 =< 5"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/imagemap/imagemap" 1699270928 (proc-def "plug-in-imagemap" 1 "Create a clickable imagemap" "" @@ -212,7 +723,58 @@ (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0) }") (proc-arg 13 "image" "Input image (unused)") (proc-arg 16 "drawable" "Input drawable"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/guillotine/guillotine" 1655102016 +(plug-in-def "${gimp_plug_in_dir}/plug-ins/ifs-compose/ifs-compose" 1699270928 + (proc-def "plug-in-ifscompose" 1 + "Create an Iterated Function System (IFS) fractal" + "Interactively create an Iterated Function System fractal. Use the window on the upper left to adjust the component transformations of the fractal. The operation that is performed is selected by the buttons underneath the window, or from a menu popped up by the right mouse button. The fractal will be rendered with a transparent background if the current image has an alpha channel." + "Owen Taylor" + "Owen Taylor" + "1997" + "_IFS Fractal..." + 1 + (menu-path "/Filters/Render/Fractals") + (icon icon-name -1 "") + "*" + 3 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Input drawable"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/hot/hot" 1699270928 + (proc-def "plug-in-hot" 1 + "Find and fix pixels that may be unsafely bright" + "hot scans an image for pixels that will give unsave values of chrominance or composite signale amplitude when encoded into an NTSC or PAL signal. Three actions can be performed on these ``hot'' pixels. (0) reduce luminance, (1) reduce saturation, or (2) Blacken." + "Eric L. Hernes, Alan Wm Paeth" + "Eric L. Hernes" + "1997" + "_Hot..." + 1 + (menu-path "/Colors/Modify") + (icon icon-name -1 "") + "RGB" + 6 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "The Image") + (proc-arg 16 "drawable" "The Drawable") + (proc-arg 0 "mode" "Mode { NTSC (0), PAL (1) }") + (proc-arg 0 "action" "The action to perform") + (proc-arg 0 "new-layer" "Create a new layer { TRUE, FALSE }"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/help/help" 1699270928 + (proc-def "extension-gimp-help" 2 + "" + "" + "Sven Neumann , Michael Natterer , Henrik Brix Andersen " + "Sven Neumann, Michael Natterer & Henrik Brix Andersen" + "1999-2008" + "" + 0 + (icon icon-name -1 "") + "" + 4 0 + (proc-arg 0 "num-domain-names" "") + (proc-arg 9 "domain-names" "") + (proc-arg 0 "num-domain-uris" "") + (proc-arg 9 "domain-uris" ""))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/guillotine/guillotine" 1699270928 (proc-def "plug-in-guillotine" 1 "Slice the image into subimages using guides" "This function takes an image and slices it along its guides, creating new images. The original image is not modified." @@ -230,7 +792,96 @@ (proc-arg 16 "drawable" "Input drawable (unused)") (proc-arg 0 "image-count" "Number of images created") (proc-arg 5 "image-ids" "Output images"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/goat-exercise/goat-exercise" 1655102016 +(plug-in-def "${gimp_plug_in_dir}/plug-ins/grid/grid" 1699270928 + (proc-def "plug-in-grid" 1 + "Draw a grid on the image" + "Draws a grid using the specified colors. The grid origin is the upper left corner." + "Tim Newsome" + "Tim Newsome, Sven Neumann, Tom Rathborne, TC" + "1997 - 2000" + "_Grid (legacy)..." + 1 + (menu-path "/Filters/Render/Pattern") + (icon icon-name -1 "") + "RGB*, GRAY*, INDEXED*" + 18 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Input drawable") + (proc-arg 0 "hwidth" "Horizontal Width (>= 0)") + (proc-arg 0 "hspace" "Horizontal Spacing (>= 1)") + (proc-arg 0 "hoffset" "Horizontal Offset (>= 0)") + (proc-arg 10 "hcolor" "Horizontal Colour") + (proc-arg 2 "hopacity" "Horizontal Opacity (0...255)") + (proc-arg 0 "vwidth" "Vertical Width (>= 0)") + (proc-arg 0 "vspace" "Vertical Spacing (>= 1)") + (proc-arg 0 "voffset" "Vertical Offset (>= 0)") + (proc-arg 10 "vcolor" "Vertical Colour") + (proc-arg 2 "vopacity" "Vertical Opacity (0...255)") + (proc-arg 0 "iwidth" "Intersection Width (>= 0)") + (proc-arg 0 "ispace" "Intersection Spacing (>= 0)") + (proc-arg 0 "ioffset" "Intersection Offset (>= 0)") + (proc-arg 10 "icolor" "Intersection Colour") + (proc-arg 2 "iopacity" "Intersection Opacity (0...255)"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/gradient-map/gradient-map" 1699270928 + (proc-def "plug-in-gradmap" 1 + "Recolor the image using colors from the active gradient" + "This plug-in maps the contents of the specified drawable with active gradient. It calculates luminosity of each pixel and replaces the pixel by the sample of active gradient at the position proportional to that luminosity. Complete black pixel becomes the leftmost color of the gradient, and complete white becomes the rightmost. Works on both Grayscale and RGB image with/without alpha channel." + "Eiichi Takamori" + "Eiichi Takamori" + "1997" + "_Gradient Map" + 1 + (menu-path "/Colors/Map") + (icon icon-name -1 "") + "RGB*, GRAY*" + 3 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image (unused)") + (proc-arg 16 "drawable" "Input drawable")) + (proc-def "plug-in-palettemap" 1 + "Recolor the image using colors from the active palette" + "This plug-in maps the contents of the specified drawable with the active palette. It calculates luminosity of each pixel and replaces the pixel by the palette sample at the corresponding index. A complete black pixel becomes the lowest palette entry, and complete white becomes the highest. Works on both Grayscale and RGB image with/without alpha channel." + "Bill Skaggs" + "Bill Skaggs" + "2004" + "_Palette Map" + 1 + (menu-path "/Colors/Map") + (icon icon-name -1 "") + "RGB*, GRAY*" + 3 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image (unused)") + (proc-arg 16 "drawable" "Input drawable"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/gradient-flare/gradient-flare" 1699270928 + (proc-def "plug-in-gflare" 1 + "Produce a lense flare effect using gradients" + "This plug-in produces a lense flare effect using custom gradients. In interactive call, the user can edit his/her own favorite lense flare (GFlare) and render it. Edited gflare is saved automatically to the folder in gflare-path, if it is defined in gimprc. In non-interactive call, the user can only render one of GFlare which has been stored in gflare-path already." + "Eiichi Takamori" + "Eiichi Takamori, and a lot of GIMP people" + "1997" + "_Gradient Flare..." + 1 + (menu-path "/Filters/Light and Shadow/Light") + (icon icon-name -1 "") + "RGB*, GRAY*" + 14 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image (unused)") + (proc-arg 16 "drawable" "Input drawable") + (proc-arg 4 "gflare-name" "The name of GFlare") + (proc-arg 0 "xcenter" "X coordinate of center of GFlare") + (proc-arg 0 "ycenter" "Y coordinate of center of GFlare") + (proc-arg 3 "radius" "Radius of GFlare (pixel)") + (proc-arg 3 "rotation" "Rotation of GFlare (degree)") + (proc-arg 3 "hue" "Hue rotation of GFlare (degree)") + (proc-arg 3 "vangle" "Vector angle for second flares (degree)") + (proc-arg 3 "vlength" "Vector length for second flares (percentage to Radius)") + (proc-arg 0 "use-asupsample" "Whether it uses or not adaptive supersampling while rendering (boolean)") + (proc-arg 0 "asupsample-max-depth" "Max depth for adaptive supersampling") + (proc-arg 3 "asupsample-threshold" "Threshold for adaptive supersampling"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/goat-exercise/goat-exercise" 1699270928 (proc-def "plug-in-goat-exercise" 1 "Exercise a goat" "takes a goat for a walk" @@ -246,7 +897,63 @@ (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") (proc-arg 13 "image" "Input image (unused)") (proc-arg 16 "drawable" "Input drawable"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/fractal-explorer/fractal-explorer" 1655102016 +(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimpressionist/gimpressionist" 1699270928 + (proc-def "plug-in-gimpressionist" 1 + "Performs various artistic operations" + "Performs various artistic operations on an image" + "Vidar Madsen " + "Vidar Madsen" + "v1.0, November 2003" + "_GIMPressionist..." + 1 + (menu-path "/Filters/Artistic") + (icon icon-name -1 "") + "RGB*, GRAY*" + 4 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Input drawable") + (proc-arg 4 "preset" "Preset Name"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/gfig/gfig" 1699270928 + (proc-def "plug-in-gfig" 1 + "Create geometric shapes" + "Draw Vector Graphics and paint them onto your images. Gfig allows you to draw many types of objects including Lines, Circles, Ellipses, Curves, Polygons, pointed stars, Bezier curves, and Spirals. Objects can be painted using Brushes or other toolsor filled using colors or patterns. Gfig objects can also be used to create selections. " + "Andy Thomas" + "Andy Thomas" + "1997" + "_Gfig..." + 1 + (menu-path "/Filters/Render") + (icon icon-name -1 "") + "RGB*, GRAY*" + 4 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image (unused)") + (proc-arg 16 "drawable" "Input drawable") + (proc-arg 0 "dummy" "dummy"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/fractal-trace/fractal-trace" 1699270928 + (proc-def "plug-in-fractal-trace" 1 + "Transform image with the Mandelbrot Fractal" + "transform image with the Mandelbrot Fractal" + "Hirotsuna Mizuno " + "Copyright (C) 1997 Hirotsuna Mizuno" + "v0.4 test version (Dec. 25 1997)" + "_Fractal Trace (legacy)..." + 1 + (menu-path "/Filters/Map") + (icon icon-name -1 "") + "RGB*, GRAY*" + 9 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image (unused)") + (proc-arg 16 "drawable" "Input drawable") + (proc-arg 3 "xmin" "xmin fractal image delimiter") + (proc-arg 3 "xmax" "xmax fractal image delimiter") + (proc-arg 3 "ymin" "ymin fractal image delimiter") + (proc-arg 3 "ymax" "ymax fractal image delimiter") + (proc-arg 0 "depth" "Trace depth") + (proc-arg 0 "outside-type" "Outside type { WRAP (0), TRANS (1), BLACK (2), WHITE (3) }"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/fractal-explorer/fractal-explorer" 1699270928 (proc-def "plug-in-fractalexplorer" 1 "Render fractal art" "No help yet." @@ -281,7 +988,64 @@ (proc-arg 2 "greeninvert" "Green inversion mode (1: enabled; 0: disabled)") (proc-arg 2 "blueinvert" "Green inversion mode (1: enabled; 0: disabled)") (proc-arg 0 "ncolors" "Number of Colors for mapping (2<=ncolors<=8192)"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-xwd/file-xwd" 1655102016 +(plug-in-def "${gimp_plug_in_dir}/plug-ins/flame/flame" 1699270928 + (proc-def "plug-in-flame" 1 + "Create cosmic recursive fractal flames" + "Create cosmic recursive fractal flames" + "Scott Draves" + "Scott Draves" + "1997" + "_Flame..." + 1 + (menu-path "/Filters/Render/Fractals") + (icon icon-name -1 "") + "RGB*" + 3 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image (unused)") + (proc-arg 16 "drawable" "Input drawable"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/filter-pack/filter-pack" 1699270928 + (proc-def "plug-in-filter-pack" 1 + "Interactively modify the image colors" + "Interactively modify the image colors." + "Pavel Grinfeld (pavel@ml.com)" + "Pavel Grinfeld (pavel@ml.com)" + "27th March 1997" + "_Filter Pack..." + 0 + (icon icon-name -1 "") + "RGB*" + 3 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image (used for indexed images)") + (proc-arg 16 "drawable" "Input drawable"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/film/film" 1699270928 + (proc-def "plug-in-film" 1 + "Combine several images on a film strip" + "Compose several images to a roll film" + "Peter Kirchgessner" + "Peter Kirchgessner (peter@kirchgessner.net)" + "1997" + "_Filmstrip..." + 1 + (menu-path "/Filters/Combine") + (icon icon-name -1 "") + "INDEXED*, GRAY*, RGB*" + 12 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image (only used as default image in interactive mode)") + (proc-arg 16 "drawable" "Input drawable (not used)") + (proc-arg 0 "film-height" "Height of film (0: fit to images)") + (proc-arg 10 "film-color" "Color of the film") + (proc-arg 0 "number-start" "Start index for numbering") + (proc-arg 4 "number-font" "Font for drawing numbers") + (proc-arg 10 "number-color" "Color for numbers") + (proc-arg 0 "at-top" "Flag for drawing numbers at top of film") + (proc-arg 0 "at-bottom" "Flag for drawing numbers at bottom of film") + (proc-arg 0 "num-images" "Number of images to be used for film") + (proc-arg 5 "image-ids" "num-images image IDs to be used for film") + (proc-arg 13 "new-image" "Output image"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-xwd/file-xwd" 1699270928 (proc-def "file-xwd-load" 1 "Loads files in the XWD (X Window Dump) format" "Loads files in the XWD (X Window Dump) format. XWD image files are produced by the program xwd. Xwd is an X Window System window dumping utility." @@ -321,7 +1085,161 @@ (proc-arg 16 "drawable" "Drawable to export") (proc-arg 4 "filename" "The name of the file to export the image in") (proc-arg 4 "raw-filename" "The name of the file to export the image in"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-wmf/file-wmf" 1655102016 +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-xpm/file-xpm" 1699270928 + (proc-def "file-xpm-load" 1 + "Load files in XPM (X11 Pixmap) format." + "Load files in XPM (X11 Pixmap) format. XPM is a portable image format designed to be included in C source code. XLib provides utility functions to read this format. Newer code should however be using gdk-pixbuf-csource instead. XPM supports colored images, unlike the XBM format which XPM was designed to replace." + "Spencer Kimball & Peter Mattis & Ray Lehtiniemi" + "Spencer Kimball & Peter Mattis" + "1997" + "X PixMap image" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "xpm") + (magics "0, string,/*\\040XPM\\040*/") + (mime-types "image/x-xpixmap")) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 13 "image" "Output image")) + (proc-def "file-xpm-save" 1 + "Export files in XPM (X11 Pixmap) format." + "Export files in XPM (X11 Pixmap) format. XPM is a portable image format designed to be included in C source code. XLib provides utility functions to read this format. Newer code should however be using gdk-pixbuf-csource instead. XPM supports colored images, unlike the XBM format which XPM was designed to replace." + "Spencer Kimball & Peter Mattis & Ray Lehtiniemi & Nathan Summers" + "Spencer Kimball & Peter Mattis" + "1997" + "X PixMap image" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "xpm") + (mime-types "image/x-xpixmap")) + "RGB*, GRAY*, INDEXED*" + 6 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to export") + (proc-arg 4 "filename" "The name of the file to export the image in") + (proc-arg 4 "raw-filename" "The name of the file to export the image in") + (proc-arg 0 "threshold" "Alpha threshold (0-255)"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-xmc/file-xmc" 1699270928 + (proc-def "file-xmc-load" 1 + "Loads files of X11 Mouse Cursor file format" + "This plug-in loads X11 Mouse Cursor (XMC) files." + "Takeshi Matsuyama " + "Takeshi Matsuyama" + "26 May 2009" + "X11 Mouse Cursor" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "xmc") + (magics "0,string,Xcur") + (mime-types "image/x-xcursor") + (thumb-loader "file-xmc-load-thumb")) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 4 "raw-filename" "The name of the file to load") + (proc-arg 13 "image" "Output image")) + (proc-def "file-xmc-load-thumb" 1 + "Loads only first frame of X11 Mouse Cursor's animation sequence which nominal size is the closest of thumb-size to be used as a thumbnail" + "" + "Takeshi Matsuyama " + "Takeshi Matsuyama" + "26 May 2009" + "" + 0 + (icon icon-name -1 "") + "" + 2 5 + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 0 "thumb-size" "Preferred thumbnail size") + (proc-arg 13 "image" "Thumbnail image") + (proc-arg 0 "image-width" "The width of image") + (proc-arg 0 "image-height" "The height of image") + (proc-arg 0 "image-type" "The color type of image") + (proc-arg 0 "image-num-layers" "The number of layeres")) + (proc-def "file-xmc-save" 1 + "Exports files of X11 cursor file" + "This plug-in exports X11 Mouse Cursor (XMC) files" + "Takeshi Matsuyama " + "Takeshi Matsuyama" + "26 May 2009" + "X11 Mouse Cursor" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "xmc") + (mime-types "image/x-xcursor")) + "RGBA" + 15 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to export") + (proc-arg 4 "filename" "The name of the file to export the image in") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 0 "x-hot" "X-coordinate of hot spot") + (proc-arg 0 "y-hot" "Y-coordinate of hot spot\nUse (-1, -1) to keep original hot spot.") + (proc-arg 0 "crop" "Auto-crop or not") + (proc-arg 0 "size" "Default nominal size") + (proc-arg 0 "size-replace" "Replace existent size or not.") + (proc-arg 0 "delay" "Default delay") + (proc-arg 0 "delay-replace" "Replace existent delay or not.") + (proc-arg 4 "copyright" "Copyright information.") + (proc-arg 4 "license" "License information.") + (proc-arg 4 "other" "Other comment.(taken from \"gimp-comment\" parasite)"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-xbm/file-xbm" 1699270928 + (proc-def "file-xbm-load" 1 + "Load a file in X10 or X11 bitmap (XBM) file format" + "Load a file in X10 or X11 bitmap (XBM) file format. XBM is a lossless format for flat black-and-white (two color indexed) images." + "Gordon Matzigkeit" + "Gordon Matzigkeit" + "1998" + "X BitMap image" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "xbm,icon,bitmap") + (mime-types "image/x-xbitmap")) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 13 "image" "Output image")) + (proc-def "file-xbm-save" 1 + "Export a file in X10 or X11 bitmap (XBM) file format" + "Export a file in X10 or X11 bitmap (XBM) file format. XBM is a lossless format for flat black-and-white (two color indexed) images." + "Gordon Matzigkeit" + "Gordon Matzigkeit" + "1998" + "X BitMap image" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "xbm,icon,bitmap") + (mime-types "image/x-xbitmap") + (handles-uri)) + "INDEXED" + 12 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to export") + (proc-arg 4 "filename" "The name of the file to export") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 4 "comment" "Image description (maximum 72 bytes)") + (proc-arg 0 "x10" "Export in X10 format") + (proc-arg 0 "x-hot" "X coordinate of hotspot") + (proc-arg 0 "y-hot" "Y coordinate of hotspot") + (proc-arg 4 "prefix" "Identifier prefix [determined from filename]") + (proc-arg 0 "write-mask" "(0 = ignore, 1 = save as extra file)") + (proc-arg 4 "mask-extension" "Extension of the mask file"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-wmf/file-wmf" 1699270928 (proc-def "file-wmf-load" 1 "Loads files in the WMF file format" "Loads files in the WMF file format" @@ -361,7 +1279,212 @@ (proc-arg 13 "image" "Thumbnail image") (proc-arg 0 "image-width" "Width of full-sized image") (proc-arg 0 "image-height" "Height of full-sized image"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-svg/file-svg" 1655102016 +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-webp/file-webp" 1699270928 + (proc-def "file-webp-load" 1 + "Loads images in the WebP file format" + "Loads images in the WebP file format" + "Nathan Osman, Ben Touchette" + "(C) 2015-2016 Nathan Osman, (C) 2016 Ben Touchette" + "2015,2016" + "WebP image" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "webp") + (magics "8,string,WEBP") + (mime-types "image/webp")) + "" + 3 1 + (proc-arg 0 "run-mode" "Interactive, non-interactive") + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 13 "image" "Output image")) + (proc-def "file-webp-save" 1 + "Saves files in the WebP image format" + "Saves files in the WebP image format" + "Nathan Osman, Ben Touchette" + "(C) 2015-2016 Nathan Osman, (C) 2016 Ben Touchette" + "2015,2016" + "WebP image" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "webp") + (mime-types "image/webp")) + "RGB*, GRAY*, INDEXED*" + 18 0 + (proc-arg 0 "run-mode" "Interactive, non-interactive") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to save") + (proc-arg 4 "filename" "The name of the file to save the image to") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 0 "preset" "preset (Default=0, Picture=1, Photo=2, Drawing=3, Icon=4, Text=5)") + (proc-arg 0 "lossless" "Use lossless encoding (0/1)") + (proc-arg 3 "quality" "Quality of the image (0 <= quality <= 100)") + (proc-arg 3 "alpha-quality" "Quality of the image's alpha channel (0 <= alpha-quality <= 100)") + (proc-arg 0 "animation" "Use layers for animation (0/1)") + (proc-arg 0 "anim-loop" "Loop animation infinitely (0/1)") + (proc-arg 0 "minimize-size" "Minimize animation size (0/1)") + (proc-arg 0 "kf-distance" "Maximum distance between key-frames (>=0)") + (proc-arg 0 "exif" "Toggle saving exif data (0/1)") + (proc-arg 0 "iptc" "Toggle saving iptc data (0/1)") + (proc-arg 0 "xmp" "Toggle saving xmp data (0/1)") + (proc-arg 0 "delay" "Delay to use when timestamps are not available or forced") + (proc-arg 0 "force-delay" "Force delay on all frames")) + (proc-def "file-webp-save2" 1 + "Saves files in the WebP image format" + "Saves files in the WebP image format with additional metadata control" + "Nathan Osman, Ben Touchette" + "(C) 2015-2016 Nathan Osman, (C) 2016 Ben Touchette" + "2015,2016" + "WebP image" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "webp") + (mime-types "image/webp")) + "RGB*, GRAY*, INDEXED*" + 19 0 + (proc-arg 0 "run-mode" "Interactive, non-interactive") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to save") + (proc-arg 4 "filename" "The name of the file to save the image to") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 0 "preset" "preset (Default=0, Picture=1, Photo=2, Drawing=3, Icon=4, Text=5)") + (proc-arg 0 "lossless" "Use lossless encoding (0/1)") + (proc-arg 3 "quality" "Quality of the image (0 <= quality <= 100)") + (proc-arg 3 "alpha-quality" "Quality of the image's alpha channel (0 <= alpha-quality <= 100)") + (proc-arg 0 "animation" "Use layers for animation (0/1)") + (proc-arg 0 "anim-loop" "Loop animation infinitely (0/1)") + (proc-arg 0 "minimize-size" "Minimize animation size (0/1)") + (proc-arg 0 "kf-distance" "Maximum distance between key-frames (>=0)") + (proc-arg 0 "exif" "Toggle saving exif data (0/1)") + (proc-arg 0 "iptc" "Toggle saving iptc data (0/1)") + (proc-arg 0 "xmp" "Toggle saving xmp data (0/1)") + (proc-arg 0 "thumbnail" "Toggle saving thumbnail (0/1)") + (proc-arg 0 "delay" "Delay to use when timestamps are not available or forced") + (proc-arg 0 "force-delay" "Force delay on all frames"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-tiff/file-tiff" 1699270928 + (proc-def "file-tiff-load" 1 + "Loads files of the TIFF and BigTIFF file formats" + "Loads files of the Tag Image File Format (TIFF) and its 64-bits offsets variant (BigTIFF)" + "Spencer Kimball, Peter Mattis & Nick Lamb" + "Nick Lamb " + "1995-1996,1998-2003" + "TIFF image" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "tif,tiff") + (magics "0,string,II*\\0,0,string,MM\\0*") + (mime-types "image/tiff") + (handles-uri)) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 4 "raw-filename" "The name of the file to load") + (proc-arg 13 "image" "Output image")) + (proc-def "file-tiff-save" 1 + "Exports files in the TIFF file format" + "Exports files in the Tagged Image File Format. The value for the saved comment is taken from the 'gimp-comment' parasite." + "Spencer Kimball & Peter Mattis" + "Spencer Kimball & Peter Mattis" + "1995-1996,2000-2003" + "TIFF image" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "tif,tiff") + (mime-types "image/tiff") + (handles-uri)) + "RGB*, GRAY*, INDEXED*" + 6 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to save") + (proc-arg 4 "filename" "The name of the file to save the image in") + (proc-arg 4 "raw-filename" "The name of the file to save the image in") + (proc-arg 0 "compression" "Compression type: { NONE (0), LZW (1), PACKBITS (2), DEFLATE (3), JPEG (4), CCITT G3 Fax (5), CCITT G4 Fax (6) }")) + (proc-def "file-tiff-save2" 1 + "Exports files in the TIFF file format" + "Exports files in the Tagged Image File Format. The value for the saved comment is taken from the 'gimp-comment' parasite." + "Spencer Kimball & Peter Mattis" + "Spencer Kimball & Peter Mattis" + "1995-1996,2000-2003" + "TIFF image" + 0 + (icon icon-name -1 "") + "RGB*, GRAY*, INDEXED*" + 7 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to save") + (proc-arg 4 "filename" "The name of the file to save the image in") + (proc-arg 4 "raw-filename" "The name of the file to save the image in") + (proc-arg 0 "compression" "Compression type: { NONE (0), LZW (1), PACKBITS (2), DEFLATE (3), JPEG (4), CCITT G3 Fax (5), CCITT G4 Fax (6) }") + (proc-arg 0 "save-transp-pixels" "Keep the color data masked by an alpha channel intact (do not store premultiplied components)")) + (proc-def "file-bigtiff-save" 1 + "Exports files in the TIFF or BigTIFF file format" + "Exports files in the Tagged Image File Format or its 64-bit offsets variant (BigTIFF) able to support much bigger file sizes. The value for the saved comment is taken from the 'gimp-comment' parasite." + "Spencer Kimball & Peter Mattis" + "Spencer Kimball & Peter Mattis" + "1995-1996,2000-2003" + "TIFF image" + 0 + (icon icon-name -1 "") + "RGB*, GRAY*, INDEXED*" + 8 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to save") + (proc-arg 4 "filename" "The name of the file to save the image in") + (proc-arg 4 "raw-filename" "The name of the file to save the image in") + (proc-arg 0 "compression" "Compression type: { NONE (0), LZW (1), PACKBITS (2), DEFLATE (3), JPEG (4), CCITT G3 Fax (5), CCITT G4 Fax (6) }") + (proc-arg 0 "save-transp-pixels" "Keep the color data masked by an alpha channel intact (do not store premultiplied components)") + (proc-arg 0 "bigtiff" "Export in BigTIFF variant file format"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-tga/file-tga" 1699270928 + (proc-def "file-tga-load" 1 + "Loads files of Targa file format" + "FIXME: write help for tga_load" + "Raphael FRANCOIS, Gordon Matzigkeit" + "Raphael FRANCOIS, Gordon Matzigkeit" + "1997,2000,2007" + "TarGA image" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "tga,vda,icb,vst") + (magics "-18&,string,TRUEVISION-XFILE.,-1,byte,0") + (mime-types "image/x-tga")) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 13 "image" "Output image")) + (proc-def "file-tga-save" 1 + "exports files in the Targa file format" + "FIXME: write help for tga_save" + "Raphael FRANCOIS, Gordon Matzigkeit" + "Raphael FRANCOIS, Gordon Matzigkeit" + "1997,2000" + "TarGA image" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "tga") + (mime-types "image/x-tga")) + "RGB*, GRAY*, INDEXED*" + 7 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to export") + (proc-arg 4 "filename" "The name of the file to export the image in") + (proc-arg 4 "raw-filename" "The name of the file to export the image in") + (proc-arg 0 "rle" "Use RLE compression") + (proc-arg 0 "origin" "Image origin (0 = top-left, 1 = bottom-left)"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-svg/file-svg" 1699270928 (proc-def "file-svg-load" 1 "Loads files in the SVG file format" "Renders SVG files to raster graphics using librsvg." @@ -402,7 +1525,87 @@ (proc-arg 13 "image" "Thumbnail image") (proc-arg 0 "image-width" "Width of full-sized image") (proc-arg 0 "image-height" "Height of full-sized image"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-raw-placeholder/file-raw-placeholder" 1655102016 +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-sunras/file-sunras" 1699270928 + (proc-def "file-sunras-load" 1 + "load file of the SunRaster file format" + "load file of the SunRaster file format" + "Peter Kirchgessner" + "Peter Kirchgessner" + "1996" + "SUN Rasterfile image" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "im1,im8,im24,im32,rs,ras,sun") + (magics "0,long,0x59a66a95") + (mime-types "image/x-sun-raster")) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 4 "raw-filename" "The name of the file to load") + (proc-arg 13 "image" "Output image")) + (proc-def "file-sunras-save" 1 + "export file in the SunRaster file format" + "SUNRAS exporting handles all image types except those with alpha channels." + "Peter Kirchgessner" + "Peter Kirchgessner" + "1996" + "SUN Rasterfile image" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "im1,im8,im24,im32,rs,ras,sun") + (mime-types "image/x-sun-raster")) + "RGB, GRAY, INDEXED" + 6 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to export") + (proc-arg 4 "filename" "The name of the file to export the image in") + (proc-arg 4 "raw-filename" "The name of the file to export the image in") + (proc-arg 0 "rle" "Specify non-zero for rle output, zero for standard output"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-sgi/file-sgi" 1699270928 + (proc-def "file-sgi-load" 1 + "Loads files in SGI image file format" + "This plug-in loads SGI image files." + "Michael Sweet " + "Copyright 1997-1998 by Michael Sweet" + "1.1.1 - 17 May 1998" + "Silicon Graphics IRIS image" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "sgi,rgb,rgba,bw,icon") + (magics "0,short,474") + (mime-types "image/x-sgi")) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 4 "raw-filename" "The name of the file to load") + (proc-arg 13 "image" "Output image")) + (proc-def "file-sgi-save" 1 + "Exports files in SGI image file format" + "This plug-in exports SGI image files." + "Michael Sweet " + "Copyright 1997-1998 by Michael Sweet" + "1.1.1 - 17 May 1998" + "Silicon Graphics IRIS image" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "sgi,rgb,rgba,bw,icon") + (mime-types "image/x-sgi")) + "RGB*, GRAY*, INDEXED*" + 6 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to export") + (proc-arg 4 "filename" "The name of the file to export the image in") + (proc-arg 4 "raw-filename" "The name of the file to export the image in") + (proc-arg 0 "compression" "Compression level (0 = none, 1 = RLE, 2 = ARLE)"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-raw-placeholder/file-raw-placeholder" 1699270928 (proc-def "file-raw-placeholder-canon-load" 1 "Load files in the Canon raw formats via raw-placeholder" "This plug-in loads files in Canon's raw formats by calling raw-placeholder." @@ -878,7 +2081,204 @@ (proc-arg 4 "filename" "The name of the file to load.") (proc-arg 4 "raw-filename" "The name entered") (proc-arg 13 "image" "Output image"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-ps/file-ps" 1655102016 +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-raw-data/file-raw-data" 1699270928 + (proc-def "file-raw-load" 1 + "Load raw images, specifying image information" + "Load raw images, specifying image information" + "timecop, pg@futureware.at" + "timecop, pg@futureware.at" + "Aug 2004" + "Raw image data" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "data")) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0) }") + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 13 "image" "Output image")) + (proc-def "file-hgt-load" 1 + "Load HGT data as images" + "Load Digital Elevation Model data in HGT format from the Shuttle Radar Topography Mission as images. Though the output image will be RGB, all colors are grayscale by default and the contrast will be quite low on most earth relief. Therefore You will likely want to remap elevation to colors as a second step, for instance with the \"Gradient Map\" plug-in." + "" + "" + "2017-12-09" + "Digital Elevation Model data" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "hgt")) + "" + 4 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0) }") + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 0 "samplespacing" "The sample spacing of the data. Only supported values are 0, 1 and 3 (respectively auto-detect, SRTM-1 and SRTM-3 data)") + (proc-arg 13 "image" "Output image")) + (proc-def "file-raw-save" 1 + "Dump images to disk in raw format" + "This plug-in dumps images to disk in raw format, using the default settings stored as a parasite." + "timecop, pg@futureware.at" + "timecop, pg@futureware.at" + "Aug 2004" + "Raw image data" + 0 + (icon icon-name -1 "") + "INDEXED, GRAY, RGB, RGBA" + 5 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to save") + (proc-arg 4 "filename" "The name of the file to save the image in") + (proc-arg 4 "raw-filename" "The name entered")) + (proc-def "file-raw-save2" 1 + "Dump images to disk in raw format" + "Dump images to disk in raw format" + "Björn Kautler, Bjoern@Kautler.net" + "Björn Kautler, Bjoern@Kautler.net" + "April 2014" + "Raw image data" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "data,raw")) + "INDEXED, GRAY, RGB, RGBA" + 7 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to save") + (proc-arg 4 "filename" "The name of the file to save the image in") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 0 "image-type" "The image type { RAW_RGB (0), RAW_PLANAR (3) }") + (proc-arg 0 "palette-type" "The palette type { RAW_PALETTE_RGB (0), RAW_PALETTE_BGR (1) }")) + (proc-def "file-raw-get-defaults" 1 + "Get the current set of defaults used by the raw image data dump plug-in" + "This procedure returns the current set of defaults stored as a parasite for the raw image data dump plug-in. These defaults are used to seed the UI, by the file_raw_save_defaults procedure, and by gimp_file_save when it detects to use RAW." + "Björn Kautler, Bjoern@Kautler.net" + "Björn Kautler, Bjoern@Kautler.net" + "April 2014" + "" + 0 + (icon icon-name -1 "") + "" + 0 2 + (proc-arg 0 "image-type" "The image type { RAW_RGB (0), RAW_PLANAR (3) }") + (proc-arg 0 "palette-type" "The palette type { RAW_PALETTE_RGB (0), RAW_PALETTE_BGR (1) }")) + (proc-def "file-raw-set-defaults" 1 + "Set the current set of defaults used by the raw image dump plug-in" + "This procedure sets the current set of defaults stored as a parasite for the raw image data dump plug-in. These defaults are used to seed the UI, by the file_raw_save_defaults procedure, and by gimp_file_save when it detects to use RAW." + "Björn Kautler, Bjoern@Kautler.net" + "Björn Kautler, Bjoern@Kautler.net" + "April 2014" + "" + 0 + (icon icon-name -1 "") + "" + 2 0 + (proc-arg 0 "image-type" "The image type { RAW_RGB (0), RAW_PLANAR (3) }") + (proc-arg 0 "palette-type" "The palette type { RAW_PALETTE_RGB (0), RAW_PALETTE_BGR (1) }"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-psp/file-psp" 1699270928 + (proc-def "file-psp-load" 1 + "loads images from the Paint Shop Pro PSP file format" + "This plug-in loads and exports images in Paint Shop Pro's native PSP format. Vector layers aren't handled. Exporting isn't yet implemented." + "Tor Lillqvist" + "Tor Lillqvist" + "1999" + "Paint Shop Pro image" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "psp,tub,pspimage") + (magics "0,string,Paint\\040Shop\\040Pro\\040Image\\040File\n\032") + (mime-types "image/x-psp")) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 4 "raw-filename" "The name of the file to load") + (proc-arg 13 "image" "Output image"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-psd/file-psd" 1699270928 + (proc-def "file-psd-load" 1 + "Loads images from the Photoshop PSD file format" + "This plug-in loads images in Adobe Photoshop (TM) native PSD format." + "John Marshall" + "John Marshall" + "2007" + "Photoshop image" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "psd") + (magics "0,string,8BPS") + (mime-types "image/x-psd") + (thumb-loader "file-psd-load-thumb")) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 4 "raw-filename" "The name of the file to load") + (proc-arg 13 "image" "Output image")) + (proc-def "file-psd-load-merged" 1 + "Loads merged images from the Photoshop PSD file format" + "This plug-in loads the merged image data in Adobe Photoshop (TM) native PSD format." + "Ell" + "Ell" + "2018" + "Photoshop image (merged)" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "psd") + (magics "0,string,8BPS") + (priority 1) + (mime-types "image/x-psd") + (priority 1)) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 4 "raw-filename" "The name of the file to load") + (proc-arg 13 "image" "Output image")) + (proc-def "file-psd-load-thumb" 1 + "Loads thumbnails from the Photoshop PSD file format" + "This plug-in loads thumbnail images from Adobe Photoshop (TM) native PSD format files." + "John Marshall" + "John Marshall" + "2007" + "" + 0 + (icon icon-name -1 "") + "" + 2 3 + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 0 "thumb-size" "Preferred thumbnail size") + (proc-arg 13 "image" "Thumbnail image") + (proc-arg 0 "image-width" "Width of full-sized image") + (proc-arg 0 "image-height" "Height of full-sized image")) + (proc-def "file-psd-save" 1 + "saves files in the Photoshop(tm) PSD file format" + "This filter saves files of Adobe Photoshop(tm) native PSD format. These files may be of any image type supported by GIMP, with or without layers, layer masks, aux channels and guides." + "Monigotes" + "Monigotes" + "2000" + "Photoshop image" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "psd") + (mime-types "image/x-psd")) + "RGB*, GRAY*, INDEXED*" + 7 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to save") + (proc-arg 4 "filename" "The name of the file to save the image in") + (proc-arg 4 "raw-filename" "The name of the file to save the image in") + (proc-arg 0 "compression" "Compression type: { NONE (0), LZW (1), PACKBITS (2)") + (proc-arg 0 "fill-order" "Fill Order: { MSB to LSB (0), LSB to MSB (1)"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-ps/file-ps" 1699270928 (proc-def "file-ps-load" 1 "load PostScript documents" "load PostScript documents" @@ -1012,829 +2412,7 @@ (proc-arg 0 "eps-flag" "0: PostScript, 1: Encapsulated PostScript") (proc-arg 0 "preview" "0: no preview, >0: max. size of preview") (proc-arg 0 "level" "1: PostScript Level 1, 2: PostScript Level 2"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-pdf-save/file-pdf-save" 1655102016 - (proc-def "file-pdf-save" 1 - "Save files in PDF format" - "Saves files in Adobe's Portable Document Format. PDF is designed to be easily processed by a variety of different platforms, and is a distant cousin of PostScript." - "Barak Itkin" - "Copyright Barak Itkin" - "August 2009" - "Portable Document Format" - 0 - (icon icon-name -1 "") - "RGB*, GRAY*, INDEXED*" - 8 0 - (proc-arg 0 "run-mode" "Run mode") - (proc-arg 13 "image" "Input image") - (proc-arg 16 "drawable" "Input drawable") - (proc-arg 4 "filename" "The name of the file to save the image in") - (proc-arg 4 "raw-filename" "The name of the file to save the image in") - (proc-arg 0 "vectorize" "Convert bitmaps to vector graphics where possible. TRUE or FALSE") - (proc-arg 0 "ignore-hidden" "Omit hidden layers and layers with zero opacity. TRUE or FALSE") - (proc-arg 0 "apply-masks" "Apply layer masks before saving. TRUE or FALSE (Keeping them will not change the output)")) - (proc-def "file-pdf-save2" 1 - "Save files in PDF format" - "Saves files in Adobe's Portable Document Format. PDF is designed to be easily processed by a variety of different platforms, and is a distant cousin of PostScript.\nThis procedure adds an extra parameter to file-pdf-save to save layers as pages." - "Barak Itkin, Lionel N., Jehan" - "Copyright Barak Itkin, Lionel N., Jehan" - "August 2009, 2017" - "Portable Document Format" - 0 - (icon icon-name -1 "") - (save-proc - (extensions "pdf") - (mime-types "application/pdf")) - "RGB*, GRAY*, INDEXED*" - 10 0 - (proc-arg 0 "run-mode" "Run mode") - (proc-arg 13 "image" "Input image") - (proc-arg 16 "drawable" "Input drawable") - (proc-arg 4 "filename" "The name of the file to save the image in") - (proc-arg 4 "raw-filename" "The name of the file to save the image in") - (proc-arg 0 "vectorize" "Convert bitmaps to vector graphics where possible. TRUE or FALSE") - (proc-arg 0 "ignore-hidden" "Omit hidden layers and layers with zero opacity. TRUE or FALSE") - (proc-arg 0 "apply-masks" "Apply layer masks before saving. TRUE or FALSE (Keeping them will not change the output)") - (proc-arg 0 "layers-as-pages" "Layers as pages (bottom layers first). TRUE or FALSE") - (proc-arg 0 "reverse-order" "Reverse the pages order (top layers first). TRUE or FALSE")) - (proc-def "file-pdf-save-multi" 1 - "Save files in PDF format" - "Saves files in Adobe's Portable Document Format. PDF is designed to be easily processed by a variety of different platforms, and is a distant cousin of PostScript." - "Barak Itkin" - "Copyright Barak Itkin" - "August 2009" - "_Create multipage PDF..." - 0 - (icon icon-name -1 "") - "RGB*, GRAY*, INDEXED*" - 8 0 - (proc-arg 0 "run-mode" "Run mode") - (proc-arg 0 "count" "The amount of images entered (This will be the amount of pages). 1 <= count <= MAX_PAGE_COUNT") - (proc-arg 5 "images" "Input image for each page (An image can appear more than once)") - (proc-arg 0 "vectorize" "Convert bitmaps to vector graphics where possible. TRUE or FALSE") - (proc-arg 0 "ignore-hidden" "Omit hidden layers and layers with zero opacity. TRUE or FALSE") - (proc-arg 0 "apply-masks" "Apply layer masks before saving. TRUE or FALSE (Keeping them will not change the output)") - (proc-arg 4 "filename" "The name of the file to save the image in") - (proc-arg 4 "raw-filename" "The name of the file to save the image in"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-mng/file-mng" 1655102016 - (proc-def "file-mng-save" 1 - "Saves images in the MNG file format" - "This plug-in saves images in the Multiple-image Network Graphics (MNG) format which can be used as a replacement for animated GIFs, and more." - "Mukund Sivaraman " - "Mukund Sivaraman " - "November 19, 2002" - "MNG animation" - 0 - (icon icon-name -1 "") - (save-proc - (extensions "mng") - (mime-types "image/x-mng")) - "RGB*,GRAY*,INDEXED*" - 17 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 13 "image" "Input image") - (proc-arg 16 "drawable" "Drawable to save") - (proc-arg 4 "filename" "The name of the file to save the image in") - (proc-arg 4 "raw-filename" "The name of the file to save the image in") - (proc-arg 0 "interlace" "Use interlacing") - (proc-arg 0 "compression" "PNG deflate compression level (0 - 9)") - (proc-arg 3 "quality" "JPEG quality factor (0.00 - 1.00)") - (proc-arg 3 "smoothing" "JPEG smoothing factor (0.00 - 1.00)") - (proc-arg 0 "loop" "(ANIMATED MNG) Loop infinitely") - (proc-arg 0 "default-delay" "(ANIMATED MNG) Default delay between frames in milliseconds") - (proc-arg 0 "default-chunks" "(ANIMATED MNG) Default chunks type (0 = PNG + Delta PNG; 1 = JNG + Delta PNG; 2 = All PNG; 3 = All JNG)") - (proc-arg 0 "default-dispose" "(ANIMATED MNG) Default dispose type (0 = combine; 1 = replace)") - (proc-arg 0 "bkgd" "Write bKGD (background color) chunk") - (proc-arg 0 "gama" "Write gAMA (gamma) chunk") - (proc-arg 0 "phys" "Write pHYs (image resolution) chunk") - (proc-arg 0 "time" "Write tIME (creation time) chunk"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-html-table/file-html-table" 1655102016 - (proc-def "file-gtm-save" 1 - "GIMP Table Magic" - "Allows you to draw an HTML table in GIMP. See help for more info." - "Daniel Dunbar" - "Daniel Dunbar" - "1998" - "HTML table" - 0 - (icon icon-name -1 "") - (save-proc - (extensions "html,htm") - (mime-types "text/html") - (handles-uri)) - "RGB*, GRAY*, INDEXED*" - 5 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0) }") - (proc-arg 13 "image" "Input image") - (proc-arg 16 "drawable" "Drawable to export") - (proc-arg 4 "filename" "The name of the file to export the image in") - (proc-arg 4 "raw-filename" "The name of the file to export the image in"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-gih/file-gih" 1655102016 - (proc-def "file-gih-save" 1 - "exports images in GIMP brush pipe format" - "This plug-in exports an image in the GIMP brush pipe format. For a colored brush pipe, RGBA layers are used, otherwise the layers should be grayscale masks. The image can be multi-layered, and additionally the layers can be divided into a rectangular array of brushes." - "Tor Lillqvist" - "Tor Lillqvist" - "1999" - "GIMP brush (animated)" - 0 - (icon icon-name -1 "gimp-tool-paintbrush") - (save-proc - (extensions "gih") - (mime-types "image/x-gimp-gih") - (handles-uri)) - "RGB*, GRAY*" - 15 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 13 "image" "Input image") - (proc-arg 16 "drawable" "Drawable to export") - (proc-arg 4 "uri" "The URI of the file to export the brush pipe in") - (proc-arg 4 "raw-uri" "The URI of the file to export the brush pipe in") - (proc-arg 0 "spacing" "Spacing of the brush") - (proc-arg 4 "description" "Short description of the brush pipe") - (proc-arg 0 "cell-width" "Width of the brush cells") - (proc-arg 0 "cell-height" "Width of the brush cells") - (proc-arg 2 "display-cols" "Display column number") - (proc-arg 2 "display-rows" "Display row number") - (proc-arg 0 "dimension" "Dimension of the brush pipe") - (proc-arg 7 "rank" "Ranks of the dimensions") - (proc-arg 0 "dimension" "Dimension (again)") - (proc-arg 9 "sel" "Selection modes"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-gbr/file-gbr" 1655102016 - (proc-def "file-gbr-save" 1 - "Exports files in the GIMP brush file format" - "Exports files in the GIMP brush file format" - "Tim Newsome, Jens Lautenbacher, Sven Neumann" - "Tim Newsome, Jens Lautenbacher, Sven Neumann" - "1997-2000" - "GIMP brush" - 0 - (icon icon-name -1 "gimp-tool-paintbrush") - (save-proc - (extensions "gbr") - (mime-types "image/x-gimp-gbr") - (handles-uri)) - "RGB*, GRAY*, INDEXED*" - 7 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 13 "image" "Input image") - (proc-arg 16 "drawable" "Drawable to export") - (proc-arg 4 "uri" "The URI of the file to export the image in") - (proc-arg 4 "raw-uri" "The URI of the file to export the image in") - (proc-arg 0 "spacing" "Spacing of the brush") - (proc-arg 4 "description" "Short description of the brush"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-exr/file-exr" 1655102016 - (proc-def "file-exr-load" 1 - "Loads files in the OpenEXR file format" - "This plug-in loads OpenEXR files. " - "Dominik Ernst , Mukund Sivaraman " - "Dominik Ernst , Mukund Sivaraman " - "0.0.0" - "OpenEXR image" - 0 - (icon icon-name -1 "") - (load-proc - (extensions "exr") - (magics "0,long,0x762f3101") - (mime-types "image/x-exr")) - "" - 3 1 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 4 "filename" "The name of the file to load") - (proc-arg 4 "raw-filename" "The name of the file to load") - (proc-arg 13 "image" "Output image"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-bmp/file-bmp" 1655102016 - (proc-def "file-bmp-load" 1 - "Loads files of Windows BMP file format" - "Loads files of Windows BMP file format" - "Alexander Schulz" - "Alexander Schulz" - "1997" - "Windows BMP image" - 0 - (icon icon-name -1 "") - (load-proc - (extensions "bmp") - (magics "0,string,BM") - (mime-types "image/bmp")) - "" - 3 1 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 4 "filename" "The name of the file to load") - (proc-arg 4 "raw-filename" "The name entered") - (proc-arg 13 "image" "Output image")) - (proc-def "file-bmp-save" 1 - "Saves files in Windows BMP file format" - "Saves files in Windows BMP file format" - "Alexander Schulz" - "Alexander Schulz" - "1997" - "Windows BMP image" - 0 - (icon icon-name -1 "") - (save-proc - (extensions "bmp") - (mime-types "image/bmp")) - "INDEXED, GRAY, RGB*" - 5 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 13 "image" "Input image") - (proc-arg 16 "drawable" "Drawable to save") - (proc-arg 4 "filename" "The name of the file to save the image in") - (proc-arg 4 "raw-filename" "The name entered")) - (proc-def "file-bmp-save2" 1 - "Saves files in Windows BMP file format" - "Saves files in Windows BMP file format, with RLE, color space information, and RGB format options available non-interactively" - "Alexander Schulz" - "Alexander Schulz" - "1997" - "Windows BMP image" - 0 - (icon icon-name -1 "") - (save-proc - (extensions "bmp") - (mime-types "image/bmp")) - "INDEXED, GRAY, RGB*" - 8 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 13 "image" "Input image") - (proc-arg 16 "drawable" "Drawable to save") - (proc-arg 4 "filename" "The name of the file to save the image in") - (proc-arg 4 "raw-filename" "The name entered") - (proc-arg 0 "use-rle" "Use run-length-encoding compression (only valid for 4 and 8-bit indexed images)") - (proc-arg 0 "write-color-space" "Whether or not to write BITMAPV5HEADER color space data") - (proc-arg 0 "rgb-format" "Export format for RGB images (0=RGB_565, 1=RGBA_5551, 2=RGB_555, 3=RGB_888, 4=RGBA_8888, 5=RGBX_8888)"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/despeckle/despeckle" 1655102016 - (proc-def "plug-in-despeckle" 1 - "Remove speckle noise from the image" - "This plug-in selectively performs a median or adaptive box filter on an image." - "Michael Sweet " - "Copyright 1997-1998 by Michael Sweet" - "May 2010" - "Des_peckle..." - 1 - (menu-path "/Filters/Enhance") - (icon icon-name -1 "") - "RGB*, GRAY*" - 7 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 13 "image" "Input image") - (proc-arg 16 "drawable" "Input drawable") - (proc-arg 0 "radius" "Filter box radius (default = 3)") - (proc-arg 0 "type" "Filter type { MEDIAN (0), ADAPTIVE (1), RECURSIVE-MEDIAN (2), RECURSIVE-ADAPTIVE (3) }") - (proc-arg 0 "black" "Black level (-1 to 255)") - (proc-arg 0 "white" "White level (0 to 256)"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/crop-zealous/crop-zealous" 1655102016 - (proc-def "plug-in-zealouscrop" 1 - "Autocrop unused space from edges and middle" - "" - "Adam D. Moss" - "Adam D. Moss" - "1997" - "_Zealous Crop" - 1 - (menu-path "/Image/Crop") - (icon icon-name -1 "") - "RGB*, GRAY*, INDEXED*" - 3 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 13 "image" "Input image") - (proc-arg 16 "drawable" "Input drawable"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/colorify/colorify" 1655102016 - (proc-def "plug-in-colorify" 1 - "Replace all colors with shades of a specified color" - "Makes an average of the RGB channels and uses it to set the color" - "Francisco Bustamante" - "Francisco Bustamante" - "1.1" - "Colorif_y..." - 0 - (icon icon-name -1 "") - "RGB*" - 4 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 13 "image" "Input image") - (proc-arg 16 "drawable" "Input drawable") - (proc-arg 10 "color" "Color to apply"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/checkerboard/checkerboard" 1655102016 - (proc-def "plug-in-checkerboard" 1 - "Create a checkerboard pattern" - "More here later" - "Brent Burton & the Edward Blevins" - "Brent Burton & the Edward Blevins" - "1997" - "_Checkerboard (legacy)..." - 1 - (menu-path "/Filters/Render/Pattern") - (icon icon-name -1 "") - "RGB*, GRAY*" - 5 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 13 "image" "Input image (unused)") - (proc-arg 16 "drawable" "Input drawable") - (proc-arg 0 "check-mode" "Check mode { REGULAR (0), PSYCHOBILY (1) }") - (proc-arg 0 "check-size" "Size of the checks"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/blur/blur" 1655102016 - (proc-def "plug-in-blur" 1 - "Simple blur, fast but not very strong" - "This plug-in blurs the specified drawable, using a 3x3 blur. Indexed images are not supported." - "Miles O'Neal " - "Miles O'Neal, Spencer Kimball, Peter Mattis, Torsten Martinsen, Brian Degenhardt, Federico Mena Quintero, Stephen Norris, Daniel Cotting" - "1995-1998" - "_Blur" - 0 - (icon icon-name -1 "") - "RGB*, GRAY*" - 3 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 13 "image" "Input image (unused)") - (proc-arg 16 "drawable" "Input drawable"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/align-layers/align-layers" 1655102016 - (proc-def "plug-in-align-layers" 1 - "Align all visible layers of the image" - "Align visible layers" - "Shuji Narazaki " - "Shuji Narazaki" - "1997" - "Align Visi_ble Layers..." - 1 - (menu-path "/Image/Arrange") - (icon icon-name -1 "") - "RGB*,GRAY*,INDEXED*" - 5 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 13 "image" "Input image") - (proc-arg 16 "drawable" "Input drawable (not used)") - (proc-arg 0 "link-after-alignment" "Link the visible layers after alignment { TRUE, FALSE }") - (proc-arg 0 "use-bottom" "use the bottom layer as the base of alignment { TRUE, FALSE }"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/van-gogh-lic/van-gogh-lic" 1655102016 - (proc-def "plug-in-lic" 1 - "Special effects that nobody understands" - "No help yet" - "Tom Bech & Federico Mena Quintero" - "Tom Bech & Federico Mena Quintero" - "Version 0.14, September 24 1997" - "_Van Gogh (LIC)..." - 1 - (menu-path "/Filters/Artistic") - (icon icon-name -1 "") - "RGB*" - 3 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0) }") - (proc-arg 13 "image" "Input image") - (proc-arg 16 "drawable" "Input drawable"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/sphere-designer/sphere-designer" 1655102016 - (proc-def "plug-in-spheredesigner" 1 - "Create an image of a textured sphere" - "This plug-in can be used to create textured and/or bumpmapped spheres, and uses a small lightweight raytracer to perform the task with good quality" - "Vidar Madsen" - "Vidar Madsen" - "1999" - "Sphere _Designer..." - 1 - (menu-path "/Filters/Render") - (icon icon-name -1 "") - "RGB*, GRAY*" - 3 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 13 "image" "Input image (unused)") - (proc-arg 16 "drawable" "Input drawable"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/sharpen/sharpen" 1655102016 - (proc-def "plug-in-sharpen" 1 - "Make image sharper (less powerful than Unsharp Mask)" - "This plug-in selectively performs a convolution filter on an image." - "Michael Sweet " - "Copyright 1997-1998 by Michael Sweet" - "1.4.2 - 3 June 1998" - "_Sharpen..." - 0 - (icon icon-name -1 "") - "RGB*, GRAY*" - 4 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 13 "image" "Input image") - (proc-arg 16 "drawable" "Input drawable") - (proc-arg 0 "percent" "Percent sharpening (default = 10)"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/sample-colorize/sample-colorize" 1655102016 - (proc-def "plug-in-sample-colorize" 1 - "Colorize image using a sample image as a guide" - "This plug-in colorizes the contents of the specified (gray) layer with the help of a sample (color) layer. It analyzes all colors in the sample layer. The sample colors are sorted by brightness (== intentisty) and amount and stored in a sample colortable (where brightness is the index) The pixels of the destination layer are remapped with the help of the sample colortable. If use_subcolors is TRUE, the remapping process uses all sample colors of the corresponding brightness-intensity and distributes the subcolors according to their amount in the sample (If the sample has 5 green, 3 yellow, and 1 red pixel of the intensity value 105, the destination pixels at intensity value 105 are randomly painted in green, yellow and red in a relation of 5:3:1 If use_subcolors is FALSE only one sample color per intensity is used. (green will be used in this example) The brightness intensity value is transformed at the remapping process according to the levels: out_lo, out_hi, in_lo, in_high and gamma The in_low / in_high levels specify an initial mapping of the intensity. The gamma value determines how intensities are interpolated between the in_lo and in_high levels. A gamma value of 1.0 results in linear interpolation. Higher gamma values results in more high-level intensities Lower gamma values results in more low-level intensities The out_low/out_high levels constrain the resulting intensity index The intensity index is used to pick the corresponding color in the sample colortable. If hold_inten is FALSE the picked color is used 1:1 as resulting remap_color. If hold_inten is TRUE The brightness of the picked color is adjusted back to the origial intensity value (only hue and saturation are taken from the picked sample color) (or to the input level, if orig_inten is set FALSE) Works on both Grayscale and RGB image with/without alpha channel. (the image with the dst_drawable is converted to RGB if necessary) The sample_drawable should be of type RGB or RGBA" - "Wolfgang Hofer" - "hof@hotbot.com" - "02/2000" - "_Sample Colorize..." - 1 - (menu-path "/Colors/Map") - (icon icon-name -1 "") - "RGB*, GRAY*" - 13 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 13 "image" "Input image (unused)") - (proc-arg 16 "dst-drawable" "The drawable to be colorized (Type GRAY* or RGB*)") - (proc-arg 16 "sample-drawable" "Sample drawable (should be of Type RGB or RGBA)") - (proc-arg 0 "hold-inten" "hold brightness intensity levels (TRUE, FALSE)") - (proc-arg 0 "orig-inten" "TRUE: hold brightness of original intensity levels. FALSE: Hold Intensity of input levels") - (proc-arg 0 "rnd-subcolors" "TRUE: Use all subcolors of same intensity, FALSE: use only one color per intensity") - (proc-arg 0 "guess-missing" "TRUE: guess samplecolors for the missing intensity values FALSE: use only colors found in the sample") - (proc-arg 0 "in-low" "intensity of lowest input (0 <= in_low <= 254)") - (proc-arg 0 "in-high" "intensity of highest input (1 <= in_high <= 255)") - (proc-arg 3 "gamma" "gamma adjustment factor (0.1 <= gamma <= 10) where 1.0 is linear") - (proc-arg 0 "out-low" "lowest sample color intensity (0 <= out_low <= 254)") - (proc-arg 0 "out-high" "highest sample color intensity (1 <= out_high <= 255)"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/plugin-browser/plugin-browser" 1655102016 - (proc-def "plug-in-plug-in-details" 1 - "Display information about plug-ins" - "Allows one to browse the plug-in menus system. You can search for plug-in names, sort by name or menu location and you can view a tree representation of the plug-in menus. Can also be of help to find where new plug-ins have installed themselves in the menus." - "Andy Thomas" - "Andy Thomas" - "1999" - "_Plug-in Browser" - 1 - (menu-path "/Help/Programming") - (icon icon-name -1 "gimp-plugin") - "" - 1 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0) }"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/metadata-viewer/metadata-viewer" 1655102016 - (proc-def "plug-in-metadata-viewer" 1 - "View metadata (Exif, IPTC, XMP)" - "View metadata information attached to the current image. This can include Exif, IPTC and/or XMP information." - "Hartmut Kuhse, Michael Natterer, Ben Touchette" - "Hartmut Kuhse, Michael Natterer, Ben Touchette" - "2013, 2017" - "_View Metadata" - 1 - (menu-path "/Image/Metadata") - (icon icon-name -1 "") - "*" - 2 0 - (proc-arg 0 "run-mode" "Run mode { RUN-INTERACTIVE (0) }") - (proc-arg 13 "image" "Input image"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/mail/mail" 1655102016 - (proc-def "plug-in-mail-image" 1 - "Send the image by email" - "The preferred email composer is used to send emails and must be properly configured." - "Adrian Likins, Reagan Blundell" - "Adrian Likins, Reagan Blundell, Daniel Risacher, Spencer Kimball and Peter Mattis" - "1995-1997" - "Send by E_mail..." - 1 - (menu-path "/File/Send") - (icon icon-name -1 "gtk-edit") - "*" - 9 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 13 "image" "Input image") - (proc-arg 16 "drawable" "Drawable to save") - (proc-arg 4 "filename" "The name of the file to save the image in") - (proc-arg 4 "to-address" "The email address to send to") - (proc-arg 4 "from-address" "The email address for the From: field") - (proc-arg 4 "subject" "The subject") - (proc-arg 4 "comment" "The Comment") - (proc-arg 0 "encapsulation" "ignored"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/ifs-compose/ifs-compose" 1655102016 - (proc-def "plug-in-ifscompose" 1 - "Create an Iterated Function System (IFS) fractal" - "Interactively create an Iterated Function System fractal. Use the window on the upper left to adjust the component transformations of the fractal. The operation that is performed is selected by the buttons underneath the window, or from a menu popped up by the right mouse button. The fractal will be rendered with a transparent background if the current image has an alpha channel." - "Owen Taylor" - "Owen Taylor" - "1997" - "_IFS Fractal..." - 1 - (menu-path "/Filters/Render/Fractals") - (icon icon-name -1 "") - "*" - 3 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 13 "image" "Input image") - (proc-arg 16 "drawable" "Input drawable"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/grid/grid" 1655102016 - (proc-def "plug-in-grid" 1 - "Draw a grid on the image" - "Draws a grid using the specified colors. The grid origin is the upper left corner." - "Tim Newsome" - "Tim Newsome, Sven Neumann, Tom Rathborne, TC" - "1997 - 2000" - "_Grid (legacy)..." - 1 - (menu-path "/Filters/Render/Pattern") - (icon icon-name -1 "") - "RGB*, GRAY*, INDEXED*" - 18 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 13 "image" "Input image") - (proc-arg 16 "drawable" "Input drawable") - (proc-arg 0 "hwidth" "Horizontal Width (>= 0)") - (proc-arg 0 "hspace" "Horizontal Spacing (>= 1)") - (proc-arg 0 "hoffset" "Horizontal Offset (>= 0)") - (proc-arg 10 "hcolor" "Horizontal Colour") - (proc-arg 2 "hopacity" "Horizontal Opacity (0...255)") - (proc-arg 0 "vwidth" "Vertical Width (>= 0)") - (proc-arg 0 "vspace" "Vertical Spacing (>= 1)") - (proc-arg 0 "voffset" "Vertical Offset (>= 0)") - (proc-arg 10 "vcolor" "Vertical Colour") - (proc-arg 2 "vopacity" "Vertical Opacity (0...255)") - (proc-arg 0 "iwidth" "Intersection Width (>= 0)") - (proc-arg 0 "ispace" "Intersection Spacing (>= 0)") - (proc-arg 0 "ioffset" "Intersection Offset (>= 0)") - (proc-arg 10 "icolor" "Intersection Colour") - (proc-arg 2 "iopacity" "Intersection Opacity (0...255)"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimpressionist/gimpressionist" 1655102016 - (proc-def "plug-in-gimpressionist" 1 - "Performs various artistic operations" - "Performs various artistic operations on an image" - "Vidar Madsen " - "Vidar Madsen" - "v1.0, November 2003" - "_GIMPressionist..." - 1 - (menu-path "/Filters/Artistic") - (icon icon-name -1 "") - "RGB*, GRAY*" - 4 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0) }") - (proc-arg 13 "image" "Input image") - (proc-arg 16 "drawable" "Input drawable") - (proc-arg 4 "preset" "Preset Name"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/flame/flame" 1655102016 - (proc-def "plug-in-flame" 1 - "Create cosmic recursive fractal flames" - "Create cosmic recursive fractal flames" - "Scott Draves" - "Scott Draves" - "1997" - "_Flame..." - 1 - (menu-path "/Filters/Render/Fractals") - (icon icon-name -1 "") - "RGB*" - 3 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 13 "image" "Input image (unused)") - (proc-arg 16 "drawable" "Input drawable"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-xpm/file-xpm" 1655102016 - (proc-def "file-xpm-load" 1 - "Load files in XPM (X11 Pixmap) format." - "Load files in XPM (X11 Pixmap) format. XPM is a portable image format designed to be included in C source code. XLib provides utility functions to read this format. Newer code should however be using gdk-pixbuf-csource instead. XPM supports colored images, unlike the XBM format which XPM was designed to replace." - "Spencer Kimball & Peter Mattis & Ray Lehtiniemi" - "Spencer Kimball & Peter Mattis" - "1997" - "X PixMap image" - 0 - (icon icon-name -1 "") - (load-proc - (extensions "xpm") - (magics "0, string,/*\\040XPM\\040*/") - (mime-types "image/x-xpixmap")) - "" - 3 1 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 4 "filename" "The name of the file to load") - (proc-arg 4 "raw-filename" "The name entered") - (proc-arg 13 "image" "Output image")) - (proc-def "file-xpm-save" 1 - "Export files in XPM (X11 Pixmap) format." - "Export files in XPM (X11 Pixmap) format. XPM is a portable image format designed to be included in C source code. XLib provides utility functions to read this format. Newer code should however be using gdk-pixbuf-csource instead. XPM supports colored images, unlike the XBM format which XPM was designed to replace." - "Spencer Kimball & Peter Mattis & Ray Lehtiniemi & Nathan Summers" - "Spencer Kimball & Peter Mattis" - "1997" - "X PixMap image" - 0 - (icon icon-name -1 "") - (save-proc - (extensions "xpm") - (mime-types "image/x-xpixmap")) - "RGB*, GRAY*, INDEXED*" - 6 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 13 "image" "Input image") - (proc-arg 16 "drawable" "Drawable to export") - (proc-arg 4 "filename" "The name of the file to export the image in") - (proc-arg 4 "raw-filename" "The name of the file to export the image in") - (proc-arg 0 "threshold" "Alpha threshold (0-255)"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-webp/file-webp" 1655102016 - (proc-def "file-webp-load" 1 - "Loads images in the WebP file format" - "Loads images in the WebP file format" - "Nathan Osman, Ben Touchette" - "(C) 2015-2016 Nathan Osman, (C) 2016 Ben Touchette" - "2015,2016" - "WebP image" - 0 - (icon icon-name -1 "") - (load-proc - (extensions "webp") - (magics "8,string,WEBP") - (mime-types "image/webp")) - "" - 3 1 - (proc-arg 0 "run-mode" "Interactive, non-interactive") - (proc-arg 4 "filename" "The name of the file to load") - (proc-arg 4 "raw-filename" "The name entered") - (proc-arg 13 "image" "Output image")) - (proc-def "file-webp-save" 1 - "Saves files in the WebP image format" - "Saves files in the WebP image format" - "Nathan Osman, Ben Touchette" - "(C) 2015-2016 Nathan Osman, (C) 2016 Ben Touchette" - "2015,2016" - "WebP image" - 0 - (icon icon-name -1 "") - (save-proc - (extensions "webp") - (mime-types "image/webp")) - "RGB*, GRAY*, INDEXED*" - 18 0 - (proc-arg 0 "run-mode" "Interactive, non-interactive") - (proc-arg 13 "image" "Input image") - (proc-arg 16 "drawable" "Drawable to save") - (proc-arg 4 "filename" "The name of the file to save the image to") - (proc-arg 4 "raw-filename" "The name entered") - (proc-arg 0 "preset" "preset (Default=0, Picture=1, Photo=2, Drawing=3, Icon=4, Text=5)") - (proc-arg 0 "lossless" "Use lossless encoding (0/1)") - (proc-arg 3 "quality" "Quality of the image (0 <= quality <= 100)") - (proc-arg 3 "alpha-quality" "Quality of the image's alpha channel (0 <= alpha-quality <= 100)") - (proc-arg 0 "animation" "Use layers for animation (0/1)") - (proc-arg 0 "anim-loop" "Loop animation infinitely (0/1)") - (proc-arg 0 "minimize-size" "Minimize animation size (0/1)") - (proc-arg 0 "kf-distance" "Maximum distance between key-frames (>=0)") - (proc-arg 0 "exif" "Toggle saving exif data (0/1)") - (proc-arg 0 "iptc" "Toggle saving iptc data (0/1)") - (proc-arg 0 "xmp" "Toggle saving xmp data (0/1)") - (proc-arg 0 "delay" "Delay to use when timestamps are not available or forced") - (proc-arg 0 "force-delay" "Force delay on all frames")) - (proc-def "file-webp-save2" 1 - "Saves files in the WebP image format" - "Saves files in the WebP image format with additional metadata control" - "Nathan Osman, Ben Touchette" - "(C) 2015-2016 Nathan Osman, (C) 2016 Ben Touchette" - "2015,2016" - "WebP image" - 0 - (icon icon-name -1 "") - (save-proc - (extensions "webp") - (mime-types "image/webp")) - "RGB*, GRAY*, INDEXED*" - 19 0 - (proc-arg 0 "run-mode" "Interactive, non-interactive") - (proc-arg 13 "image" "Input image") - (proc-arg 16 "drawable" "Drawable to save") - (proc-arg 4 "filename" "The name of the file to save the image to") - (proc-arg 4 "raw-filename" "The name entered") - (proc-arg 0 "preset" "preset (Default=0, Picture=1, Photo=2, Drawing=3, Icon=4, Text=5)") - (proc-arg 0 "lossless" "Use lossless encoding (0/1)") - (proc-arg 3 "quality" "Quality of the image (0 <= quality <= 100)") - (proc-arg 3 "alpha-quality" "Quality of the image's alpha channel (0 <= alpha-quality <= 100)") - (proc-arg 0 "animation" "Use layers for animation (0/1)") - (proc-arg 0 "anim-loop" "Loop animation infinitely (0/1)") - (proc-arg 0 "minimize-size" "Minimize animation size (0/1)") - (proc-arg 0 "kf-distance" "Maximum distance between key-frames (>=0)") - (proc-arg 0 "exif" "Toggle saving exif data (0/1)") - (proc-arg 0 "iptc" "Toggle saving iptc data (0/1)") - (proc-arg 0 "xmp" "Toggle saving xmp data (0/1)") - (proc-arg 0 "thumbnail" "Toggle saving thumbnail (0/1)") - (proc-arg 0 "delay" "Delay to use when timestamps are not available or forced") - (proc-arg 0 "force-delay" "Force delay on all frames"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-sunras/file-sunras" 1655102016 - (proc-def "file-sunras-load" 1 - "load file of the SunRaster file format" - "load file of the SunRaster file format" - "Peter Kirchgessner" - "Peter Kirchgessner" - "1996" - "SUN Rasterfile image" - 0 - (icon icon-name -1 "") - (load-proc - (extensions "im1,im8,im24,im32,rs,ras,sun") - (magics "0,long,0x59a66a95") - (mime-types "image/x-sun-raster")) - "" - 3 1 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 4 "filename" "The name of the file to load") - (proc-arg 4 "raw-filename" "The name of the file to load") - (proc-arg 13 "image" "Output image")) - (proc-def "file-sunras-save" 1 - "export file in the SunRaster file format" - "SUNRAS exporting handles all image types except those with alpha channels." - "Peter Kirchgessner" - "Peter Kirchgessner" - "1996" - "SUN Rasterfile image" - 0 - (icon icon-name -1 "") - (save-proc - (extensions "im1,im8,im24,im32,rs,ras,sun") - (mime-types "image/x-sun-raster")) - "RGB, GRAY, INDEXED" - 6 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 13 "image" "Input image") - (proc-arg 16 "drawable" "Drawable to export") - (proc-arg 4 "filename" "The name of the file to export the image in") - (proc-arg 4 "raw-filename" "The name of the file to export the image in") - (proc-arg 0 "rle" "Specify non-zero for rle output, zero for standard output"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-raw-data/file-raw-data" 1655102016 - (proc-def "file-raw-load" 1 - "Load raw images, specifying image information" - "Load raw images, specifying image information" - "timecop, pg@futureware.at" - "timecop, pg@futureware.at" - "Aug 2004" - "Raw image data" - 0 - (icon icon-name -1 "") - (load-proc - (extensions "data")) - "" - 3 1 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0) }") - (proc-arg 4 "filename" "The name of the file to load") - (proc-arg 4 "raw-filename" "The name entered") - (proc-arg 13 "image" "Output image")) - (proc-def "file-hgt-load" 1 - "Load HGT data as images" - "Load Digital Elevation Model data in HGT format from the Shuttle Radar Topography Mission as images. Though the output image will be RGB, all colors are grayscale by default and the contrast will be quite low on most earth relief. Therefore You will likely want to remap elevation to colors as a second step, for instance with the \"Gradient Map\" plug-in." - "" - "" - "2017-12-09" - "Digital Elevation Model data" - 0 - (icon icon-name -1 "") - (load-proc - (extensions "hgt")) - "" - 4 1 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0) }") - (proc-arg 4 "filename" "The name of the file to load") - (proc-arg 4 "raw-filename" "The name entered") - (proc-arg 0 "samplespacing" "The sample spacing of the data. Only supported values are 0, 1 and 3 (respectively auto-detect, SRTM-1 and SRTM-3 data)") - (proc-arg 13 "image" "Output image")) - (proc-def "file-raw-save" 1 - "Dump images to disk in raw format" - "This plug-in dumps images to disk in raw format, using the default settings stored as a parasite." - "timecop, pg@futureware.at" - "timecop, pg@futureware.at" - "Aug 2004" - "Raw image data" - 0 - (icon icon-name -1 "") - "INDEXED, GRAY, RGB, RGBA" - 5 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 13 "image" "Input image") - (proc-arg 16 "drawable" "Drawable to save") - (proc-arg 4 "filename" "The name of the file to save the image in") - (proc-arg 4 "raw-filename" "The name entered")) - (proc-def "file-raw-save2" 1 - "Dump images to disk in raw format" - "Dump images to disk in raw format" - "Björn Kautler, Bjoern@Kautler.net" - "Björn Kautler, Bjoern@Kautler.net" - "April 2014" - "Raw image data" - 0 - (icon icon-name -1 "") - (save-proc - (extensions "data,raw")) - "INDEXED, GRAY, RGB, RGBA" - 7 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 13 "image" "Input image") - (proc-arg 16 "drawable" "Drawable to save") - (proc-arg 4 "filename" "The name of the file to save the image in") - (proc-arg 4 "raw-filename" "The name entered") - (proc-arg 0 "image-type" "The image type { RAW_RGB (0), RAW_PLANAR (3) }") - (proc-arg 0 "palette-type" "The palette type { RAW_PALETTE_RGB (0), RAW_PALETTE_BGR (1) }")) - (proc-def "file-raw-get-defaults" 1 - "Get the current set of defaults used by the raw image data dump plug-in" - "This procedure returns the current set of defaults stored as a parasite for the raw image data dump plug-in. These defaults are used to seed the UI, by the file_raw_save_defaults procedure, and by gimp_file_save when it detects to use RAW." - "Björn Kautler, Bjoern@Kautler.net" - "Björn Kautler, Bjoern@Kautler.net" - "April 2014" - "" - 0 - (icon icon-name -1 "") - "" - 0 2 - (proc-arg 0 "image-type" "The image type { RAW_RGB (0), RAW_PLANAR (3) }") - (proc-arg 0 "palette-type" "The palette type { RAW_PALETTE_RGB (0), RAW_PALETTE_BGR (1) }")) - (proc-def "file-raw-set-defaults" 1 - "Set the current set of defaults used by the raw image dump plug-in" - "This procedure sets the current set of defaults stored as a parasite for the raw image data dump plug-in. These defaults are used to seed the UI, by the file_raw_save_defaults procedure, and by gimp_file_save when it detects to use RAW." - "Björn Kautler, Bjoern@Kautler.net" - "Björn Kautler, Bjoern@Kautler.net" - "April 2014" - "" - 0 - (icon icon-name -1 "") - "" - 2 0 - (proc-arg 0 "image-type" "The image type { RAW_RGB (0), RAW_PLANAR (3) }") - (proc-arg 0 "palette-type" "The palette type { RAW_PALETTE_RGB (0), RAW_PALETTE_BGR (1) }"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-pnm/file-pnm" 1655102016 +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-pnm/file-pnm" 1699270928 (proc-def "file-pnm-load" 1 "Loads files in the PNM file format" "This plug-in loads files in the various Netpbm portable file formats." @@ -1958,893 +2536,7 @@ (proc-arg 16 "drawable" "Drawable to export") (proc-arg 4 "filename" "The name of the file to export the image in") (proc-arg 4 "raw-filename" "The name of the file to export the image in"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-pdf-load/file-pdf-load" 1655102016 - (proc-def "file-pdf-load" 1 - "Load file in PDF format" - "Loads files in Adobe's Portable Document Format. PDF is designed to be easily processed by a variety of different platforms, and is a distant cousin of PostScript.\nIf the PDF document has multiple pages, only the first page will be loaded. Call file_pdf_load2() to load several pages as layers." - "Nathan Summers" - "Nathan Summers" - "2005" - "Portable Document Format" - 0 - (icon icon-name -1 "") - "" - 3 1 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 4 "filename" "The name of the file to load") - (proc-arg 4 "raw-filename" "The name entered") - (proc-arg 13 "image" "Output image")) - (proc-def "file-pdf-load2" 1 - "Load file in PDF format" - "Loads files in Adobe's Portable Document Format. PDF is designed to be easily processed by a variety of different platforms, and is a distant cousin of PostScript.\nThis procedure adds extra parameters to file-pdf-load to open encrypted PDF and to allow multiple page loading." - "Nathan Summers, Lionel N." - "Nathan Summers, Lionel N." - "2005, 2017" - "Portable Document Format" - 0 - (icon icon-name -1 "") - (load-proc - (extensions "pdf") - (magics "0, string,%PDF-") - (mime-types "application/pdf") - (thumb-loader "file-pdf-load-thumb")) - "" - 6 1 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 4 "filename" "The name of the file to load") - (proc-arg 4 "raw-filename" "The name entered") - (proc-arg 4 "pdf-password" "The password to decrypt the encrypted PDF file") - (proc-arg 0 "n-pages" "Number of pages to load (0 for all)") - (proc-arg 5 "pages" "The pages to load in the expected order") - (proc-arg 13 "image" "Output image")) - (proc-def "file-pdf-load-thumb" 1 - "Loads a preview from a PDF file." - "Loads a small preview of the first page of the PDF format file. Uses the embedded thumbnail if present." - "Nathan Summers" - "Nathan Summers" - "2005" - "" - 0 - (icon icon-name -1 "") - "" - 2 5 - (proc-arg 4 "filename" "The name of the file to load") - (proc-arg 0 "thumb-size" "Preferred thumbnail size") - (proc-arg 13 "image" "Thumbnail image") - (proc-arg 0 "image-width" "Width of full-sized image") - (proc-arg 0 "image-height" "Height of full-sized image") - (proc-arg 0 "image-type" "Image type") - (proc-arg 0 "num-layers" "Number of pages"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-jpeg/file-jpeg" 1655102016 - (proc-def "file-jpeg-load" 1 - "loads files in the JPEG file format" - "loads files in the JPEG file format" - "Spencer Kimball, Peter Mattis & others" - "Spencer Kimball & Peter Mattis" - "1995-2007" - "JPEG image" - 0 - (icon icon-name -1 "") - (load-proc - (extensions "jpg,jpeg,jpe") - (magics "0,string,") - (mime-types "image/jpeg") - (thumb-loader "file-jpeg-load-thumb")) - "" - 3 1 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 4 "filename" "The name of the file to load") - (proc-arg 4 "raw-filename" "The name of the file to load") - (proc-arg 13 "image" "Output image")) - (proc-def "file-jpeg-load-thumb" 1 - "Loads a thumbnail from a JPEG image" - "Loads a thumbnail from a JPEG image (only if it exists)" - "Mukund Sivaraman , Sven Neumann " - "Mukund Sivaraman , Sven Neumann " - "November 15, 2004" - "" - 0 - (icon icon-name -1 "") - "" - 2 3 - (proc-arg 4 "filename" "The name of the file to load") - (proc-arg 0 "thumb-size" "Preferred thumbnail size") - (proc-arg 13 "image" "Thumbnail image") - (proc-arg 0 "image-width" "Width of full-sized image") - (proc-arg 0 "image-height" "Height of full-sized image")) - (proc-def "file-jpeg-save" 1 - "saves files in the JPEG file format" - "saves files in the lossy, widely supported JPEG format" - "Spencer Kimball, Peter Mattis & others" - "Spencer Kimball & Peter Mattis" - "1995-2007" - "JPEG image" - 0 - (icon icon-name -1 "") - (save-proc - (extensions "jpg,jpeg,jpe") - (mime-types "image/jpeg")) - "RGB*, GRAY*" - 14 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 13 "image" "Input image") - (proc-arg 16 "drawable" "Drawable to save") - (proc-arg 4 "filename" "The name of the file to save the image in") - (proc-arg 4 "raw-filename" "The name of the file to save the image in") - (proc-arg 3 "quality" "Quality of saved image (0 <= quality <= 1)") - (proc-arg 3 "smoothing" "Smoothing factor for saved image (0 <= smoothing <= 1)") - (proc-arg 0 "optimize" "Use optimized tables during Huffman coding (0/1)") - (proc-arg 0 "progressive" "Create progressive JPEG images (0/1)") - (proc-arg 4 "comment" "Image comment") - (proc-arg 0 "subsmp" "Sub-sampling type { 0, 1, 2, 3 } 0 == 4:2:0 (chroma quartered), 1 == 4:2:2 Horizontal (chroma halved), 2 == 4:4:4 (best quality), 3 == 4:2:2 Vertical (chroma halved)") - (proc-arg 0 "baseline" "Force creation of a baseline JPEG (non-baseline JPEGs can't be read by all decoders) (0/1)") - (proc-arg 0 "restart" "Interval of restart markers (in MCU rows, 0 = no restart markers)") - (proc-arg 0 "dct" "DCT method to use { INTEGER (0), FIXED (1), FLOAT (2) }"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-heif/file-heif" 1655102016 - (has-init)) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-gif-save/file-gif-save" 1655102016 - (proc-def "file-gif-save" 1 - "exports files in Compuserve GIF file format" - "Export a file in Compuserve GIF format, with possible animation, transparency, and comment. To export an animation, operate on a multi-layer file. The plug-in will interpret <50% alpha as transparent. When run non-interactively, the value for the comment is taken from the 'gimp-comment' parasite. " - "Spencer Kimball, Peter Mattis, Adam Moss, David Koblas" - "Spencer Kimball, Peter Mattis, Adam Moss, David Koblas" - "1995-1997" - "GIF image" - 0 - (icon icon-name -1 "") - (save-proc - (extensions "gif") - (mime-types "image/gif") - (handles-uri)) - "INDEXED*, GRAY*" - 9 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 13 "image" "Image to export") - (proc-arg 16 "drawable" "Drawable to export") - (proc-arg 4 "uri" "The name of the URI to export the image in") - (proc-arg 4 "raw-uri" "The name of the URI to export the image in") - (proc-arg 0 "interlace" "Try to export as interlaced") - (proc-arg 0 "loop" "(animated gif) loop infinitely") - (proc-arg 0 "default-delay" "(animated gif) Default delay between frames in milliseconds") - (proc-arg 0 "default-dispose" "(animated gif) Default disposal type (0=`don't care`, 1=combine, 2=replace)")) - (proc-def "file-gif-save2" 1 - "exports files in Compuserve GIF file format" - "Export a file in Compuserve GIF format, with possible animation, transparency, and comment. To export an animation, operate on a multi-layer file and give the 'as-animation' parameter as TRUE. The plug-in will interpret <50% alpha as transparent. When run non-interactively, the value for the comment is taken from the 'gimp-comment' parasite. " - "Spencer Kimball, Peter Mattis, Adam Moss, David Koblas" - "Spencer Kimball, Peter Mattis, Adam Moss, David Koblas" - "1995-1997" - "GIF image" - 0 - (icon icon-name -1 "") - "INDEXED*, GRAY*" - 12 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 13 "image" "Image to export") - (proc-arg 16 "drawable" "Drawable to export") - (proc-arg 4 "uri" "The name of the URI to export the image in") - (proc-arg 4 "raw-uri" "The name of the URI to export the image in") - (proc-arg 0 "interlace" "Try to export as interlaced") - (proc-arg 0 "loop" "(animated gif) loop infinitely") - (proc-arg 0 "default-delay" "(animated gif) Default delay between frames in milliseconds") - (proc-arg 0 "default-dispose" "(animated gif) Default disposal type (0=`don't care`, 1=combine, 2=replace)") - (proc-arg 0 "as-animation" "Export GIF as animation?") - (proc-arg 0 "force-delay" "(animated gif) Use specified delay for all frames?") - (proc-arg 0 "force-dispose" "(animated gif) Use specified disposal for all frames?"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-fli/file-fli" 1655102016 - (proc-def "file-fli-load" 1 - "load FLI-movies" - "This is an experimantal plug-in to handle FLI movies" - "Jens Ch. Restemeier" - "Jens Ch. Restemeier" - "1997" - "AutoDesk FLIC animation" - 0 - (icon icon-name -1 "") - (load-proc - (extensions "fli,flc") - (mime-types "image/x-flic")) - "" - 3 1 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 4 "filename" "The name of the file to load") - (proc-arg 4 "raw-filename" "The name entered") - (proc-arg 13 "image" "Output image")) - (proc-def "file-fli-save" 1 - "export FLI-movies" - "This is an experimantal plug-in to handle FLI movies" - "Jens Ch. Restemeier" - "Jens Ch. Restemeier" - "1997" - "AutoDesk FLIC animation" - 0 - (icon icon-name -1 "") - (save-proc - (extensions "fli,flc") - (mime-types "image/x-flic")) - "INDEXED,GRAY" - 7 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 13 "image" "Input image") - (proc-arg 16 "drawable" "Input drawable (unused)") - (proc-arg 4 "filename" "The name of the file to export") - (proc-arg 4 "raw-filename" "The name entered") - (proc-arg 0 "from-frame" "Export beginning from this frame") - (proc-arg 0 "to-frame" "End exporting with this frame")) - (proc-def "file-fli-info" 1 - "Get information about a Fli movie" - "This is a experimantal plug-in to handle FLI movies" - "Jens Ch. Restemeier" - "Jens Ch. Restemeier" - "1997" - "" - 0 - (icon icon-name -1 "") - "" - 1 3 - (proc-arg 4 "filename" "The name of the file to get info") - (proc-arg 0 "width" "Width of one frame") - (proc-arg 0 "height" "Height of one frame") - (proc-arg 0 "frames" "Number of Frames"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-dicom/file-dicom" 1655102016 - (proc-def "file-dicom-load" 1 - "loads files of the dicom file format" - "Load a file in the DICOM standard format.The standard is defined at http://medical.nema.org/. The plug-in currently only supports reading images with uncompressed pixel sections." - "Dov Grobgeld" - "Dov Grobgeld " - "2003" - "DICOM image" - 0 - (icon icon-name -1 "") - (load-proc - (extensions "dcm,dicom") - (magics "128,string,DICM") - (mime-types "image/x-dcm")) - "" - 3 1 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 4 "filename" "The name of the file to load") - (proc-arg 4 "raw-filename" "The name of the file to load") - (proc-arg 13 "image" "Output image")) - (proc-def "file-dicom-save" 1 - "Save file in the DICOM file format" - "Save an image in the medical standard DICOM image formats. The standard is defined at http://medical.nema.org/. The file format is defined in section 10 of the standard. The files are saved uncompressed and the compulsory DICOM tags are filled with default dummy values." - "Dov Grobgeld" - "Dov Grobgeld " - "2003" - "Digital Imaging and Communications in Medicine image" - 0 - (icon icon-name -1 "") - (save-proc - (extensions "dcm,dicom") - (mime-types "image/x-dcm")) - "RGB, GRAY" - 5 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 13 "image" "Input image") - (proc-arg 16 "drawable" "Drawable to save") - (proc-arg 4 "filename" "The name of the file to save") - (proc-arg 4 "raw-filename" "The name of the file to save"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-csource/file-csource" 1655102016 - (proc-def "file-csource-save" 1 - "Dump image data in RGB(A) format for C source" - "CSource cannot be run non-interactively." - "Tim Janik" - "Tim Janik" - "1999" - "C source code" - 0 - (icon icon-name -1 "") - (save-proc - (extensions "c") - (mime-types "text/x-csrc") - (handles-uri)) - "*" - 5 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0) }") - (proc-arg 13 "image" "Input image") - (proc-arg 16 "drawable" "Drawable to save") - (proc-arg 4 "filename" "The name of the file to save the image in") - (proc-arg 4 "raw-filename" "The name of the file to save the image in"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/emboss/emboss" 1655102016 - (proc-def "plug-in-emboss" 1 - "Simulate an image created by embossing" - "Emboss or Bumpmap the given drawable, specifying the angle and elevation for the light source." - "Eric L. Hernes, John Schlag" - "Eric L. Hernes" - "1997" - "_Emboss (legacy)..." - 1 - (menu-path "/Filters/Distorts") - (icon icon-name -1 "") - "RGB*" - 7 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 13 "image" "The Image") - (proc-arg 16 "drawable" "The Drawable") - (proc-arg 3 "azimuth" "The Light Angle (degrees)") - (proc-arg 3 "elevation" "The Elevation Angle (degrees)") - (proc-arg 0 "depth" "The Filter Width") - (proc-arg 0 "emboss" "Emboss or Bumpmap"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/depth-merge/depth-merge" 1655102016 - (proc-def "plug-in-depth-merge" 1 - "Combine two images using depth maps (z-buffers)" - "Taking as input two full-color, full-alpha images and two corresponding grayscale depth maps, this plug-in combines the images based on which is closer (has a lower depth map value) at each point." - "Sean Cier" - "Sean Cier" - "August 1998" - "_Depth Merge..." - 1 - (menu-path "/Filters/Combine") - (icon icon-name -1 "") - "RGB*, GRAY*" - 11 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 13 "image" "Input image (unused)") - (proc-arg 16 "result" "Result") - (proc-arg 16 "source1" "Source 1") - (proc-arg 16 "source2" "Source 2") - (proc-arg 16 "depthMap1" "Depth map 1") - (proc-arg 16 "depthMap2" "Depth map 2") - (proc-arg 3 "overlap" "Overlap") - (proc-arg 3 "offset" "Depth relative offset") - (proc-arg 3 "scale1" "Depth relative scale 1") - (proc-arg 3 "scale2" "Depth relative scale 2"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/contrast-retinex/contrast-retinex" 1655102016 - (proc-def "plug-in-retinex" 1 - "Enhance contrast using the Retinex method" - "The Retinex Image Enhancement Algorithm is an automatic image enhancement method that enhances a digital image in terms of dynamic range compression, color independence from the spectral distribution of the scene illuminant, and color/lightness rendition." - "Fabien Pelisson" - "Fabien Pelisson" - "2003" - "Retine_x..." - 1 - (menu-path "/Colors/Tone Mapping") - (icon icon-name -1 "") - "RGB*" - 7 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 13 "image" "Input image (unused)") - (proc-arg 16 "drawable" "Input drawable") - (proc-arg 0 "scale" "Biggest scale value") - (proc-arg 0 "nscales" "Number of scales") - (proc-arg 0 "scales-mode" "Retinex distribution through scales") - (proc-arg 3 "cvar" "Variance value"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/color-enhance/color-enhance" 1655102016 - (proc-def "plug-in-color-enhance" 1 - "Stretch color saturation to cover maximum possible range" - "This simple plug-in does an automatic saturation stretch. For each channel in the image, it finds the minimum and maximum values... it uses those values to stretch the individual histograms to the full range. For some images it may do just what you want; for others it may not work that well. This version differs from Contrast Autostretch in that it works in HSV space, and preserves hue." - "Martin Weber" - "Martin Weber" - "1997" - "_Color Enhance (legacy)" - 1 - (menu-path "/Colors/Auto") - (icon icon-name -1 "") - "RGB*, INDEXED*" - 3 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 13 "image" "Input image") - (proc-arg 16 "drawable" "Input drawable"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/cartoon/cartoon" 1655102016 - (proc-def "plug-in-cartoon" 1 - "Simulate a cartoon by enhancing edges" - "Propagates dark values in an image based on each pixel's relative darkness to a neighboring average. The idea behind this filter is to give the look of a black felt pen drawing subsequently shaded with color. This is achieved by darkening areas of the image which are measured to be darker than a neighborhood average. In this way, sufficiently large shifts in intensity are darkened to black. The rate at which they are darkened to black is determined by the second pct_black parameter. The mask_radius parameter controls the size of the pixel neighborhood over which the average intensity is computed and then compared to each pixel in the neighborhood to decide whether or not to darken it to black. Large values for mask_radius result in very thick black areas bordering the shaded regions of color and much less detail for black areas everywhere including inside regions of color. Small values result in more subtle pen strokes and detail everywhere. Small values for the pct_black make the blend from the color regions to the black border lines smoother and the lines themselves thinner and less noticeable; larger values achieve the opposite effect." - "Spencer Kimball" - "Bit Specialists, Inc." - "2001" - "Ca_rtoon (legacy)..." - 1 - (menu-path "/Filters/Artistic") - (icon icon-name -1 "") - "RGB*, GRAY*" - 5 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 13 "image" "Input image (unused)") - (proc-arg 16 "drawable" "Input drawable") - (proc-arg 3 "mask-radius" "Cartoon mask radius (radius of pixel neighborhood)") - (proc-arg 3 "pct-black" "Percentage of darkened pixels to set to black (0.0 - 1.0)"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/blinds/blinds" 1655102016 - (proc-def "plug-in-blinds" 1 - "Simulate an image painted on window blinds" - "More here later" - "Andy Thomas" - "Andy Thomas" - "1997" - "_Blinds..." - 0 - (icon icon-name -1 "") - "RGB*, GRAY*" - 7 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 13 "image" "Input image (unused)") - (proc-arg 16 "drawable" "Input drawable") - (proc-arg 0 "angle-dsp" "Angle of Displacement") - (proc-arg 0 "num-segments" "Number of segments in blinds") - (proc-arg 0 "orientation" "The orientation { ORIENTATION-HORIZONTAL (0), ORIENTATION-VERTICAL (1) }") - (proc-arg 0 "bg-transparent" "Background transparent { FALSE, TRUE }"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/web-browser/web-browser" 1655102016 - (proc-def "plug-in-web-browser" 1 - "Open an URL in the user specified web browser" - "Opens the given URL in the user specified web browser." - "Henrik Brix Andersen " - "2003" - "2003/09/16" - "" - 0 - (icon icon-name -1 "") - "" - 1 0 - (proc-arg 4 "url" "URL to open"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/unit-editor/unit-editor" 1655102016 - (proc-def "plug-in-unit-editor" 1 - "Create or alter units used in GIMP" - "The GIMP unit editor" - "Michael Natterer " - "Michael Natterer " - "2000" - "U_nits" - 1 - (menu-path "/Edit/Preferences") - (icon icon-name -1 "gimp-tool-measure") - "" - 1 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0) }"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/sparkle/sparkle" 1655102016 - (proc-def "plug-in-sparkle" 1 - "Turn bright spots into starry sparkles" - "Uses a percentage based luminoisty threhsold to find candidate pixels for adding some sparkles (spikes). " - "John Beale, & (ported to GIMP v0.54) Michael J. Hammel & ted to GIMP v1.0) & Seth Burgess & Spencer Kimball" - "John Beale" - "Version 1.27, September 2003" - "_Sparkle..." - 1 - (menu-path "/Filters/Light and Shadow/Light") - (icon icon-name -1 "") - "RGB*, GRAY*" - 16 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 13 "image" "Input image (unused)") - (proc-arg 16 "drawable" "Input drawable") - (proc-arg 3 "lum-threshold" "Luminosity threshold (0.0 - 1.0)") - (proc-arg 3 "flare-inten" "Flare intensity (0.0 - 1.0)") - (proc-arg 0 "spike-len" "Spike length (in pixels)") - (proc-arg 0 "spike-pts" "# of spike points") - (proc-arg 0 "spike-angle" "Spike angle (0-360 degrees, -1: random)") - (proc-arg 3 "density" "Spike density (0.0 - 1.0)") - (proc-arg 3 "transparency" "Transparency (0.0 - 1.0)") - (proc-arg 3 "random-hue" "Random hue (0.0 - 1.0)") - (proc-arg 3 "random-saturation" "Random saturation (0.0 - 1.0)") - (proc-arg 0 "preserve-luminosity" "Preserve luminosity (TRUE/FALSE)") - (proc-arg 0 "inverse" "Inverse (TRUE/FALSE)") - (proc-arg 0 "border" "Add border (TRUE/FALSE)") - (proc-arg 0 "color-type" "Color of sparkles: { NATURAL (0), FOREGROUND (1), BACKGROUND (2) }"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/selection-to-path/selection-to-path" 1655102016 - (proc-def "plug-in-sel2path" 1 - "Converts a selection to a path" - "Converts a selection to a path" - "Andy Thomas" - "Andy Thomas" - "1999" - "" - 0 - (icon icon-name -1 "") - "RGB*, INDEXED*, GRAY*" - 3 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 13 "image" "Input image") - (proc-arg 16 "drawable" "Input drawable (unused)")) - (proc-def "plug-in-sel2path-advanced" 1 - "Converts a selection to a path (with advanced user menu)" - "Converts a selection to a path (with advanced user menu)" - "Andy Thomas" - "Andy Thomas" - "1999" - "" - 0 - (icon icon-name -1 "") - "RGB*, INDEXED*, GRAY*" - 23 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 13 "image" "Input image") - (proc-arg 16 "drawable" "Input drawable (unused)") - (proc-arg 3 "align-threshold" "align_threshold") - (proc-arg 3 "corner-always-threshold" "corner_always_threshold") - (proc-arg 2 "corner-surround" "corner_surround") - (proc-arg 3 "corner-threshold" "corner_threshold") - (proc-arg 3 "error-threshold" "error_threshold") - (proc-arg 2 "filter-alternative-surround" "filter_alternative_surround") - (proc-arg 3 "filter-epsilon" "filter_epsilon") - (proc-arg 2 "filter-iteration-count" "filter_iteration_count") - (proc-arg 3 "filter-percent" "filter_percent") - (proc-arg 2 "filter-secondary-surround" "filter_secondary_surround") - (proc-arg 2 "filter-surround" "filter_surround") - (proc-arg 2 "keep-knees" "{1-Yes, 0-No}") - (proc-arg 3 "line-reversion-threshold" "line_reversion_threshold") - (proc-arg 3 "line-threshold" "line_threshold") - (proc-arg 3 "reparameterize-improvement" "reparameterize_improvement") - (proc-arg 3 "reparameterize-threshold" "reparameterize_threshold") - (proc-arg 3 "subdivide-search" "subdivide_search") - (proc-arg 2 "subdivide-surround" "subdivide_surround") - (proc-arg 3 "subdivide-threshold" "subdivide_threshold") - (proc-arg 2 "tangent-surround" "tangent_surround"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/qbist/qbist" 1655102016 - (proc-def "plug-in-qbist" 1 - "Generate a huge variety of abstract patterns" - "This Plug-in is based on an article by Jörn Loviscach (appeared in c't 10/95, page 326). It generates modern art pictures from a random genetic formula." - "Jörn Loviscach, Jens Ch. Restemeier" - "Jörn Loviscach, Jens Ch. Restemeier" - "January 2001, 1.12" - "_Qbist..." - 1 - (menu-path "/Filters/Render/Pattern") - (icon icon-name -1 "") - "RGB*" - 3 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 13 "image" "Input image (unused)") - (proc-arg 16 "drawable" "Input drawable"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/photocopy/photocopy" 1655102016 - (proc-def "plug-in-photocopy" 1 - "Simulate color distortion produced by a copy machine" - "Propagates dark values in an image based on each pixel's relative darkness to a neighboring average. The idea behind this filter is to give the look of a photocopied version of the image, with toner transferred based on the relative darkness of a particular region. This is achieved by darkening areas of the image which are measured to be darker than a neighborhood average and setting other pixels to white. In this way, sufficiently large shifts in intensity are darkened to black. The rate at which they are darkened to black is determined by the second pct_black parameter. The mask_radius parameter controls the size of the pixel neighborhood over which the average intensity is computed and then compared to each pixel in the neighborhood to decide whether or not to darken it to black. Large values for mask_radius result in very thick black areas bordering the regions of white and much less detail for black areas everywhere including inside regions of color. Small values result in less toner overall and more detail everywhere. Small values for the pct_black make the blend from the white regions to the black border lines smoother and the toner regions themselves thinner and less noticeable; larger values achieve the opposite effect." - "Spencer Kimball" - "Bit Specialists, Inc." - "2001" - "_Photocopy (legacy)..." - 1 - (menu-path "/Filters/Artistic") - (icon icon-name -1 "") - "RGB*, GRAY*" - 7 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 13 "image" "Input image (unused)") - (proc-arg 16 "drawable" "Input drawable") - (proc-arg 3 "mask-radius" "Photocopy mask radius (radius of pixel neighborhood)") - (proc-arg 3 "sharpness" "Sharpness (detail level) (0.0 - 1.0)") - (proc-arg 3 "pct-black" "Percentage of darkened pixels to set to black (0.0 - 1.0)") - (proc-arg 3 "pct-white" "Percentage of non-darkened pixels left white (0.0 - 1.0)"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/metadata-editor/metadata-editor" 1655102016 - (proc-def "plug-in-metadata-editor" 1 - "Edit metadata (IPTC, EXIF, XMP)" - "Edit metadata information attached to the current image. Some or all of this metadata will be saved in the file, depending on the output file format." - "Ben Touchette" - "Ben Touchette" - "2017" - "_Edit Metadata" - 1 - (menu-path "/Image/Metadata") - (icon icon-name -1 "") - "*" - 2 0 - (proc-arg 0 "run-mode" "Run mode { RUN-INTERACTIVE (0) }") - (proc-arg 13 "image" "Input image"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/lighting/lighting" 1655102016 - (proc-def "plug-in-lighting" 1 - "Apply various lighting effects to an image" - "No help yet" - "Tom Bech & Federico Mena Quintero" - "Tom Bech & Federico Mena Quintero" - "Version 0.2.0, March 15 1998" - "_Lighting Effects..." - 1 - (menu-path "/Filters/Light and Shadow/Light") - (icon icon-name -1 "") - "RGB*" - 24 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 13 "image" "Input image") - (proc-arg 16 "drawable" "Input drawable") - (proc-arg 16 "bumpdrawable" "Bumpmap drawable (set to 0 if disabled)") - (proc-arg 16 "envdrawable" "Environmentmap drawable (set to 0 if disabled)") - (proc-arg 0 "dobumpmap" "Enable bumpmapping (TRUE/FALSE)") - (proc-arg 0 "doenvmap" "Enable envmapping (TRUE/FALSE)") - (proc-arg 0 "bumpmaptype" "Type of mapping (0=linear,1=log, 2=sinusoidal, 3=spherical)") - (proc-arg 0 "lighttype" "Type of lightsource (0=point,1=directional,3=spot,4=none)") - (proc-arg 10 "lightcolor" "Lightsource color (r,g,b)") - (proc-arg 3 "lightposition-x" "Lightsource position (x,y,z)") - (proc-arg 3 "lightposition-y" "Lightsource position (x,y,z)") - (proc-arg 3 "lightposition-z" "Lightsource position (x,y,z)") - (proc-arg 3 "lightdirection-x" "Lightsource direction [x,y,z]") - (proc-arg 3 "lightdirection-y" "Lightsource direction [x,y,z]") - (proc-arg 3 "lightdirection-z" "Lightsource direction [x,y,z]") - (proc-arg 3 "ambient-intensity" "Material ambient intensity (0..1)") - (proc-arg 3 "diffuse-intensity" "Material diffuse intensity (0..1)") - (proc-arg 3 "diffuse-reflectivity" "Material diffuse reflectivity (0..1)") - (proc-arg 3 "specular-reflectivity" "Material specular reflectivity (0..1)") - (proc-arg 3 "highlight" "Material highlight (0..->), note: it's exponential") - (proc-arg 0 "antialiasing" "Apply antialiasing (TRUE/FALSE)") - (proc-arg 0 "newimage" "Create a new image (TRUE/FALSE)") - (proc-arg 0 "transparentbackground" "Make background transparent (TRUE/FALSE)"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/hot/hot" 1655102016 - (proc-def "plug-in-hot" 1 - "Find and fix pixels that may be unsafely bright" - "hot scans an image for pixels that will give unsave values of chrominance or composite signale amplitude when encoded into an NTSC or PAL signal. Three actions can be performed on these ``hot'' pixels. (0) reduce luminance, (1) reduce saturation, or (2) Blacken." - "Eric L. Hernes, Alan Wm Paeth" - "Eric L. Hernes" - "1997" - "_Hot..." - 1 - (menu-path "/Colors/Modify") - (icon icon-name -1 "") - "RGB" - 6 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 13 "image" "The Image") - (proc-arg 16 "drawable" "The Drawable") - (proc-arg 0 "mode" "Mode { NTSC (0), PAL (1) }") - (proc-arg 0 "action" "The action to perform") - (proc-arg 0 "new-layer" "Create a new layer { TRUE, FALSE }"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/gradient-map/gradient-map" 1655102016 - (proc-def "plug-in-gradmap" 1 - "Recolor the image using colors from the active gradient" - "This plug-in maps the contents of the specified drawable with active gradient. It calculates luminosity of each pixel and replaces the pixel by the sample of active gradient at the position proportional to that luminosity. Complete black pixel becomes the leftmost color of the gradient, and complete white becomes the rightmost. Works on both Grayscale and RGB image with/without alpha channel." - "Eiichi Takamori" - "Eiichi Takamori" - "1997" - "_Gradient Map" - 1 - (menu-path "/Colors/Map") - (icon icon-name -1 "") - "RGB*, GRAY*" - 3 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 13 "image" "Input image (unused)") - (proc-arg 16 "drawable" "Input drawable")) - (proc-def "plug-in-palettemap" 1 - "Recolor the image using colors from the active palette" - "This plug-in maps the contents of the specified drawable with the active palette. It calculates luminosity of each pixel and replaces the pixel by the palette sample at the corresponding index. A complete black pixel becomes the lowest palette entry, and complete white becomes the highest. Works on both Grayscale and RGB image with/without alpha channel." - "Bill Skaggs" - "Bill Skaggs" - "2004" - "_Palette Map" - 1 - (menu-path "/Colors/Map") - (icon icon-name -1 "") - "RGB*, GRAY*" - 3 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 13 "image" "Input image (unused)") - (proc-arg 16 "drawable" "Input drawable"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/gfig/gfig" 1655102016 - (proc-def "plug-in-gfig" 1 - "Create geometric shapes" - "Draw Vector Graphics and paint them onto your images. Gfig allows you to draw many types of objects including Lines, Circles, Ellipses, Curves, Polygons, pointed stars, Bezier curves, and Spirals. Objects can be painted using Brushes or other toolsor filled using colors or patterns. Gfig objects can also be used to create selections. " - "Andy Thomas" - "Andy Thomas" - "1997" - "_Gfig..." - 1 - (menu-path "/Filters/Render") - (icon icon-name -1 "") - "RGB*, GRAY*" - 4 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 13 "image" "Input image (unused)") - (proc-arg 16 "drawable" "Input drawable") - (proc-arg 0 "dummy" "dummy"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/filter-pack/filter-pack" 1655102016 - (proc-def "plug-in-filter-pack" 1 - "Interactively modify the image colors" - "Interactively modify the image colors." - "Pavel Grinfeld (pavel@ml.com)" - "Pavel Grinfeld (pavel@ml.com)" - "27th March 1997" - "_Filter Pack..." - 0 - (icon icon-name -1 "") - "RGB*" - 3 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 13 "image" "Input image (used for indexed images)") - (proc-arg 16 "drawable" "Input drawable"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-xmc/file-xmc" 1655102016 - (proc-def "file-xmc-load" 1 - "Loads files of X11 Mouse Cursor file format" - "This plug-in loads X11 Mouse Cursor (XMC) files." - "Takeshi Matsuyama " - "Takeshi Matsuyama" - "26 May 2009" - "X11 Mouse Cursor" - 0 - (icon icon-name -1 "") - (load-proc - (extensions "xmc") - (magics "0,string,Xcur") - (mime-types "image/x-xcursor") - (thumb-loader "file-xmc-load-thumb")) - "" - 3 1 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 4 "filename" "The name of the file to load") - (proc-arg 4 "raw-filename" "The name of the file to load") - (proc-arg 13 "image" "Output image")) - (proc-def "file-xmc-load-thumb" 1 - "Loads only first frame of X11 Mouse Cursor's animation sequence which nominal size is the closest of thumb-size to be used as a thumbnail" - "" - "Takeshi Matsuyama " - "Takeshi Matsuyama" - "26 May 2009" - "" - 0 - (icon icon-name -1 "") - "" - 2 5 - (proc-arg 4 "filename" "The name of the file to load") - (proc-arg 0 "thumb-size" "Preferred thumbnail size") - (proc-arg 13 "image" "Thumbnail image") - (proc-arg 0 "image-width" "The width of image") - (proc-arg 0 "image-height" "The height of image") - (proc-arg 0 "image-type" "The color type of image") - (proc-arg 0 "image-num-layers" "The number of layeres")) - (proc-def "file-xmc-save" 1 - "Exports files of X11 cursor file" - "This plug-in exports X11 Mouse Cursor (XMC) files" - "Takeshi Matsuyama " - "Takeshi Matsuyama" - "26 May 2009" - "X11 Mouse Cursor" - 0 - (icon icon-name -1 "") - (save-proc - (extensions "xmc") - (mime-types "image/x-xcursor")) - "RGBA" - 15 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 13 "image" "Input image") - (proc-arg 16 "drawable" "Drawable to export") - (proc-arg 4 "filename" "The name of the file to export the image in") - (proc-arg 4 "raw-filename" "The name entered") - (proc-arg 0 "x-hot" "X-coordinate of hot spot") - (proc-arg 0 "y-hot" "Y-coordinate of hot spot\nUse (-1, -1) to keep original hot spot.") - (proc-arg 0 "crop" "Auto-crop or not") - (proc-arg 0 "size" "Default nominal size") - (proc-arg 0 "size-replace" "Replace existent size or not.") - (proc-arg 0 "delay" "Default delay") - (proc-arg 0 "delay-replace" "Replace existent delay or not.") - (proc-arg 4 "copyright" "Copyright information.") - (proc-arg 4 "license" "License information.") - (proc-arg 4 "other" "Other comment.(taken from \"gimp-comment\" parasite)"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-tiff/file-tiff" 1655102016 - (proc-def "file-tiff-load" 1 - "Loads files of the TIFF and BigTIFF file formats" - "Loads files of the Tag Image File Format (TIFF) and its 64-bits offsets variant (BigTIFF)" - "Spencer Kimball, Peter Mattis & Nick Lamb" - "Nick Lamb " - "1995-1996,1998-2003" - "TIFF image" - 0 - (icon icon-name -1 "") - (load-proc - (extensions "tif,tiff") - (magics "0,string,II*\\0,0,string,MM\\0*") - (mime-types "image/tiff") - (handles-uri)) - "" - 3 1 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 4 "filename" "The name of the file to load") - (proc-arg 4 "raw-filename" "The name of the file to load") - (proc-arg 13 "image" "Output image")) - (proc-def "file-tiff-save" 1 - "Exports files in the TIFF file format" - "Exports files in the Tagged Image File Format. The value for the saved comment is taken from the 'gimp-comment' parasite." - "Spencer Kimball & Peter Mattis" - "Spencer Kimball & Peter Mattis" - "1995-1996,2000-2003" - "TIFF image" - 0 - (icon icon-name -1 "") - (save-proc - (extensions "tif,tiff") - (mime-types "image/tiff") - (handles-uri)) - "RGB*, GRAY*, INDEXED*" - 6 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 13 "image" "Input image") - (proc-arg 16 "drawable" "Drawable to save") - (proc-arg 4 "filename" "The name of the file to save the image in") - (proc-arg 4 "raw-filename" "The name of the file to save the image in") - (proc-arg 0 "compression" "Compression type: { NONE (0), LZW (1), PACKBITS (2), DEFLATE (3), JPEG (4), CCITT G3 Fax (5), CCITT G4 Fax (6) }")) - (proc-def "file-tiff-save2" 1 - "Exports files in the TIFF file format" - "Exports files in the Tagged Image File Format. The value for the saved comment is taken from the 'gimp-comment' parasite." - "Spencer Kimball & Peter Mattis" - "Spencer Kimball & Peter Mattis" - "1995-1996,2000-2003" - "TIFF image" - 0 - (icon icon-name -1 "") - "RGB*, GRAY*, INDEXED*" - 7 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 13 "image" "Input image") - (proc-arg 16 "drawable" "Drawable to save") - (proc-arg 4 "filename" "The name of the file to save the image in") - (proc-arg 4 "raw-filename" "The name of the file to save the image in") - (proc-arg 0 "compression" "Compression type: { NONE (0), LZW (1), PACKBITS (2), DEFLATE (3), JPEG (4), CCITT G3 Fax (5), CCITT G4 Fax (6) }") - (proc-arg 0 "save-transp-pixels" "Keep the color data masked by an alpha channel intact (do not store premultiplied components)")) - (proc-def "file-bigtiff-save" 1 - "Exports files in the TIFF or BigTIFF file format" - "Exports files in the Tagged Image File Format or its 64-bit offsets variant (BigTIFF) able to support much bigger file sizes. The value for the saved comment is taken from the 'gimp-comment' parasite." - "Spencer Kimball & Peter Mattis" - "Spencer Kimball & Peter Mattis" - "1995-1996,2000-2003" - "TIFF image" - 0 - (icon icon-name -1 "") - "RGB*, GRAY*, INDEXED*" - 8 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 13 "image" "Input image") - (proc-arg 16 "drawable" "Drawable to save") - (proc-arg 4 "filename" "The name of the file to save the image in") - (proc-arg 4 "raw-filename" "The name of the file to save the image in") - (proc-arg 0 "compression" "Compression type: { NONE (0), LZW (1), PACKBITS (2), DEFLATE (3), JPEG (4), CCITT G3 Fax (5), CCITT G4 Fax (6) }") - (proc-arg 0 "save-transp-pixels" "Keep the color data masked by an alpha channel intact (do not store premultiplied components)") - (proc-arg 0 "bigtiff" "Export in BigTIFF variant file format"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-sgi/file-sgi" 1655102016 - (proc-def "file-sgi-load" 1 - "Loads files in SGI image file format" - "This plug-in loads SGI image files." - "Michael Sweet " - "Copyright 1997-1998 by Michael Sweet" - "1.1.1 - 17 May 1998" - "Silicon Graphics IRIS image" - 0 - (icon icon-name -1 "") - (load-proc - (extensions "sgi,rgb,rgba,bw,icon") - (magics "0,short,474") - (mime-types "image/x-sgi")) - "" - 3 1 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 4 "filename" "The name of the file to load") - (proc-arg 4 "raw-filename" "The name of the file to load") - (proc-arg 13 "image" "Output image")) - (proc-def "file-sgi-save" 1 - "Exports files in SGI image file format" - "This plug-in exports SGI image files." - "Michael Sweet " - "Copyright 1997-1998 by Michael Sweet" - "1.1.1 - 17 May 1998" - "Silicon Graphics IRIS image" - 0 - (icon icon-name -1 "") - (save-proc - (extensions "sgi,rgb,rgba,bw,icon") - (mime-types "image/x-sgi")) - "RGB*, GRAY*, INDEXED*" - 6 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 13 "image" "Input image") - (proc-arg 16 "drawable" "Drawable to export") - (proc-arg 4 "filename" "The name of the file to export the image in") - (proc-arg 4 "raw-filename" "The name of the file to export the image in") - (proc-arg 0 "compression" "Compression level (0 = none, 1 = RLE, 2 = ARLE)"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-psp/file-psp" 1655102016 - (proc-def "file-psp-load" 1 - "loads images from the Paint Shop Pro PSP file format" - "This plug-in loads and exports images in Paint Shop Pro's native PSP format. Vector layers aren't handled. Exporting isn't yet implemented." - "Tor Lillqvist" - "Tor Lillqvist" - "1999" - "Paint Shop Pro image" - 0 - (icon icon-name -1 "") - (load-proc - (extensions "psp,tub,pspimage") - (magics "0,string,Paint\\040Shop\\040Pro\\040Image\\040File\n\032") - (mime-types "image/x-psp")) - "" - 3 1 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 4 "filename" "The name of the file to load") - (proc-arg 4 "raw-filename" "The name of the file to load") - (proc-arg 13 "image" "Output image"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-png/file-png" 1655102016 +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-png/file-png" 1699270928 (proc-def "file-png-load" 1 "Loads files in PNG file format" "This plug-in loads Portable Network Graphics (PNG) files." @@ -2971,7 +2663,206 @@ (proc-arg 0 "time" "Write tIME chunk?") (proc-arg 0 "comment" "Write comment?") (proc-arg 0 "svtrans" "Preserve color of transparent pixels?"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-pcx/file-pcx" 1655102016 +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-pix/file-pix" 1699270928 + (proc-def "file-pix-load" 1 + "loads files of the Alias|Wavefront Pix file format" + "loads files of the Alias|Wavefront Pix file format" + "Michael Taylor" + "Michael Taylor" + "1997" + "Alias Pix image" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "pix,matte,mask,alpha,als") + (handles-uri)) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 13 "image" "Output image")) + (proc-def "file-pix-save" 1 + "export file in the Alias|Wavefront pix/matte file format" + "export file in the Alias|Wavefront pix/matte file format" + "Michael Taylor" + "Michael Taylor" + "1997" + "Alias Pix image" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "pix,matte,mask,alpha,als") + (handles-uri)) + "RGB*, GRAY*, INDEXED*" + 5 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to export") + (proc-arg 4 "filename" "The name of the file to export the image in") + (proc-arg 4 "raw-filename" "The name of the file to export the image in"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-pdf-save/file-pdf-save" 1699270928 + (proc-def "file-pdf-save" 1 + "Save files in PDF format" + "Saves files in Adobe's Portable Document Format. PDF is designed to be easily processed by a variety of different platforms, and is a distant cousin of PostScript." + "Barak Itkin" + "Copyright Barak Itkin" + "August 2009" + "Portable Document Format" + 0 + (icon icon-name -1 "") + "RGB*, GRAY*, INDEXED*" + 8 0 + (proc-arg 0 "run-mode" "Run mode") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Input drawable") + (proc-arg 4 "filename" "The name of the file to save the image in") + (proc-arg 4 "raw-filename" "The name of the file to save the image in") + (proc-arg 0 "vectorize" "Convert bitmaps to vector graphics where possible. TRUE or FALSE") + (proc-arg 0 "ignore-hidden" "Omit hidden layers and layers with zero opacity. TRUE or FALSE") + (proc-arg 0 "apply-masks" "Apply layer masks before saving. TRUE or FALSE (Keeping them will not change the output)")) + (proc-def "file-pdf-save2" 1 + "Save files in PDF format" + "Saves files in Adobe's Portable Document Format. PDF is designed to be easily processed by a variety of different platforms, and is a distant cousin of PostScript.\nThis procedure adds an extra parameter to file-pdf-save to save layers as pages." + "Barak Itkin, Lionel N., Jehan" + "Copyright Barak Itkin, Lionel N., Jehan" + "August 2009, 2017" + "Portable Document Format" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "pdf") + (mime-types "application/pdf")) + "RGB*, GRAY*, INDEXED*" + 10 0 + (proc-arg 0 "run-mode" "Run mode") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Input drawable") + (proc-arg 4 "filename" "The name of the file to save the image in") + (proc-arg 4 "raw-filename" "The name of the file to save the image in") + (proc-arg 0 "vectorize" "Convert bitmaps to vector graphics where possible. TRUE or FALSE") + (proc-arg 0 "ignore-hidden" "Omit hidden layers and layers with zero opacity. TRUE or FALSE") + (proc-arg 0 "apply-masks" "Apply layer masks before saving. TRUE or FALSE (Keeping them will not change the output)") + (proc-arg 0 "layers-as-pages" "Layers as pages (bottom layers first). TRUE or FALSE") + (proc-arg 0 "reverse-order" "Reverse the pages order (top layers first). TRUE or FALSE")) + (proc-def "file-pdf-save-transparent" 1 + "Save files in PDF format" + "Saves files in Adobe's Portable Document Format. PDF is designed to be easily processed by a variety of different platforms, and is a distant cousin of PostScript.\nThis procedure adds an extra parameter to file-pdf-save2 to optionally fill transparent areas with the background color" + "Barak Itkin, Lionel N., Jehan" + "Copyright Barak Itkin, Lionel N., Jehan" + "August 2009, 2017" + "Portable Document Format" + 0 + (icon icon-name -1 "") + "RGB*, GRAY*, INDEXED*" + 10 0 + (proc-arg 0 "run-mode" "Run mode") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Input drawable") + (proc-arg 4 "filename" "The name of the file to save the image in") + (proc-arg 4 "raw-filename" "The name of the file to save the image in") + (proc-arg 0 "vectorize" "Convert bitmaps to vector graphics where possible. TRUE or FALSE") + (proc-arg 0 "ignore-hidden" "Omit hidden layers and layers with zero opacity. TRUE or FALSE") + (proc-arg 0 "apply-masks" "Apply layer masks before saving. TRUE or FALSE (Keeping them will not change the output)") + (proc-arg 0 "layers-as-pages" "Layers as pages (bottom layers first). TRUE or FALSE") + (proc-arg 0 "fill-background-color" "Fill transparent areas with background color if layer has an alpha channel. TRUE or FALSE")) + (proc-def "file-pdf-save-multi" 1 + "Save files in PDF format" + "Saves files in Adobe's Portable Document Format. PDF is designed to be easily processed by a variety of different platforms, and is a distant cousin of PostScript." + "Barak Itkin" + "Copyright Barak Itkin" + "August 2009" + "_Create multipage PDF..." + 0 + (icon icon-name -1 "") + "RGB*, GRAY*, INDEXED*" + 8 0 + (proc-arg 0 "run-mode" "Run mode") + (proc-arg 0 "count" "The amount of images entered (This will be the amount of pages). 1 <= count <= MAX_PAGE_COUNT") + (proc-arg 5 "images" "Input image for each page (An image can appear more than once)") + (proc-arg 0 "vectorize" "Convert bitmaps to vector graphics where possible. TRUE or FALSE") + (proc-arg 0 "ignore-hidden" "Omit hidden layers and layers with zero opacity. TRUE or FALSE") + (proc-arg 0 "apply-masks" "Apply layer masks before saving. TRUE or FALSE (Keeping them will not change the output)") + (proc-arg 4 "filename" "The name of the file to save the image in") + (proc-arg 4 "raw-filename" "The name of the file to save the image in")) + (proc-def "file-pdf-save-multi-transparent" 1 + "Save files in PDF format" + "Saves files in Adobe's Portable Document Format. PDF is designed to be easily processed by a variety of different platforms, and is a distant cousin of PostScript.\nThis procedure adds an extra parameter to file-pdf-multi to optionally fill transparent areas with the background color" + "Barak Itkin" + "Copyright Barak Itkin" + "August 2009" + "_Create multipage PDF..." + 0 + (icon icon-name -1 "") + "RGB*, GRAY*, INDEXED*" + 9 0 + (proc-arg 0 "run-mode" "Run mode") + (proc-arg 0 "count" "The amount of images entered (This will be the amount of pages). 1 <= count <= MAX_PAGE_COUNT") + (proc-arg 5 "images" "Input image for each page (An image can appear more than once)") + (proc-arg 0 "vectorize" "Convert bitmaps to vector graphics where possible. TRUE or FALSE") + (proc-arg 0 "ignore-hidden" "Omit hidden layers and layers with zero opacity. TRUE or FALSE") + (proc-arg 0 "apply-masks" "Apply layer masks before saving. TRUE or FALSE (Keeping them will not change the output)") + (proc-arg 4 "filename" "The name of the file to save the image in") + (proc-arg 4 "raw-filename" "The name of the file to save the image in") + (proc-arg 0 "fill-background-color" "Fill transparent areas with background color if layer has an alpha channel. TRUE or FALSE"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-pdf-load/file-pdf-load" 1699270928 + (proc-def "file-pdf-load" 1 + "Load file in PDF format" + "Loads files in Adobe's Portable Document Format. PDF is designed to be easily processed by a variety of different platforms, and is a distant cousin of PostScript.\nIf the PDF document has multiple pages, only the first page will be loaded. Call file_pdf_load2() to load several pages as layers." + "Nathan Summers" + "Nathan Summers" + "2005" + "Portable Document Format" + 0 + (icon icon-name -1 "") + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 13 "image" "Output image")) + (proc-def "file-pdf-load2" 1 + "Load file in PDF format" + "Loads files in Adobe's Portable Document Format. PDF is designed to be easily processed by a variety of different platforms, and is a distant cousin of PostScript.\nThis procedure adds extra parameters to file-pdf-load to open encrypted PDF and to allow multiple page loading." + "Nathan Summers, Lionel N." + "Nathan Summers, Lionel N." + "2005, 2017" + "Portable Document Format" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "pdf") + (magics "0, string,%PDF-") + (mime-types "application/pdf") + (thumb-loader "file-pdf-load-thumb")) + "" + 6 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 4 "pdf-password" "The password to decrypt the encrypted PDF file") + (proc-arg 0 "n-pages" "Number of pages to load (0 for all)") + (proc-arg 5 "pages" "The pages to load in the expected order") + (proc-arg 13 "image" "Output image")) + (proc-def "file-pdf-load-thumb" 1 + "Loads a preview from a PDF file." + "Loads a small preview of the first page of the PDF format file. Uses the embedded thumbnail if present." + "Nathan Summers" + "Nathan Summers" + "2005" + "" + 0 + (icon icon-name -1 "") + "" + 2 5 + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 0 "thumb-size" "Preferred thumbnail size") + (proc-arg 13 "image" "Thumbnail image") + (proc-arg 0 "image-width" "Width of full-sized image") + (proc-arg 0 "image-height" "Height of full-sized image") + (proc-arg 0 "image-type" "Image type") + (proc-arg 0 "num-layers" "Number of pages"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-pcx/file-pcx" 1699270928 (proc-def "file-pcx-load" 1 "Loads files in Zsoft PCX file format" "FIXME: write help for pcx_load" @@ -3010,7 +2901,170 @@ (proc-arg 16 "drawable" "Drawable to export") (proc-arg 4 "filename" "The name of the file to export the image in") (proc-arg 4 "raw-filename" "The name entered"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-jp2-load/file-jp2-load" 1655102016 +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-pat/file-pat" 1699270928 + (proc-def "file-pat-save" 1 + "Exports Gimp pattern file (.PAT)" + "New Gimp patterns can be created by exporting them in the appropriate place with this plug-in." + "Tim Newsome" + "Tim Newsome" + "1997" + "GIMP pattern" + 0 + (icon icon-name -1 "gimp-pattern") + (save-proc + (extensions "pat") + (mime-types "image/x-gimp-pat") + (handles-uri)) + "RGB*, GRAY*, INDEXED*" + 6 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to export") + (proc-arg 4 "uri" "The URI of the file to export the image in") + (proc-arg 4 "raw-uri" "The URI of the file to export the image in") + (proc-arg 4 "description" "Short description of the pattern"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-mng/file-mng" 1699270928 + (proc-def "file-mng-save" 1 + "Saves images in the MNG file format" + "This plug-in saves images in the Multiple-image Network Graphics (MNG) format which can be used as a replacement for animated GIFs, and more." + "Mukund Sivaraman " + "Mukund Sivaraman " + "November 19, 2002" + "MNG animation" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "mng") + (mime-types "image/x-mng")) + "RGB*,GRAY*,INDEXED*" + 17 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to save") + (proc-arg 4 "filename" "The name of the file to save the image in") + (proc-arg 4 "raw-filename" "The name of the file to save the image in") + (proc-arg 0 "interlace" "Use interlacing") + (proc-arg 0 "compression" "PNG deflate compression level (0 - 9)") + (proc-arg 3 "quality" "JPEG quality factor (0.00 - 1.00)") + (proc-arg 3 "smoothing" "JPEG smoothing factor (0.00 - 1.00)") + (proc-arg 0 "loop" "(ANIMATED MNG) Loop infinitely") + (proc-arg 0 "default-delay" "(ANIMATED MNG) Default delay between frames in milliseconds") + (proc-arg 0 "default-chunks" "(ANIMATED MNG) Default chunks type (0 = PNG + Delta PNG; 1 = JNG + Delta PNG; 2 = All PNG; 3 = All JNG)") + (proc-arg 0 "default-dispose" "(ANIMATED MNG) Default dispose type (0 = combine; 1 = replace)") + (proc-arg 0 "bkgd" "Write bKGD (background color) chunk") + (proc-arg 0 "gama" "Write gAMA (gamma) chunk") + (proc-arg 0 "phys" "Write pHYs (image resolution) chunk") + (proc-arg 0 "time" "Write tIME (creation time) chunk"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-jpegxl/file-jpegxl" 1699270928 + (proc-def "file-jpegxl-load" 1 + "Loads files in the JPEG XL file format" + "Loads files in the JPEG XL file format" + "Daniel Novomesky" + "(C) 2022 Daniel Novomesky" + "2022" + "JPEG XL image" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "jxl") + (magics "0,string,\n,0,string,\\000\\000\\000\fJXL\\040\\015\\012\\012") + (priority 100) + (mime-types "image/jxl") + (priority 100)) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 4 "raw-filename" "The name of the file to load") + (proc-arg 13 "image" "Output image")) + (proc-def "file-jpegxl-save" 1 + "Saves files in the JPEG XL file format" + "Saves files in the JPEG XL file format" + "Daniel Novomesky" + "(C) 2022 Daniel Novomesky" + "2022" + "JPEG XL image" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "jxl") + (priority 100) + (mime-types "image/jxl") + (priority 100) + (handles-uri)) + "RGB*, GRAY*" + 5 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to save") + (proc-arg 4 "filename" "The name of the file to save the image in") + (proc-arg 4 "raw-filename" "The name of the file to save the image in"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-jpeg/file-jpeg" 1699270928 + (proc-def "file-jpeg-load" 1 + "loads files in the JPEG file format" + "loads files in the JPEG file format" + "Spencer Kimball, Peter Mattis & others" + "Spencer Kimball & Peter Mattis" + "1995-2007" + "JPEG image" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "jpg,jpeg,jpe") + (magics "0,string,") + (mime-types "image/jpeg") + (thumb-loader "file-jpeg-load-thumb")) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 4 "raw-filename" "The name of the file to load") + (proc-arg 13 "image" "Output image")) + (proc-def "file-jpeg-load-thumb" 1 + "Loads a thumbnail from a JPEG image" + "Loads a thumbnail from a JPEG image (only if it exists)" + "Mukund Sivaraman , Sven Neumann " + "Mukund Sivaraman , Sven Neumann " + "November 15, 2004" + "" + 0 + (icon icon-name -1 "") + "" + 2 3 + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 0 "thumb-size" "Preferred thumbnail size") + (proc-arg 13 "image" "Thumbnail image") + (proc-arg 0 "image-width" "Width of full-sized image") + (proc-arg 0 "image-height" "Height of full-sized image")) + (proc-def "file-jpeg-save" 1 + "saves files in the JPEG file format" + "saves files in the lossy, widely supported JPEG format" + "Spencer Kimball, Peter Mattis & others" + "Spencer Kimball & Peter Mattis" + "1995-2007" + "JPEG image" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "jpg,jpeg,jpe") + (mime-types "image/jpeg")) + "RGB*, GRAY*" + 14 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to save") + (proc-arg 4 "filename" "The name of the file to save the image in") + (proc-arg 4 "raw-filename" "The name of the file to save the image in") + (proc-arg 3 "quality" "Quality of saved image (0 <= quality <= 1)") + (proc-arg 3 "smoothing" "Smoothing factor for saved image (0 <= smoothing <= 1)") + (proc-arg 0 "optimize" "Use optimized tables during Huffman coding (0/1)") + (proc-arg 0 "progressive" "Create progressive JPEG images (0/1)") + (proc-arg 4 "comment" "Image comment") + (proc-arg 0 "subsmp" "Sub-sampling type { 0, 1, 2, 3 } 0 == 4:2:0 (chroma quartered), 1 == 4:2:2 Horizontal (chroma halved), 2 == 4:4:4 (best quality), 3 == 4:2:2 Vertical (chroma halved)") + (proc-arg 0 "baseline" "Force creation of a baseline JPEG (non-baseline JPEGs can't be read by all decoders) (0/1)") + (proc-arg 0 "restart" "Interval of restart markers (in MCU rows, 0 = no restart markers)") + (proc-arg 0 "dct" "DCT method to use { INTEGER (0), FIXED (1), FLOAT (2) }"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-jp2-load/file-jp2-load" 1699270928 (proc-def "file-jp2-load" 1 "Loads JPEG 2000 images." "The JPEG 2000 image loader." @@ -3050,7 +3104,85 @@ (proc-arg 4 "raw-filename" "The name entered") (proc-arg 0 "colorspace" "Color space { UNKNOWN (0), GRAYSCALE (1), RGB (2), CMYK (3), YCbCr (4), xvYCC (5) }") (proc-arg 13 "image" "Output image"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-header/file-header" 1655102016 +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-ico/file-ico" 1699270928 + (proc-def "file-ico-load" 1 + "Loads files of Windows ICO file format" + "Loads files of Windows ICO file format" + "Christian Kreibich " + "Christian Kreibich " + "2002" + "Microsoft Windows icon" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "ico") + (mime-types "image/x-ico") + (thumb-loader "file-ico-load-thumb")) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 13 "image" "Output image")) + (proc-def "file-ico-load-thumb" 1 + "Loads a preview from an Windows ICO file" + "" + "Dom Lachowicz, Sven Neumann" + "Sven Neumann " + "2005" + "" + 0 + (icon icon-name -1 "") + "" + 2 3 + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 0 "thumb-size" "Preferred thumbnail size") + (proc-arg 13 "image" "Thumbnail image") + (proc-arg 0 "image-width" "Width of full-sized image") + (proc-arg 0 "image-height" "Height of full-sized image")) + (proc-def "file-ico-save" 1 + "Saves files in Windows ICO file format" + "Saves files in Windows ICO file format" + "Christian Kreibich " + "Christian Kreibich " + "2002" + "Microsoft Windows icon" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "ico") + (mime-types "image/x-ico")) + "*" + 5 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to save") + (proc-arg 4 "filename" "The name of the file to save the image in") + (proc-arg 4 "raw-filename" "The name entered"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-html-table/file-html-table" 1699270928 + (proc-def "file-gtm-save" 1 + "GIMP Table Magic" + "Allows you to draw an HTML table in GIMP. See help for more info." + "Daniel Dunbar" + "Daniel Dunbar" + "1998" + "HTML table" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "html,htm") + (mime-types "text/html") + (handles-uri)) + "RGB*, GRAY*, INDEXED*" + 5 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to export") + (proc-arg 4 "filename" "The name of the file to export the image in") + (proc-arg 4 "raw-filename" "The name of the file to export the image in"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-heif/file-heif" 1699270928 + (has-init)) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-header/file-header" 1699270928 (proc-def "file-header-save" 1 "saves files as C unsigned character array" "FIXME: write help" @@ -3071,7 +3203,105 @@ (proc-arg 16 "drawable" "Drawable to save") (proc-arg 4 "filename" "The name of the file to save the image in") (proc-arg 4 "raw-filename" "The name of the file to save the image in"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-gif-load/file-gif-load" 1655102016 +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-glob/file-glob" 1699270928 + (proc-def "file-glob" 1 + "Returns a list of matching filenames" + "This can be useful in scripts and other plug-ins (e.g., batch-conversion). See the glob(7) manpage for more info. Note however that this isn't a full-featured glob implementation. It only handles simple patterns like \"/home/foo/bar/*.jpg\"." + "Sven Neumann" + "Sven Neumann" + "2004" + "" + 0 + (icon icon-name -1 "") + "" + 2 2 + (proc-arg 4 "pattern" "The glob pattern (in UTF-8 encoding)") + (proc-arg 0 "encoding" "Encoding of the returned names: { UTF-8 (0), filename encoding (1) }") + (proc-arg 0 "num-files" "The number of returned names") + (proc-arg 9 "files" "The list of matching names"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-gih/file-gih" 1699270928 + (proc-def "file-gih-save" 1 + "exports images in GIMP brush pipe format" + "This plug-in exports an image in the GIMP brush pipe format. For a colored brush pipe, RGBA layers are used, otherwise the layers should be grayscale masks. The image can be multi-layered, and additionally the layers can be divided into a rectangular array of brushes." + "Tor Lillqvist" + "Tor Lillqvist" + "1999" + "GIMP brush (animated)" + 0 + (icon icon-name -1 "gimp-tool-paintbrush") + (save-proc + (extensions "gih") + (mime-types "image/x-gimp-gih") + (handles-uri)) + "RGB*, GRAY*" + 15 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to export") + (proc-arg 4 "uri" "The URI of the file to export the brush pipe in") + (proc-arg 4 "raw-uri" "The URI of the file to export the brush pipe in") + (proc-arg 0 "spacing" "Spacing of the brush") + (proc-arg 4 "description" "Short description of the brush pipe") + (proc-arg 0 "cell-width" "Width of the brush cells") + (proc-arg 0 "cell-height" "Width of the brush cells") + (proc-arg 2 "display-cols" "Display column number") + (proc-arg 2 "display-rows" "Display row number") + (proc-arg 0 "dimension" "Dimension of the brush pipe") + (proc-arg 7 "rank" "Ranks of the dimensions") + (proc-arg 0 "dimension" "Dimension (again)") + (proc-arg 9 "sel" "Selection modes"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-gif-save/file-gif-save" 1699270928 + (proc-def "file-gif-save" 1 + "exports files in Compuserve GIF file format" + "Export a file in Compuserve GIF format, with possible animation, transparency, and comment. To export an animation, operate on a multi-layer file. The plug-in will interpret <50% alpha as transparent. When run non-interactively, the value for the comment is taken from the 'gimp-comment' parasite. " + "Spencer Kimball, Peter Mattis, Adam Moss, David Koblas" + "Spencer Kimball, Peter Mattis, Adam Moss, David Koblas" + "1995-1997" + "GIF image" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "gif") + (mime-types "image/gif") + (handles-uri)) + "INDEXED*, GRAY*" + 9 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Image to export") + (proc-arg 16 "drawable" "Drawable to export") + (proc-arg 4 "uri" "The name of the URI to export the image in") + (proc-arg 4 "raw-uri" "The name of the URI to export the image in") + (proc-arg 0 "interlace" "Try to export as interlaced") + (proc-arg 0 "loop" "(animated gif) loop infinitely") + (proc-arg 0 "default-delay" "(animated gif) Default delay between frames in milliseconds") + (proc-arg 0 "default-dispose" "(animated gif) Default disposal type (0=`don't care`, 1=combine, 2=replace)")) + (proc-def "file-gif-save2" 1 + "exports files in Compuserve GIF file format" + "Export a file in Compuserve GIF format, with possible animation, transparency, and comment. To export an animation, operate on a multi-layer file and give the 'as-animation' parameter as TRUE. The plug-in will interpret <50% alpha as transparent. When run non-interactively, the value for the comment is taken from the 'gimp-comment' parasite. " + "Spencer Kimball, Peter Mattis, Adam Moss, David Koblas" + "Spencer Kimball, Peter Mattis, Adam Moss, David Koblas" + "1995-1997" + "GIF image" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "gif") + (handles-uri)) + "INDEXED*, GRAY*" + 12 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Image to export") + (proc-arg 16 "drawable" "Drawable to export") + (proc-arg 4 "uri" "The name of the URI to export the image in") + (proc-arg 4 "raw-uri" "The name of the URI to export the image in") + (proc-arg 0 "interlace" "Try to export as interlaced") + (proc-arg 0 "loop" "(animated gif) loop infinitely") + (proc-arg 0 "default-delay" "(animated gif) Default delay between frames in milliseconds") + (proc-arg 0 "default-dispose" "(animated gif) Default disposal type (0=`don't care`, 1=combine, 2=replace)") + (proc-arg 0 "as-animation" "Export GIF as animation?") + (proc-arg 0 "force-delay" "(animated gif) Use specified delay for all frames?") + (proc-arg 0 "force-dispose" "(animated gif) Use specified disposal for all frames?"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-gif-load/file-gif-load" 1699270928 (proc-def "file-gif-load" 1 "Loads files of Compuserve GIF file format" "FIXME: write help for gif_load" @@ -3108,7 +3338,143 @@ (proc-arg 13 "image" "Output image") (proc-arg 0 "image-width" "Width of full-sized image") (proc-arg 0 "image-height" "Height of full-sized image"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-fits/file-fits" 1655102016 +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-gegl/file-gegl" 1699270928 + (proc-def "file-load-rgbe" 1 + "Load files in the RGBE file format" + "This procedure loads images in the RGBE format, using gegl:rgbe-load" + "Simon Budig" + "Simon Budig" + "2012" + "Radiance RGBE" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "hdr") + (magics "0,string,#?") + (mime-types "image/vnd.radiance")) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load.") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 13 "image" "Output image")) + (proc-def "file-save-rgbe" 1 + "Saves files in the RGBE file format" + "This procedure exports images in the RGBE format, using gegl:rgbe-save" + "Simon Budig" + "Simon Budig" + "2012" + "Radiance RGBE" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "hdr") + (mime-types "image/vnd.radiance")) + "*" + 5 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to save") + (proc-arg 4 "filename" "The name of the file to save the image in") + (proc-arg 4 "raw-filename" "The name of the file to save the image in")) + (proc-def "file-exr-save" 1 + "Saves files in the OpenEXR file format" + "This procedure saves images in the OpenEXR format, using gegl:exr-save" + "Simon Budig" + "Simon Budig" + "2012" + "OpenEXR image" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "exr") + (mime-types "image/x-exr")) + "*" + 5 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to save") + (proc-arg 4 "filename" "The name of the file to save the image in") + (proc-arg 4 "raw-filename" "The name of the file to save the image in"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-gbr/file-gbr" 1699270928 + (proc-def "file-gbr-save" 1 + "Exports files in the GIMP brush file format" + "Exports files in the GIMP brush file format" + "Tim Newsome, Jens Lautenbacher, Sven Neumann" + "Tim Newsome, Jens Lautenbacher, Sven Neumann" + "1997-2000" + "GIMP brush" + 0 + (icon icon-name -1 "gimp-tool-paintbrush") + (save-proc + (extensions "gbr") + (mime-types "image/x-gimp-gbr") + (handles-uri)) + "RGB*, GRAY*, INDEXED*" + 7 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to export") + (proc-arg 4 "uri" "The URI of the file to export the image in") + (proc-arg 4 "raw-uri" "The URI of the file to export the image in") + (proc-arg 0 "spacing" "Spacing of the brush") + (proc-arg 4 "description" "Short description of the brush"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-fli/file-fli" 1699270928 + (proc-def "file-fli-load" 1 + "load FLI-movies" + "This is an experimantal plug-in to handle FLI movies" + "Jens Ch. Restemeier" + "Jens Ch. Restemeier" + "1997" + "AutoDesk FLIC animation" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "fli,flc") + (mime-types "image/x-flic")) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 13 "image" "Output image")) + (proc-def "file-fli-save" 1 + "export FLI-movies" + "This is an experimantal plug-in to handle FLI movies" + "Jens Ch. Restemeier" + "Jens Ch. Restemeier" + "1997" + "AutoDesk FLIC animation" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "fli,flc") + (mime-types "image/x-flic")) + "INDEXED,GRAY" + 7 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Input drawable (unused)") + (proc-arg 4 "filename" "The name of the file to export") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 0 "from-frame" "Export beginning from this frame") + (proc-arg 0 "to-frame" "End exporting with this frame")) + (proc-def "file-fli-info" 1 + "Get information about a Fli movie" + "This is a experimantal plug-in to handle FLI movies" + "Jens Ch. Restemeier" + "Jens Ch. Restemeier" + "1997" + "" + 0 + (icon icon-name -1 "") + "" + 1 3 + (proc-arg 4 "filename" "The name of the file to get info") + (proc-arg 0 "width" "Width of one frame") + (proc-arg 0 "height" "Height of one frame") + (proc-arg 0 "frames" "Number of Frames"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-fits/file-fits" 1699270928 (proc-def "file-fits-load" 1 "load file of the FITS file format" "load file of the FITS file format (Flexible Image Transport System)" @@ -3147,7 +3513,86 @@ (proc-arg 16 "drawable" "Drawable to export") (proc-arg 4 "filename" "The name of the file to export the image in") (proc-arg 4 "raw-filename" "The name of the file to export the image in"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-desktop-link/file-desktop-link" 1655102016 +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-faxg3/file-faxg3" 1699270928 + (proc-def "file-faxg3-load" 1 + "loads g3 fax files" + "This plug-in loads Fax G3 Image files." + "Jochen Friedrich" + "Jochen Friedrich, Gert Doering, Spencer Kimball & Peter Mattis" + "0.6" + "G3 fax image" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "g3") + (magics "4,string,Research") + (mime-types "image/g3-fax")) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 4 "raw-filename" "The name of the file to load") + (proc-arg 13 "image" "Output image"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-exr/file-exr" 1699270928 + (proc-def "file-exr-load" 1 + "Loads files in the OpenEXR file format" + "This plug-in loads OpenEXR files. " + "Dominik Ernst , Mukund Sivaraman " + "Dominik Ernst , Mukund Sivaraman " + "0.0.0" + "OpenEXR image" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "exr") + (magics "0,long,0x762f3101") + (mime-types "image/x-exr")) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 4 "raw-filename" "The name of the file to load") + (proc-arg 13 "image" "Output image"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-dicom/file-dicom" 1699270928 + (proc-def "file-dicom-load" 1 + "loads files of the dicom file format" + "Load a file in the DICOM standard format.The standard is defined at http://medical.nema.org/. The plug-in currently only supports reading images with uncompressed pixel sections." + "Dov Grobgeld" + "Dov Grobgeld " + "2003" + "DICOM image" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "dcm,dicom") + (magics "128,string,DICM") + (mime-types "image/x-dcm")) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 4 "raw-filename" "The name of the file to load") + (proc-arg 13 "image" "Output image")) + (proc-def "file-dicom-save" 1 + "Save file in the DICOM file format" + "Save an image in the medical standard DICOM image formats. The standard is defined at http://medical.nema.org/. The file format is defined in section 10 of the standard. The files are saved uncompressed and the compulsory DICOM tags are filled with default dummy values." + "Dov Grobgeld" + "Dov Grobgeld " + "2003" + "Digital Imaging and Communications in Medicine image" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "dcm,dicom") + (mime-types "image/x-dcm")) + "RGB, GRAY" + 5 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to save") + (proc-arg 4 "filename" "The name of the file to save") + (proc-arg 4 "raw-filename" "The name of the file to save"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-desktop-link/file-desktop-link" 1699270928 (proc-def "file-desktop-link-load" 1 "Follows a link to an image in a .desktop file" "Opens a .desktop file and if it is a link, it asks GIMP to open the file the link points to." @@ -3165,7 +3610,115 @@ (proc-arg 4 "filename" "The name of the file to load") (proc-arg 4 "raw-filename" "The name entered") (proc-arg 13 "image" "Output image"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-compressor/file-compressor" 1655102016 +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-dds/file-dds" 1699270928 + (proc-def "file-dds-load" 1 + "Loads files in DDS image format" + "Loads files in DDS image format" + "Shawn Kirst" + "Shawn Kirst" + "2008" + "DDS image" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "dds") + (magics "0,string,DDS") + (mime-types "image/dds")) + "" + 5 1 + (proc-arg 0 "run-mode" "Interactive, non-interactive") + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 0 "load-mipmaps" "Load mipmaps if present") + (proc-arg 0 "decode-images" "Decode YCoCg/AExp images when detected") + (proc-arg 13 "image" "Output image")) + (proc-def "file-dds-save" 1 + "Saves files in DDS image format" + "Saves files in DDS image format" + "Shawn Kirst" + "Shawn Kirst" + "2008" + "DDS image" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "dds") + (mime-types "image/dds")) + "INDEXED, GRAY, RGB" + 18 0 + (proc-arg 0 "run-mode" "Interactive, non-interactive") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to save") + (proc-arg 4 "filename" "The name of the file to save the image as") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 0 "compression-format" "Compression format (0 = None, 1 = BC1/DXT1, 2 = BC2/DXT3, 3 = BC3/DXT5, 4 = BC3n/DXT5nm, 5 = BC4/ATI1N, 6 = BC5/ATI2N, 7 = RXGB (DXT5), 8 = Alpha Exponent (DXT5), 9 = YCoCg (DXT5), 10 = YCoCg scaled (DXT5))") + (proc-arg 0 "mipmaps" "How to handle mipmaps (0 = No mipmaps, 1 = Generate mipmaps, 2 = Use existing mipmaps (layers)") + (proc-arg 0 "savetype" "How to save the image (0 = selected layer, 1 = cube map, 2 = volume map, 3 = texture array, 4 = all visible layers") + (proc-arg 0 "format" "Custom pixel format (0 = default, 1 = R5G6B5, 2 = RGBA4, 3 = RGB5A1, 4 = RGB10A2)") + (proc-arg 0 "transparent-index" "Index of transparent color or -1 to disable (for indexed images only).") + (proc-arg 0 "mipmap-filter" "Filtering to use when generating mipmaps (0 = default, 1 = nearest, 2 = box, 3 = triangle, 4 = quadratic, 5 = bspline, 6 = mitchell, 7 = lanczos, 8 = kaiser)") + (proc-arg 0 "mipmap-wrap" "Wrap mode to use when generating mipmaps (0 = default, 1 = mirror, 2 = repeat, 3 = clamp)") + (proc-arg 0 "gamma-correct" "Use gamma correct mipmap filtering") + (proc-arg 0 "srgb" "Use sRGB colorspace for gamma correction") + (proc-arg 3 "gamma" "Gamma value to use for gamma correction (i.e. 2.2)") + (proc-arg 0 "perceptual-metric" "Use a perceptual error metric during compression") + (proc-arg 0 "preserve-alpha-coverage" "Preserve alpha test converage for alpha channel maps") + (proc-arg 3 "alpha-test-threshold" "Alpha test threshold value for which alpha test converage should be preserved")) + (proc-def "file-dds-save2" 1 + "Saves files in DDS image format with additional export options" + "Saves files in DDS image format with additional export options" + "Shawn Kirst" + "Shawn Kirst" + "2008" + "DDS image" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "dds") + (mime-types "image/dds")) + "INDEXED, GRAY, RGB" + 19 0 + (proc-arg 0 "run-mode" "Interactive, non-interactive") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to save") + (proc-arg 4 "filename" "The name of the file to save the image as") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 0 "compression-format" "Compression format (0 = None, 1 = BC1/DXT1, 2 = BC2/DXT3, 3 = BC3/DXT5, 4 = BC3n/DXT5nm, 5 = BC4/ATI1N, 6 = BC5/ATI2N, 7 = RXGB (DXT5), 8 = Alpha Exponent (DXT5), 9 = YCoCg (DXT5), 10 = YCoCg scaled (DXT5))") + (proc-arg 0 "mipmaps" "How to handle mipmaps (0 = No mipmaps, 1 = Generate mipmaps, 2 = Use existing mipmaps (layers)") + (proc-arg 0 "savetype" "How to save the image (0 = selected layer, 1 = cube map, 2 = volume map, 3 = texture array, 4 = all visible layers") + (proc-arg 0 "format" "Custom pixel format (0 = default, 1 = R5G6B5, 2 = RGBA4, 3 = RGB5A1, 4 = RGB10A2)") + (proc-arg 0 "transparent-index" "Index of transparent color or -1 to disable (for indexed images only).") + (proc-arg 0 "mipmap-filter" "Filtering to use when generating mipmaps (0 = default, 1 = nearest, 2 = box, 3 = triangle, 4 = quadratic, 5 = bspline, 6 = mitchell, 7 = lanczos, 8 = kaiser)") + (proc-arg 0 "mipmap-wrap" "Wrap mode to use when generating mipmaps (0 = default, 1 = mirror, 2 = repeat, 3 = clamp)") + (proc-arg 0 "gamma-correct" "Use gamma correct mipmap filtering") + (proc-arg 0 "srgb" "Use sRGB colorspace for gamma correction") + (proc-arg 3 "gamma" "Gamma value to use for gamma correction (i.e. 2.2)") + (proc-arg 0 "perceptual-metric" "Use a perceptual error metric during compression") + (proc-arg 0 "preserve-alpha-coverage" "Preserve alpha test converage for alpha channel maps") + (proc-arg 3 "alpha-test-threshold" "Alpha test threshold value for which alpha test converage should be preserved") + (proc-arg 0 "flip-image" "Flip image vertically on export"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-csource/file-csource" 1699270928 + (proc-def "file-csource-save" 1 + "Dump image data in RGB(A) format for C source" + "CSource cannot be run non-interactively." + "Tim Janik" + "Tim Janik" + "1999" + "C source code" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "c") + (mime-types "text/x-csrc") + (handles-uri)) + "*" + 5 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to save") + (proc-arg 4 "filename" "The name of the file to save the image in") + (proc-arg 4 "raw-filename" "The name of the file to save the image in"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-compressor/file-compressor" 1699270928 (proc-def "file-gz-load" 1 "loads files compressed with gzip" "This procedure loads files in the gzip compressed format." @@ -3280,7 +3833,128 @@ (proc-arg 16 "drawable" "Drawable to save") (proc-arg 4 "filename" "The name of the file to save the image in") (proc-arg 4 "raw-filename" "The name entered"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/edge-dog/edge-dog" 1655102016 +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-cel/file-cel" 1699270928 + (proc-def "file-cel-load" 1 + "Loads files in KISS CEL file format" + "This plug-in loads individual KISS cell files." + "Nick Lamb" + "Nick Lamb " + "May 1998" + "KISS CEL" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "cel") + (magics "0,string,KiSS\\040")) + "" + 4 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "Filename to load image from") + (proc-arg 4 "raw-filename" "Name entered") + (proc-arg 4 "palette-filename" "Filename to load palette from") + (proc-arg 13 "image" "Output image")) + (proc-def "file-cel-save" 1 + "Exports files in KISS CEL file format" + "This plug-in exports individual KISS cell files." + "Nick Lamb" + "Nick Lamb " + "May 1998" + "KISS CEL" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "cel") + (handles-uri)) + "RGB*, INDEXED*" + 6 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to export") + (proc-arg 4 "filename" "Filename to export image to") + (proc-arg 4 "raw-filename" "Name entered") + (proc-arg 4 "palette-filename" "Filename to save palette to"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-bmp/file-bmp" 1699270928 + (proc-def "file-bmp-load" 1 + "Loads files of Windows BMP file format" + "Loads files of Windows BMP file format" + "Alexander Schulz" + "Alexander Schulz" + "1997" + "Windows BMP image" + 0 + (icon icon-name -1 "") + (load-proc + (extensions "bmp") + (magics "0,string,BM") + (mime-types "image/bmp")) + "" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 4 "filename" "The name of the file to load") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 13 "image" "Output image")) + (proc-def "file-bmp-save" 1 + "Saves files in Windows BMP file format" + "Saves files in Windows BMP file format" + "Alexander Schulz" + "Alexander Schulz" + "1997" + "Windows BMP image" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "bmp") + (mime-types "image/bmp")) + "INDEXED, GRAY, RGB*" + 5 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to save") + (proc-arg 4 "filename" "The name of the file to save the image in") + (proc-arg 4 "raw-filename" "The name entered")) + (proc-def "file-bmp-save2" 1 + "Saves files in Windows BMP file format" + "Saves files in Windows BMP file format, with RLE, color space information, and RGB format options available non-interactively" + "Alexander Schulz" + "Alexander Schulz" + "1997" + "Windows BMP image" + 0 + (icon icon-name -1 "") + (save-proc + (extensions "bmp") + (mime-types "image/bmp")) + "INDEXED, GRAY, RGB*" + 8 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Drawable to save") + (proc-arg 4 "filename" "The name of the file to save the image in") + (proc-arg 4 "raw-filename" "The name entered") + (proc-arg 0 "use-rle" "Use run-length-encoding compression (only valid for 4 and 8-bit indexed images)") + (proc-arg 0 "write-color-space" "Whether or not to write BITMAPV5HEADER color space data") + (proc-arg 0 "rgb-format" "Export format for RGB images (0=RGB_565, 1=RGBA_5551, 2=RGB_555, 3=RGB_888, 4=RGBA_8888, 5=RGBX_8888)"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/emboss/emboss" 1699270928 + (proc-def "plug-in-emboss" 1 + "Simulate an image created by embossing" + "Emboss or Bumpmap the given drawable, specifying the angle and elevation for the light source." + "Eric L. Hernes, John Schlag" + "Eric L. Hernes" + "1997" + "_Emboss (legacy)..." + 1 + (menu-path "/Filters/Distorts") + (icon icon-name -1 "") + "RGB*" + 7 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "The Image") + (proc-arg 16 "drawable" "The Drawable") + (proc-arg 3 "azimuth" "The Light Angle (degrees)") + (proc-arg 3 "elevation" "The Elevation Angle (degrees)") + (proc-arg 0 "depth" "The Filter Width") + (proc-arg 0 "emboss" "Emboss or Bumpmap"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/edge-dog/edge-dog" 1699270928 (proc-def "plug-in-dog" 1 "Edge detection with control of edge thickness" "Applies two Gaussian blurs to the drawable, and subtracts the results. This is robust and widely used method for detecting edges." @@ -3300,7 +3974,68 @@ (proc-arg 3 "outer" "Radius of outer gaussian blur (in pixels, > 0.0)") (proc-arg 0 "normalize" "Normalize { TRUE, FALSE }") (proc-arg 0 "invert" "Invert { TRUE, FALSE }"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/decompose/decompose" 1655102016 +(plug-in-def "${gimp_plug_in_dir}/plug-ins/destripe/destripe" 1699270928 + (proc-def "plug-in-destripe" 1 + "Remove vertical stripe artifacts from the image" + "This plug-in tries to remove vertical stripes from an image." + "Marc Lehmann " + "Marc Lehmann " + "0.2" + "Des_tripe..." + 1 + (menu-path "/Filters/Enhance") + (icon icon-name -1 "") + "RGB*, GRAY*" + 4 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Input drawable") + (proc-arg 0 "avg-width" "Averaging filter width (default = 36)"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/despeckle/despeckle" 1699270928 + (proc-def "plug-in-despeckle" 1 + "Remove speckle noise from the image" + "This plug-in selectively performs a median or adaptive box filter on an image." + "Michael Sweet " + "Copyright 1997-1998 by Michael Sweet" + "May 2010" + "Des_peckle..." + 1 + (menu-path "/Filters/Enhance") + (icon icon-name -1 "") + "RGB*, GRAY*" + 7 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Input drawable") + (proc-arg 0 "radius" "Filter box radius (default = 3)") + (proc-arg 0 "type" "Filter type { MEDIAN (0), ADAPTIVE (1), RECURSIVE-MEDIAN (2), RECURSIVE-ADAPTIVE (3) }") + (proc-arg 0 "black" "Black level (-1 to 255)") + (proc-arg 0 "white" "White level (0 to 256)"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/depth-merge/depth-merge" 1699270928 + (proc-def "plug-in-depth-merge" 1 + "Combine two images using depth maps (z-buffers)" + "Taking as input two full-color, full-alpha images and two corresponding grayscale depth maps, this plug-in combines the images based on which is closer (has a lower depth map value) at each point." + "Sean Cier" + "Sean Cier" + "August 1998" + "_Depth Merge..." + 1 + (menu-path "/Filters/Combine") + (icon icon-name -1 "") + "RGB*, GRAY*" + 11 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image (unused)") + (proc-arg 16 "result" "Result") + (proc-arg 16 "source1" "Source 1") + (proc-arg 16 "source2" "Source 2") + (proc-arg 16 "depthMap1" "Depth map 1") + (proc-arg 16 "depthMap2" "Depth map 2") + (proc-arg 3 "overlap" "Overlap") + (proc-arg 3 "offset" "Depth relative offset") + (proc-arg 3 "scale1" "Depth relative scale 1") + (proc-arg 3 "scale2" "Depth relative scale 2"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/decompose/decompose" 1699270928 (proc-def "plug-in-decompose" 1 "Decompose an image into separate colorspace components" "This function creates new gray images with different channel information in each of them" @@ -3342,7 +4077,92 @@ (proc-arg 13 "new-image" "Output gray image (N/A for single channel extract)") (proc-arg 13 "new-image" "Output gray image (N/A for single channel extract)") (proc-arg 13 "new-image" "Output gray image (N/A for single channel extract)"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/compose/compose" 1655102016 +(plug-in-def "${gimp_plug_in_dir}/plug-ins/curve-bend/curve-bend" 1699270928 + (proc-def "plug-in-curve-bend" 1 + "Bend the image using two control curves" + "This plug-in does bend the active layer If there is a current selection it is copied to floating selection and the curve_bend distortion is done on the floating selection. If work_on_copy parameter is TRUE, the curve_bend distortion is done on a copy of the active layer (or floating selection). The upper and lower edges are bent in shape of 2 spline curves. both (upper and lower) curves are determined by upto 17 points or by 256 Y-Values if curve_type == 1 (freehand mode) If rotation is not 0, the layer is rotated before and rotated back after the bend operation. This enables bending in other directions than vertical. bending usually changes the size of the handled layer. this plug-in sets the offsets of the handled layer to keep its center at the same position" + "Wolfgang Hofer (hof@hotbot.com)" + "Wolfgang Hofer" + "v1.3.18 (2003/08/26)" + "_Curve Bend..." + 1 + (menu-path "/Filters/Distorts") + (icon icon-name -1 "") + "RGB*, GRAY*" + 20 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Input drawable (must be a layer without layermask)") + (proc-arg 3 "rotation" "Direction {angle 0 to 360 degree } of the bend effect") + (proc-arg 0 "smoothing" "Smoothing { TRUE, FALSE }") + (proc-arg 0 "antialias" "Antialias { TRUE, FALSE }") + (proc-arg 0 "work-on-copy" "{ TRUE, FALSE } TRUE: copy the drawable and bend the copy") + (proc-arg 0 "curve-type" " { 0, 1 } 0 == smooth (use 17 points), 1 == freehand (use 256 val_y) ") + (proc-arg 0 "argc-upper-point-x" "{2 <= argc <= 17} ") + (proc-arg 8 "upper-point-x" "array of 17 x point_koords { 0.0 <= x <= 1.0 or -1 for unused point }") + (proc-arg 0 "argc-upper-point-y" "{2 <= argc <= 17} ") + (proc-arg 8 "upper-point-y" "array of 17 y point_koords { 0.0 <= y <= 1.0 or -1 for unused point }") + (proc-arg 0 "argc-lower-point-x" "{2 <= argc <= 17} ") + (proc-arg 8 "lower-point-x" "array of 17 x point_koords { 0.0 <= x <= 1.0 or -1 for unused point }") + (proc-arg 0 "argc-lower-point-y" "{2 <= argc <= 17} ") + (proc-arg 8 "lower-point-y" "array of 17 y point_koords { 0.0 <= y <= 1.0 or -1 for unused point }") + (proc-arg 0 "argc-upper-val-y" "{ 256 } ") + (proc-arg 7 "upper-val-y" "array of 256 y freehand koord { 0 <= y <= 255 }") + (proc-arg 0 "argc-lower-val-y" "{ 256 } ") + (proc-arg 7 "lower-val-y" "array of 256 y freehand koord { 0 <= y <= 255 }") + (proc-arg 14 "bent-layer" "the handled layer")) + (proc-def "plug_in_curve_bend_Iterator" 1 + "This procedure calculates the modified values for one iterationstep for the call of plug_in_curve_bend" + "" + "Wolfgang Hofer (hof@hotbot.com)" + "Wolfgang Hofer" + "v1.3.18 (2003/08/26)" + "" + 0 + (icon icon-name -1 "") + "" + 4 0 + (proc-arg 0 "run-mode" "The run mode { RUN-NONINTERACTIVE (1) }") + (proc-arg 0 "total-steps" "total number of steps (# of layers-1 to apply the related plug-in)") + (proc-arg 3 "current-step" "current (for linear iterations this is the layerstack position, otherwise some value in between)") + (proc-arg 0 "len-struct" "length of stored data structure with id is equal to the plug_in proc_name"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/crop-zealous/crop-zealous" 1699270928 + (proc-def "plug-in-zealouscrop" 1 + "Autocrop unused space from edges and middle" + "" + "Adam D. Moss" + "Adam D. Moss" + "1997" + "_Zealous Crop" + 1 + (menu-path "/Image/Crop") + (icon icon-name -1 "") + "RGB*, GRAY*, INDEXED*" + 3 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Input drawable"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/contrast-retinex/contrast-retinex" 1699270928 + (proc-def "plug-in-retinex" 1 + "Enhance contrast using the Retinex method" + "The Retinex Image Enhancement Algorithm is an automatic image enhancement method that enhances a digital image in terms of dynamic range compression, color independence from the spectral distribution of the scene illuminant, and color/lightness rendition." + "Fabien Pelisson" + "Fabien Pelisson" + "2003" + "Retine_x..." + 1 + (menu-path "/Colors/Tone Mapping") + (icon icon-name -1 "") + "RGB*" + 7 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image (unused)") + (proc-arg 16 "drawable" "Input drawable") + (proc-arg 0 "scale" "Biggest scale value") + (proc-arg 0 "nscales" "Number of scales") + (proc-arg 0 "scales-mode" "Retinex distribution through scales") + (proc-arg 3 "cvar" "Variance value"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/compose/compose" 1699270928 (proc-def "plug-in-compose" 1 "Create an image using multiple gray images as color channels" "This function creates a new image from multiple gray images" @@ -3397,910 +4217,7 @@ (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") (proc-arg 13 "image" "Image to recompose from") (proc-arg 16 "drawable" "Not used"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/color-cube-analyze/color-cube-analyze" 1655102016 - (proc-def "plug-in-ccanalyze" 1 - "Analyze the set of colors in the image" - "Analyze colorcube and print some information about the current image (also displays a color-histogram)" - "robert@experimental.net" - "robert@experimental.net" - "June 20th, 1997" - "Colorcube A_nalysis..." - 1 - (menu-path "/Colors/Info") - (icon icon-name -1 "") - "RGB*, GRAY*, INDEXED*" - 3 1 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 13 "image" "Input image") - (proc-arg 16 "drawable" "Input drawable") - (proc-arg 0 "num-colors" "Number of colors in the image"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/busy-dialog/busy-dialog" 1655102016 - (proc-def "plug-in-busy-dialog" 1 - "Show a dialog while waiting for an operation to finish" - "Used by GIMP to display a dialog, containing a spinner and a custom message, while waiting for an ongoing operation to finish. Optionally, the dialog may provide a \"Cancel\" button, which can be used to cancel the operation." - "Ell" - "Ell" - "2018" - "" - 0 - (icon icon-name -1 "") - "" - 5 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0) }") - (proc-arg 0 "read-fd" "The read file descriptor") - (proc-arg 0 "write-fd" "The write file descriptor") - (proc-arg 4 "message" "The message") - (proc-arg 0 "cancelable" "Whether the dialog is cancelable (TRUE or FALSE)"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/animation-play/animation-play" 1655102016 - (proc-def "plug-in-animationplay" 1 - "Preview a GIMP layer-based animation" - "" - "Adam D. Moss " - "Adam D. Moss " - "1997, 1998..." - "_Playback..." - 1 - (menu-path "/Filters/Animation") - (icon icon-name -1 "media-playback-start") - "RGB*, INDEXED*, GRAY*" - 3 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 13 "image" "Input image") - (proc-arg 16 "drawable" "Input drawable (unused)"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/wavelet-decompose/wavelet-decompose" 1655102016 - (proc-def "plug-in-wavelet-decompose" 1 - "Wavelet decompose" - "Compute and render wavelet scales" - "Miroslav Talasek " - "Miroslav Talasek " - "19january 2017" - "_Wavelet-decompose..." - 1 - (menu-path "/Filters/Enhance") - (icon icon-name -1 "") - "RGB*, GRAY*" - 6 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 13 "image" "Input image (unused)") - (proc-arg 16 "drawable" "Input drawable") - (proc-arg 0 "scales" "Number of scales (1-7)") - (proc-arg 0 "create-group" "Create a layer group to store the decomposition") - (proc-arg 0 "create-masks" "Add a layer mask to each scales layers"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/tile-small/tile-small" 1655102016 - (proc-def "plug-in-small-tiles" 1 - "Tile image into smaller versions of the original" - "More here later" - "Andy Thomas" - "Andy Thomas" - "1997" - "_Small Tiles..." - 0 - (icon icon-name -1 "") - "RGB*, GRAY*" - 4 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 13 "image" "Input image (unused)") - (proc-arg 16 "drawable" "Input drawable") - (proc-arg 0 "num-tiles" "Number of tiles to make"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/softglow/softglow" 1655102016 - (proc-def "plug-in-softglow" 1 - "Simulate glow by making highlights intense and fuzzy" - "Gives an image a softglow effect by intensifying the highlights in the image. This is done by screening a modified version of the drawable with itself. The modified version is desaturated and then a sigmoidal transfer function is applied to force the distribution of intensities into very small and very large only. This desaturated version is then blurred to give it a fuzzy 'vaseline-on-the-lens' effect. The glow radius parameter controls the sharpness of the glow effect. The brightness parameter controls the degree of intensification applied to image highlights. The sharpness parameter controls how defined or alternatively, diffuse, the glow effect should be." - "Spencer Kimball" - "Bit Specialists, Inc." - "2001" - "_Softglow (legacy)..." - 1 - (menu-path "/Filters/Artistic") - (icon icon-name -1 "") - "RGB*, GRAY*" - 6 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 13 "image" "Input image (unused)") - (proc-arg 16 "drawable" "Input drawable") - (proc-arg 3 "glow-radius" "Glow radius (radius in pixels)") - (proc-arg 3 "brightness" "Glow brightness (0.0 - 1.0)") - (proc-arg 3 "sharpness" "Glow sharpness (0.0 - 1.0)"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/script-fu/script-fu" 1655102016 - (proc-def "extension-script-fu" 2 - "A scheme interpreter for scripting GIMP operations" - "More help here later" - "Spencer Kimball & Peter Mattis" - "Spencer Kimball & Peter Mattis" - "1997" - "" - 0 - (icon icon-name -1 "") - "" - 0 0) - (proc-def "plug-in-script-fu-console" 1 - "Interactive console for Script-Fu development" - "Provides an interface which allows interactive scheme development." - "Spencer Kimball & Peter Mattis" - "Spencer Kimball & Peter Mattis" - "1997" - "_Console" - 1 - (menu-path "/Filters/Languages/Script-Fu") - (icon icon-name -1 "") - "" - 1 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0) }")) - (proc-def "plug-in-script-fu-text-console" 1 - "Provides a text console mode for script-fu development" - "Provides an interface which allows interactive scheme development." - "Spencer Kimball & Peter Mattis" - "Spencer Kimball & Peter Mattis" - "1997" - "" - 0 - (icon icon-name -1 "") - "" - 1 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0) }")) - (proc-def "plug-in-script-fu-server" 1 - "Server for remote Script-Fu operation" - "Provides a server for remote script-fu operation. NOTE that for security reasons this procedure's API was changed in an incompatible way since GIMP 2.8.12. You now have to pass the IP to listen on as first parameter. Calling this procedure with the old API will fail on purpose." - "Spencer Kimball & Peter Mattis" - "Spencer Kimball & Peter Mattis" - "1997" - "_Start Server..." - 1 - (menu-path "/Filters/Languages/Script-Fu") - (icon icon-name -1 "") - "" - 4 0 - (proc-arg 0 "run-mode" "The run mode { RUN-NONINTERACTIVE (1) }") - (proc-arg 4 "ip" "The ip on which to listen for requests") - (proc-arg 0 "port" "The port on which to listen for requests") - (proc-arg 4 "logfile" "The file to log server activity to")) - (proc-def "plug-in-script-fu-eval" 1 - "Evaluate scheme code" - "Evaluate the code under the scheme interpreter (primarily for batch mode)" - "Manish Singh" - "Manish Singh" - "1998" - "" - 0 - (icon icon-name -1 "") - "" - 2 0 - (proc-arg 0 "run-mode" "The run mode { RUN-NONINTERACTIVE (1) }") - (proc-arg 4 "code" "The code to evaluate")) - (locale-def "gimp20-script-fu")) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/procedure-browser/procedure-browser" 1655102016 - (proc-def "plug-in-dbbrowser" 1 - "List available procedures in the PDB" - "" - "Thomas Noel" - "Thomas Noel" - "23th june 1997" - "Procedure _Browser" - 1 - (menu-path "/Help/Programming") - (icon icon-name -1 "") - "" - 1 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0) }"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/pagecurl/pagecurl" 1655102016 - (proc-def "plug-in-pagecurl" 1 - "Curl up one of the image corners" - "This plug-in creates a pagecurl-effect." - "Federico Mena Quintero and Simon Budig" - "Federico Mena Quintero and Simon Budig" - "July 2004, 1.0" - "_Pagecurl..." - 1 - (menu-path "/Filters/Distorts") - (icon icon-name -1 "") - "RGB*, GRAY*" - 7 1 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 13 "image" "Input image") - (proc-arg 16 "drawable" "Input drawable") - (proc-arg 0 "colors" "FG- and BG-Color (0), Current gradient (1), Current gradient reversed (2)") - (proc-arg 0 "edge" "Edge to curl (1-4, clockwise, starting in the lower right edge)") - (proc-arg 0 "orientation" "Vertical (0), Horizontal (1)") - (proc-arg 0 "shade" "Shade the region under the curl (1) or not (0)") - (proc-arg 14 "curl-layer" "The new layer with the curl."))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/max-rgb/max-rgb" 1655102016 - (proc-def "plug-in-max-rgb" 1 - "Reduce image to pure red, green, and blue" - "There's no help yet." - "Shuji Narazaki (narazaki@InetQ.or.jp)" - "Shuji Narazaki" - "May 2000" - "Maxim_um RGB..." - 0 - (icon icon-name -1 "") - "RGB*" - 4 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 13 "image" "Input image (not used)") - (proc-arg 16 "drawable" "Input drawable") - (proc-arg 0 "max-p" "{ MINIMIZE (0), MAXIMIZE (1) }"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/jigsaw/jigsaw" 1655102016 - (proc-def "plug-in-jigsaw" 1 - "Add a jigsaw-puzzle pattern to the image" - "Jigsaw puzzle look" - "Nigel Wetten" - "Nigel Wetten" - "May 2000" - "_Jigsaw..." - 1 - (menu-path "/Filters/Render/Pattern") - (icon icon-name -1 "") - "RGB*" - 8 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 13 "image" "Input image") - (proc-arg 16 "drawable" "Input drawable") - (proc-arg 0 "x" "Number of tiles across > 0") - (proc-arg 0 "y" "Number of tiles down > 0") - (proc-arg 0 "style" "The style/shape of the jigsaw puzzle { 0, 1 }") - (proc-arg 0 "blend-lines" "Number of lines for shading bevels >= 0") - (proc-arg 3 "blend-amount" "The power of the light highlights 0 =< 5"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/help/help" 1655102016 - (proc-def "extension-gimp-help" 2 - "" - "" - "Sven Neumann , Michael Natterer , Henrik Brix Andersen " - "Sven Neumann, Michael Natterer & Henrik Brix Andersen" - "1999-2008" - "" - 0 - (icon icon-name -1 "") - "" - 4 0 - (proc-arg 0 "num-domain-names" "") - (proc-arg 9 "domain-names" "") - (proc-arg 0 "num-domain-uris" "") - (proc-arg 9 "domain-uris" ""))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/gradient-flare/gradient-flare" 1655102016 - (proc-def "plug-in-gflare" 1 - "Produce a lense flare effect using gradients" - "This plug-in produces a lense flare effect using custom gradients. In interactive call, the user can edit his/her own favorite lense flare (GFlare) and render it. Edited gflare is saved automatically to the folder in gflare-path, if it is defined in gimprc. In non-interactive call, the user can only render one of GFlare which has been stored in gflare-path already." - "Eiichi Takamori" - "Eiichi Takamori, and a lot of GIMP people" - "1997" - "_Gradient Flare..." - 1 - (menu-path "/Filters/Light and Shadow/Light") - (icon icon-name -1 "") - "RGB*, GRAY*" - 14 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 13 "image" "Input image (unused)") - (proc-arg 16 "drawable" "Input drawable") - (proc-arg 4 "gflare-name" "The name of GFlare") - (proc-arg 0 "xcenter" "X coordinate of center of GFlare") - (proc-arg 0 "ycenter" "Y coordinate of center of GFlare") - (proc-arg 3 "radius" "Radius of GFlare (pixel)") - (proc-arg 3 "rotation" "Rotation of GFlare (degree)") - (proc-arg 3 "hue" "Hue rotation of GFlare (degree)") - (proc-arg 3 "vangle" "Vector angle for second flares (degree)") - (proc-arg 3 "vlength" "Vector length for second flares (percentage to Radius)") - (proc-arg 0 "use-asupsample" "Whether it uses or not adaptive supersampling while rendering (boolean)") - (proc-arg 0 "asupsample-max-depth" "Max depth for adaptive supersampling") - (proc-arg 3 "asupsample-threshold" "Threshold for adaptive supersampling"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/fractal-trace/fractal-trace" 1655102016 - (proc-def "plug-in-fractal-trace" 1 - "Transform image with the Mandelbrot Fractal" - "transform image with the Mandelbrot Fractal" - "Hirotsuna Mizuno " - "Copyright (C) 1997 Hirotsuna Mizuno" - "v0.4 test version (Dec. 25 1997)" - "_Fractal Trace (legacy)..." - 1 - (menu-path "/Filters/Map") - (icon icon-name -1 "") - "RGB*, GRAY*" - 9 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 13 "image" "Input image (unused)") - (proc-arg 16 "drawable" "Input drawable") - (proc-arg 3 "xmin" "xmin fractal image delimiter") - (proc-arg 3 "xmax" "xmax fractal image delimiter") - (proc-arg 3 "ymin" "ymin fractal image delimiter") - (proc-arg 3 "ymax" "ymax fractal image delimiter") - (proc-arg 0 "depth" "Trace depth") - (proc-arg 0 "outside-type" "Outside type { WRAP (0), TRANS (1), BLACK (2), WHITE (3) }"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/film/film" 1655102016 - (proc-def "plug-in-film" 1 - "Combine several images on a film strip" - "Compose several images to a roll film" - "Peter Kirchgessner" - "Peter Kirchgessner (peter@kirchgessner.net)" - "1997" - "_Filmstrip..." - 1 - (menu-path "/Filters/Combine") - (icon icon-name -1 "") - "INDEXED*, GRAY*, RGB*" - 12 1 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 13 "image" "Input image (only used as default image in interactive mode)") - (proc-arg 16 "drawable" "Input drawable (not used)") - (proc-arg 0 "film-height" "Height of film (0: fit to images)") - (proc-arg 10 "film-color" "Color of the film") - (proc-arg 0 "number-start" "Start index for numbering") - (proc-arg 4 "number-font" "Font for drawing numbers") - (proc-arg 10 "number-color" "Color for numbers") - (proc-arg 0 "at-top" "Flag for drawing numbers at top of film") - (proc-arg 0 "at-bottom" "Flag for drawing numbers at bottom of film") - (proc-arg 0 "num-images" "Number of images to be used for film") - (proc-arg 5 "image-ids" "num-images image IDs to be used for film") - (proc-arg 13 "new-image" "Output image"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-xbm/file-xbm" 1655102016 - (proc-def "file-xbm-load" 1 - "Load a file in X10 or X11 bitmap (XBM) file format" - "Load a file in X10 or X11 bitmap (XBM) file format. XBM is a lossless format for flat black-and-white (two color indexed) images." - "Gordon Matzigkeit" - "Gordon Matzigkeit" - "1998" - "X BitMap image" - 0 - (icon icon-name -1 "") - (load-proc - (extensions "xbm,icon,bitmap") - (mime-types "image/x-xbitmap")) - "" - 3 1 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 4 "filename" "The name of the file to load") - (proc-arg 4 "raw-filename" "The name entered") - (proc-arg 13 "image" "Output image")) - (proc-def "file-xbm-save" 1 - "Export a file in X10 or X11 bitmap (XBM) file format" - "Export a file in X10 or X11 bitmap (XBM) file format. XBM is a lossless format for flat black-and-white (two color indexed) images." - "Gordon Matzigkeit" - "Gordon Matzigkeit" - "1998" - "X BitMap image" - 0 - (icon icon-name -1 "") - (save-proc - (extensions "xbm,icon,bitmap") - (mime-types "image/x-xbitmap") - (handles-uri)) - "INDEXED" - 12 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 13 "image" "Input image") - (proc-arg 16 "drawable" "Drawable to export") - (proc-arg 4 "filename" "The name of the file to export") - (proc-arg 4 "raw-filename" "The name entered") - (proc-arg 4 "comment" "Image description (maximum 72 bytes)") - (proc-arg 0 "x10" "Export in X10 format") - (proc-arg 0 "x-hot" "X coordinate of hotspot") - (proc-arg 0 "y-hot" "Y coordinate of hotspot") - (proc-arg 4 "prefix" "Identifier prefix [determined from filename]") - (proc-arg 0 "write-mask" "(0 = ignore, 1 = save as extra file)") - (proc-arg 4 "mask-extension" "Extension of the mask file"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-tga/file-tga" 1655102016 - (proc-def "file-tga-load" 1 - "Loads files of Targa file format" - "FIXME: write help for tga_load" - "Raphael FRANCOIS, Gordon Matzigkeit" - "Raphael FRANCOIS, Gordon Matzigkeit" - "1997,2000,2007" - "TarGA image" - 0 - (icon icon-name -1 "") - (load-proc - (extensions "tga,vda,icb,vst") - (magics "-18&,string,TRUEVISION-XFILE.,-1,byte,0") - (mime-types "image/x-tga")) - "" - 3 1 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 4 "filename" "The name of the file to load") - (proc-arg 4 "raw-filename" "The name entered") - (proc-arg 13 "image" "Output image")) - (proc-def "file-tga-save" 1 - "exports files in the Targa file format" - "FIXME: write help for tga_save" - "Raphael FRANCOIS, Gordon Matzigkeit" - "Raphael FRANCOIS, Gordon Matzigkeit" - "1997,2000" - "TarGA image" - 0 - (icon icon-name -1 "") - (save-proc - (extensions "tga") - (mime-types "image/x-tga")) - "RGB*, GRAY*, INDEXED*" - 7 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 13 "image" "Input image") - (proc-arg 16 "drawable" "Drawable to export") - (proc-arg 4 "filename" "The name of the file to export the image in") - (proc-arg 4 "raw-filename" "The name of the file to export the image in") - (proc-arg 0 "rle" "Use RLE compression") - (proc-arg 0 "origin" "Image origin (0 = top-left, 1 = bottom-left)"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-psd/file-psd" 1655102016 - (proc-def "file-psd-load" 1 - "Loads images from the Photoshop PSD file format" - "This plug-in loads images in Adobe Photoshop (TM) native PSD format." - "John Marshall" - "John Marshall" - "2007" - "Photoshop image" - 0 - (icon icon-name -1 "") - (load-proc - (extensions "psd") - (magics "0,string,8BPS") - (mime-types "image/x-psd") - (thumb-loader "file-psd-load-thumb")) - "" - 3 1 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 4 "filename" "The name of the file to load") - (proc-arg 4 "raw-filename" "The name of the file to load") - (proc-arg 13 "image" "Output image")) - (proc-def "file-psd-load-merged" 1 - "Loads merged images from the Photoshop PSD file format" - "This plug-in loads the merged image data in Adobe Photoshop (TM) native PSD format." - "Ell" - "Ell" - "2018" - "Photoshop image (merged)" - 0 - (icon icon-name -1 "") - (load-proc - (extensions "psd") - (magics "0,string,8BPS") - (priority 1) - (mime-types "image/x-psd") - (priority 1)) - "" - 3 1 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 4 "filename" "The name of the file to load") - (proc-arg 4 "raw-filename" "The name of the file to load") - (proc-arg 13 "image" "Output image")) - (proc-def "file-psd-load-thumb" 1 - "Loads thumbnails from the Photoshop PSD file format" - "This plug-in loads thumbnail images from Adobe Photoshop (TM) native PSD format files." - "John Marshall" - "John Marshall" - "2007" - "" - 0 - (icon icon-name -1 "") - "" - 2 3 - (proc-arg 4 "filename" "The name of the file to load") - (proc-arg 0 "thumb-size" "Preferred thumbnail size") - (proc-arg 13 "image" "Thumbnail image") - (proc-arg 0 "image-width" "Width of full-sized image") - (proc-arg 0 "image-height" "Height of full-sized image")) - (proc-def "file-psd-save" 1 - "saves files in the Photoshop(tm) PSD file format" - "This filter saves files of Adobe Photoshop(tm) native PSD format. These files may be of any image type supported by GIMP, with or without layers, layer masks, aux channels and guides." - "Monigotes" - "Monigotes" - "2000" - "Photoshop image" - 0 - (icon icon-name -1 "") - (save-proc - (extensions "psd") - (mime-types "image/x-psd")) - "RGB*, GRAY*, INDEXED*" - 7 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 13 "image" "Input image") - (proc-arg 16 "drawable" "Drawable to save") - (proc-arg 4 "filename" "The name of the file to save the image in") - (proc-arg 4 "raw-filename" "The name of the file to save the image in") - (proc-arg 0 "compression" "Compression type: { NONE (0), LZW (1), PACKBITS (2)") - (proc-arg 0 "fill-order" "Fill Order: { MSB to LSB (0), LSB to MSB (1)"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-pix/file-pix" 1655102016 - (proc-def "file-pix-load" 1 - "loads files of the Alias|Wavefront Pix file format" - "loads files of the Alias|Wavefront Pix file format" - "Michael Taylor" - "Michael Taylor" - "1997" - "Alias Pix image" - 0 - (icon icon-name -1 "") - (load-proc - (extensions "pix,matte,mask,alpha,als") - (handles-uri)) - "" - 3 1 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 4 "filename" "The name of the file to load") - (proc-arg 4 "raw-filename" "The name entered") - (proc-arg 13 "image" "Output image")) - (proc-def "file-pix-save" 1 - "export file in the Alias|Wavefront pix/matte file format" - "export file in the Alias|Wavefront pix/matte file format" - "Michael Taylor" - "Michael Taylor" - "1997" - "Alias Pix image" - 0 - (icon icon-name -1 "") - (save-proc - (extensions "pix,matte,mask,alpha,als") - (handles-uri)) - "RGB*, GRAY*, INDEXED*" - 5 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 13 "image" "Input image") - (proc-arg 16 "drawable" "Drawable to export") - (proc-arg 4 "filename" "The name of the file to export the image in") - (proc-arg 4 "raw-filename" "The name of the file to export the image in"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-pat/file-pat" 1655102016 - (proc-def "file-pat-save" 1 - "Exports Gimp pattern file (.PAT)" - "New Gimp patterns can be created by exporting them in the appropriate place with this plug-in." - "Tim Newsome" - "Tim Newsome" - "1997" - "GIMP pattern" - 0 - (icon icon-name -1 "gimp-pattern") - (save-proc - (extensions "pat") - (mime-types "image/x-gimp-pat") - (handles-uri)) - "RGB*, GRAY*, INDEXED*" - 6 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 13 "image" "Input image") - (proc-arg 16 "drawable" "Drawable to export") - (proc-arg 4 "uri" "The URI of the file to export the image in") - (proc-arg 4 "raw-uri" "The URI of the file to export the image in") - (proc-arg 4 "description" "Short description of the pattern"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-ico/file-ico" 1655102016 - (proc-def "file-ico-load" 1 - "Loads files of Windows ICO file format" - "Loads files of Windows ICO file format" - "Christian Kreibich " - "Christian Kreibich " - "2002" - "Microsoft Windows icon" - 0 - (icon icon-name -1 "") - (load-proc - (extensions "ico") - (magics "0,string,\\000\\001\\000\\000,0,string,\\000\\002\\000\\000") - (mime-types "image/x-ico") - (thumb-loader "file-ico-load-thumb")) - "" - 3 1 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 4 "filename" "The name of the file to load") - (proc-arg 4 "raw-filename" "The name entered") - (proc-arg 13 "image" "Output image")) - (proc-def "file-ico-load-thumb" 1 - "Loads a preview from an Windows ICO file" - "" - "Dom Lachowicz, Sven Neumann" - "Sven Neumann " - "2005" - "" - 0 - (icon icon-name -1 "") - "" - 2 3 - (proc-arg 4 "filename" "The name of the file to load") - (proc-arg 0 "thumb-size" "Preferred thumbnail size") - (proc-arg 13 "image" "Thumbnail image") - (proc-arg 0 "image-width" "Width of full-sized image") - (proc-arg 0 "image-height" "Height of full-sized image")) - (proc-def "file-ico-save" 1 - "Saves files in Windows ICO file format" - "Saves files in Windows ICO file format" - "Christian Kreibich " - "Christian Kreibich " - "2002" - "Microsoft Windows icon" - 0 - (icon icon-name -1 "") - (save-proc - (extensions "ico") - (mime-types "image/x-ico")) - "*" - 5 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 13 "image" "Input image") - (proc-arg 16 "drawable" "Drawable to save") - (proc-arg 4 "filename" "The name of the file to save the image in") - (proc-arg 4 "raw-filename" "The name entered"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-glob/file-glob" 1655102016 - (proc-def "file-glob" 1 - "Returns a list of matching filenames" - "This can be useful in scripts and other plug-ins (e.g., batch-conversion). See the glob(7) manpage for more info. Note however that this isn't a full-featured glob implementation. It only handles simple patterns like \"/home/foo/bar/*.jpg\"." - "Sven Neumann" - "Sven Neumann" - "2004" - "" - 0 - (icon icon-name -1 "") - "" - 2 2 - (proc-arg 4 "pattern" "The glob pattern (in UTF-8 encoding)") - (proc-arg 0 "encoding" "Encoding of the returned names: { UTF-8 (0), filename encoding (1) }") - (proc-arg 0 "num-files" "The number of returned names") - (proc-arg 9 "files" "The list of matching names"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-gegl/file-gegl" 1655102016 - (proc-def "file-load-rgbe" 1 - "Load files in the RGBE file format" - "This procedure loads images in the RGBE format, using gegl:rgbe-load" - "Simon Budig" - "Simon Budig" - "2012" - "Radiance RGBE" - 0 - (icon icon-name -1 "") - (load-proc - (extensions "hdr") - (magics "0,string,#?") - (mime-types "image/vnd.radiance")) - "" - 3 1 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 4 "filename" "The name of the file to load.") - (proc-arg 4 "raw-filename" "The name entered") - (proc-arg 13 "image" "Output image")) - (proc-def "file-save-rgbe" 1 - "Saves files in the RGBE file format" - "This procedure exports images in the RGBE format, using gegl:rgbe-save" - "Simon Budig" - "Simon Budig" - "2012" - "Radiance RGBE" - 0 - (icon icon-name -1 "") - (save-proc - (extensions "hdr") - (mime-types "image/vnd.radiance")) - "*" - 5 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 13 "image" "Input image") - (proc-arg 16 "drawable" "Drawable to save") - (proc-arg 4 "filename" "The name of the file to save the image in") - (proc-arg 4 "raw-filename" "The name of the file to save the image in")) - (proc-def "file-exr-save" 1 - "Saves files in the OpenEXR file format" - "This procedure saves images in the OpenEXR format, using gegl:exr-save" - "Simon Budig" - "Simon Budig" - "2012" - "OpenEXR image" - 0 - (icon icon-name -1 "") - (save-proc - (extensions "exr") - (mime-types "image/x-exr")) - "*" - 5 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 13 "image" "Input image") - (proc-arg 16 "drawable" "Drawable to save") - (proc-arg 4 "filename" "The name of the file to save the image in") - (proc-arg 4 "raw-filename" "The name of the file to save the image in"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-faxg3/file-faxg3" 1655102016 - (proc-def "file-faxg3-load" 1 - "loads g3 fax files" - "This plug-in loads Fax G3 Image files." - "Jochen Friedrich" - "Jochen Friedrich, Gert Doering, Spencer Kimball & Peter Mattis" - "0.6" - "G3 fax image" - 0 - (icon icon-name -1 "") - (load-proc - (extensions "g3") - (magics "4,string,Research") - (mime-types "image/g3-fax")) - "" - 3 1 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 4 "filename" "The name of the file to load") - (proc-arg 4 "raw-filename" "The name of the file to load") - (proc-arg 13 "image" "Output image"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-dds/file-dds" 1655102016 - (proc-def "file-dds-load" 1 - "Loads files in DDS image format" - "Loads files in DDS image format" - "Shawn Kirst" - "Shawn Kirst" - "2008" - "DDS image" - 0 - (icon icon-name -1 "") - (load-proc - (extensions "dds") - (magics "0,string,DDS") - (mime-types "image/dds")) - "" - 5 1 - (proc-arg 0 "run-mode" "Interactive, non-interactive") - (proc-arg 4 "filename" "The name of the file to load") - (proc-arg 4 "raw-filename" "The name entered") - (proc-arg 0 "load-mipmaps" "Load mipmaps if present") - (proc-arg 0 "decode-images" "Decode YCoCg/AExp images when detected") - (proc-arg 13 "image" "Output image")) - (proc-def "file-dds-save" 1 - "Saves files in DDS image format" - "Saves files in DDS image format" - "Shawn Kirst" - "Shawn Kirst" - "2008" - "DDS image" - 0 - (icon icon-name -1 "") - (save-proc - (extensions "dds") - (mime-types "image/dds")) - "INDEXED, GRAY, RGB" - 18 0 - (proc-arg 0 "run-mode" "Interactive, non-interactive") - (proc-arg 13 "image" "Input image") - (proc-arg 16 "drawable" "Drawable to save") - (proc-arg 4 "filename" "The name of the file to save the image as") - (proc-arg 4 "raw-filename" "The name entered") - (proc-arg 0 "compression-format" "Compression format (0 = None, 1 = BC1/DXT1, 2 = BC2/DXT3, 3 = BC3/DXT5, 4 = BC3n/DXT5nm, 5 = BC4/ATI1N, 6 = BC5/ATI2N, 7 = RXGB (DXT5), 8 = Alpha Exponent (DXT5), 9 = YCoCg (DXT5), 10 = YCoCg scaled (DXT5))") - (proc-arg 0 "mipmaps" "How to handle mipmaps (0 = No mipmaps, 1 = Generate mipmaps, 2 = Use existing mipmaps (layers)") - (proc-arg 0 "savetype" "How to save the image (0 = selected layer, 1 = cube map, 2 = volume map, 3 = texture array, 4 = all visible layers") - (proc-arg 0 "format" "Custom pixel format (0 = default, 1 = R5G6B5, 2 = RGBA4, 3 = RGB5A1, 4 = RGB10A2)") - (proc-arg 0 "transparent-index" "Index of transparent color or -1 to disable (for indexed images only).") - (proc-arg 0 "mipmap-filter" "Filtering to use when generating mipmaps (0 = default, 1 = nearest, 2 = box, 3 = triangle, 4 = quadratic, 5 = bspline, 6 = mitchell, 7 = lanczos, 8 = kaiser)") - (proc-arg 0 "mipmap-wrap" "Wrap mode to use when generating mipmaps (0 = default, 1 = mirror, 2 = repeat, 3 = clamp)") - (proc-arg 0 "gamma-correct" "Use gamma correct mipmap filtering") - (proc-arg 0 "srgb" "Use sRGB colorspace for gamma correction") - (proc-arg 3 "gamma" "Gamma value to use for gamma correction (i.e. 2.2)") - (proc-arg 0 "perceptual-metric" "Use a perceptual error metric during compression") - (proc-arg 0 "preserve-alpha-coverage" "Preserve alpha test converage for alpha channel maps") - (proc-arg 3 "alpha-test-threshold" "Alpha test threshold value for which alpha test converage should be preserved")) - (proc-def "file-dds-save2" 1 - "Saves files in DDS image format with additional export options" - "Saves files in DDS image format with additional export options" - "Shawn Kirst" - "Shawn Kirst" - "2008" - "DDS image" - 0 - (icon icon-name -1 "") - (save-proc - (extensions "dds") - (mime-types "image/dds")) - "INDEXED, GRAY, RGB" - 19 0 - (proc-arg 0 "run-mode" "Interactive, non-interactive") - (proc-arg 13 "image" "Input image") - (proc-arg 16 "drawable" "Drawable to save") - (proc-arg 4 "filename" "The name of the file to save the image as") - (proc-arg 4 "raw-filename" "The name entered") - (proc-arg 0 "compression-format" "Compression format (0 = None, 1 = BC1/DXT1, 2 = BC2/DXT3, 3 = BC3/DXT5, 4 = BC3n/DXT5nm, 5 = BC4/ATI1N, 6 = BC5/ATI2N, 7 = RXGB (DXT5), 8 = Alpha Exponent (DXT5), 9 = YCoCg (DXT5), 10 = YCoCg scaled (DXT5))") - (proc-arg 0 "mipmaps" "How to handle mipmaps (0 = No mipmaps, 1 = Generate mipmaps, 2 = Use existing mipmaps (layers)") - (proc-arg 0 "savetype" "How to save the image (0 = selected layer, 1 = cube map, 2 = volume map, 3 = texture array, 4 = all visible layers") - (proc-arg 0 "format" "Custom pixel format (0 = default, 1 = R5G6B5, 2 = RGBA4, 3 = RGB5A1, 4 = RGB10A2)") - (proc-arg 0 "transparent-index" "Index of transparent color or -1 to disable (for indexed images only).") - (proc-arg 0 "mipmap-filter" "Filtering to use when generating mipmaps (0 = default, 1 = nearest, 2 = box, 3 = triangle, 4 = quadratic, 5 = bspline, 6 = mitchell, 7 = lanczos, 8 = kaiser)") - (proc-arg 0 "mipmap-wrap" "Wrap mode to use when generating mipmaps (0 = default, 1 = mirror, 2 = repeat, 3 = clamp)") - (proc-arg 0 "gamma-correct" "Use gamma correct mipmap filtering") - (proc-arg 0 "srgb" "Use sRGB colorspace for gamma correction") - (proc-arg 3 "gamma" "Gamma value to use for gamma correction (i.e. 2.2)") - (proc-arg 0 "perceptual-metric" "Use a perceptual error metric during compression") - (proc-arg 0 "preserve-alpha-coverage" "Preserve alpha test converage for alpha channel maps") - (proc-arg 3 "alpha-test-threshold" "Alpha test threshold value for which alpha test converage should be preserved") - (proc-arg 0 "flip-image" "Flip image vertically on export"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-cel/file-cel" 1655102016 - (proc-def "file-cel-load" 1 - "Loads files in KISS CEL file format" - "This plug-in loads individual KISS cell files." - "Nick Lamb" - "Nick Lamb " - "May 1998" - "KISS CEL" - 0 - (icon icon-name -1 "") - (load-proc - (extensions "cel") - (magics "0,string,KiSS\\040")) - "" - 4 1 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 4 "filename" "Filename to load image from") - (proc-arg 4 "raw-filename" "Name entered") - (proc-arg 4 "palette-filename" "Filename to load palette from") - (proc-arg 13 "image" "Output image")) - (proc-def "file-cel-save" 1 - "Exports files in KISS CEL file format" - "This plug-in exports individual KISS cell files." - "Nick Lamb" - "Nick Lamb " - "May 1998" - "KISS CEL" - 0 - (icon icon-name -1 "") - (save-proc - (extensions "cel") - (handles-uri)) - "RGB*, INDEXED*" - 6 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 13 "image" "Input image") - (proc-arg 16 "drawable" "Drawable to export") - (proc-arg 4 "filename" "Filename to export image to") - (proc-arg 4 "raw-filename" "Name entered") - (proc-arg 4 "palette-filename" "Filename to save palette to"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/destripe/destripe" 1655102016 - (proc-def "plug-in-destripe" 1 - "Remove vertical stripe artifacts from the image" - "This plug-in tries to remove vertical stripes from an image." - "Marc Lehmann " - "Marc Lehmann " - "0.2" - "Des_tripe..." - 1 - (menu-path "/Filters/Enhance") - (icon icon-name -1 "") - "RGB*, GRAY*" - 4 0 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 13 "image" "Input image") - (proc-arg 16 "drawable" "Input drawable") - (proc-arg 0 "avg-width" "Averaging filter width (default = 36)"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/curve-bend/curve-bend" 1655102016 - (proc-def "plug-in-curve-bend" 1 - "Bend the image using two control curves" - "This plug-in does bend the active layer If there is a current selection it is copied to floating selection and the curve_bend distortion is done on the floating selection. If work_on_copy parameter is TRUE, the curve_bend distortion is done on a copy of the active layer (or floating selection). The upper and lower edges are bent in shape of 2 spline curves. both (upper and lower) curves are determined by upto 17 points or by 256 Y-Values if curve_type == 1 (freehand mode) If rotation is not 0, the layer is rotated before and rotated back after the bend operation. This enables bending in other directions than vertical. bending usually changes the size of the handled layer. this plug-in sets the offsets of the handled layer to keep its center at the same position" - "Wolfgang Hofer (hof@hotbot.com)" - "Wolfgang Hofer" - "v1.3.18 (2003/08/26)" - "_Curve Bend..." - 1 - (menu-path "/Filters/Distorts") - (icon icon-name -1 "") - "RGB*, GRAY*" - 20 1 - (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") - (proc-arg 13 "image" "Input image") - (proc-arg 16 "drawable" "Input drawable (must be a layer without layermask)") - (proc-arg 3 "rotation" "Direction {angle 0 to 360 degree } of the bend effect") - (proc-arg 0 "smoothing" "Smoothing { TRUE, FALSE }") - (proc-arg 0 "antialias" "Antialias { TRUE, FALSE }") - (proc-arg 0 "work-on-copy" "{ TRUE, FALSE } TRUE: copy the drawable and bend the copy") - (proc-arg 0 "curve-type" " { 0, 1 } 0 == smooth (use 17 points), 1 == freehand (use 256 val_y) ") - (proc-arg 0 "argc-upper-point-x" "{2 <= argc <= 17} ") - (proc-arg 8 "upper-point-x" "array of 17 x point_koords { 0.0 <= x <= 1.0 or -1 for unused point }") - (proc-arg 0 "argc-upper-point-y" "{2 <= argc <= 17} ") - (proc-arg 8 "upper-point-y" "array of 17 y point_koords { 0.0 <= y <= 1.0 or -1 for unused point }") - (proc-arg 0 "argc-lower-point-x" "{2 <= argc <= 17} ") - (proc-arg 8 "lower-point-x" "array of 17 x point_koords { 0.0 <= x <= 1.0 or -1 for unused point }") - (proc-arg 0 "argc-lower-point-y" "{2 <= argc <= 17} ") - (proc-arg 8 "lower-point-y" "array of 17 y point_koords { 0.0 <= y <= 1.0 or -1 for unused point }") - (proc-arg 0 "argc-upper-val-y" "{ 256 } ") - (proc-arg 7 "upper-val-y" "array of 256 y freehand koord { 0 <= y <= 255 }") - (proc-arg 0 "argc-lower-val-y" "{ 256 } ") - (proc-arg 7 "lower-val-y" "array of 256 y freehand koord { 0 <= y <= 255 }") - (proc-arg 14 "bent-layer" "the handled layer")) - (proc-def "plug_in_curve_bend_Iterator" 1 - "This procedure calculates the modified values for one iterationstep for the call of plug_in_curve_bend" - "" - "Wolfgang Hofer (hof@hotbot.com)" - "Wolfgang Hofer" - "v1.3.18 (2003/08/26)" - "" - 0 - (icon icon-name -1 "") - "" - 4 0 - (proc-arg 0 "run-mode" "The run mode { RUN-NONINTERACTIVE (1) }") - (proc-arg 0 "total-steps" "total number of steps (# of layers-1 to apply the related plug-in)") - (proc-arg 3 "current-step" "current (for linear iterations this is the layerstack position, otherwise some value in between)") - (proc-arg 0 "len-struct" "length of stored data structure with id is equal to the plug_in proc_name"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/colormap-remap/colormap-remap" 1655102016 +(plug-in-def "${gimp_plug_in_dir}/plug-ins/colormap-remap/colormap-remap" 1699270928 (proc-def "plug-in-colormap-remap" 1 "Rearrange the colormap" "This procedure takes an indexed image and lets you alter the positions of colors in the colormap without visually changing the image." @@ -4335,7 +4252,56 @@ (proc-arg 16 "drawable" "Input drawable") (proc-arg 2 "index1" "First index in the colormap") (proc-arg 2 "index2" "Second (other) index in the colormap"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/cml-explorer/cml-explorer" 1655102016 +(plug-in-def "${gimp_plug_in_dir}/plug-ins/colorify/colorify" 1699270928 + (proc-def "plug-in-colorify" 1 + "Replace all colors with shades of a specified color" + "Makes an average of the RGB channels and uses it to set the color" + "Francisco Bustamante" + "Francisco Bustamante" + "1.1" + "Colorif_y..." + 0 + (icon icon-name -1 "") + "RGB*" + 4 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Input drawable") + (proc-arg 10 "color" "Color to apply"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/color-enhance/color-enhance" 1699270928 + (proc-def "plug-in-color-enhance" 1 + "Stretch color saturation to cover maximum possible range" + "This simple plug-in does an automatic saturation stretch. For each channel in the image, it finds the minimum and maximum values... it uses those values to stretch the individual histograms to the full range. For some images it may do just what you want; for others it may not work that well. This version differs from Contrast Autostretch in that it works in HSV space, and preserves hue." + "Martin Weber" + "Martin Weber" + "1997" + "_Color Enhance (legacy)" + 1 + (menu-path "/Colors/Auto") + (icon icon-name -1 "") + "RGB*, INDEXED*" + 3 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Input drawable"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/color-cube-analyze/color-cube-analyze" 1699270928 + (proc-def "plug-in-ccanalyze" 1 + "Analyze the set of colors in the image" + "Analyze colorcube and print some information about the current image (also displays a color-histogram)" + "robert@experimental.net" + "robert@experimental.net" + "June 20th, 1997" + "Colorcube A_nalysis..." + 1 + (menu-path "/Colors/Info") + (icon icon-name -1 "") + "RGB*, GRAY*, INDEXED*" + 3 1 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Input drawable") + (proc-arg 0 "num-colors" "Number of colors in the image"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/cml-explorer/cml-explorer" 1699270928 (proc-def "plug-in-cml-explorer" 1 "Create abstract Coupled-Map Lattice patterns" "Make an image of Coupled-Map Lattice (CML). CML is a kind of Cellula Automata on continuous (value) domain. In GIMP_RUN_NONINTERACTIVE, the name of a parameter file is passed as the 4th arg. You can control CML_explorer via parameter file." @@ -4352,7 +4318,60 @@ (proc-arg 13 "image" "Input image (not used)") (proc-arg 16 "drawable" "Input drawable") (proc-arg 4 "parameter-filename" "The name of parameter file. CML_explorer makes an image with its settings."))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/border-average/border-average" 1655102016 +(plug-in-def "${gimp_plug_in_dir}/plug-ins/checkerboard/checkerboard" 1699270928 + (proc-def "plug-in-checkerboard" 1 + "Create a checkerboard pattern" + "More here later" + "Brent Burton & the Edward Blevins" + "Brent Burton & the Edward Blevins" + "1997" + "_Checkerboard (legacy)..." + 1 + (menu-path "/Filters/Render/Pattern") + (icon icon-name -1 "") + "RGB*, GRAY*" + 5 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image (unused)") + (proc-arg 16 "drawable" "Input drawable") + (proc-arg 0 "check-mode" "Check mode { REGULAR (0), PSYCHOBILY (1) }") + (proc-arg 0 "check-size" "Size of the checks"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/cartoon/cartoon" 1699270928 + (proc-def "plug-in-cartoon" 1 + "Simulate a cartoon by enhancing edges" + "Propagates dark values in an image based on each pixel's relative darkness to a neighboring average. The idea behind this filter is to give the look of a black felt pen drawing subsequently shaded with color. This is achieved by darkening areas of the image which are measured to be darker than a neighborhood average. In this way, sufficiently large shifts in intensity are darkened to black. The rate at which they are darkened to black is determined by the second pct_black parameter. The mask_radius parameter controls the size of the pixel neighborhood over which the average intensity is computed and then compared to each pixel in the neighborhood to decide whether or not to darken it to black. Large values for mask_radius result in very thick black areas bordering the shaded regions of color and much less detail for black areas everywhere including inside regions of color. Small values result in more subtle pen strokes and detail everywhere. Small values for the pct_black make the blend from the color regions to the black border lines smoother and the lines themselves thinner and less noticeable; larger values achieve the opposite effect." + "Spencer Kimball" + "Bit Specialists, Inc." + "2001" + "Ca_rtoon (legacy)..." + 1 + (menu-path "/Filters/Artistic") + (icon icon-name -1 "") + "RGB*, GRAY*" + 5 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image (unused)") + (proc-arg 16 "drawable" "Input drawable") + (proc-arg 3 "mask-radius" "Cartoon mask radius (radius of pixel neighborhood)") + (proc-arg 3 "pct-black" "Percentage of darkened pixels to set to black (0.0 - 1.0)"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/busy-dialog/busy-dialog" 1699270928 + (proc-def "plug-in-busy-dialog" 1 + "Show a dialog while waiting for an operation to finish" + "Used by GIMP to display a dialog, containing a spinner and a custom message, while waiting for an ongoing operation to finish. Optionally, the dialog may provide a \"Cancel\" button, which can be used to cancel the operation." + "Ell" + "Ell" + "2018" + "" + 0 + (icon icon-name -1 "") + "" + 5 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0) }") + (proc-arg 0 "read-fd" "The read file descriptor") + (proc-arg 0 "write-fd" "The write file descriptor") + (proc-arg 4 "message" "The message") + (proc-arg 0 "cancelable" "Whether the dialog is cancelable (TRUE or FALSE)"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/border-average/border-average" 1699270928 (proc-def "plug-in-borderaverage" 1 "Set foreground to the average color of the image border" "" @@ -4371,7 +4390,57 @@ (proc-arg 0 "thickness" "Border size to take in count") (proc-arg 0 "bucket-exponent" "Bits for bucket size (default=4: 16 Levels)") (proc-arg 10 "borderaverage" "The average color of the specified border."))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/animation-optimize/animation-optimize" 1655102016 +(plug-in-def "${gimp_plug_in_dir}/plug-ins/blur/blur" 1699270928 + (proc-def "plug-in-blur" 1 + "Simple blur, fast but not very strong" + "This plug-in blurs the specified drawable, using a 3x3 blur. Indexed images are not supported." + "Miles O'Neal " + "Miles O'Neal, Spencer Kimball, Peter Mattis, Torsten Martinsen, Brian Degenhardt, Federico Mena Quintero, Stephen Norris, Daniel Cotting" + "1995-1998" + "_Blur" + 0 + (icon icon-name -1 "") + "RGB*, GRAY*" + 3 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image (unused)") + (proc-arg 16 "drawable" "Input drawable"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/blinds/blinds" 1699270928 + (proc-def "plug-in-blinds" 1 + "Simulate an image painted on window blinds" + "More here later" + "Andy Thomas" + "Andy Thomas" + "1997" + "_Blinds..." + 0 + (icon icon-name -1 "") + "RGB*, GRAY*" + 7 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image (unused)") + (proc-arg 16 "drawable" "Input drawable") + (proc-arg 0 "angle-dsp" "Angle of Displacement") + (proc-arg 0 "num-segments" "Number of segments in blinds") + (proc-arg 0 "orientation" "The orientation { ORIENTATION-HORIZONTAL (0), ORIENTATION-VERTICAL (1) }") + (proc-arg 0 "bg-transparent" "Background transparent { FALSE, TRUE }"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/animation-play/animation-play" 1699270928 + (proc-def "plug-in-animationplay" 1 + "Preview a GIMP layer-based animation" + "" + "Adam D. Moss " + "Adam D. Moss " + "1997, 1998..." + "_Playback..." + 1 + (menu-path "/Filters/Animation") + (icon icon-name -1 "media-playback-start") + "RGB*, INDEXED*, GRAY*" + 3 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Input drawable (unused)"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/animation-optimize/animation-optimize" 1699270928 (proc-def "plug-in-animationoptimize" 1 "Modify image to reduce size when saved as GIF animation" "This procedure applies various optimizations to a GIMP layer-based animation in an attempt to reduce the final file size. If a frame of the animation can use the 'combine' mode, this procedure attempts to maximize the number of ajdacent pixels having the same color, which improves the compression for some image formats such as GIF or MNG." @@ -4420,7 +4489,48 @@ (proc-arg 13 "image" "Input image") (proc-arg 16 "drawable" "Input drawable (unused)") (proc-arg 13 "result" "Resulting image"))) -(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-jxl/file-jxl" 1643504923 +(plug-in-def "${gimp_plug_in_dir}/plug-ins/align-layers/align-layers" 1699270928 + (proc-def "plug-in-align-layers" 1 + "Align all visible layers of the image" + "Align visible layers" + "Shuji Narazaki " + "Shuji Narazaki" + "1997" + "Align Visi_ble Layers..." + 1 + (menu-path "/Image/Arrange") + (icon icon-name -1 "") + "RGB*,GRAY*,INDEXED*" + 5 0 + (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Input drawable (not used)") + (proc-arg 0 "link-after-alignment" "Link the visible layers after alignment { TRUE, FALSE }") + (proc-arg 0 "use-bottom" "use the bottom layer as the base of alignment { TRUE, FALSE }"))) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/gutenprint" 1696101929 + (proc-def "file_print_gutenprint" 1 + "This plug-in prints images from The GIMP using Gutenprint directly." + "Prints images to many printers." + "Michael Sweet and Robert Krawitz " + "Copyright 1997-2006 by Michael Sweet and Robert Krawitz" + "5.3.4 - 06 Dec 2020" + "_Print with Gutenprint..." + 1 + (menu-path "/File/Send") + (icon icon-name -1 "gtk-print") + "RGB*,GRAY*,INDEXED*" + 9 0 + (proc-arg 0 "run-mode" "Interactive, non-interactive") + (proc-arg 13 "image" "Input image") + (proc-arg 16 "drawable" "Input drawable") + (proc-arg 4 "driver" "Printer driver short name") + (proc-arg 4 "printer-queue" "CUPS Printer Queue") + (proc-arg 3 "left" "Left offset (points, -1 = centered)") + (proc-arg 3 "top" "Top offset (points, -1 = centered)") + (proc-arg 0 "length-key-value-array" "Length of the key-value array") + (proc-arg 9 "keys" "Key-value pairs for Gutenprint Settings")) + (locale-def "gutenprint" "${gimp_installation_dir}/share/locale")) +(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-jxl/file-jxl" 1693466068 (proc-def "file-jxl-load" 1 "Loads JPEG XL image files" "Loads JPEG XL image files" diff --git a/gimp/.config/GIMP/2.10/sessionrc b/gimp/.config/GIMP/2.10/sessionrc index 45386a8e4..9f77b5c60 100755 --- a/gimp/.config/GIMP/2.10/sessionrc +++ b/gimp/.config/GIMP/2.10/sessionrc @@ -11,8 +11,8 @@ (size 620 200)) (session-info "toplevel" (factory-entry "gimp-single-image-window") - (position 10 53) - (size 1898 1015) + (position 10 51) + (size 1896 1015) (open-on-exit) (aux-info (left-docks-width "52") diff --git a/gimp/.config/GIMP/2.10/tags.xml b/gimp/.config/GIMP/2.10/tags.xml index 218e73a66..8fdb90628 100755 --- a/gimp/.config/GIMP/2.10/tags.xml +++ b/gimp/.config/GIMP/2.10/tags.xml @@ -493,10 +493,10 @@ - + - + @@ -1213,6 +1213,9 @@ + + + @@ -1795,9 +1798,6 @@ - - - @@ -2065,21 +2065,6 @@ - - - - - - - - - - - - - - - @@ -3082,6 +3067,9 @@ + + + @@ -3874,9 +3862,6 @@ - - - @@ -3907,9 +3892,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + @@ -4012,15 +4021,6 @@ - - - - - - - - - @@ -4072,6 +4072,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -4129,36 +4165,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -4198,6 +4204,9 @@ + + + @@ -4255,9 +4264,6 @@ - - - @@ -4381,6 +4387,18 @@ + + + + + + + + + + + + @@ -4405,6 +4423,18 @@ + + + + + + + + + + + + @@ -4462,24 +4492,6 @@ - - - - - - - - - - - - - - - - - - @@ -4675,258 +4687,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -5374,6 +5134,9 @@ + + + @@ -5557,30 +5320,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - @@ -5638,9 +5377,6 @@ - - - @@ -5809,6 +5545,12 @@ + + + + + + @@ -5827,42 +5569,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -5881,24 +5587,6 @@ - - - - - - - - - - - - - - - - - - @@ -5947,9 +5635,6 @@ - - - @@ -5983,24 +5668,6 @@ - - - - - - - - - - - - - - - - - - @@ -6094,12 +5761,6 @@ - - - - - - @@ -6178,6 +5839,111 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -6232,6 +5998,9 @@ + + + @@ -6331,9 +6100,6 @@ - - - @@ -6388,12 +6154,6 @@ - - - - - - @@ -6403,15 +6163,6 @@ - - - - - - - - - @@ -6421,24 +6172,6 @@ - - - - - - - - - - - - - - - - - - @@ -6457,9 +6190,6 @@ - - - @@ -6505,6 +6235,12 @@ + + + + + + @@ -6535,24 +6271,6 @@ - - - - - - - - - - - - - - - - - - @@ -6571,42 +6289,36 @@ + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - @@ -6703,12 +6415,6 @@ - - - - - - @@ -6751,6 +6457,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -6787,27 +6523,15 @@ - - - - - - - - - - - - - - - - - - + + + + + + @@ -6817,9 +6541,21 @@ + + + + + + + + + + + + @@ -6871,18 +6607,6 @@ - - - - - - - - - - - - @@ -6898,7 +6622,7 @@ - + @@ -6997,7 +6721,7 @@ - + @@ -7018,12 +6742,30 @@ + + + + + + + + + + + + + + + + + + @@ -7039,7 +6781,7 @@ - + @@ -7132,6 +6874,9 @@ + + + @@ -7162,39 +6907,33 @@ + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - @@ -7267,9 +7006,6 @@ - - - @@ -7315,10 +7051,112 @@ - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -7339,21 +7177,39 @@ + + + + + + + + + + + + + + + + + + @@ -7363,15 +7219,6 @@ - - - - - - - - - @@ -7450,9 +7297,6 @@ - - - @@ -7474,15 +7318,6 @@ - - - - - - - - - @@ -7504,6 +7339,9 @@ + + + @@ -7549,9 +7387,6 @@ - - - @@ -7579,30 +7414,36 @@ - - - - - - - + + + + + + + + + + + + + @@ -7615,6 +7456,9 @@ + + + @@ -7639,36 +7483,36 @@ + + + + + + + + + + + + - - - - - - - - - - - - - - - - + + + + @@ -7690,6 +7534,12 @@ + + + + + + @@ -7711,9 +7561,6 @@ - - - @@ -7795,6 +7642,9 @@ + + + @@ -8074,6 +7924,9 @@ + + + @@ -8356,66 +8209,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -8533,90 +8326,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -9358,9 +9067,6 @@ - - - @@ -9472,52 +9178,52 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -9616,6 +9322,9 @@ + + + @@ -10018,9 +9727,6 @@ - - - @@ -10111,9 +9817,6 @@ - - - diff --git a/gtk-2.0/.config/gtk-2.0/gtkfilechooser.ini b/gtk-2.0/.config/gtk-2.0/gtkfilechooser.ini index 9ed5bff17..5367a6e5a 100644 --- a/gtk-2.0/.config/gtk-2.0/gtkfilechooser.ini +++ b/gtk-2.0/.config/gtk-2.0/gtkfilechooser.ini @@ -2,8 +2,8 @@ LocationMode=path-bar ShowHidden=true ShowSizeColumn=true -GeometryX=0 -GeometryY=0 +GeometryX=319 +GeometryY=77 GeometryWidth=1128 GeometryHeight=786 SortColumn=name diff --git a/i3/.config/i3/config.d/005_autoload_programs_on_login.conf b/i3/.config/i3/config.d/005_autoload_programs_on_login.conf deleted file mode 100644 index a73ce26e5..000000000 --- a/i3/.config/i3/config.d/005_autoload_programs_on_login.conf +++ /dev/null @@ -1,5 +0,0 @@ -$exe $TerminalEmulator -$exe $FileManager -$exe $TextEditor -$exe $WebBrowserO -$exe 'studio' \ No newline at end of file diff --git a/nvim/.config/nvim/plugin/packer_compiled.lua b/nvim/.config/nvim/plugin/packer_compiled.lua index e686b0b36..6f6966631 100644 --- a/nvim/.config/nvim/plugin/packer_compiled.lua +++ b/nvim/.config/nvim/plugin/packer_compiled.lua @@ -49,8 +49,8 @@ local function save_profiles(threshold) end time([[Luarocks path setup]], true) -local package_path_str = "/home/repo/.cache/nvim/packer_hererocks/2.1.1692616192/share/lua/5.1/?.lua;/home/repo/.cache/nvim/packer_hererocks/2.1.1692616192/share/lua/5.1/?/init.lua;/home/repo/.cache/nvim/packer_hererocks/2.1.1692616192/lib/luarocks/rocks-5.1/?.lua;/home/repo/.cache/nvim/packer_hererocks/2.1.1692616192/lib/luarocks/rocks-5.1/?/init.lua" -local install_cpath_pattern = "/home/repo/.cache/nvim/packer_hererocks/2.1.1692616192/lib/lua/5.1/?.so" +local package_path_str = "/home/repo/.cache/nvim/packer_hererocks/2.1.1694285958/share/lua/5.1/?.lua;/home/repo/.cache/nvim/packer_hererocks/2.1.1694285958/share/lua/5.1/?/init.lua;/home/repo/.cache/nvim/packer_hererocks/2.1.1694285958/lib/luarocks/rocks-5.1/?.lua;/home/repo/.cache/nvim/packer_hererocks/2.1.1694285958/lib/luarocks/rocks-5.1/?/init.lua" +local install_cpath_pattern = "/home/repo/.cache/nvim/packer_hererocks/2.1.1694285958/lib/lua/5.1/?.so" if not string.find(package.path, package_path_str, 1, true) then package.path = package.path .. ';' .. package_path_str end diff --git a/package-list/.config/package-list b/package-list/.config/package-list index 8e2a06270..eaae32c7b 100644 --- a/package-list/.config/package-list +++ b/package-list/.config/package-list @@ -26,7 +26,6 @@ i3-swallow i3lock-color ideapad-cm imagewriter -jetbrains-toolbox kernel-install-mkinitcpio libart-lgpl linux-wifi-hotspot diff --git a/pkgbrowser/.config/pkgbrowser/pkgbrowser.conf b/pkgbrowser/.config/pkgbrowser/pkgbrowser.conf index 47308baf3..6b5e023e1 100644 --- a/pkgbrowser/.config/pkgbrowser/pkgbrowser.conf +++ b/pkgbrowser/.config/pkgbrowser/pkgbrowser.conf @@ -12,6 +12,6 @@ strings=bat, pkgbrowser, ly, zap, i3-gaps, microsoft edge, python3, python, pama [window] central-splitter=@ByteArray(\0\0\0\xff\0\0\0\x1\0\0\0\x2\0\0\x1\0\0\0\x1>\0\xff\xff\xff\xff\x1\0\0\0\x1\0) -geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x3\0\0\0\0\0\n\0\0\0\x33\0\0\au\0\0\x4-\0\0\0\0\0\0\0\x14\0\0\aq\0\0\x3\xf1\0\0\0\0\x2\0\0\0\a\x80\0\0\0\f\0\0\0\x35\0\0\as\0\0\x4+) +geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x3\0\0\0\0\0\a\0\0\0!\0\0\ax\0\0\x4\x16\0\0\0\0\0\0\x4L\0\0\aq\0\0\b)\0\0\0\x1\x2\0\0\0\a\x80\0\0\0\f\0\0\0&\0\0\as\0\0\x4\x11) left-splitter=@ByteArray(\0\0\0\xff\0\0\0\x1\0\0\0\x2\0\0\0\xc0\0\0\x1\f\0\xff\xff\xff\xff\x1\0\0\0\x2\0) right-splitter=@ByteArray(\0\0\0\xff\0\0\0\x1\0\0\0\x2\0\0\0\xc0\0\0\0\xee\0\xff\xff\xff\xff\x1\0\0\0\x2\0) diff --git a/polybar/.config/polybar/modules.ini b/polybar/.config/polybar/modules.ini index 9b2df9df4..10f4c8b6c 100644 --- a/polybar/.config/polybar/modules.ini +++ b/polybar/.config/polybar/modules.ini @@ -315,16 +315,16 @@ reverse-scroll = false fuzzy-match = false -ws-icon-1 = 1: Terminal;%{F#59fff9}一%{F-} -ws-icon-2 = 2: Editor;%{F#59ff59}二%{F-} -ws-icon-3 = 3: Files;%{F#ff59f9}三%{F-} -ws-icon-4 = 4: Graphics;%{F#ff5959}四%{F-} -ws-icon-5 = 5: Music;%{F#ffff59}五%{F-} -ws-icon-6 = 6: WebBrowser;%{F#59fff9}六%{F-} -ws-icon-7 = 7: Mail;%{F#59ff59}七%{F-} -ws-icon-8 = 8: Games;%{F#ff59f9}八%{F-} -ws-icon-9 = 9: Chat;%{F#ff5959}九%{F-} -ws-icon-0 = 10: Settings;%{F#ffff59}零%{F-} +ws-icon-1 = 1: Terminal;%{F#59fff9}󰎤%{F-} +ws-icon-2 = 2: Editor;%{F#59ff59}󰎧%{F-} +ws-icon-3 = 3: Files;%{F#ff59f9}󰎪%{F-} +ws-icon-4 = 4: Graphics;%{F#ff5959}󰎭%{F-} +ws-icon-5 = 5: Music;%{F#ffff59}󰎱%{F-} +ws-icon-6 = 6: WebBrowser;%{F#59fff9}󰎳%{F-} +ws-icon-7 = 7: Mail;%{F#59ff59}󰎶%{F-} +ws-icon-8 = 8: Games;%{F#ff59f9}󰎹%{F-} +ws-icon-9 = 9: Chat;%{F#ff5959}󰎼%{F-} +ws-icon-0 = 10: Settings;%{F#ffff59}󰎡%{F-} ws-icon-default = ;%{F#59ff59}󰍹%{F-} format = @@ -560,16 +560,16 @@ format-muted-background = ${color.red} format-muted-foreground = ${color.fg} format-muted-padding = 1 -label-muted = "" +label-muted =  label-muted-foreground = ${color.fg} -ramp-volume-0 = 奄 -ramp-volume-1 = 墳 -ramp-volume-2 = 墳 +ramp-volume-0 =  +ramp-volume-1 =  +ramp-volume-2 =  ramp-volume-3 =  ramp-volume-4 =  -ramp-headphones-0 = ﳌ -ramp-headphones-1 =  +ramp-headphones-0 = 󰋎 +ramp-headphones-1 = 󰋎 [module/pulseaudio_hdmi] type = internal/pulseaudio @@ -606,16 +606,16 @@ format-muted-background = ${color.red} format-muted-foreground = ${color.fg} format-muted-padding = 1 -label-muted = "婢" +label-muted =  label-muted-foreground = ${color.fg} -ramp-volume-0 = 奄 -ramp-volume-1 = 墳 -ramp-volume-2 = 墳 +ramp-volume-0 =  +ramp-volume-1 =  +ramp-volume-2 =  ramp-volume-3 =  ramp-volume-4 =  -ramp-headphones-0 = ﳌ -ramp-headphones-1 =  +ramp-headphones-0 = 󰋎 +ramp-headphones-1 = 󰋎 ;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ diff --git a/polybar/.config/polybar/monitor_0/config_bottom.ini b/polybar/.config/polybar/monitor_0/config_bottom.ini index 05a19edac..d1d989173 100644 --- a/polybar/.config/polybar/monitor_0/config_bottom.ini +++ b/polybar/.config/polybar/monitor_0/config_bottom.ini @@ -135,11 +135,11 @@ module-margin-right = 0 ; font-3 = FontAwesome:size=10 ; See the Fonts wiki page for more details -font-0 = "Hack Font:antialias=true:size=10;2" -font-1 = "Hack Nerd Font Mono:antialias=true:size=16;3" -font-2 = "MaterialIcons:antialias=true:size=8;2" -font-3 = "xos4 Terminus:antialias=true:size=8;2" -font-4 = "Wuncon Siji:antialias=true:size=8;2" +font-0 = "Wuncon Siji:antialias=true:size=8;2" +font-1 = "Hack Font:antialias=true:size=10;2" +font-2 = "Hack Nerd Font Mono:antialias=true:size=16;3" +font-3 = "MaterialIcons:antialias=true:size=8;2" +font-4 = "xos4 Terminus:antialias=true:size=8;2" font-5 = "Noto Sans CJK JP:antialias=true:size=10;2" font-6 = "FiraCode Nerd Font Mono:antialias=true:size=8;2" diff --git a/polybar/.config/polybar/monitor_0/config_top.ini b/polybar/.config/polybar/monitor_0/config_top.ini index 2237d1452..2c21dc127 100644 --- a/polybar/.config/polybar/monitor_0/config_top.ini +++ b/polybar/.config/polybar/monitor_0/config_top.ini @@ -135,11 +135,11 @@ module-margin-right = 0 ; font-3 = FontAwesome:size=10 ; See the Fonts wiki page for more details -font-0 = "Hack Font:antialias=true:size=10;2" -font-1 = "Hack Nerd Font Mono:antialias=true:size=16;3" -font-2 = "MaterialIcons:antialias=true:size=8;2" -font-3 = "xos4 Terminus:antialias=true:size=8;2" -font-4 = "Wuncon Siji:antialias=true:size=8;2" +font-0 = "Wuncon Siji:antialias=true:size=8;2" +font-1 = "Hack Font:antialias=true:size=10;2" +font-2 = "Hack Nerd Font Mono:antialias=true:size=16;3" +font-3 = "MaterialIcons:antialias=true:size=8;2" +font-4 = "xos4 Terminus:antialias=true:size=8;2" font-5 = "Noto Sans CJK JP:antialias=true:size=10;2" font-6 = "FiraCode Nerd Font Mono:antialias=true:size=8;2" diff --git a/polybar/.config/polybar/monitor_1/config_bottom.ini b/polybar/.config/polybar/monitor_1/config_bottom.ini index 05a19edac..d1d989173 100644 --- a/polybar/.config/polybar/monitor_1/config_bottom.ini +++ b/polybar/.config/polybar/monitor_1/config_bottom.ini @@ -135,11 +135,11 @@ module-margin-right = 0 ; font-3 = FontAwesome:size=10 ; See the Fonts wiki page for more details -font-0 = "Hack Font:antialias=true:size=10;2" -font-1 = "Hack Nerd Font Mono:antialias=true:size=16;3" -font-2 = "MaterialIcons:antialias=true:size=8;2" -font-3 = "xos4 Terminus:antialias=true:size=8;2" -font-4 = "Wuncon Siji:antialias=true:size=8;2" +font-0 = "Wuncon Siji:antialias=true:size=8;2" +font-1 = "Hack Font:antialias=true:size=10;2" +font-2 = "Hack Nerd Font Mono:antialias=true:size=16;3" +font-3 = "MaterialIcons:antialias=true:size=8;2" +font-4 = "xos4 Terminus:antialias=true:size=8;2" font-5 = "Noto Sans CJK JP:antialias=true:size=10;2" font-6 = "FiraCode Nerd Font Mono:antialias=true:size=8;2" diff --git a/polybar/.config/polybar/monitor_1/config_top.ini b/polybar/.config/polybar/monitor_1/config_top.ini index 89d630ad0..3d5bbcd9d 100644 --- a/polybar/.config/polybar/monitor_1/config_top.ini +++ b/polybar/.config/polybar/monitor_1/config_top.ini @@ -139,7 +139,7 @@ font-0 = "Hack Font:antialias=true:size=10;2" font-1 = "Hack Nerd Font Mono:antialias=true:size=16;3" font-2 = "MaterialIcons:antialias=true:size=8;2" font-3 = "xos4 Terminus:antialias=true:size=8;2" -font-4 = "Wuncon Siji:antialias=true:size=8;2" +font-4 = "Siji:antialias=true:size=8;2" font-5 = "Noto Sans CJK JP:antialias=true:size=10;2" font-6 = "FiraCode Nerd Font Mono:antialias=true:size=8;2" @@ -164,9 +164,9 @@ font-6 = "FiraCode Nerd Font Mono:antialias=true:size=8;2" ;cpu_bar memory_bar filesystem_bar mpd_bar ;volume brightness battery_bar -modules-left = launcher_i RightArrow3_top launcher RightArrow2_top RightArrow3_top i3 RightArrow2_top power_i RightArrow1_top RightStripe_top RightArrow1_top +modules-left = launcher_i space i3 space power_i modules-center = -modules-right = LeftArrow1_top LeftStripe_top LeftArrow1_top xcompmgr_i LeftArrow2_top xcompmgr LeftArrow3_top keyboard_i LeftArrow2_top keyboard LeftArrow3_top updates_i LeftArrow2_top updates LeftArrow3_top pulseaudio_hdmi_i LeftArrow2_top pulseaudio_hdmi LeftArrow3_top pulseaudio_analog_i LeftArrow2_top pulseaudio_analog LeftArrow3_top battery_i LeftArrow2_top battery LeftArrow3_top network_i LeftArrow2_top network LeftArrow3_top date_i LeftArrow2_top date +modules-right = xcompmgr_i xcompmgr space keyboard_i keyboard space updates_i updates space pulseaudio_hdmi_i pulseaudio_hdmi space pulseaudio_analog_i pulseaudio_analog space battery_i battery space network_i network space date_i date ; The separator will be inserted between the output of each module separator = diff --git a/qtile/.config/qtile/cfg.json b/qtile/.config/qtile/cfg.json index e88a18681..d5e1faaea 100644 --- a/qtile/.config/qtile/cfg.json +++ b/qtile/.config/qtile/cfg.json @@ -1,14 +1,16 @@ { - "bar": "shapes", - "bar2": "bottom", - "browser": "opera", - "term": "alacritty", - "term2": "kitty", - "editor": "code", - "files": "nemo", - "menu": "menu", - "power": "powermenu_run", - "passwords": "passmenu", - "youtube": "youtube_subs", - "wallpaper": "~/.config/feh/backgrounds/Arch_Wallpaper-MM.png" + "mon0top": "mon0top", + "mon0bottom": "mon0bottom", + "mon1top": "mon1top", + "mon1bottom": "mon1bottom", + "browser": "opera", + "term": "alacritty", + "term2": "kitty", + "editor": "code", + "files": "nemo", + "menu": "menu", + "power": "powermenu_run", + "passwords": "passmenu", + "youtube": "youtube_subs", + "wallpaper": "~/.config/feh/backgrounds/Arch_Wallpaper-MM.png" } \ No newline at end of file diff --git a/qtile/.config/qtile/core/bar/bottom.py b/qtile/.config/qtile/core/bar/mon0bottom.py similarity index 100% rename from qtile/.config/qtile/core/bar/bottom.py rename to qtile/.config/qtile/core/bar/mon0bottom.py diff --git a/qtile/.config/qtile/core/bar/shapes.py b/qtile/.config/qtile/core/bar/mon0top.py similarity index 98% rename from qtile/.config/qtile/core/bar/shapes.py rename to qtile/.config/qtile/core/bar/mon0top.py index 237345e66..7c42542b7 100644 --- a/qtile/.config/qtile/core/bar/shapes.py +++ b/qtile/.config/qtile/core/bar/mon0top.py @@ -56,6 +56,7 @@ def groups(bg) -> GroupBox: rainbow=True, hide_unused=True, use_mouse_wheel=True, + visible_groups=["1", "2", "3", "4", "5"], ) @@ -66,7 +67,7 @@ def volume(bg, fg) -> list: **base(bg, fg), **icon_font(), **rectangle("left"), - text="󰖀", + text="󰕾", x=4, ), widget.Volume( diff --git a/qtile/.config/qtile/core/bar/mon1bottom.py b/qtile/.config/qtile/core/bar/mon1bottom.py new file mode 100644 index 000000000..e9e0f8987 --- /dev/null +++ b/qtile/.config/qtile/core/bar/mon1bottom.py @@ -0,0 +1,114 @@ +from core.bar.base import base, icon_font, powerline, rectangle +from extras import Clock, GroupBox, TextBox, modify, widget +from utils.config import cfg +from utils.palette import palette + +from os.path import expanduser +import subprocess + +bar = { + "background": palette.backgroundColor, + "border_color": palette.backgroundColor, + "border_width": 2, + "margin": 5, + "opacity": 1, + "size": 24, +} + + +def sep(fg, offset=0, padding=8) -> TextBox: + return TextBox( + **base(None, fg), + **icon_font(), + offset=offset, + padding=padding, + text="󰇙", + ) + + +def weather(bg, fg) -> list: + return [ + modify( + TextBox, + **base(bg, fg), + **icon_font(), + **rectangle("left"), + offset=0, + padding=0, + ), + widget.OpenWeather( + **base(bg, fg), + fmt="{}", + location="Darlington,UK", + format="{icon} {location_city}: {main_temp}°{units_temperature}", + ), + modify( + TextBox, + **base(bg, fg), + **icon_font(), + **rectangle("right"), + offset=0, + padding=0, + ), + ] + + +def chords(bg, fg) -> list: + return [ + widget.Chord( + **base(bg, fg), + fmt="{}", + chords_colors={ + "Resize Windows": (fg, bg), + "Launch Game": (fg, bg), + "Take a Screenshot": (fg, bg), + }, + name_transform=lambda name: name.upper(), + ), + ] + + +def picom(bg, fg) -> list: + return [ + modify( + TextBox, + **base(bg, fg), + **icon_font(), + **rectangle("left"), + offset=0, + padding=0, + ), + widget.GenPollText( + **base(bg, fg), + fmt="{}", + func=lambda: subprocess.check_output( + expanduser("~/.config/qtile/scripts/xcompmgr.sh") + ).decode("utf-8"), + mouse_callbacks={ + "Button1": lambda: subprocess.run( + expanduser("~/.config/qtile/scripts/xcompmgr-toggle.sh") + ), + }, + update_interval=1, + padding=10, + ), + modify( + TextBox, + **base(bg, fg), + **icon_font(), + **rectangle("right"), + offset=0, + padding=0, + ), + ] + + +def widgets(): + return [ + widget.Spacer(length=2), + *weather(palette.colorScheme[1], palette.currentColor), + widget.Spacer(), + *chords(palette.colorScheme[2], palette.currentColor), + *picom(palette.colorScheme[3], palette.currentColor), + widget.Spacer(length=2), + ] diff --git a/qtile/.config/qtile/core/bar/mon1top.py b/qtile/.config/qtile/core/bar/mon1top.py new file mode 100644 index 000000000..20f032487 --- /dev/null +++ b/qtile/.config/qtile/core/bar/mon1top.py @@ -0,0 +1,268 @@ +from libqtile.bar import CALCULATED +from libqtile.lazy import lazy + +from core.bar.base import base, icon_font, powerline, rectangle +from extras import Clock, GroupBox, TextBox, modify, widget +from utils.config import cfg +from utils.palette import palette + +bar = { + "background": palette.backgroundColor, + "border_color": palette.backgroundColor, + "border_width": 2, + "margin": 5, + "opacity": 1, + "size": 24, +} + + +def sep(fg, offset=0, padding=8) -> TextBox: + return TextBox( + **base(None, fg), + **icon_font(), + offset=offset, + padding=padding, + text="󰇙", + ) + + +def menu(bg, fg) -> TextBox: + return modify( + TextBox, + **base(bg, fg), + **icon_font(), + **rectangle(), + mouse_callbacks={"Button1": lazy.spawn(cfg.menu)}, + offset=4, + padding=7, + text="󰍜", + ) + + +def groups(bg) -> GroupBox: + return GroupBox( + **icon_font(), + background=bg, + borderwidth=2, + colors=palette.widgetColors, + highlight_color=palette.currentColor, + highlight_method="line", + inactive=palette.foregroundColor, + invert=True, + margin_y=4, + margin_x=4, + padding_y=6, + padding_x=6, + rainbow=True, + hide_unused=True, + use_mouse_wheel=True, + visible_groups=["6", "7", "8", "9", "0"], + ) + + +def volume(bg, fg) -> list: + return [ + modify( + TextBox, + **base(bg, fg), + **icon_font(), + **rectangle("left"), + text="󰕾", + x=4, + ), + widget.Volume( + **base(bg, fg), + **powerline("arrow_left"), + check_mute_command="pamixer --get-mute", + check_mute_string="true", + get_volume_command="pamixer --get-volume-human", + mute_command="pamixer --toggle-mute", + update_interval=0.1, + volume_down_command="pamixer --decrease 5", + volume_up_command="pamixer --increase 5", + ), + ] + + +def backlight(bg, fg) -> list: + return [ + modify( + TextBox, + **base(bg, fg), + **icon_font(), + **powerline("arrow_left"), + text="󰃟", + x=4, + ), + widget.Backlight( + **base(bg, fg), + **powerline("arrow_left"), + step=5, + backlight_name="intel_backlight", + change_command="brightnessctl set {}%", + ), + ] + + +def updates(bg, fg) -> list: + return [ + TextBox( + **base(bg, fg), + **icon_font(), + offset=-1, + text="", + x=-5, + ), + widget.CheckUpdates( + **base(bg, fg), + **rectangle("right"), + mouse_callbacks={"Button1": lazy.spawn(cfg.term + " -e yay -Syu")}, + colour_have_updates=fg, + colour_no_updates=fg, + display_format="{updates} updates ", + distro="Arch_checkupdates", + initial_text="No updates ", + no_update_string="No updates ", + padding=0, + update_interval=3600, + ), + ] + + +def power(bg, fg) -> TextBox: + return modify( + TextBox, + **base(bg, fg), + **icon_font(), + **rectangle(), + mouse_callbacks={ + "Button1": lazy.spawn(cfg.power), + "Button3": lazy.spawn("qtile cmd-obj -o cmd -f restart"), + }, + offset=4, + padding=7, + text="", + ) + + +def window_name(bg, fg) -> object: + return widget.WindowName( + **base(bg, fg), + format="{name}", + max_chars=60, + width=CALCULATED, + ) + + +def cpu(bg, fg) -> list: + return [ + TextBox( + **base(bg, fg), + **icon_font(), + **rectangle("left"), + offset=3, + text="󰍛", + x=5, + ), + widget.CPU( + **base(bg, fg), + **powerline("arrow_left"), + format="{load_percent:.0f}%", + ), + ] + + +def ram(bg, fg) -> list: + return [ + TextBox( + **base(bg, fg), + **icon_font(), + offset=-2, + padding=5, + text="󰘚", + x=-2, + ), + widget.Memory( + **base(bg, fg), + **powerline("arrow_right"), + format="{MemUsed: .0f}{mm}/{SwapUsed: .0f}{ms} ", + padding=-1, + ), + ] + + +def disk(bg, fg) -> list: + return [ + TextBox( + **base(bg, fg), + **icon_font(), + offset=-1, + text="", + x=-5, + ), + widget.DF( + **base(bg, fg), + **rectangle("right"), + format="{f} GB ", + padding=0, + partition="/", + visible_on_warn=False, + warn_color=fg, + ), + ] + + +def clock(bg, fg) -> list: + return [ + modify( + TextBox, + **base(bg, fg), + **icon_font(), + **rectangle("left"), + offset=2, + text="", + x=4, + ), + modify( + Clock, + **base(bg, fg), + **rectangle("right"), + format="%A - %I:%M %p ", + long_format="%B %-d, %Y ", + padding=6, + ), + ] + + +def tray(bg, fg) -> list: + return widget.Systray( + **base(bg, fg), + fmt="{}", + padding=5, + ) + + +def widgets(): + return [ + widget.Spacer(length=2), + menu(palette.colorScheme[10], palette.currentColor), + sep(palette.currentColor, offset=-8), + groups(None), + sep(palette.currentColor, offset=4, padding=4), + *volume(palette.colorScheme[11], palette.currentColor), + *backlight(palette.colorScheme[12], palette.currentColor), + *updates(palette.colorScheme[13], palette.currentColor), + sep(palette.currentColor, offset=4, padding=4), + power(palette.colorScheme[9], palette.currentColor), + widget.Spacer(), + window_name(None, palette.foregroundColor), + widget.Spacer(), + *cpu(palette.colorScheme[11], palette.currentColor), + *ram(palette.colorScheme[12], palette.currentColor), + *disk(palette.colorScheme[13], palette.currentColor), + # sep(palette.currentColor), + # tray(None, palette.currentColor), + sep(palette.currentColor), + *clock(palette.colorScheme[14], palette.currentColor), + widget.Spacer(length=2), + ] diff --git a/qtile/.config/qtile/core/groups.py b/qtile/.config/qtile/core/groups.py index c8ed6728b..788d6c4d4 100644 --- a/qtile/.config/qtile/core/groups.py +++ b/qtile/.config/qtile/core/groups.py @@ -6,75 +6,89 @@ from core.keys import keys, mod groups: list[Group] = [] -for key, label, layout, matches in [ +for key, screen, label, layout, matches in [ ( "1", - "一", + "1", + "󰎤", "monadthreecol", Match(wm_class=re.compile("^Alacritty.*|^Kitty.*", re.IGNORECASE)), ), ( "2", - "二", + "1", + "󰎧", None, Match(wm_class=re.compile("^Code.*|^Jetbrains.*", re.IGNORECASE)), ), ( "3", - "三", + "1", + "󰎪", None, Match(wm_class=re.compile("^Nemo.*", re.IGNORECASE)), ), ( "4", - "四", + "1", + "󰎭", None, Match(wm_class=re.compile("^Aseprite.*|^Krita.*", re.IGNORECASE)), ), ( "5", - "五", + "1", + "󰎱", None, Match(wm_class=re.compile("^CmusImage.*", re.IGNORECASE)), ), ( "6", - "六", + "2", + "󰎳", None, Match(wm_class=re.compile("^Firefox.*|^Opera.*", re.IGNORECASE)), ), ( "7", - "七", + "2", + "󰎶", None, Match(wm_class=re.compile("^Mail.*|^Thunderbird.*", re.IGNORECASE)), ), ( "8", - "八", + "2", + "󰎹", None, Match(wm_class=re.compile("^Steam.*|^Minecraft.*|^0ad.*", re.IGNORECASE)), ), ( "9", - "九", + "2", + "󰎼", None, Match(wm_class=re.compile("^Discord.*", re.IGNORECASE)), ), ( "0", - "零", + "2", + "󰎡", None, Match(wm_class=re.compile("^Software.*|^Virt.*|^Btop.*", re.IGNORECASE)), ), ]: groups.append( Group( + init=True, + persist=True, + exclusive=False, name=key, position=key, matches=matches, label=label, layout=layout, + screen_affinity=screen, ) ) @@ -119,7 +133,7 @@ for key, label, layout, matches in [ ), DropDown( "volume", - "PavuControl", + "pavucontrol", width=0.6, height=0.6, x=0.2, diff --git a/qtile/.config/qtile/core/screens.py b/qtile/.config/qtile/core/screens.py index ccbad5d95..5316d3f6d 100644 --- a/qtile/.config/qtile/core/screens.py +++ b/qtile/.config/qtile/core/screens.py @@ -7,13 +7,13 @@ screens = [ Screen( wallpaper=cfg.wallpaper, wallpaper_mode="fill", - top=Bar(cfg.bar).create(), - bottom=Bar(cfg.bar2).create(), + top=Bar(cfg.mon0top).create(), + bottom=Bar(cfg.mon0bottom).create(), + ), + Screen( + wallpaper=cfg.wallpaper, + wallpaper_mode="fill", + top=Bar(cfg.mon1top).create(), + bottom=Bar(cfg.mon1bottom).create(), ), - # Screen( - # wallpaper=cfg.wallpaper, - # wallpaper_mode="fill", - # top=Bar(cfg.bar).create(), - # bottom=Bar(cfg.bar2).create(), - # ), ] diff --git a/qtile/.config/qtile/utils/config.py b/qtile/.config/qtile/utils/config.py index 3a13f12fe..acafeece9 100644 --- a/qtile/.config/qtile/utils/config.py +++ b/qtile/.config/qtile/utils/config.py @@ -6,8 +6,10 @@ from os.path import exists, expanduser, join @dataclass class Config: - bar: str = "shapes" - bar2: str = "" + mon0top: str = "mon0top" + mon0bottom: str = "mon0bottom" + mon1top: str = "mon1top" + mon1bottom: str = "mon1bottom" browser: str = "" term: str = "" term2: str = ""