From 626d456aa43a50517f130d77f8bb46f66386bfbe Mon Sep 17 00:00:00 2001 From: Carl Kittelberger Date: Sat, 17 Feb 2018 20:41:40 +0100 Subject: [PATCH] Limit ibus installation on debian-ish to desktop-only. --- packages/packages.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/packages.sh b/packages/packages.sh index 276668e..805b5be 100755 --- a/packages/packages.sh +++ b/packages/packages.sh @@ -99,8 +99,10 @@ if has_tags pm:apt; then python-pip \ zsh \ zsh-syntax-highlighting \ - ibus \ jq + if has_tags desktop; then + apt_install ibus + fi add_tag pm:pip3 fi