mirror of
https://github.com/gryf/wmaker.git
synced 2026-02-10 10:35:46 +01:00
some more removals
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
39
util/wcopy
39
util/wcopy
@@ -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
|
||||
36
util/wpaste
36
util/wpaste
@@ -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
|
||||
Reference in New Issue
Block a user