Typing glyphs on Linux

From APL Wiki
Revision as of 10:30, 11 September 2022 by Adám Brudzewsky (talk | contribs) (Text replacement - "<source" to "<syntaxhighlight")
Jump to navigation Jump to search
This article is specific for Linux. For Hardware and other platforms, see Typing glyphs.

Since mid-2012, most Linux distributions with X11 and Wayland have Dyalog APL keyboard support included with the distribution,[1] using <syntaxhighlight lang=console inline>xkb</source>, the X Keyboard Extension.[2]

setxkbmap

The simplest way to set up an APL keyboard on Linux is with the following <syntaxhighlight lang=console inline>setxkbmap</source> command. Enter the following in your terminal emulator of choice:

<syntaxhighlight lang=console> setxkbmap -layout us,apl -variant ,dyalog -option grp:switch </source>

An explanation:

  • <syntaxhighlight lang=console inline>-layout us,apl</source> assigns <syntaxhighlight lang=console inline>us</source> (U.S. English) to be the primary layout, whereas <syntaxhighlight lang=console inline>apl</source> is secondary
  • <syntaxhighlight lang=console inline>-option grp:switch</source> assigns Right Alt to switch to the secondary <syntaxhighlight lang=console inline>apl</source> layout when it is pressed, otherwise <syntaxhighlight lang=console inline>us</source> is used
  • <syntaxhighlight lang=console inline>-variant ,dyalog</source> assigns the Dyalog APL variant to the <syntaxhighlight lang=console inline>apl</source> layout which contains modifiations unique to the Dyalog language (Note the preceding comma)

A full list of keys that can be used to switch layouts is included in <syntaxhighlight lang=console inline>/usr/share/X11/xkb/rules/evdev.lst</source> under the <syntaxhighlight lang=console inline>option</source> category.

Note:

  • These changes are not permanent; the user will have to select one of a myriad of methods to run the command on startup. Alternatively, if they use one of the desktop environments listed below, they can follow those instructions.
  • If you want to specify a different language, say for United Kingdom, specify <syntaxhighlight lang=console inline>gb</source> instead of <syntaxhighlight lang=console inline>us</source> (not <syntaxhighlight lang=console inline>uk</source>)
  • If you want to specify a different layout, dvorak, bepo, etc, change the variant flag to <syntaxhighlight lang=console inline>dvorak,dyalog</source>.

libinput

X11 and Wayland use XKB rules to determine their layout. To set a layout create a file called <syntaxhighlight lang=console inline>00-keyboard.conf</source> at <syntaxhighlight lang=console inline>/etc/X11/xorg.conf.d</source> or <syntaxhighlight lang=console inline>/usr/etc/X11/corg.conf.d</source>, ensuring you have permissions, and edit it to:

<syntaxhighlight lang=console> Section "InputClass"

       Identifier "system-keyboard"
       MatchIsKeyboard "on"
       Option "XkbLayout" "us,apl"
       Option "XkbVariant" ",dyalog"
       Option "XkbOptions" "grp:switch"

EndSection </source>

The options "us,apl", ",dyalog", and "grp:switch" are the same as in setxkbmap and can be changed to better suit your environment.

Once saved this will affect any future session. To change the current session and test out layouts, use <syntaxhighlight lang=console inline>setxkbmap</source>.

GNOME

GUI

  1. Open the Activities menu; this is located in the top-left corner of a default GNOME 3 session (alternatively, use your Super key to open the Activities overlay):
    GNOME Keyboard Step 1: Open Activities Menu
  2. Search for "startup." When the Startup Applications program is highlighted, press the Enter key to open it:
    GNOME Keyboard Step 2: Search for Startup Applications
  3. Select the Add button on the right-hand side:
    GNOME Keyboard Step 3: Click the Add button in Startup Applications window
  4. Provide a name, enter your setxkbmap command, and click Add when finished:
    GNOME Keyboard Step 4: Enter the relevant information for your command

Terminal

  1. Navigate to ~/.config/autostart and create a .desktop with any name that will help you remember its function.
  2. Add the following to the contents of your file, customizing to suit your needs:<syntaxhighlight lang=ini>

[Desktop Entry] Type=Application Exec=setxkbmap -layout us,apl -variant ,dyalog -option grp:switch Hidden=false NoDisplay=false X-GNOME-Autostart-enabled=true Name[en_US]=apl-keyboard Name=apl-keyboard Comment[en_US]= Comment= </source>

LXDE

  1. Prepend an <syntaxhighlight lang=console inline>@</source> to the <syntaxhighlight lang=console inline>setxkbmap</source> command from above:
    <syntaxhighlight lang=console>

@setxkbmap -layout us,apl -variant ,dyalog -option grp:switch </source>

  1. Add it as a line in your user's LXDE <syntaxhighlight lang=console inline>autostart</source> file, located at:
    <syntaxhighlight lang=console>

~/.config/lxsession/LXDE/autostart </source>

For Lubuntu versions up to and including 18.04 (before the LXQt split), the location of <syntaxhighlight lang=console inline>autostart</source> is <syntaxhighlight lang=console inline>~/.config/lxsession/Lubuntu/autostart</source>.

LXQt

GUI

  1. From your LXQt panel, navigate to PreferencesLXQt SettingsSession Settings; alternatively, enter <syntaxhighlight lang=console inline>lxqt-config-session</source> in your terminal emulator. You will be greeted with the following window:
    LXQt Autostart menu of Session Settings window
  2. Select the <syntaxhighlight lang=console inline>LXQt Autostart</source> dropdown (it will be highlighted as shown above) and click the Add button to display the following pop-up window:
    LXQt add a new autostart menu item
  3. Provide a name, enter your setxkbmap command, and click OK when finished.

Terminal

The above GUI approach merely creates a <syntaxhighlight lang=console inline>.desktop</source> file in the user's <syntaxhighlight lang=console inline>~/.config/autostart</source>. Create your own file in the <syntaxhighlight lang=console inline>autostart</source> directory whose contents are as follows, to replicate the functionality achieved through the GUI:

<syntaxhighlight lang=ini> [Desktop Entry] Exec=setxkbmap -layout us,apl -variant ,dyalog -option grp:switch Name=apl-keyboard OnlyShowIn=LXQt; Type=Application Version=1.0 </source>

MATE

GUI

  1. Open your MATE menu (in the top-left corner of a default environment) and select Control Center at the bottom of the window:
    Launch the Control Center from the MATE menu
  2. Scroll down through the main window, and under the Personal category, select Startup Applications:
    Scroll down to the Startup Applications option
  3. Click the Add button on the right-hand side:
    Click Add to add a new startup command
  4. Provide a name, enter your setxkbmap command, and click Add when finished:
    Enter the setxkbmap command you wish to use

Terminal

Navigate to ~/.config/autostart and create a .desktop with any name that will help you remember its function.

Add the following to the contents of your file, customizing to suit your needs:

<syntaxhighlight lang=ini> [Desktop Entry] Type=Application Exec=setxkbmap -layout us,apl -variant ,dyalog -option grp:switch Hidden=false X-MATE-Autostart-enabled=true Name[en_US]=apl-keyboard Name=apl-keyboard Comment[en_US]= Comment= X-MATE-Autostart-Delay=0 </source>

Wayland

Currently, Wayland uses XKB for keyboards, but they are not modifiable during runtime using e.g. setxkbmap by default. The keyboard layout must be configured and then the session restarted.

GNOME Tweaks

The Tweaks tool allows configuration beyond the defaults enabled in GNOME.

  1. Install GNOME Tweaks using apt or dnf, or by searching your distribution's Software Center.
  2. Start GNOME Tweaks by either:
    1. Using a terminal, type gnome-tweaks and press Enter.
    2. Using the GUI:
      1. Open the Activities menu; this is located in the top-left corner of a default GNOME 3 session (alternatively, use your Super key to open the Activities overlay):
        Wayland Keyboard set up with GNOME Tweaks Step 2.1: Open Activities Menu
      2. Search for "Tweaks"
        Wayland Keyboard set up with GNOME Tweaks Step 2.2: Start GNOME Tweaks
  3. Open Keyboard & Mouse Panel and enable "Show Extended Input Sources"
    Wayland Keyboard set up with GNOME Tweaks Step 3: Open Keyboard & Mouse Panel
  4. Open the Additional Layout Options and tick one or more of the options under "Switching to another layout"
    Wayland Keyboard set up with GNOME Tweaks Step 4: Open Additional Layout Options
  5. Go to Settings → Region & Language → Add a new input source. Both English (United Kingdom) and English (United States) will have several APL layout options to choose from.
  6. Restart the session (for example, by logging out and logging in again).

Xfce

Xfce's GUI (Settings ManagerKeyboardLayout) is unable to set up an APL-compatible keyboard. Therefore, we must do it ourselves.

Xfce ships with a utility, xfconf-query, which allows you to manage Xfce's XML configuration files on the command line. Enter the following commands into your terminal:

<syntaxhighlight lang=console> xfconf-query -c keyboard-layout -n -p '/Default/XkbDisable' -t 'bool' -s 'false' </source>

This enables XKB, allowing us to manage our keyboard layout.

<syntaxhighlight lang=console> xfconf-query -c keyboard-layout -n -p '/Default/XkbLayout' -t 'string' -s 'us,apl' </source>

Defines the keyboard layout itself. The comma-delimited apl specifies a second layout group. Make sure you replace us with the code for your language; a list of these can be found in /usr/share/X11/xkb/rules/evdev.lst, under the layout category.

<syntaxhighlight lang=console> xfconf-query -c keyboard-layout -n -p '/Default/XkbOptions/Group' -t 'string' -s 'grp:win_switch' </source>

This tells Xfce to switch to the APL layout only when the Windows key is pressed. When the Windows key is released, the layout will return to its previous setting. This is incredibly useful as the apl layouts in XKB do not support Space, Enter, or the arrow keys (among basically all the others). A full list of possible keys for switching between keyboard groups is located in /usr/share/X11/xkb/rules/evdev.lst, under the option category.

<syntaxhighlight lang=console> xfconf-query -c keyboard-layout -n -p '/Default/XkbVariant' -t 'string' -s ',dyalog' </source>

Specifies that the variant applies to the second layout, apl, due to the preceding comma. The dyalog variant is unique to Dyalog.

And you're done! Try holding down the Windows key and pressing H on your keyboard — you should see a .

xmodmap

Modifying the Linux keyboard to support APL keys via xmodmap(1) is possible, but not recommended — it has been superseded by the X keyboard extension (XKB). Generally <syntaxhighlight lang=console inline>xmodmap</source> is best for simple tasks,[3] which APL keyboards often tend not to be. Dyalog APL, for example, has native support for XKB.[2]

For users who understand the pitfalls, an example <syntaxhighlight lang=console inline>~/.Xmodmap</source> can be found at this GitHub Gist.

Troubleshooting

Gnome catches keystrokes before Dyalog

After upgrading Ubuntu 21.04 (Hirsute Hippo), Gnome catches the keystrokes from the Super key to show the list of applications, before Dyalog can receive it. Changing the shifting key from <syntaxhighlight lang=console inline>grp:win_switch</source> to <syntaxhighlight lang=console inline>grp:caps_switch</source> avoids the issue. Changing it to <syntaxhighlight lang=console inline>grp:rctrl_switch</source> does not work.

Dyalog Overrides Current Keyboard Settings

Prior to version 18.2, Dyalog APL would override the current XKB configuration to use the Meta ("Windows") key as the modifier for entering APL symbols. If the user manages their keyboard configuration manually using the techniques described on this page, this behavior can be quite troublesome.

To run Dyalog in the terminal without overriding ("hijacking") the user keyboard configuration, run dyalog with the -nokbd option:

<syntaxhighlight lang=bash> dyalog -nokbd </source>

The following script can be used to launch RIDE, immediately connecting a new Dyalog instance, without changing the xkb settings:

<syntaxhighlight lang=bash>

  1. !/usr/bin/env sh

env RIDE_CONNECT=localhost:4502 ride & dyalog +s -q -nokbd RIDE_INIT=SERVE:*:4502 </source>

The keyboard layout changing is done by the file at /opt/mdyalog/*/64/unicode/aplkeys.sh, so changing it changes the behavior (clearing it entirely stops the automatic keyboard layout switching). Note that the file exists for each installed version and is reset on any update, so it may need to be modified multiple times.

APL Keyboard Remains After Dyalog is Closed

Previous versions of Dyalog override the current keyboard configuration, as described in this section, but even using the default keyboard configuration by starting Dyalog 18.2 or later with

<syntaxhighlight lang=bash> dyalog --keyboard </source>

fails to return the user to their previous keyboard configuration on exit. To solve this, create a custom Bash script to save and revert keyboard settings upon exiting Dyalog APL:[4]

<syntaxhighlight lang=bash>

  1. !/usr/bin/sh

OLDLAYOUT=$(setxkbmap -query | sed -n 's/^layout://p') OLDVARIANT=$(setxkbmap -query | sed -n 's/^variant://p') OLDOPTION=$(setxkbmap -query | sed -n 's/^options://p') dyalog OLDLAYOUT=$(echo $OLDLAYOUT | sed 's/^$/,/') OLDVARIANT=$(echo $OLDVARIANT | sed 's/^$/,/') setxkbmap -layout $OLDLAYOUT -variant $OLDVARIANT -option -option $OLDOPTION </source>

Settings reverted during X Windows session

Since at least March 2020 there have been issues with <syntaxhighlight lang=console inline>setxkbmap</source> settings being reset without user instruction under the X Windows System.

Below is a script written in Raku that continuously checks for this undesirable reset behavior and puts the intended settings back in place.[5]

<syntaxhighlight lang=perl6>

  1. !/usr/bin/env raku
  1. Small script to ensure that APL keyboard layout is still set in xkb settings.
  2. Note that this is a patch for some sort of deranged time-based reset of these
  3. settings that is happening at a lower level of the Xorg-based Linux user experience.
  4. It's not clear what is causing these resets but this script allows us to more
  5. or less not care about it and get on with our hacking.
  6. Released under Artistic License by John Longwalker 2020

my $total-checks = 0; sub xkbmap-contains-apl() {

 $total-checks++;
 so qx{ setxkbmap -query | grep '^layout:.*\<apl\>' }; # shell-out is easy as usual in a Perl

}

my $total-resets = 0; sub set-xkbmap-for-apl($key, $verbose) {

 say "Reset total is now {++$total-resets} -- {DateTime.now}"
 	if $verbose;
 my $xkb-settings = chomp qx{ setxkbmap -query };
 my ($layout, $variant, $options);
 if $xkb-settings ~~ /^^ "layout:" \s* $<layout>=(<.graph>*) $$/ {
 	$layout = $<layout>.Str;
 } else {
 	die "Aborting. The xkb settings do not specify any layout:\n$xkb-settings";
 }
 if $xkb-settings ~~ /^^ "variant:" \s* $<variant>=(<.graph>*) $$/ {
 	$variant = $<variant>.Str;
 }
 if $xkb-settings ~~ /^^ "options:" \s* $<options>=(<.graph>*) $$/ {
 	$options = $<options>.Str;
 }
 $layout  = ($layout, 'apl').join(',');
 $variant = $variant ?? ($variant, 'dyalog')
                     !! 'dyalog';
 $options = $options ?? ($options, "grp:$key").join(',') 
                     !! "grp:$key";
 my $invocation = "setxkbmap -layout $layout -variant $variant -option $options";
 say "Invocation: $invocation"
   if $verbose;
 qqx{ $invocation };

}

  1. You can use --interval, --key, and -v/--verbose on the command line.

sub MAIN(:$interval = 30, :$key = 'switch', :v($verbose) = False) {

 react {
   whenever Supply.interval($interval) {
     set-xkbmap-for-apl($key, $verbose)
       if not xkbmap-contains-apl;
   }
   whenever signal(SIGINT) {
     say "Reset a total of $total-resets out of $total-checks checks"
     	if $verbose;
     exit;
   }
 }

} </source>

References

  1. Dyalog Forums. Keyboard setup on Linux. Sep 21, 2010.
  2. 2.0 2.1 Geoff Streeter. Supporting APL keyboards on Linux. Dyalog '10.
  3. ArchWiki Contributors. xmodmap. 19 July 2021
  4. Adám Brudzewsky. Stack Overflow answer. 17 Aug, 2020
  5. John Longwalker. 5ab5traction5 blog. Raku to the Rescue: APL Keyboard Keeper. 29 Jun, 2020
APL development [edit]
Interface SessionTyping glyphs (on Linux) ∙ FontsText editors
Publications IntroductionsLearning resourcesSimple examplesAdvanced examplesMnemonicsISO 8485:1989ISO/IEC 13751:2001A Dictionary of APLCase studiesDocumentation suitesBooksPapersVideosAPL Quote QuadVector journalTerminology (Chinese, German) ∙ Neural networksError trapping with Dyalog APL (in forms)
Sharing code Backwards compatibilityAPLcartAPLTreeAPL-CationDfns workspaceTatinCider
Implementation ResourcesOpen-sourceMagic functionPerformanceAPL hardware
Developers Timeline of corporationsAPL2000DyalogIBMIPSASTSC
APL glyphs [edit]
Information GlyphTyping glyphs (on Linux) ∙ UnicodeFontsMnemonicsOverstrikesMigration level
Individual glyphs Jot () ∙ Right Shoe () ∙ Up Arrow () ∙ Zilde () ∙ High minus (¯) ∙ Dot (.) ∙ Del ()