diff options
Diffstat (limited to '.local/bin/dmsearch')
-rwxr-xr-x | .local/bin/dmsearch | 8 |
1 files changed, 4 insertions, 4 deletions
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(); |