File tree Expand file tree Collapse file tree 3 files changed +14
-1
lines changed
Expand file tree Collapse file tree 3 files changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -396,6 +396,7 @@ cap_mkdb /etc/login.conf
396396- ` PAGO_CLIP ` :
397397 The command to use to copy text to the clipboard.
398398 The default differs by platform:
399+ - Android: ` termux-clipboard-set `
399400 - Linux and BSD: ` xclip -in -selection clip `
400401 - macOS: ` copy `
401402- ` PAGO_CONFIRM ` :
Original file line number Diff line number Diff line change 1+ //go:build android
2+
3+ // pago - a command-line password manager.
4+ //
5+ // License: MIT.
6+ // See the file LICENSE.
7+
8+ package pago
9+
10+ const (
11+ DefaultClip = "termux-clipboard-set"
12+ )
Original file line number Diff line number Diff line change 1- //go:build !darwin && ! windows
1+ //go:build !(android || darwin || windows)
22
33// pago - a command-line password manager.
44//
You can’t perform that action at this time.
0 commit comments