diff --git a/burrkmarks/bookmurrks.nimble b/burrkmarks/bookmurrks.nimble new file mode 100644 index 0000000..0043260 --- /dev/null +++ b/burrkmarks/bookmurrks.nimble @@ -0,0 +1,13 @@ +# Package + +version = "0.1.0" +author = "Paul Wilde" +description = "A dmenu/rofi bookmark manager" +license = "GPL-2.0-or-later" +srcDir = "src" +bin = @["burrkmarks"] + + +# Dependencies + +requires "nim >= 1.6.6" diff --git a/burrkmarks/src/burrkkmarks.nim b/burrkmarks/src/burrkkmarks.nim new file mode 100644 index 0000000..862d40c --- /dev/null +++ b/burrkmarks/src/burrkkmarks.nim @@ -0,0 +1,5 @@ +# This is just an example to get you started. A typical binary package +# uses this file as the main entry point of the application. + +when isMainModule: + echo("Hello, World!")