dotfiles

personal dotfiles
git clone anongit@rnpnr.xyz:dotfiles.git
Log | Files | Refs | Feed | Submodules

Commit: b6b6a2607a152eec8f75a342c4cb452b766b08b7
Parent: a13f8fb4ae4b7c26e7dd5ec5b73b74eaf7666dc6
Author: Randy Palamar
Date:   Tue,  1 Nov 2022 22:39:04 -0600

remove bookmarks script - its a oneliner in dwm conf

Diffstat:
Dbin/bookmarks | 12------------
1 file changed, 0 insertions(+), 12 deletions(-)

diff --git a/bin/bookmarks b/bin/bookmarks @@ -1,12 +0,0 @@ -#!/bin/sh - -# presents a list of bookmarks in dmenu and launches -# the selection in a browser - -BOOKMARKS="$HOME/doc/urls" - -url=$(grep -v -e "#" -e "^$" "$BOOKMARKS" | dmenu -i -p "open:" -l 10 | - cut -f 1 -d ' ') -[ -z "$url" ] && exit 0 - -browser "$url"