all repos — fluxbox @ e68a7a4e72f0a0b3303d89e3b6a7d345997bf987

custom fork of the fluxbox windowmanager

fbsetbg xmessage-related updates
rathnor rathnor
commit

e68a7a4e72f0a0b3303d89e3b6a7d345997bf987

parent

a49d1128cd4561eeceedbba10b3a705298a81032

2 files changed, 9 insertions(+), 3 deletions(-)

jump to
M ChangeLogChangeLog

@@ -1,5 +1,10 @@

(Format: Year/Month/Day) Changes for 0.9.10: +*04/06/18: + * background xmessage in fbsetbg so it doesn't block anything + also set the "okay" button to default so you can just press enter + (Simon) + fbsetbg *04/06/17: * Improve rendering speed of toolbar (Simon) - remove many redundant renders (esp. startup)
M util/fbsetbgutil/fbsetbg

@@ -23,7 +23,7 @@ # CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,

# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE # SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. # -# $Id: fbsetbg,v 1.30 2004/03/11 00:08:34 rathnor Exp $ +# $Id: fbsetbg,v 1.31 2004/06/17 16:12:20 rathnor Exp $ # Portability notes: # To guarantee this script works on all platforms that support fluxbox

@@ -162,10 +162,11 @@ # echo if we have terminal output, otherwise pop up a window

# if [ -t 1 ]; then # echo "$command: $@" # else + extra_args="-default okay" if find_it gxmessage; then - gxmessage -center "$command: $@" + gxmessage $extra_args -center "$command: $@" & else - xmessage -center "$command: $@" + xmessage $extra_args -center "$command: $@" & fi # fi }