summaryrefslogtreecommitdiffstats
path: root/.local/bin/dmbook
diff options
context:
space:
mode:
Diffstat (limited to '.local/bin/dmbook')
-rwxr-xr-x.local/bin/dmbook38
1 files changed, 0 insertions, 38 deletions
diff --git a/.local/bin/dmbook b/.local/bin/dmbook
deleted file mode 100755
index 4aa8738..0000000
--- a/.local/bin/dmbook
+++ /dev/null
@@ -1,38 +0,0 @@
-#!/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__