[wiki] [sites] wiki updated

From: <hg_AT_suckless.org>
Date: Tue, 19 Jan 2010 17:11:31 +0000 (UTC)

changeset: 436:cb12fc523aba
tag: tip
user: wart_
date: Tue Jan 19 12:10:43 2010 -0500
files: surf.suckless.org/patches/history.md
description:
ok maybe i've got the formatting right this time. sorry.


diff -r 24661c4f0f7f -r cb12fc523aba surf.suckless.org/patches/history.md
--- a/surf.suckless.org/patches/history.md Tue Jan 19 10:35:32 2010 -0500
+++ b/surf.suckless.org/patches/history.md Tue Jan 19 12:10:43 2010 -0500
_AT_@ -7,38 +7,37 @@
 This patch writes the loaded URI to a file and that is all it does. You must modify config.h and
 add the following:
 
-static char *historyfile = ".surf/history";
+ static char *historyfile = ".surf/history";
 
 Here are some ways of using it.
 
-1. Write a small shell script.
+(1) Write a small shell script.
 
-#!/bin/sh
-cat ~/.surf/history | sort -ru | dmenu -l 10 -b -i | xprop -id `cat ~/.surf/id` -f SURF_URI 8s -set _SURF_URI
+ cat ~/.surf/history | sort -ru | dmenu -l 10 -b -i | xprop -id `cat ~/.surf/id` -f SURF_URI 8s -set _SURF_URI
 
-2. Modify config.h and add the following.
+(2) Modify config.h and add the following.
 
-#define SETURI(p) { .v = (char *[]){ "/bin/sh", "-c", \
-"prop=\"`dmenu.uri.sh`\" &&" \
-"xprop -id $1 -f $0 8s -set $0 \"$prop\"", \
-p, winid, NULL } }
+ #define SETURI(p) { .v = (char *[]){ "/bin/sh", "-c", \
+ "prop=\"`dmenu.uri.sh`\" &&" \
+ "xprop -id $1 -f $0 8s -set $0 \"$prop\"", \
+ p, winid, NULL } }
 
-Add, in static Key keys[] add:
+and in static Key keys[] add:
 
-{ MODKEY, GDK_Return, spawn, SETURI("_SURF_URI") },
+ { MODKEY, GDK_Return, spawn, SETURI("_SURF_URI") },
 
 Here are some tips on using it.
 
-1. Remove duplicates periodically:
+(1) Remove duplicates periodically:
 
-cat ~/.surf/history > ~/.surf/history.$$
-cat ~/.surf/history.$$ | sort | uniq >~/.surf/history
-rm -f ~/.surf/history.$$
+ cat ~/.surf/history > ~/.surf/history.$$
+ cat ~/.surf/history.$$ | sort | uniq >~/.surf/history
+ rm -f ~/.surf/history.$$
 
-2. Import firefox history:
+(2) Import firefox history:
 
-sqlite3 -list /home/$USER/.mozilla/firefox/*.default/places.sqlite 'select url from moz_places ;' |\
-grep http >> ~/.surf/history
+ sqlite3 -list /home/$USER/.mozilla/firefox/*.default/places.sqlite 'select url from moz_places ;' |\
+ grep http >> ~/.surf/history
 
 Download
 --------
Received on Tue Jan 19 2010 - 18:11:31 CET

This archive was generated by hypermail 2.3.0 : Thu Sep 13 2012 - 19:31:06 CEST