I use Ubuntu 16.04 LTS whose GUI allows customization. These include
- Launcher Icon Size
- Behaviour of the launcher (hides, size of launcher, reveal sensitivity)
- System Language
- My dual display settings, their positioning
- My items docked on the launcher
Basically, all such settings I applied to the system via GUI for my ease.
I want some sort of a hack to back up such settings to a file and reapply them when I reinstall the OS.
gsettings
, 3 is editing 2 text files, 4 and 5 are probably also text files. So put the commands to edit these files in a script and save that script. Execute when needed. AskUbuntu expects 1 question per topic and there are 5 here. 1+2 are likely already answered. 3 and 4 probably also will have an answer. 5 is probably about setting a .desktop file you can store somewhere so you can reapply; will also have a topic+answer on AU. – Rinzwind Feb 16 '18 at 09:08gsettings set
, you need thekey
, and avalue
to change a setting. Language: https://askubuntu.com/questions/133318/how-do-i-change-the-language-via-a-terminal (related: keyboard: https://askubuntu.com/questions/209597/how-do-i-change-keyboards-from-the-command-line/209598 ) – Rinzwind Feb 16 '18 at 09:11~/.config/
. So if you copy over your home directory, or at least that (hidden) folder, you should see most(all?) your settings restored. – Robert Riedl Feb 16 '18 at 11:23