This file contains 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
""" | |
custom powerline segment that shows number of not synced edits in taskwarrior | |
created by https://github.com/0x6d64 | |
see also doc at https://github.com/b-ryan/powerline-shell | |
""" | |
import os | |
from powerline_shell.utils import BasicSegment, RepoStats | |
taskwarrior_basedir = os.path.expanduser("~/.task") |
This file contains 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/sh | |
# Martin Demling, 2013 | |
# 0x6d64@martin-demling.de | |
# cyclenext is a script to monitor a specific taskwarrior | |
# (http://taskwarrior.org/) view continuously | |
# the script was developed on an OSX 10.7.5 system, but should run on other | |
# UNIX platforms | |
# usage: cyclenext <filter> | |
TASKFILE="/Users/martindemling/taskdir/undo.data" |
This file contains 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/sh | |
# Kenneth Finnegan, 2012 | |
# kennethfinnegan.blogspot.com | |
# adapted for osx by 0x6d64, 0x6d64@arcor.de | |
# | |
# TwitterMatrixTicker | |
# Given a username and an ascii printer, checks for new mentions and | |
# prints them one at a time to the printer. | |
# Expected usage is either spun off into the background >/dev/null or | |
# on a detachable screen so you can monitor progress. |