diff options
Diffstat (limited to 'x11-themes/background-lnxpcs/background-lnxpcs-0.3.ebuild')
-rw-r--r-- | x11-themes/background-lnxpcs/background-lnxpcs-0.3.ebuild | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/x11-themes/background-lnxpcs/background-lnxpcs-0.3.ebuild b/x11-themes/background-lnxpcs/background-lnxpcs-0.3.ebuild index 4d4396e..4187865 100644 --- a/x11-themes/background-lnxpcs/background-lnxpcs-0.3.ebuild +++ b/x11-themes/background-lnxpcs/background-lnxpcs-0.3.ebuild @@ -10,7 +10,7 @@ S="${WORKDIR}/lnxpcs-${HASH}" KEYWORDS="amd64" LICENSE="GPL-3.0+" SLOT="0" -IUSE="" +IUSE="1440p" DEPENDS="media-gfx/imagemagick[png]" RDEPEND=" @@ -20,8 +20,12 @@ RDEPEND=" WALLPAPERS="bash cron gcc gnu gnu-linux iptables kernel kill python root su sudo vim" src_compile() { + local RESOL="1920 1080" + if use 1440p; then + RESOL="2560 1440" + fi for IMG in $WALLPAPERS; do - ./makemywall 1920 1080 "cards/black/$IMG-card-black.png" + ./makemywall $RESOL "cards/black/$IMG-card-black.png" done } |