1
0
mirror of https://github.com/gryf/wmaker.git synced 2026-01-07 06:14:13 +01:00

some more removals

This commit is contained in:
dan
2004-10-23 00:09:41 +00:00
parent 45c55a3e76
commit 65a113f9a3
4 changed files with 5 additions and 84 deletions

View File

@@ -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:

View File

@@ -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

View File

@@ -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

View File

@@ -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