Releases: nwg-piotr/nwg-hello
Releases · nwg-piotr/nwg-hello
nwg-hello 0.3.0
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.
nwg-hello 0.1.9
Added the "template-name"
config key, to allow use of own templates.
- Find the built-in
/usr/lib/python3.xx/site-packages/nwg_hello-x.y.z-py3.xx.egg/nwg_hello/template.glade
file; - copy it to a folder somewhere in
~/
, edit and place as/etc/nwg-hello/file-name.glade
; - set your
file-name.glade
as the"template-name"
value. Leave blank to use the built-in template.
Remember not to change original widget IDs in the template.
nwg-hello 0.1.8
Avoid crash on non-ASCII characters in user dirs; #7