diff --git a/.config/clipcat/clipcat-menu.toml b/.config/clipcat/clipcat-menu.toml new file mode 100644 index 00000000..2d08c78a --- /dev/null +++ b/.config/clipcat/clipcat-menu.toml @@ -0,0 +1,34 @@ +server_endpoint = "/run/user/1000/clipcat/grpc.sock" +finder = "custom" +preview_length = 80 + +[rofi] +line_length = 100 +menu_length = 30 +menu_prompt = "Clipcat" +extra_arguments = [] + +[dmenu] +line_length = 100 +menu_length = 30 +menu_prompt = "Clipcat" +extra_arguments = [] + +[choose] +line_length = 100 +menu_length = 30 +menu_prompt = "Clipcat" +extra_arguments = [] + +[custom_finder] +program = "fuzzel" +args = [ + "--dmenu", + "--placeholder=Clipboard:", +] + +[log] +emit_journald = true +emit_stdout = false +emit_stderr = false +level = "INFO" diff --git a/.config/clipcat/clipcatctl.toml b/.config/clipcat/clipcatctl.toml new file mode 100644 index 00000000..ce0f32bb --- /dev/null +++ b/.config/clipcat/clipcatctl.toml @@ -0,0 +1,8 @@ +server_endpoint = "/run/user/1000/clipcat/grpc.sock" +preview_length = 100 + +[log] +emit_journald = true +emit_stdout = false +emit_stderr = false +level = "INFO" diff --git a/.config/clipcat/clipcatd.toml b/.config/clipcat/clipcatd.toml new file mode 100644 index 00000000..88b939d5 --- /dev/null +++ b/.config/clipcat/clipcatd.toml @@ -0,0 +1,45 @@ +daemonize = true +pid_file = "/run/user/1000/clipcatd.pid" +primary_threshold_ms = 5000 +max_history = 50 +synchronize_selection_with_clipboard = true +history_file_path = "/home/fic/.cache/clipcat/clipcatd-history" +snippets = [] + +[log] +emit_journald = true +emit_stdout = false +emit_stderr = false +level = "INFO" + +[watcher] +enable_clipboard = true +enable_primary = true +enable_secondary = false +sensitive_x11_atoms = ["x-kde-passwordManagerHint"] +filter_text_min_length = 1 +filter_text_max_length = 20000000 +denied_text_regex_patterns = [] +capture_image = true +filter_image_max_size = 5242880 + +[grpc] +enable_http = true +enable_local_socket = true +host = "127.0.0.1" +port = 45045 +local_socket = "/run/user/1000/clipcat/grpc.sock" + +[dbus] +enable = true + +[metrics] +enable = true +host = "127.0.0.1" +port = 45047 + +[desktop_notification] +enable = true +icon = "accessories-clipboard" +timeout_ms = 2000 +long_plaintext_length = 2000