aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormarkt <markt>2007-03-28 02:53:33 (GMT)
committermarkt <markt>2007-03-28 02:53:33 (GMT)
commit358645d443e491bbbbd3e23e9530f348eeba6a90 (patch)
tree7ea342bdd9a50e5fb7d281d1a48b0ab86c296bde
parente05d9b2ca2c3ba90628f74287f9bb015c07612d6 (diff)
downloadfluxbox-358645d443e491bbbbd3e23e9530f348eeba6a90.zip
fluxbox-358645d443e491bbbbd3e23e9530f348eeba6a90.tar.bz2
startup wasn't being run properly when being created for the first time
-rw-r--r--ChangeLog3
-rwxr-xr-xutil/startfluxbox.in2
2 files changed, 4 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 0b9779f..c572ab9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
1 (Format: Year/Month/Day) 1 (Format: Year/Month/Day)
2Changes for 1.1: 2Changes for 1.1:
3*07/03/28:
4 * Startup file wasn't being run properly when created the first time (Mark)
5 util/startfluxbox.in
3*07/03/27: 6*07/03/27:
4 * Added new resource session.screen<N>.clientMenu.usePixmap that puts the 7 * Added new resource session.screen<N>.clientMenu.usePixmap that puts the
5 window's icon in the workspace and icons menus: default true. (Mark) 8 window's icon in the workspace and icons menus: default true. (Mark)
diff --git a/util/startfluxbox.in b/util/startfluxbox.in
index 9d3c290..8575555 100755
--- a/util/startfluxbox.in
+++ b/util/startfluxbox.in
@@ -86,5 +86,5 @@ EOF
86 ) > "$startup" 86 ) > "$startup"
87 fi 87 fi
88 chmod 644 "$startup" 88 chmod 644 "$startup"
89 exec "$startup" 89 exec sh "$startup"
90fi 90fi