diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | util/fbsetbg | 7 |
2 files changed, 9 insertions, 3 deletions
@@ -1,5 +1,10 @@ | |||
1 | (Format: Year/Month/Day) | 1 | (Format: Year/Month/Day) |
2 | Changes for 0.9.10: | 2 | Changes for 0.9.10: |
3 | *04/06/18: | ||
4 | * background xmessage in fbsetbg so it doesn't block anything | ||
5 | also set the "okay" button to default so you can just press enter | ||
6 | (Simon) | ||
7 | fbsetbg | ||
3 | *04/06/17: | 8 | *04/06/17: |
4 | * Improve rendering speed of toolbar (Simon) | 9 | * Improve rendering speed of toolbar (Simon) |
5 | - remove many redundant renders (esp. startup) | 10 | - remove many redundant renders (esp. startup) |
diff --git a/util/fbsetbg b/util/fbsetbg index 2e55ad0..cf6bea0 100644 --- a/util/fbsetbg +++ b/util/fbsetbg | |||
@@ -23,7 +23,7 @@ | |||
23 | # TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE | 23 | # TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE |
24 | # SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | 24 | # SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
25 | # | 25 | # |
26 | # $Id: fbsetbg,v 1.30 2004/03/11 00:08:34 rathnor Exp $ | 26 | # $Id: fbsetbg,v 1.31 2004/06/17 16:12:20 rathnor Exp $ |
27 | 27 | ||
28 | # Portability notes: | 28 | # Portability notes: |
29 | # To guarantee this script works on all platforms that support fluxbox | 29 | # To guarantee this script works on all platforms that support fluxbox |
@@ -162,10 +162,11 @@ message() { | |||
162 | # if [ -t 1 ]; then | 162 | # if [ -t 1 ]; then |
163 | # echo "$command: $@" | 163 | # echo "$command: $@" |
164 | # else | 164 | # else |
165 | extra_args="-default okay" | ||
165 | if find_it gxmessage; then | 166 | if find_it gxmessage; then |
166 | gxmessage -center "$command: $@" | 167 | gxmessage $extra_args -center "$command: $@" & |
167 | else | 168 | else |
168 | xmessage -center "$command: $@" | 169 | xmessage $extra_args -center "$command: $@" & |
169 | fi | 170 | fi |
170 | # fi | 171 | # fi |
171 | } | 172 | } |