From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 8C5D015817D for ; Sat, 8 Jun 2024 18:02:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D1AFCE2ADF; Sat, 8 Jun 2024 18:02:43 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B28C5E2ADF for ; Sat, 8 Jun 2024 18:02:43 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 589A4340815 for ; Sat, 8 Jun 2024 18:02:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B28AB1610 for ; Sat, 8 Jun 2024 18:02:38 +0000 (UTC) From: "Nickolas Raymond Kaczynski" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Nickolas Raymond Kaczynski" Message-ID: <1717869699.5502e2bc76be53ccfe214cf7b67310f67246a8cc.nrk@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: mpv-plugin/mdmenu/ X-VCS-Repository: repo/proj/guru X-VCS-Files: mpv-plugin/mdmenu/mdmenu-20240215.ebuild X-VCS-Directories: mpv-plugin/mdmenu/ X-VCS-Committer: nrk X-VCS-Committer-Name: Nickolas Raymond Kaczynski X-VCS-Revision: 5502e2bc76be53ccfe214cf7b67310f67246a8cc X-VCS-Branch: dev Date: Sat, 8 Jun 2024 18:02:38 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: d6ca7b93-9ce6-49f7-be44-9b5f61138b06 X-Archives-Hash: 901a3263ea224b13509d9e9efeff4b31 commit: 5502e2bc76be53ccfe214cf7b67310f67246a8cc Author: NRK disroot org> AuthorDate: Sat Jun 8 18:00:52 2024 +0000 Commit: Nickolas Raymond Kaczynski disroot org> CommitDate: Sat Jun 8 18:01:39 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5502e2bc mpv-plugin/mdmenu: tidy up Signed-off-by: NRK disroot.org> mpv-plugin/mdmenu/mdmenu-20240215.ebuild | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/mpv-plugin/mdmenu/mdmenu-20240215.ebuild b/mpv-plugin/mdmenu/mdmenu-20240215.ebuild index bed09fd27..2808df872 100644 --- a/mpv-plugin/mdmenu/mdmenu-20240215.ebuild +++ b/mpv-plugin/mdmenu/mdmenu-20240215.ebuild @@ -25,10 +25,15 @@ DOCS=( mdmenu.conf README.md ) pkg_postinst() { mpv-plugin_pkg_postinst + + einfo "mdmenu does not set any keybindings by default." + einfo "Customize ~~/input.conf according to the documentation " + einfo "in order to set custom bindings." + if use custom-cmd ; then - ewarn "mdmenu has been installed without a launcher." - ewarn "You will need to configure \`cmd\` in script-opt " - ewarn "to a dmenu-compatible app for mdmenu to work." - ewarn "Please refer to the documents for more info." + ewarn "mdmenu has been installed without dmenu." + ewarn "You will need to set \`cmd\` in ~~/script-opts/mdmenu.conf " + ewarn "to a dmenu-compatible application for mdmenu to work." + ewarn "Please refer to the documentation for more info." fi }