Releases: nwg-piotr/nwg-hello
nwg-hello 0.4.0
User avatar
This option is initially disabled. Set "avatar-show": true
in /etc/nwg-hello/nwg-hello.json
to enable.
The feature displays user's profile picture from /var/lib/AccountsService/icons/$USERNAME
, stored there by gnome-control-center or some other tool (Mugshot does the job perfectly well). See README.md for related values.
NOTE: if you use your customized /etc/nwg-hello/nwg-hello.json
file (recommended), remember to copy all avatar-*
key-value pairs from /etc/nwg-hello/nwg-hello-default.json
.
@Antiz96 - it would be not bad to add an optional dependency, like mugshot: to set the user picture
.
nwg-hello 0.3.1
- Allowed empty password field to move on to fingerprint #34;
- improved install.sh;
- added uninstall.sh.
nwg-hello 0.3.0
- Added
layer
andkeyboard-mode
config keys for gtk-layer-shell; closes #30
nwg-hello 0.2.5
- Added "time-format" and "date-format" config keys, to allow own formatting; closes #28.
nwg-hello 0.2.4
- Added support for user-modified lang files, placed in
/etc/nwg-hello/
. If found, such a file will be used instead of a corresponding predefined lang file. Closes #19. See: https://github.com/nwg-piotr/nwg-hello#own-language-files.
nwg-hello 0.2.3
- Added mouse button release event emulation on startup (sway only), by
swaymsg seat - cursor release button1
.
This is a workaround that should resolve #20, but only if you use sway as the compositor. I failed finding a working solution on Hyprland 0.43.0. The 0.42.0 version just worked as expected. For now let's wait for further Hyprland development. :/
nwg-hello 0.2.2
- Added Japanese lang file; #17 by @kusanaginoturugi.
nwg-hello 0.2.1
- Added the
"form_on_monitors"
config key, equal[]
by default. Use a list, e.g.[0, 1]
to specify which monitors to display the login form on. The rest will only display the wallpaper. Closes #12; the nwg-hello-default.json file looks like this from now on:
{
"session_dirs": [
"/usr/share/wayland-sessions",
"/usr/share/xsessions"
],
"custom_sessions": [
{
"name": "Shell",
"exec": "/usr/bin/bash"
}
],
"monitor_nums": [],
"form_on_monitors": [],
"delay_secs": 1,
"cmd-sleep": "systemctl suspend",
"cmd-reboot": "systemctl reboot",
"cmd-poweroff": "systemctl poweroff",
"gtk-theme": "Adwaita",
"gtk-icon-theme": "",
"gtk-cursor-theme": "",
"prefer-dark-theme": true,
"template-name": "",
"lang": "",
"env-vars": []
}
- the
install.sh
script changed, in order not to usesetup.py
any longer. Make sure you have 'python-build', 'python-installer', 'python-wheel' and 'python-setuptools' installed.
nwg-hello 0.2.0
- Support for the last session on a per user basis. When another user is selected, the stored session for that user is set. #14 by @loaidheach; closes #11.
nwg-hello 0.1.10
- Added zh_CN translation by @knm100.