From 0ac49f819f65939d1781d6efc23c109594b81247 Mon Sep 17 00:00:00 2001 From: Simon Rieger Date: Tue, 29 Apr 2025 12:14:24 +0200 Subject: [PATCH] add satty config --- dot_config/satty/config.toml | 54 ++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 dot_config/satty/config.toml diff --git a/dot_config/satty/config.toml b/dot_config/satty/config.toml new file mode 100644 index 0000000..70c8ab1 --- /dev/null +++ b/dot_config/satty/config.toml @@ -0,0 +1,54 @@ +[general] +# Start Satty in fullscreen mode +fullscreen = true +# Exit directly after copy/save action +early-exit = true +# Draw corners of rectangles round if the value is greater than 0 (0 disables rounded corners) +corner-roundness = 12 +# Select the tool on startup [possible values: pointer, crop, line, arrow, rectangle, text, marker, blur, brush] +initial-tool = "brush" +# Configure the command to be called on copy, for example `wl-copy` +copy-command = "wl-copy" +# Increase or decrease the size of the annotations +annotation-size-factor = 2 +# Filename to use for saving action. Omit to disable saving to file. Might contain format specifiers: https://docs.rs/chrono/latest/chrono/format/strftime/index.html +output-filename = "/tmp/test-%Y-%m-%d_%H:%M:%S.png" +# Action to perform when the Enter key is pressed [possible values: save-to-clipboard, save-to-file] +action-on-enter = "save-to-clipboard" +# After copying the screenshot, save it to a file as well +save-after-copy = false +# Right click to copy +right-click-copy = false +# Hide toolbars by default +default-hide-toolbars = false +# The primary highlighter to use, the other is accessible by holding CTRL at the start of a highlight [possible values: block, freehand] +primary-highlighter = "block" +disable-notifications = false + +# Font to use for text annotations +[font] +family = "Roboto" +style = "Bold" + +# Custom colours for the colour palette +[color-palette] +# These will be shown in the toolbar for quick selection +palette = [ + "#00ffff", + "#a52a2a", + "#dc143c", + "#ff1493", + "#ffd700", + "#008000", +] + +# These will be available in the color picker as presets +# Leave empty to use GTK's default +custom = [ + "#00ffff", + "#a52a2a", + "#dc143c", + "#ff1493", + "#ffd700", + "#008000", +]