hyprdots

my dotfiles for hyprland
git clone https://git.awy.one/hyprdots.git
Log | Files | Refs | README | LICENSE

commit ea794c6bba5399d60d52055faecc1c02616ea18b
parent f503f47c913699447dedfed3d801e114e01489b4
Author: awy <awy@awy.one>
Date:   Thu, 20 Mar 2025 15:47:48 +0300

wmenu

Diffstat:
M.local/bin/dmenuhandler | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.local/bin/dmenuhandler b/.local/bin/dmenuhandler @@ -1,10 +1,10 @@ #!/bin/sh -# Feed this script a link and it will give dmenu +# Feed this script a link and it will give wmenu # some choice programs to use to open it. -feed="${1:-$(true | dmenu -p 'Paste URL or file path')}" +feed="${1:-$(true | wmenu -p 'Paste URL or file path')}" -case "$(printf "copy url\\nnsxiv\\nsetbg\\nPDF\\nbrowser\\nlynx\\nvim\\nmpv\\nmpv loop\\nmpv float\\nqueue download\\nqueue yt-dlp\\nqueue yt-dlp audio" | dmenu -i -p "Open it with?")" in +case "$(printf "copy url\\nnsxiv\\nsetbg\\nPDF\\nbrowser\\nlynx\\nvim\\nmpv\\nmpv loop\\nmpv float\\nqueue download\\nqueue yt-dlp\\nqueue yt-dlp audio" | wmenu -i -p "Open it with?")" in "copy url") echo "$feed" | xclip -selection clipboard ;; mpv) setsid -f mpv -quiet "$feed" >/dev/null 2>&1 ;; "mpv loop") setsid -f mpv -quiet --loop "$feed" >/dev/null 2>&1 ;;