「Greenclip」の版間の差分
ナビゲーションに移動
検索に移動
Linuxmetel (トーク | 投稿記録) 細 (→設定例: ファイル名の更新をしていなかったので修正) |
Linuxmetel (トーク | 投稿記録) (→設定例: max_selection_size_bytes も設定ファイルに必須のようなので) |
||
37行目: | 37行目: | ||
[greenclip] |
[greenclip] |
||
max_history_length = 250 |
max_history_length = 250 |
||
+ | max_selection_size_bytes = 0 |
||
history_file = "~/.cache/greenclip.history" |
history_file = "~/.cache/greenclip.history" |
||
enable_image_support = true |
enable_image_support = true |
2023年2月6日 (月) 19:42時点における最新版
Greenclip はシンプルなクリップボードマネージャです。Haskell で書かれており Rofi と統合して動作するように作られています。
インストール
rofi-greenclipAUR パッケージをインストールしてください。
起動時にサービスを開始できるようにします:
$ systemctl --user enable greenclip.service
使用方法
デーモンを生成:
$ /usr/bin/greenclip daemon
あるいはサービスを起動・有効化:
$ systemctl --user start greenclip.service
rofi の中でリストとしてエントリを表示:
$ rofi -modi "clipboard:greenclip print" -show clipboard
選択したエントリがクリップボードに保存されます。
クリップボードの履歴を全て消去するには:
$ greenclip clear
設定
バージョン 4.0 以降では、設定ファイルは ~/.config/greenclip.toml
に TOML 形式で置きます。
設定例
~/.config/greenclip.toml
[greenclip] max_history_length = 250 max_selection_size_bytes = 0 history_file = "~/.cache/greenclip.history" enable_image_support = true image_cache_directory = "~/tmp/greenclip" use_primary_selection_as_input = false blacklisted_applications = [] trim_space_from_selection = true # version 4.0 より static history は設定ファイル内 static_history = [ '''¯\_(ツ)_/¯''', ]
トラブルシューティング
i3-wm でクリップボードの記録ができない
i3設定ファイルに下記を入れてください。サービス起動は必要ありません。 [greenclip issue #70]
~/.config/i3/config
# clipboard tool exec --no-startup-id greenclip daemon>/dev/null bindsym $mod+c exec --no-startup-id rofi -modi "clipboard:greenclip print" -show clipboard