Keyboard Utilities including GXKB,XkbSS etc.
Moderator: Forum moderators
-
- Posts: 453
- Joined: Sat Dec 14, 2019 12:24 am
- Has thanked: 54 times
- Been thanked: 65 times
Keyboard Utilities including GXKB,XkbSS etc.
http://oldforum.puppylinux.com/puppy/vi ... 53c1a7991c
Download: https://archive.org/download/Puppy_Linu ... 0-i686.pet
XkbSS 0.1 by Argolance: http://oldforum.puppylinux.com/puppy/vi ... 53c1a7991c
Downloads: https://archive.org/download/darry19662 ... -1.7.1.pet
https://archive.org/download/darry19662 ... master.zip
https://archive.org/download/darry19662 ... .1_all.pet
https://archive.org/download/darry19662 ... -flags.pet
- stemsee
- Posts: 777
- Joined: Sun Jul 26, 2020 8:11 am
- Location: lattitude 8
- Has thanked: 184 times
- Been thanked: 131 times
Re: Keyboard Utilities including GXKB,XkbSS etc.
with xvkbdconf.
Provides desktop file and positions and it sizes xvkbd at the bottom middle screen. Yad tray icon toggles keyboard on and off. kbdl script provides floating international keyboard layouts.
-
- Posts: 453
- Joined: Sat Dec 14, 2019 12:24 am
- Has thanked: 54 times
- Been thanked: 65 times
-
- Posts: 453
- Joined: Sat Dec 14, 2019 12:24 am
- Has thanked: 54 times
- Been thanked: 65 times
XVkbd Onscreen Keyboard .pets
https://archive.org/download/darry19662 ... 2-i486.pet
https://archive.org/download/darry19662 ... 4-1.tar.gz
https://archive.org/download/darry19662 ... 8-0-64.pet
https://archive.org/download/darry19662 ... -3.8.0.pet
Threads:
http://oldforum.puppylinux.com/puppy/vi ... 0933b3af4b
-
- Posts: 453
- Joined: Sat Dec 14, 2019 12:24 am
- Has thanked: 54 times
- Been thanked: 65 times
-
- Posts: 453
- Joined: Sat Dec 14, 2019 12:24 am
- Has thanked: 54 times
- Been thanked: 65 times
-
- Posts: 453
- Joined: Sat Dec 14, 2019 12:24 am
- Has thanked: 54 times
- Been thanked: 65 times
- stemsee
- Posts: 777
- Joined: Sun Jul 26, 2020 8:11 am
- Location: lattitude 8
- Has thanked: 184 times
- Been thanked: 131 times
Re: Keyboard Utilities including GXKB,XkbSS etc.
This is an update to xvkbdconf which positions xvkbd keyboard at the bottom middle of your screen relative to screen size. This update lets user resize and position the onscreen keyboard with persistence. i.e. position and size will be remembered on reopening.
Code: Select all
#!/bin/bash
#august 2016 stemsee lhpup.org license: GPL version 3 or any later version
#additions by DryFalls
#edit: geometryfn added in 2021 by stemsee
[ "`whoami`" != "root" ] && exec sudo -E -S ${0} "$@"
APPTITLE="xvkbd launcher"
APPNAME="xvkbdconf" # for Xdialog taskbar icon
SCRIPTNAME="script"
APPVERSION="0.2"
ICON="/usr/share/pixmaps/keyboard.png"
export camino=/root/.config/geometry
[ ! -d "$camino" ] && mkdir -p $camino
export res=`xwininfo -root | grep 'geometry' | awk '{print $2}' | cut -f1 -d'+'`
export XX=`echo $res | cut -f1 -d'x'`
export YY=`echo $res | cut -f2 -d'x'`
export pos="$((XX / 4))+$(((YY / 2) + XX / 16))"
# Determine the path to this application.
APPDIR=`dirname "$0"`
cd "$APPDIR"
APPDIR="`pwd`"
function geometryfn (){
nought=`xwininfo -stats -name "$1" | grep "$1"`
XWININFO=`xwininfo -stats -name "$1"`
if [[ ! -z "$nought" ]]; then
ARRAY=(${XWININFO#* X: })
AX=${ARRAY[0]}
AY=${ARRAY[4]}
RX=${ARRAY[8]}
RY=${ARRAY[12]}
W=${ARRAY[14]}
H=${ARRAY[16]}
X=$((AX-RX))
Y=$((AY-RY))
echo "$W"x"$H"+"$X"+"$Y" > "$camino"/`echo "$1" | awk '{print $1}'`
else
return 1
exit 1
fi
}
export -f geometryfn
running=`ps -e | grep xvkbd | wc -l`
if [[ "$running" -gt 2 ]]; then
geometryfn 'xvkbd - Virtual Keyboard'
killall xvkbd #check if running, one instance only
else
if [ -f $camino/xvkbd ]; then
xvkbd -geometry `cat $camino/xvkbd` -no-keypad -always-on-top &
else
xvkbd -geometry $((XX / 2))x$((XX / 5))+"$pos" -no-keypad -always-on-top &
fi
fi
Re: Keyboard Utilities including GXKB,XkbSS etc.
I compiled gxkb lightweight keyboard switcher and put it into gxkb-0.8.0-x86_64.pet for 64bit Puppies.
I checked it out with Fossapup and Bionicpup. Everything works out of the box in JWM
Find it attached. Cheerz!
- Attachments
-
- gxkb-0.8.0-x86_64.pet
- (162.74 KiB) Downloaded 44 times
=~=~=~=~
I'm running online-radio called Melodymaker
Listen it here https://radio.melodymaker.org
- Sofiya
- Posts: 2259
- Joined: Tue Dec 07, 2021 9:49 pm
- Has thanked: 1468 times
- Been thanked: 1505 times
Re: Keyboard Utilities including GXKB,XkbSS etc.
sbxkb
- Attachments
-
- sbxkb-0.7.6-6-x86_64.pet
- (51.62 KiB) Downloaded 33 times
-
- Screenshot.png (10.3 KiB) Viewed 682 times
-
- Screenshot(1).png (10.83 KiB) Viewed 682 times
KL
PUPPY LINUX Simple fast free
Re: Keyboard Utilities including GXKB,XkbSS etc.
=~=~=~=~
I'm running online-radio called Melodymaker
Listen it here https://radio.melodymaker.org
- Sofiya
- Posts: 2259
- Joined: Tue Dec 07, 2021 9:49 pm
- Has thanked: 1468 times
- Been thanked: 1505 times
Re: Keyboard Utilities including GXKB,XkbSS etc.
The difference is that there is no white background around the flag on dark themes
KL
PUPPY LINUX Simple fast free