| Poster | Thread |
linuxlalala
|  |
Alternative keyboard layouts for the AMIGA? Posted on 1-May-2013 5:51:29
| | [ #1 ] |
|
|
 |
Member  |
Joined: 25-Mar-2013 Posts: 67
From: Unknown | | |
|
| Is there a way to use an alternative keyboard layout (eg Greek or German) on the AMIGA? |
|
| Status: Offline |
|
|
Gebrochen
 |  |
Re: Alternative keyboard layouts for the AMIGA? Posted on 1-May-2013 7:41:32
| | [ #2 ] |
|
|
 |
Super Member  |
Joined: 23-Nov-2008 Posts: 1441
From: Australia | | |
|
| |
| Status: Offline |
|
|
linuxlalala
|  |
Re: Alternative keyboard layouts for the AMIGA? Posted on 1-May-2013 9:48:06
| | [ #3 ] |
|
|
 |
Member  |
Joined: 25-Mar-2013 Posts: 67
From: Unknown | | |
|
| @Gebrochen
If I wasn't clear enough, I would like to change keyboard layouts with software (Alt+Shift switching). For example, I would like to have English keyboard, and then change to Greek by pressing Alt+Shift or other key :). |
|
| Status: Offline |
|
|
Cass
|  |
Re: Alternative keyboard layouts for the AMIGA? Posted on 1-May-2013 11:41:34
| | [ #4 ] |
|
|
 |
Regular Member  |
Joined: 18-Nov-2003 Posts: 481
From: Athens, Greece | | |
|
| @linuxlalala
You may try ChangeKeymap, an ARexx script triggered by any key combination you like through FKey. _________________ Ordell Robbie: Is she dead, yes or no? Louis: Pretty much. |
|
| Status: Offline |
|
|
linuxlalala
|  |
Re: Alternative keyboard layouts for the AMIGA? Posted on 1-May-2013 12:11:31
| | [ #5 ] |
|
|
 |
Member  |
Joined: 25-Mar-2013 Posts: 67
From: Unknown | | |
|
| @Cass
It seems this is for AmigaOS 4.x . I need to do that on a classic AMIGA :). |
|
| Status: Offline |
|
|
pavlor
|  |
Re: Alternative keyboard layouts for the AMIGA? Posted on 1-May-2013 12:26:37
| | [ #6 ] |
|
|
 |
Elite Member  |
Joined: 10-Jul-2005 Posts: 9786
From: Unknown | | |
|
| @linuxlalala
Quote:
| It seems this is for AmigaOS 4.x . I need to do that on a classic AMIGA :). |
Arexx is the same also on OS4 (I think) and FKey is included in AmigaOS 3.x. Sure, this particular script probably will not work, maybe there are other (Aminet?).
Eg.:
http://aminet.net/package/util/cdity/HotMaps
However, I don´t know if that helps.Last edited by pavlor on 01-May-2013 at 12:31 PM. Last edited by pavlor on 01-May-2013 at 12:27 PM.
|
|
| Status: Offline |
|
|
linuxlalala
|  |
Re: Alternative keyboard layouts for the AMIGA? Posted on 1-May-2013 13:05:41
| | [ #7 ] |
|
|
 |
Member  |
Joined: 25-Mar-2013 Posts: 67
From: Unknown | | |
|
| EDIT: Wrong info :) Last edited by linuxlalala on 01-May-2013 at 01:13 PM.
|
|
| Status: Offline |
|
|
Severin
|  |
Re: Alternative keyboard layouts for the AMIGA? Posted on 1-May-2013 14:47:14
| | [ #8 ] |
|
|
 |
Elite Member  |
Joined: 18-Aug-2003 Posts: 2740
From: Gloucestershire UK | | |
|
| @linuxlalala
All you need to do is change the env:sys/input.prefs file, a simple dos script called from fkey will do this.
If you just want to swap between two layouts:
Run input prefs and setup the alternative layout you want and use saveas from the menu and save it as "envarc:sys/input.prefs.off"
then use a dos script like:
env:sys/ rename input.prefs input.prefs.temp rename input.prefs.off input.prefs rename input.prefs.temp input.prefs.off
if you need more than two layouts I suggest you use requestchoice and have a prefs file saved for each layout in envarc:sys/ eg.
input.greek input.german input.english input.american
Then use:
env:sys ;use envarc if you want the change to survive a reboot set type `requestchoice "Select layout" "Choose your prefered layout" English|American|German|Greek` if $type EQ 0 copy input.english input.prefs force end if $type EQ 1 copy input.american input.prefs force end if $type EQ 2 copy input.german input.prefs force end if $type EQ 3 copy input.greek input.prefs force end copy input.prefs env:sys force unset type
Last edited by Severin on 01-May-2013 at 02:48 PM.
_________________ OS4 Rocks  X1000 beta tester, Sam440 Flex (733)
Visit the Official OS4 Support Site for more help.
It may be that your sole purpose is to serve as a warning to others. |
|
| Status: Offline |
|
|
Hypex
 |  |
Re: Alternative keyboard layouts for the AMIGA? Posted on 1-May-2013 14:53:14
| | [ #9 ] |
|
|
 |
Elite Member  |
Joined: 6-May-2007 Posts: 11351
From: Greensborough, Australia | | |
|
| @linuxlalala
You could also take Severin's examples amd program it into FKey.
For another task I programmed FKey to bring up a string gadget with RequestString and pass it to another program inside a script. So certainly possible. 
You should be able to program Input on the command line as well and specify the prefs file to use. Last edited by Hypex on 01-May-2013 at 02:56 PM.
|
|
| Status: Offline |
|
|
linuxlalala
|  |
Re: Alternative keyboard layouts for the AMIGA? Posted on 1-May-2013 15:09:06
| | [ #10 ] |
|
|
 |
Member  |
Joined: 25-Mar-2013 Posts: 67
From: Unknown | | |
|
| |
| Status: Offline |
|
|
linuxlalala
|  |
Re: Alternative keyboard layouts for the AMIGA? Posted on 8-May-2013 4:37:48
| | [ #11 ] |
|
|
 |
Member  |
Joined: 25-Mar-2013 Posts: 67
From: Unknown | | |
|
| |
| Status: Offline |
|
|