diff options
author | Ayush Agarwal <ayushnix@fastmail.com> | 2022-04-25 23:13:27 +0530 |
---|---|---|
committer | Ayush Agarwal <ayushnix@fastmail.com> | 2022-04-25 23:17:07 +0530 |
commit | fc039afca792b0ee258cf805966e92b5b861a6b0 (patch) | |
tree | faac18c9a4cf4997a9b316c666c4613e099fd4cd /tessen | |
parent | a45f5852803001ced4a121b5ecccd56ef14a03dd (diff) |
fix: use a generic message in notification
Although the idea of specifying the selected field name in the
notification sounds nice, it might be viewed as unnecessary leakage of
sensitive metadata. This should fix #27.
Diffstat (limited to 'tessen')
-rwxr-xr-x | tessen | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -454,7 +454,7 @@ wld_copy() { printf "%s" "$1" | wl-copy if is_installed notify-send; then notify-send -t $((tsn_cliptime * 1000)) \ - "Copied username to clipboard. Will clear in $tsn_cliptime seconds." + "data has been copied and will be cleared from the clipboard after $tsn_cliptime seconds" fi { sleep "$tsn_cliptime" || kill 0 |