summaryrefslogtreecommitdiffstats
path: root/.local/bin/dmbookm
diff options
context:
space:
mode:
Diffstat (limited to '.local/bin/dmbookm')
-rwxr-xr-x.local/bin/dmbookm38
1 files changed, 38 insertions, 0 deletions
diff --git a/.local/bin/dmbookm b/.local/bin/dmbookm
new file mode 100755
index 0000000..4aa8738
--- /dev/null
+++ b/.local/bin/dmbookm
@@ -0,0 +1,38 @@
+#!/usr/bin/env perl
+
+use strict;
+use warnings;
+use Sys::Hostname;
+
+use constant {
+ BROWSER => '/bin/firefox',
+ HOSTNAME => (split /\./, hostname())
+};
+
+sub main
+{
+ my $choice;
+ my $url;
+ my $pid;
+ my $prefix;
+
+ $prefix = '/usr';
+ if (HOSTNAME eq "mars") {
+ $prefix += '/local';
+ }
+ $choice = `printf "" | dmenu -i -m 0 -p 'Search:'`;
+ if (not $choice) {
+ return;
+ }
+ $choice =~ s/ /+/g;
+ $url = 'https://www.startpage.com/sp/search?q=' . $choice;
+ $pid = fork();
+ if (not $pid) {
+ exec($prefix . BROWSER, $url);
+ }
+ return;
+}
+
+main();
+
+__END__