added clipcat
This commit is contained in:
parent
51c25e2f33
commit
e74c478f7e
3 changed files with 87 additions and 0 deletions
34
.config/clipcat/clipcat-menu.toml
Normal file
34
.config/clipcat/clipcat-menu.toml
Normal file
|
@ -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"
|
8
.config/clipcat/clipcatctl.toml
Normal file
8
.config/clipcat/clipcatctl.toml
Normal file
|
@ -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"
|
45
.config/clipcat/clipcatd.toml
Normal file
45
.config/clipcat/clipcatd.toml
Normal file
|
@ -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
|
Loading…
Add table
Add a link
Reference in a new issue