diff --git a/ChangeLog b/ChangeLog index b309f748..78133871 100644 --- a/ChangeLog +++ b/ChangeLog @@ -158,13 +158,15 @@ Changes since version 0.80.2: - Made NetWM support be enabled by default - Removed old code to store/restore workspace state (now relies on netwm) - Added a (simple) Font Configuration for fontconfig fonts -- MacOS X style window switching panel (navigate through windows with Alt-Tab or arrow keys) +- MacOS X style window switching panel (navigate through windows with Alt-Tab + or arrow keys) - Added support for NET_WM_NAME/NET_WM_ICON_NAME -- moved out font name conversion code from getstyle/setstyle/convertfonts and made it support fontsets +- Moved out font name conversion code from getstyle/setstyle/convertfonts and + made it support fontsets - Converted all menu and po files to UTF-8 - Updated de.po (Thomas Otto <3.1415926535897932384626433832@gmx.net>) - Fixed a crash bug when switching workspaces -- Removed some obsoleted scripts from util +- Removed obsoleted scripts from util: wsetfont, wmchlocale, wcopy, wpaste Changes since version 0.80.1: diff --git a/util/README b/util/README index 7440309c..76b779fc 100644 --- a/util/README +++ b/util/README @@ -22,8 +22,6 @@ wxcopy- copy input file or stdin into X cutbuffer wxpaste- copy content of X cutbuffer into stdout -wcopy, wpaste- see 'man wcopy' - wmsetbg- set the workspace background into a image and make it persist between sessions. @@ -31,10 +29,6 @@ wdwrite- write data into the defaults database (configuration files). wdread- read Simple data from defaults database (for use in scripts for example) -wmchlocale- change locale dependent settings of Window Maker (menu & fonts) - -wsetfont- set locale the fonts needed for a specific locale for Window Maker - wmagnify- a program to magnify the area near the mouse pointer, with real-time update diff --git a/util/wcopy b/util/wcopy deleted file mode 100755 index b0618d3b..00000000 --- a/util/wcopy +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/sh -# -# Provide some enhancements to the wxcopy command, which copies standard input -# to an X11 clipboard text buffer. -# -# Allow copying from stdin to any of the cutbuffers. Note that they are -# indexed counting from 0. -# -# Author: Luke Kendall -# - -if [ $# = 0 ] -then - wxcopy $WXCOPY_DEFS -else - MYNAME=`basename $0` - USAGE="usage: $MYNAME [ [0-9]... ] [wxcopy's args]" - for n - do - if expr "x$n" : 'x[0-9][0-9]*$' > /dev/null - then - NUMARGS="$NUMARGS $n" - elif [ "x$n" = "x-h" ] - then - echo "$USAGE" >&2 - exit 0 - else - WXARGS="$WXARGS $n" - fi - done - set - $NUMARGS - wxcopy $WXCOPY_DEFS $WXARGS -cutbuffer $1 - ORIG="$1" - shift - for n - do - wxpaste -cutbuffer $ORIG | wxcopy $WXCOPY_DEFS $WXARGS -cutbuffer $n - done -fi diff --git a/util/wpaste b/util/wpaste deleted file mode 100755 index 88a85507..00000000 --- a/util/wpaste +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/sh -# -# Provide some enhancements to the wxpaste command, which pastes from X11 -# clipboard text buffers to standard output. -# -# Allow pasting to stdout from any of the cutbuffers. Note that they are -# indexed counting from 0. -# -# Author: Luke Kendall -# - -if [ $# = 0 ] -then - wxpaste $WXPASTE_DEFS -else - MYNAME=`basename $0` - USAGE="usage: $MYNAME [ [0-9]... ] [wxpaste's args]" - for n - do - if expr "x$n" : 'x[0-9][0-9]*$' > /dev/null - then - NUMARGS="$NUMARGS $n" - elif [ "x$n" = "x-h" ] - then - echo "$USAGE" >&2 - exit 0 - else - WXARGS="$WXARGS $n" - fi - done - set - $NUMARGS - for n - do - wxpaste $WXPASTE_DEFS $WXARGS -cutbuffer $n - done -fi