GNOME: Difference between revisions

imported>Jtojnar
m (remove gnome3 alias)
imported>Jedsek
mNo edit summary
Line 91: Line 91:
=== Change user's profile picture ===
=== Change user's profile picture ===
Currently there is no way to change the user's profile picture using Gnome Control Center [https://github.com/NixOS/nixpkgs/issues/10025 (see this issue)] and currently there is no plan to support it officially in NixOS.
Currently there is no way to change the user's profile picture using Gnome Control Center [https://github.com/NixOS/nixpkgs/issues/10025 (see this issue)] and currently there is no plan to support it officially in NixOS.
However, you can modify it by copying the profile picture that you want to the path '''/var/lib/AccountsService/icons/$USER''' as a workaround, i.e.
However, you can modify it by copying the profile picture that you want to the path '''/home/$USER/.face''' as a workaround, i.e.


<syntaxHighlight lang=sh>
<syntaxHighlight lang=sh>
cp /path/to/image.jpg /var/lib/AccountsService/icons/$USER
mv /path/to/image.jpg ~/.face
</syntaxHighlight>
</syntaxHighlight>