From debbugs-submit-bounces@debbugs.gnu.org Fri Jan 14 18:18:18 2022 Received: (at submit) by debbugs.gnu.org; 14 Jan 2022 23:18:18 +0000 Received: from localhost ([127.0.0.1]:38532 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n8Vpp-0002ty-V3 for submit@debbugs.gnu.org; Fri, 14 Jan 2022 18:18:18 -0500 Received: from lists.gnu.org ([209.51.188.17]:49226) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n8Vpk-0002to-Sh for submit@debbugs.gnu.org; Fri, 14 Jan 2022 18:18:16 -0500 Received: from eggs.gnu.org ([209.51.188.92]:46370) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1n8Vpk-0002z6-O8 for guix-patches@gnu.org; Fri, 14 Jan 2022 18:18:12 -0500 Received: from mail-40131.protonmail.ch ([185.70.40.131]:21842) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1n8Vpi-0002vf-Kr for guix-patches@gnu.org; Fri, 14 Jan 2022 18:18:12 -0500 Date: Fri, 14 Jan 2022 23:18:03 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=protonmail.com; s=protonmail2; t=1642202288; bh=Th4s8kenTbRJMiPYpAeP6ZFz/RafHg2nEZWGodut3yM=; h=Date:To:From:Reply-To:Subject:Message-ID:From:To:Cc; b=uQbYhcP7pI0/qGwohBn2xF45ZZFXba0g9CMBqj7vXytgC0U8Pe9QIS6+m+7f+q9vX HllAZiy1Z7QTr6S3dc/fbWAqkNSxk/VAwd9TzhYc9bgAQSbO9DGaJ5WxyrZuk2GZh6 /+QaL3YFxzrftt7/BTE2SdCu3n/khQjumI2FzrbKeO0mfV6ebAPRgfQFdtovQ3F9tc +IlLk75UXT5moioPnS6KDW6YyHSLvj5OhY4X+wgRCbiB5VDVeO7Kz6fnlju4WlAxZV NtliKkBlmFOw1JcPHUyf1Lq/f6dHjQjTce4oFOujro/m1tKiNUAMkMfZlrQIA0Hrgw 3W3TJS1zYPjYA== To: Guix-patches From: John Kehayias Subject: [PATCH 0/2] Add rofi ROFI_PLUGIN_PATH search-path and rofi-calc Message-ID: <0TXkuQadzYQwj-0foNplpHZWW0BgPOtSnJ8rkZVBv41Y9wyWOIk4unT9d9nomiuoVcvoKK_P5JiXVvUNb7gIcJ-ro1jWuisYB8eEKxnbWGM=@protonmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Status: No, score=-1.2 required=10.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,FREEMAIL_FROM shortcircuit=no autolearn=disabled version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on mailout.protonmail.ch Received-SPF: pass client-ip=185.70.40.131; envelope-from=john.kehayias@protonmail.com; helo=mail-40131.protonmail.ch X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, FREEMAIL_FROM=0.001, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -0.1 (/) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: John Kehayias Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.3 (--) Hello, My package submission spree continues. This short patch series adds rofi-ca= lc, a plugin for the rofi launcher which allows you to do live calculations= in rofi (including things like currency conversions) with qalculate's qalc= . The first patch adds a native-search-path for rofi, for the built-in variab= le ROFI_PLUGIN_PATH where it will search for plugins (libraries) by default= . The second adds rofi-calc. I've tested everything builds and runs. Having rofi and rofi-calc installed= sets the search-path and you can do 'rofi -show calc' to launch the plugin= without needing to do anything else. Thanks for looking! John