From e96740b277df57f907dc0ffc39c6e9b051534454 Mon Sep 17 00:00:00 2001 From: BarbUk Date: Tue, 26 Apr 2022 09:27:59 +0200 Subject: [PATCH] xdotool is required --- snippy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snippy b/snippy index 22c25a2..b489481 100755 --- a/snippy +++ b/snippy @@ -145,7 +145,7 @@ move_cursor() { init() { # Check basic dependency local all_needed_programs_installed=true - local needed_programs=( rofi fzf xsel xclip jq ) + local needed_programs=( rofi fzf xsel xclip jq xdotool ) for program in "${needed_programs[@]}"; do if ! command -v "$program" >/dev/null 2>&1; then all_needed_programs_installed=false