diff options
author | Joe <bousset.rudy@gmail.com> | 2022-05-15 13:12:52 +0200 |
---|---|---|
committer | Joe <bousset.rudy@gmail.com> | 2022-05-15 13:12:52 +0200 |
commit | 86408f1691dbbdd87bb5c849db89f6c4a1896218 (patch) | |
tree | b59c4fe27af45ec24508e5966c95ef197d75de29 /.local | |
parent | oh yes (diff) | |
download | dotfiles-bsd-86408f1691dbbdd87bb5c849db89f6c4a1896218.tar.gz dotfiles-bsd-86408f1691dbbdd87bb5c849db89f6c4a1896218.tar.bz2 dotfiles-bsd-86408f1691dbbdd87bb5c849db89f6c4a1896218.tar.xz dotfiles-bsd-86408f1691dbbdd87bb5c849db89f6c4a1896218.tar.zst dotfiles-bsd-86408f1691dbbdd87bb5c849db89f6c4a1896218.zip |
back to iridium
Diffstat (limited to '.local')
-rwxr-xr-x | .local/bin/linkview | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.local/bin/linkview b/.local/bin/linkview index 515bb85..7024ade 100755 --- a/.local/bin/linkview +++ b/.local/bin/linkview @@ -19,7 +19,7 @@ use constant { IMGVIEW_PATH => '/usr/local/bin/nsxiv', ZATHURA_PATH => '/usr/local/bin/zathura', W3M_PATH => '/usr/local/bin/w3m', - BROWSER_PATH => '/usr/local/bin/firefox', + BROWSER_PATH => '/usr/local/bin/iridium', NOTIFYSEND_PATH => '/usr/local/bin/notify-send' }; use constant PROG_LIST => "" . @@ -31,7 +31,7 @@ use constant PROG_LIST => "" . "nsxiv" . "\n" . "zathura" . "\n" . "w3m" . "\n" . -"firefox" . "\n"; +"browser" . "\n"; use constant QUAL_LIST => "" . "1440" . "\n" . "1080" . "\n" . @@ -332,7 +332,7 @@ sub open_link elsif ($a eq "w3m") { exec(TERMINAL_PATH, '-e', W3M_PATH, $url); } - elsif ($a eq "firefox") { + elsif ($a eq "browser") { $pid = fork(); if (not $pid) { setsid(); |