commit a48e6d1c43abb6a87cec7f0e9bc6a3ad120008c0 Author: Lucas E M Moreira Date: Tue Feb 21 12:05:57 2023 -0300 initial commit diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..ae862b5 --- /dev/null +++ b/LICENSE @@ -0,0 +1,13 @@ +Copyright (c) 2020 Lucas Esperancini Moreira e Moreira + +Permission to use, copy, modify, and distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..939e25d --- /dev/null +++ b/README.md @@ -0,0 +1,14 @@ +# bmark + +Organize your bookmarks easily! + +## Usage + +Simple script to access your bookmarks easily. Just run bmark! + +## Install + +``` +make install +``` + diff --git a/bmark b/bmark new file mode 100755 index 0000000..2697e1b --- /dev/null +++ b/bmark @@ -0,0 +1 @@ +cat ~/krig/bookmark | rofi -dmenu -l 10 | xsel -bi && test $NOTIFY && $NOTIFY "bookmark... ok" diff --git a/makefile b/makefile new file mode 100644 index 0000000..725791b --- /dev/null +++ b/makefile @@ -0,0 +1,10 @@ +.PHONY: install uninstall +.MAIN: install + +install: + mkdir -p ~/bin + cp -vf {bmark} ~/bin/ + chmod +x ~/bin/{bmark} + +uninstall: + rm -vf ~/bin/{bmark}