aboutsummaryrefslogtreecommitdiffstats
path: root/setup.sh
diff options
context:
space:
mode:
Diffstat (limited to 'setup.sh')
-rwxr-xr-xsetup.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/setup.sh b/setup.sh
index c39fa4a..301c735 100755
--- a/setup.sh
+++ b/setup.sh
@@ -220,6 +220,8 @@ copy_files()
"${dst_dir}/.local/config/dunst/dunstrc"
cp -r "${src_dir}/bin/image-info.sh" \
"${dst_dir}/.local/config/sxiv/exec/image-info"
+ cp -r "${src_dir}/bin/key-handler.sh" \
+ "${dst_dir}/.local/config/sxiv/exec/key-handler"
configure_rtorrent "${src_dir}" "${dst_dir}"
}
@@ -258,7 +260,7 @@ configure_rtorrent()
check_requirements()
{
local requirements="git make wget i3";
- local optional_deps="notify-send dunst pulseaudio scrot sudo redshift numlockx identify";
+ local optional_deps="notify-send dunst pulseaudio scrot sudo redshift numlockx identify convert xclip";
local requirements_not_met=0;
for cmd in ${optional_deps};