• 0 Posts
  • 24 Comments
Joined 2 years ago
cake
Cake day: June 26th, 2023

help-circle






  • uranibaba@lemmy.worldtomemes@lemmy.worldHubris
    link
    fedilink
    arrow-up
    1
    ·
    9 days ago

    there’s nothing to do or at sea

    Just being out on the sea is by itself a worthwhile experience, in my opinion. At least the first time. like flying, it is super boring sitting in a plane for multiple hours. But the first time being above the clouds is cool.












  • You can also create a custom keyboard layout in Linux. From what I have written down, here is how to do it (can’t double check because work computer).

    I suspect this could be X11 only because it is X keyboard extension, pop_OS! didn’t adopt Wayland as early Ubuntu.

    • Start by navigating to /usr/share/X11/xkb/symbols/.
    • Open the file that corresponds to your keyboard layout (I think it is us for American).
    • Add a new layout:
    partial alphanumeric_keys
    xkb_symbols "custom" {
        include "us(basic)" // includes another configuration to build on, see current file you are editing.
    
        name[Group1]="US (custom)"; // will be the name of your configration/layout.
    
        key <LSGT>  { [ greater,        less,               bar,            brokenbar  ] }; // <
        key <SPCE>  { [ space,          space,              nobreakspace,   space      ] }; // Space
        // Add more key maps as you see fit.
    };
    
    • Go to /usr/share/X11/xkb/rules/
    • Locate evdev.xml and base.xml
    • Edit both and look for the following block
    <layout>
      <configItem>
        <name>us</name>
       <!--- some comment --->
    
    • Add the following to both files on the row after the comment:
    <variant>
      <configItem>
        <name>custom</name>
        <description>US (custom)</description>
      </configItem>
    </variant>
    

    You might have to reboot afterwards.