this post was submitted on 25 Jul 2023
44 points (95.8% liked)

Linux

47361 readers
921 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
 

I made this post because I really like the design of GNOME, and although i'd like customizability, it is mostly enough for my everyday needs. But I want to understand why people may choose other desktop environments..or why you would/would'nt use GNOME.

you are viewing a single comment's thread
view the rest of the comments
[–] eneff@discuss.tchncs.de 5 points 1 year ago (1 children)

export settings on old pc:

dconf dump / > dconf-settings.dump

import on new pc:

cat dconf-settings.dump | dconf load /

[–] Spectacle8011@lemmy.comfysnug.space 1 points 1 year ago (1 children)

Oh! Super handy, thank you! I was just considering how I might use dconf to get this setup.

I haven't tried it out yet but it seems like it would work well!

[–] eneff@discuss.tchncs.de 2 points 1 year ago (1 children)

Glad to help! Just keep in mind that what you're doing there is dumping the entire dconf settings tree and applying it as is. That will include a lot of things you don't want/care about, including state data of certain applications. You should probably sift through the dump file and throw stuff out before loading it again, but I'm sure you'll figure it out.

I'll keep that in mind. The main thing is changing keyboard shortcuts—I like most of the defaults in GNOME. In theory, this should actually be easier to port over to new computers than Sway, because I only need to import one configuration dump.

I mean, I probably could have written a Makefile or something for my dotfiles repository but I'm lazy...