[gnome] Add clipboard manager extension

This commit is contained in:
2026-01-12 16:50:25 -05:00
parent 5b059b2335
commit c0179c8a87
34 changed files with 3104 additions and 0 deletions

View File

@ -0,0 +1,19 @@
const SettingsFields = {
HISTORY_SIZE: 'history-size',
WINDOW_WIDTH_PERCENTAGE: 'window-width-percentage',
CACHE_FILE_SIZE: 'cache-size',
CACHE_ONLY_FAVORITES: 'cache-only-favorites',
NOTIFY_ON_COPY: 'notify-on-copy',
CONFIRM_ON_CLEAR: 'confirm-clear',
MOVE_ITEM_FIRST: 'move-item-first',
ENABLE_KEYBINDING: 'enable-keybindings',
TOPBAR_PREVIEW_SIZE: 'topbar-preview-size',
TOPBAR_DISPLAY_MODE_ID: 'display-mode',
DISABLE_DOWN_ARROW: 'disable-down-arrow',
STRIP_TEXT: 'strip-text',
PRIVATE_MODE: 'private-mode',
PASTE_ON_SELECTION: 'paste-on-selection',
PROCESS_PRIMARY_SELECTION: 'process-primary-selection',
IGNORE_PASSWORD_MIMES: 'ignore-password-mimes',
};
export default SettingsFields;