diff options
author | mutantturkey <crazycal00@gmail.com> | 2010-05-29 06:44:57 -0400 |
---|---|---|
committer | mutantturkey <crazycal00@gmail.com> | 2010-05-29 06:44:57 -0400 |
commit | 29984943512a81c67b899bbe52166cb476fb836e (patch) | |
tree | 8de24402f7d24986f314b1f7cc5c19e53fd5d20b /sb.c | |
parent | 34d05f5bbdfcdf2e178fc29719296344404083f2 (diff) |
i fixed it lol, was a absolute path now it is relative
Diffstat (limited to 'sb.c')
-rw-r--r-- | sb.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -198,7 +198,8 @@ gtk_widget_grab_focus(w.bar); static void history_command() { gchar *returned; -g_spawn_command_line_sync("sh -c 'sort /home/calvin/.history | dmenu -l 15 -xs -c'", &returned, NULL, NULL, NULL); +gchar *url; +g_spawn_command_line_sync("sh -c 'sort ~/.history | dmenu -l 15 -xs -c'", &returned, NULL, NULL, NULL); load_uri(returned); g_free(returned); } |