Fixes, mainly.

This commit is contained in:
Niels Serup
2011-08-10 23:35:57 +02:00
parent 094dbbec6b
commit 912602822e
9 changed files with 68 additions and 6 deletions

BIN
site/projects/img/mege.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

View File

@@ -13,7 +13,8 @@ These are my projects, new and old.
#++exec
#+BEGIN_SRC python3
top_projs = (
'desurveil',
'mege',
'desurveil',
'aeltei',
('roptoligs', 'roptoligs', 'RPG project with planned modules and games',
'http://roptoligs.metanohi.name/'),
@@ -42,6 +43,7 @@ These are my projects, new and old.
)
other_projs = (
'kando',
'nanonote',
('pdfsplit', 'A small Python script to split PDF files on a page-basis',
'http://projects.metanohi.name/misc/pdfsplit.tar.gz'),

View File

@@ -0,0 +1,22 @@
#+title: kando
#&summary
A simple todo list manager with Emacs integration
#&
#+license: bysa, text
#+license: apache 2, program
* kando
kando cannot do much. But it can do enough.
#&-large
It is a simple todo manager.
#&
#&-huge
[[kando-0.1.0.tar.gz][Download]].
#&
kando is released under the Apache License, version 2.0.
kando can also be found in the [[http://pypi.python.org/pypi/kando][Python Package Index]].
kando has its code at Gitorious; see [[http://gitorious.org/kando]].

View File

@@ -31,6 +31,15 @@ tables, this test contains more. And they're all different.
|--------+-----|
| Name | Age |
** With caption
#+caption: Persons
| Name | Age |
|--------+-----|
| Xryurg | 300 |
| Bkrau | 2 |
** Inline formatting in table
| URL | Exists |

View File

@@ -9,8 +9,29 @@ What my prompt does and what it looks like.
I have my own bash prompt. To use it, first, copy this into your ~.bashrc~:
#+BEGIN_SRC sh
PROMPT_COMMAND="EXCO=$?;pwdw=$(($COLUMNS-20))"
PS1='\[\033[00m\]$(if [ $EXCO == 0 ]; then echo -ne "\[\033[42m\]\[\033[01;30m\]"; else echo -ne "\[\033[41m\]\[\033[01;34m\]"; fi)$(length-extra-prepend $EXCO 3)\[\033[45m\] \[\033[44m\]\[\033[01;37m\]$(date +%H:%M)\[\033[45m\] \[\033[46m\]\[\033[01;33m\]$(length-too-much-shorten "$(pwd | sed s%$HOME%~%)" $(if (( $pwdw < 20 )); then echo -n 20; else echo -n $pwdw; fi))\[\033[00m\]\n\[\033[45m\]\[\033[01;33m\]\u\[\033[01;32m\]@\[\033[01;36m\]\h\[\033[43m\]\[\033[01;30m\]:\[\033[40m\]\[\033[01;33m\]\$\[\033[00m\] '
function ps1lr {
if [ $1 == 0 ]; then
echo -ne "\033[42m\033[01;30m"
else
echo -ne "\033[41m\033[01;34m"
fi
length-extra-prepend $1 3
}
function ps1sp {
pwdw=$(($COLUMNS-20))
if (( $pwdw < 40 )); then
pwdw=40
fi
length-too-much-shorten "$(pwd | sed s%$HOME%~%)" $pwdw
}
#PROMPT_COMMAND=""
PS1='\[\033[00m\]$(ps1lr $?)\[\033[45m\] \[\033[44m\]\[\033[01;37m\]\
$(date +%H:%M)\[\033[45m\] \[\033[46m\]\[\033[01;33m\]\
$(ps1sp)\[\033[00m\]\n\[\033[45m\]\[\033[01;33m\]\u\[\033[01;32m\]@\
\[\033[01;36m\]\h\[\033[43m\]\[\033[01;30m\]:\[\033[40m\]\
\[\033[01;33m\]\$\[\033[00m\] '
#+END_SRC
Second, download [[bash-prompt-extras.tar.gz]] and put the included programs