This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#/bin/bash | |
# Displays a pop-up showing a Steam activation key piped to it by a MUA. | |
# In the e-mail the steam key is wrapped in <h2> tags | |
# Author: Siôn Le Roux <[email protected]> | |
# read e-mail from pipe | |
while read -r line; do | |
# find <h2> | |
buffer=$(echo $line | grep 'h2') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pkgbase = tomboy-notepreview | |
pkgdesc = A Tomboy plugin to show a tooltip containing a preview when you hold the mouse over a link in a note. | |
pkgver = 0.10 | |
pkgrel = 1 | |
url = http://www.robpvn.net/notepreview/ | |
arch = any | |
license = LGPL | |
depends = tomboy | |
source = https://github.com/downloads/robpvn/Tomboy-Note-Preview-Addin/tomboy_notepreviewaddin.zip | |
md5sums = 40633eee15cd50794f44f3afb1559e6f |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pkgbase = tomboy-dragndrop | |
pkgdesc = A tomboy plugin to create links between Tomboy notes via Drag-n-Drop | |
pkgver = 0.1 | |
pkgrel = 1 | |
url = https://sites.google.com/site/paginadisalvo/tools/tomboy-drag-n-drop | |
arch = any | |
license = LGPL | |
depends = tomboy | |
source = https://sites.google.com/site/paginadisalvo/tools/tomboy-drag-n-drop/DnDLinking.dll | |
md5sums = ea43bf3a412d7750918b75f3134c256e |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pkgbase = tomboy-pastebinit | |
pkgdesc = A tomboy plugin to send notes to a Pastebin service | |
pkgver = 0.1 | |
pkgrel = 1 | |
url = https://launchpad.net/tomboy-pastebinit/ | |
arch = any | |
license = LGPL | |
depends = tomboy | |
source = https://launchpad.net/tomboy-pastebinit/trunk/0.1/+download/PasteBinIt.dll | |
md5sums = e683cea2d3691007d55ca4866db88165 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pkgbase = tomboy-calc | |
pkgdesc = A tomboy plugin to compute mathematical equations in notes. | |
pkgver = 0.40 | |
pkgrel = 1 | |
url = http://www.robpvn.net/calcaddin/ | |
arch = any | |
license = GPL | |
depends = tomboy | |
source = https://github.com/downloads/robpvn/Tomboy-Calculator-Addin/tomboy_calculatoraddin.zip | |
md5sums = 9c9163cb6d1c0cda18a7844b1af53a47 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pkgbase = tomboy-toc | |
pkgdesc = A tomboy plugin to generate a Table of Contents menu item. | |
pkgver = 0.6 | |
pkgrel = 1 | |
url = http://oluc.blogspot.com.ar/2011/04/tomboy-add-in-table-of-content.html | |
arch = any | |
license = LGPL | |
depends = tomboy | |
source = http://oluc.github.io/tomboy/bin/TableOfContent.dll-0.6 | |
md5sums = 460db27280e3991396c87789aeebf11c |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Maintainer: Siôn Le Roux <[email protected]> | |
pkgname=tomboy-todo | |
pkgver=1.0.0 | |
pkgrel=1 | |
pkgdesc="A tomboy plugin to highlight markers such as FIXME, TODO and XXX." | |
url="http://romain.blogreen.org/projects/tomboy-todo/" | |
depends=('tomboy') | |
arch=(any) | |
license=(Apache) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Contributor: William Rea <[email protected]> | |
# Contributor: Giorgio Lando <[email protected]> | |
# Maintainer: Siôn Le Roux <[email protected]> | |
pkgname=tomboy-reminder | |
pkgver=0.9.2 | |
pkgrel=1 | |
pkgdesc="A tomboy plugin to tell Tomboy to pop up a note when you want to be reminded" | |
url="http://flukkost.nu/blog/tomboy-reminder/" | |
depends=('tomboy') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* CSS for adding TODO notes on WIP pages */ | |
div.todo { /* style the text in a bright box */ | |
color: red; | |
font-size: large; | |
background-color: yellow; | |
text-align: center; | |
border: 3px solid red; | |
border-bottom: 1px solid red; | |
margin-bottom: 0; | |
padding: 1px; |
NewerOlder