Configuration is handled via a TOML file located at ~/.config/greenclip.toml.
Key configuration options include:
history_file: Path to the file where history is stored.max_history_length: Maximum number of items to keep in history.max_selection_size_bytes: Size limit for selections (set to 0 for unlimited).trim_space_from_selection: Whether to trim whitespace.use_primary_selection_as_input: If true, merges X Primary selection with clipboard selection.blacklisted_applications: A list of application names to ignore.enable_image_support: Enables/disables image copying.image_cache_directory: Directory for cached images.static_history: A list of strings to be permanently added to the end of your history.
[greenclip]
history_file = "/home/erebe/.cache/greenclip.history"
max_history_length = 50
max_selection_size_bytes = 0
trim_space_from_selection = true
use_primary_selection_as_input = false
blacklisted_applications = []
enable_image_support = true
image_cache_directory = "/tmp/greenclip"
static_history = [
'''¯\_(ツ)_/¯''',
]