diff options
-rw-r--r-- | alias | 2 | ||||
-rw-r--r-- | misc/openbox/rc.xml | 2 | ||||
-rwxr-xr-x | tools/wiki/diary | 1 |
3 files changed, 3 insertions, 2 deletions
@@ -72,7 +72,7 @@ alias ll='ls -lh' | |||
72 | alias lla='ls -lha' | 72 | alias lla='ls -lha' |
73 | llw() { which $1 | xargs ls -alh; } | 73 | llw() { which $1 | xargs ls -alh; } |
74 | alias hg='history | grep' | 74 | alias hg='history | grep' |
75 | rmrf() { mv $1 /tmp/; } | 75 | rmrf() { mv $@ /tmp/; } |
76 | alias rr='_move_to_tmp' | 76 | alias rr='_move_to_tmp' |
77 | alias sound="echo -ne '\a'" | 77 | alias sound="echo -ne '\a'" |
78 | pst(){ pstree -ps ${1:-$$}; } | 78 | pst(){ pstree -ps ${1:-$$}; } |
diff --git a/misc/openbox/rc.xml b/misc/openbox/rc.xml index 64081d2..0e9d624 100644 --- a/misc/openbox/rc.xml +++ b/misc/openbox/rc.xml | |||
@@ -496,7 +496,7 @@ | |||
496 | </keybind> | 496 | </keybind> |
497 | <keybind key="W-f"> | 497 | <keybind key="W-f"> |
498 | <action name="Execute"> | 498 | <action name="Execute"> |
499 | <command>thunar</command> | 499 | <command>thunar ~/Downloads</command> |
500 | </action> | 500 | </action> |
501 | </keybind> | 501 | </keybind> |
502 | <keybind key="W-w"> | 502 | <keybind key="W-w"> |
diff --git a/tools/wiki/diary b/tools/wiki/diary index 84d4eca..b30e906 100755 --- a/tools/wiki/diary +++ b/tools/wiki/diary | |||
@@ -22,6 +22,7 @@ specify_date() { | |||
22 | } | 22 | } |
23 | 23 | ||
24 | print_today() { | 24 | print_today() { |
25 | [[ ! -e $today ]] && touch $today | ||
25 | cat $today | 26 | cat $today |
26 | } | 27 | } |
27 | 28 | ||