Go to Preferences
→ Profile [default profile]
→ Command
- Check "Run command as a login shell"
- Select "Preserve working directory: always"
See this my answer on Ask Ubuntu. Ans also you need to set to false "Extend height" to minimize Dock when "Activities" activated
It's a Gnome extension.
Gnome Tweaks ⇒ Keyboard & Mouse ⇒ Compose key. Here are mappings.
In /usr/share/x11/xkb/symbols/pc
rewrite according key's strings:
key <HOME> { [ Prior, Home ] };
key <PGUP> { [ Home, Home, Prior ] };
key <END> { [ Next ] };
key <PGDN> { [ End, End, Next ] };
This will be overridden most likelly on next update, so it would be better to figure out a better place to put this mapping next time (for more info see here and here).
In Dconf Editor:
/org/gnome/terminal/legacy/keybindings/close-tab
→<Ctrl>w
/org/gnome/terminal/legacy/keybindings/new-tab
→<Ctrl>t
/org/gnome/terminal/legacy/keybindings/next-tab
→<Primary>Tab
/org/gnome/terminal/legacy/keybindings/prev-tab
→<Primary><Shift>Tab
Also could be done as
dconf write /org/gnome/terminal/legacy/keybindings/next-tab "'<Primary>Tab'"
Go to Preferencis
→ Profiles
→ <your profile>
, check: ✅ Run command as login shell
; set: Preserve working directory: Always
.
See here https://unix.stackexchange.com/a/156770
snap list # This shows you what snaps are installed
sudo snap remove program # Fill in all snaps listed above
sudo apt purge snapd
sudo apt-mark hold snapd
sudo umount /snap/snapd/XXXX # to unmount the snap core service
sudo rm -rf ~/snap /snap /var/snap /var/lib/snapd # to remove all the folder related to snap, if existing
Regrading broken suspend on MSI Summit:
sudo swapoff /dev/dm-1
&&sudo swapon -p 0 /dev/dm-1
(to find device name (/dev/dm-1
):swapon -s
)