From 27614b6ab65d0b17549a33bbffdd20d3b45b44e7 Mon Sep 17 00:00:00 2001 From: Joe Date: Sun, 15 May 2022 18:30:17 +0200 Subject: update --- .local/bin/dmsearch | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to '.local/bin/dmsearch') diff --git a/.local/bin/dmsearch b/.local/bin/dmsearch index 68fb77c..cfef937 100755 --- a/.local/bin/dmsearch +++ b/.local/bin/dmsearch @@ -2,7 +2,7 @@ use strict; use warnings; -use constant BROWSER_PATH => '/usr/local/bin/firefox'; +use constant BROWSER_PATH => '/usr/local/bin/iridium'; sub main { @@ -12,15 +12,15 @@ sub main $choice = `printf "" | dmenu -i -m 0 -p 'Search:'`; if (not $choice) { - return (0); + return; } $choice =~ s/ /+/g; $url = 'https://duckduckgo.com/?q=' . $choice; $pid = fork(); if (not $pid) { - exec(BROWSER_PATH, '--kiosk', $url); + exec(BROWSER_PATH, $url); } - return (0); + return; } main(); -- cgit v1.2.3