1 diff -Naur fluxbox-1.1.1~/util/fbrun/main.cc fluxbox-1.1.1/util/fbrun/main.cc
2 --- fluxbox-1.1.1~/util/fbrun/main.cc 2008-01-15 03:50:53.000000000 -0600
3 +++ fluxbox-1.1.1/util/fbrun/main.cc 2009-01-26 17:56:58.000000000 -0600
5 " -fg [color name] Foreground text color"<<endl<<
6 " -bg [color name] Background color"<<endl<<
7 " -na Disable antialias"<<endl<<
8 - " -hf [history file] History file to load (default ~/.fluxbox/fbrun_history)"<<endl<<
9 + " -hf [history file] History file to load (default ~/.fbrun_history)"<<endl<<
10 " -help Show this help"<<endl<<endl<<
11 "Example: fbrun -fg black -bg white -text xterm -title \"run xterm\""<<endl;
14 string foreground("black"); // text color
15 string background("white"); // text background color
16 string display_name; // name of the display connection
17 - string history_file("~/.fluxbox/fbrun_history"); // command history file
18 + string history_file("~/.fbrun_history"); // command history file
20 for (int i=1; i<argc; i++) {
21 if (strcmp(argv[i], "-font") == 0 && i+1 < argc) {