initial commit

This commit is contained in:
Lucas E M Moreira 2023-02-21 12:05:57 -03:00
commit a48e6d1c43
4 changed files with 38 additions and 0 deletions

13
LICENSE Normal file
View file

@ -0,0 +1,13 @@
Copyright (c) 2020 Lucas Esperancini Moreira e Moreira <me@lucasemmoreira.xyz>
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.

14
README.md Normal file
View file

@ -0,0 +1,14 @@
# bmark
Organize your bookmarks easily!
## Usage
Simple script to access your bookmarks easily. Just run bmark!
## Install
```
make install
```

1
bmark Executable file
View file

@ -0,0 +1 @@
cat ~/krig/bookmark | rofi -dmenu -l 10 | xsel -bi && test $NOTIFY && $NOTIFY "bookmark... ok"

10
makefile Normal file
View file

@ -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}