diff --git a/dotfiles/config/clipit/clipitrc b/dotfiles/config/clipit/clipitrc index 04118b2b..e9b1855f 100644 --- a/dotfiles/config/clipit/clipitrc +++ b/dotfiles/config/clipit/clipitrc @@ -1,13 +1,15 @@ [rc] use_copy=true -use_primary=false -synchronize=false +use_primary=true +synchronize=true automatic_paste=false show_indexes=true save_uris=true use_rmb_menu=false save_history=true -history_limit=500 +history_limit=1000 +history_timeout_seconds=30 +history_timeout=false items_menu=20 statics_show=true statics_items=10 diff --git a/dotfiles/lib/bin/clipit_history.py b/dotfiles/lib/bin/clipit_history.py index 39c051b8..96e9166e 100755 --- a/dotfiles/lib/bin/clipit_history.py +++ b/dotfiles/lib/bin/clipit_history.py @@ -6,7 +6,9 @@ import os import struct -clipit_history_file = os.path.join(appdirs.user_data_dir(), "clipit/history") +clipit_history_file = os.path.join( + appdirs.user_data_dir(), "clipit/history", +) def get_clipit_history(filename):