diff options
author | Karel Kočí <cynerd@email.cz> | 2018-09-03 00:43:48 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2018-09-03 00:43:48 +0200 |
commit | 0968820c97f51b0244f080c94cc460530e9f563f (patch) | |
tree | ab9c5c8164510c44f04a824160896dbbc9d60fc5 | |
parent | 972f1f169a6e4b09ccaaa4d9553627327ce971e2 (diff) | |
download | gentoo-personal-overlay-0968820c97f51b0244f080c94cc460530e9f563f.tar.gz gentoo-personal-overlay-0968820c97f51b0244f080c94cc460530e9f563f.tar.bz2 gentoo-personal-overlay-0968820c97f51b0244f080c94cc460530e9f563f.zip |
x11-themes/background-lnxpcs: fix install
-rw-r--r-- | x11-themes/background-lnxpcs/background-lnxpcs-0.3.ebuild | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/x11-themes/background-lnxpcs/background-lnxpcs-0.3.ebuild b/x11-themes/background-lnxpcs/background-lnxpcs-0.3.ebuild index 4187865..511ee9d 100644 --- a/x11-themes/background-lnxpcs/background-lnxpcs-0.3.ebuild +++ b/x11-themes/background-lnxpcs/background-lnxpcs-0.3.ebuild @@ -30,9 +30,13 @@ src_compile() { } src_install() { + local RES="1920x1080" + if use 1440p; then + RES="2560x1440" + fi insinto "/usr/share/backgrounds" for IMG in $WALLPAPERS; do - doins "$IMG-card-black-1920x1080.png" + doins "$IMG-card-black-$RES.png" done dobin "${FILESDIR}/i3background" dobin "${FILESDIR}/i3lock-lnxpcs" |