aboutsummaryrefslogtreecommitdiff
path: root/util/fbsetbg
diff options
context:
space:
mode:
authorrathnor <rathnor>2004-06-17 16:12:20 (GMT)
committerrathnor <rathnor>2004-06-17 16:12:20 (GMT)
commite68a7a4e72f0a0b3303d89e3b6a7d345997bf987 (patch)
tree1164df43c8706a2c0a866e30faefa36871afa5d0 /util/fbsetbg
parenta49d1128cd4561eeceedbba10b3a705298a81032 (diff)
downloadfluxbox-e68a7a4e72f0a0b3303d89e3b6a7d345997bf987.zip
fluxbox-e68a7a4e72f0a0b3303d89e3b6a7d345997bf987.tar.bz2
fbsetbg xmessage-related updates
Diffstat (limited to 'util/fbsetbg')
-rw-r--r--util/fbsetbg7
1 files changed, 4 insertions, 3 deletions
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}