Avoir un clavier "mac" sous Linux ça fonctionne bien... Surtout quand on oublie pas de le désactiver et de repasser en "classique" pour taper des commandes ou du code. Sinon gare aux erreurs avec des caractères à la noix insérés après les ponctuations, les signes comme "=" ou "&", etc. Le nombre de fois où je me suis fait avoir ces temps ! 🤦🏼

#linux #mac #keymap

/etc/vconsole.confのKEYMAPに指定するパスから拡張子を省略できなくなったってことなのかしら。

# vim /etc/vconsole.conf
# cat /etc/vconsole.conf
# This is the fallback vconsole configuration provided by systemd.

#KEYMAP=us
KEYMAP=/usr/local/share/kbd/keymaps/us-nocaps.map
# sync; sync; sync; reboot

設定ファイルには問題なさそうね

# cat /etc/vconsole.conf
# This is the fallback vconsole configuration provided by systemd.

#KEYMAP=us
KEYMAP=/usr/local/share/kbd/keymaps/us-nocaps
# ls -l /usr/local/share/kbd/keymaps/us-nocaps*
-rw-r--r-- 1 root root 2002 Feb 11 2024 /usr/local/share/kbd/keymaps/us-nocaps.map

journalctlむずかしいしむっちゃ遅いのどうにからなんか…

# journalctl -u systemd-vconsole-setup.service -b --no-pager
Nov 09 23:11:14 archlinux systemd[1]: Starting Virtual Console Setup...
Nov 09 23:11:14 archlinux systemd-vconsole-setup[151]: loadkeys: Unable to open file: /usr/local/share/kbd/keymaps/us-nocaps: No such file or directory
Nov 09 23:11:14 archlinux systemd-vconsole-setup[149]: /usr/bin/loadkeys failed with exit status 1.
Nov 09 23:11:14 archlinux systemd[1]: systemd-vconsole-setup.service: Main process exited, code=exited, status=1/FAILURE
Nov 09 23:11:14 archlinux systemd[1]: systemd-vconsole-setup.service: Failed with result 'exit-code'.
Nov 09 23:11:14 archlinux systemd[1]: Failed to start Virtual Console Setup.
:

Making a custom keymap for Blender

https://makertube.net/w/pQroXpjpULwp6BBkNSoTGz

Making a custom keymap for Blender

PeerTube

J'ai commencé à apprendre Ergo-L histoire d'avoir une dispo plus polyvalente que bepo

#ErgoL #Keymap

One of the things I hadn't sorted out since dumping Windows was the ability to switch to a Greek keyboard.

It's actually easier in Mint than Windows, just have a look in the main menu, at Preferences Keyboard, and it follows from there.

No restart needed, of course. Little Union Flag icon changes to a Greek flag, και Ο Μπομπ είναι θείος σου.
#Linux #Mint #keymap

My middle right thumb key has been playing up again, so I've started experimenting with a few(!) things. Current #keymap is probably not the best advert for a 40% #ergomech #mechkeeb #Keyboard... 🙄

Leaning deeply into combos. Learning a lot about the difference between things that seem to make sense when abstracted vs things that make actual sense in action.

Muscle memory is being battered, but it feels good to experiment towards best fit. It will (/may?) pare down in the near future...

Adding Apple’s Globe key to a QMK-powered keyboard

skip’s blog

Eine "erschreckend schöne" #Europa-#Keymap zeigt die europäischen #Extremwetterereignisse von 2023 - des bislang wärmsten Jahres seit Aufzeichnungsbeginn:
https://climate.copernicus.eu/esotc/2023/key-events

Die Keymap ist Teil des Berichts "European State of the Climate 2023", der dieser Tage vom Copernicus Climate Chance Service und der Weltorganisation für #Meteorologie veröffentlicht wurde. Die gesamte Website dazu:
https://climate.copernicus.eu/esotc/2023
Interessant ist dort auch ein Blick in die Summary (PDF):
https://climate.copernicus.eu/sites/default/files/custom-uploads/ESOTC%202023/Summary_ESOTC2023.pdf

#ClimateCrisis #Klimakrise #Hitze #Dürre #Flut #Sturm

2023 Key events | Copernicus

https://wiki.archlinux.org/title/Linux_console/Keyboard_configuration を参考にそろそろAの隣りをCtrlにしよう。

# localectrl status
System Locale: LANG=en_US.UTF-8
VC Keymap: (unset)
X11 Layout: (unset)
# cat /etc/vconsole.conf
:
#KEYMAP=us

ふむふむ。

# mkdir -p /usr/local/share/kbd/keymaps
# echo 'keycode 58 = Control' > /usr/local/share/kbd/keymaps/nocaps.map
# loadkeys !$

これでAの横がCtrlになった…と思ったらCaps Lockが、えーと、 ^Cが?

loadkeysしてデフォルトだったus配列も消えちゃった感じなのかな?とりあえずCtrl-Alt-Delしてやりなおそう。

# loadkeys /usr/share/kbd/keymaps/i386/qwerty/us.map.gz
# loadkeys /usr/local/share/kbd/keymaps/nocaps.map

したら期待どおりのキーボードになった気がする。や、なってない。時間がたつとわけのわからない動作になるなw

us.map.gzを全部コピーして編集することにしよう。というわけで次回はwlan0の設定とvimのインストールとなりまるw

Linux console/Keyboard configuration - ArchWiki