Search found 359 matches

by magnus7
Tue Aug 29, 2023 2:46 pm
Forum: Beginner Questions
Topic: Linux mint wifi works but not as a hotspot
Replies: 7
Views: 866

Re: Linux mint wifi works but not as a hotspot

I also have problems with hotspot not working properly so I installed simple and reliable linux-wifi-hotspot. You can find it in Software Manager.
by magnus7
Mon Aug 07, 2023 6:11 pm
Forum: Beginner Questions
Topic: [SOLVED] Swap capslock and backspace key functionality?
Replies: 2
Views: 200

Re: Swap capslock and backspace key functionality?

Remove file /home/usr/bin/keyboardmapping.sh.
Run this command in terminal and restart the computer:

Code: Select all

sudo sed -i \
-e '17s|.*|key<BKSP>{[Caps_Lock]};|' \
-e '22s|.*|key<CAPS>{[BackSpace,BackSpace]};|' \
/usr/share/X11/xkb/symbols/pc \
&& sudo dpkg-reconfigure xkb-data
by magnus7
Sat Jul 29, 2023 2:20 pm
Forum: Beginner Questions
Topic: key remapping
Replies: 6
Views: 378

Re: key remapping

Code: Select all

sudo apt-get install --reinstall xkb-data
by magnus7
Tue Jul 18, 2023 7:36 am
Forum: Installation & Boot
Topic: Replacing LM on a dual boot
Replies: 6
Views: 202

Re: Replacing LM on a dual boot

LM 21.1 doesn't use isolinux. In EFI and BIOS mode it shows a grub menu.
by magnus7
Tue Jul 11, 2023 8:37 am
Forum: Software & Applications
Topic: Keyboard layout options
Replies: 8
Views: 454

Re: Keyboard layout options

XKB has the option of setting keys to display alternate glyphs in both levels and groups; however the Cinnamon Keyboard app only deals with levels. Groups are keyboard layouts. You can have up to 4 groups which can be used at once without XKB reconfiguration. Changing the group means changing for e...
by magnus7
Sun Jul 09, 2023 5:40 am
Forum: Installation & Boot
Topic: BIOS configuration dual boot problem [SOLVED]
Replies: 4
Views: 583

Re: BIOS configuration dual boot problem

I used this solution for my Dell Inspiron and it worked perfectly:
SOLUTION: Switch Windows 10 from RAID/IDE to AHCI operation
by magnus7
Thu Jul 06, 2023 7:21 pm
Forum: Software & Applications
Topic: Keyboard layout options
Replies: 8
Views: 454

Re: Keyboard layout options

The book refers to a Multi_Key. Where might I find such on a Dell PC 104-key keyboard? Multi Key (also called Compose Key) This is a special key on PC keyboards usually assigned to the right Windows Key, which allows typing accented characters by entering a character corresponding to some accent an...
by magnus7
Thu May 25, 2023 9:10 am
Forum: Beginner Questions
Topic: key remapping
Replies: 6
Views: 378

Re: key remapping

To undo remapping reinstall xkb-data package:

Code: Select all

sudo apt-get install --reinstall xkb-data
by magnus7
Tue May 23, 2023 8:33 am
Forum: Beginner Questions
Topic: key remapping
Replies: 6
Views: 378

Re: key remapping

Run this command in terminal and restart the computer. It will remap the ENTER-key to the right shift button.

Code: Select all

sudo sed -i '29s|.*|key<RTSH>{[Return]};|' \
/usr/share/X11/xkb/symbols/pc \
&& sudo dpkg-reconfigure xkb-data
by magnus7
Fri May 05, 2023 7:22 am
Forum: Other topics
Topic: [SOLVED] Is it possible to edit my layout to add a few letters?
Replies: 18
Views: 949

Re: [SOLVED] Is it possible to edit my layout to add a few letters?

Termy wrote: Thu May 04, 2023 8:32 pm I can't imagine the amount of time, data, and effort I'd have lost over the years if I actually restored the entire system because of an issue with one file. :shock:
How many files should break the system before the use of Timeshift is justified? :wink:
by magnus7
Thu May 04, 2023 10:27 am
Forum: Other topics
Topic: [SOLVED] Is it possible to edit my layout to add a few letters?
Replies: 18
Views: 949

Re: [SOLVED] Is it possible to edit my layout to add a few letters?

In-case that causes any unforeseen problems and because it's global, I would recommend that the next time you suggest this you also include a process to back up the file, such as by using `-i` to do so — see sed(1) for more information. It's often just good practice for future reference, especially...
by magnus7
Wed May 03, 2023 7:58 pm
Forum: Other topics
Topic: [SOLVED] Is it possible to edit my layout to add a few letters?
Replies: 18
Views: 949

Re: [SOLVED] Is it possible to edit my layout to add a few letters?

trashpanda wrote: Wed May 03, 2023 11:22 am Oh dear, am I gonna have problems of some kind without the backup?
You won't have any problems. The remapping you applied is very basic and safe. I test everything before posting. If you want to restore the file just reinstall xkb-data:

Code: Select all

sudo apt-get install --reinstall xkb-data
by magnus7
Tue May 02, 2023 2:50 pm
Forum: Other topics
Topic: [SOLVED] Is it possible to edit my layout to add a few letters?
Replies: 18
Views: 949

Re: Is it possible to edit my layout to add a few letters?

Run this command in terminal and restart the computer: sudo sed -i \ -e '10s|.*|key<AE04>{[4,dollar,EuroSign]};|' \ -e '22s|.*|key<AD03>{[e,E,egrave,eacute]};|' \ -e '26s|.*|key<AD07>{[u,U,ugrave]};|' \ -e '27s|.*|key<AD08>{[i,I,igrave]};|' \ -e '28s|.*|key<AD09>{[o,O,ograve]};|' \ -e '33s|.*|key<AC...
by magnus7
Tue May 02, 2023 8:17 am
Forum: Other topics
Topic: [SOLVED] Is it possible to edit my layout to add a few letters?
Replies: 18
Views: 949

Re: Is it possible to edit my layout to add a few letters?

The dollar symbol will be replaced by euros.
Which letters/keys do you want to use for AltGr+(è,é,ò,à,ù)?
by magnus7
Sat Apr 29, 2023 12:10 pm
Forum: Software & Applications
Topic: AutoKey Scripting Help?
Replies: 6
Views: 556

Re: AutoKey Scripting Help?

I tried some remapping of keyboard layout without AutoKey. If you run this command in terminal and restart the computer you will have: PrtScr = Home Shift+PrtScr = End sudo sed -i \ -e '67s|.*|key<PRSC>{[Home,End]};|' \ -e '68s|.*||' -e '69s|.*||' -e '70s|.*||' \ /usr/share/X11/xkb/symbols/pc \ &...
by magnus7
Fri Apr 28, 2023 2:52 pm
Forum: Software & Applications
Topic: AutoKey Scripting Help?
Replies: 6
Views: 556

Re: AutoKey Scripting Help?

Try to use the Fn key with the arrow keys:
Fn+Left/Right = Home/End
Fn+Up/Down = PageUp/Down
by magnus7
Fri Apr 28, 2023 11:05 am
Forum: Software & Applications
Topic: AutoKey Scripting Help?
Replies: 6
Views: 556

Re: AutoKey Scripting Help?

What's your keyboard layout and LM version?
by magnus7
Sat Apr 15, 2023 8:20 am
Forum: Beginner Questions
Topic: SOLVED Typing !£$%*&+@ with one hand
Replies: 7
Views: 295

Re: Typing !£$%*&+@ with one hand

Menu > Keyboard > Layouts > Options > Caps Lock behavior > Caps Lock toggles Shift Lock (affects all keys)
by magnus7
Tue Apr 11, 2023 8:49 am
Forum: Beginner Questions
Topic: Executing command using desktop launcher
Replies: 7
Views: 914

Re: Executing command using desktop launcher

spamegg wrote: Tue Apr 11, 2023 6:37 am So here I ran a command inside an interactive shell sh session (notice the dollar sign that appeared) inside a Terminal emulator, which is running an interactive session of bash!
sh is a symbolic link to dash. If you want to use bash run bash -c '...'
by magnus7
Sat Apr 08, 2023 5:19 am
Forum: Cinnamon
Topic: [SOLVED] Nemo script/action needed to append images via convert
Replies: 2
Views: 381

Re: Nemo script/action needed to append images via convert

Create a script append_images #!/bin/bash convert $NEMO_SCRIPT_SELECTED_FILE_PATHS -append $(echo combined_$(date +%H%M%S-%d-%m-%Y).png) Save the script as ~/.local/share/nemo/scripts/append_images Make the append_images script executable: right-click on the file > Properties > Permissions > Allow e...

Go to advanced search