Skip to content

Releases: nwg-piotr/nwg-hello

nwg-hello 0.3.0

10 Nov 15:12
Compare
Choose a tag to compare
  • Added layer and keyboard-mode config keys for gtk-layer-shell; closes #30

nwg-hello 0.2.5

03 Nov 23:57
1ec89bb
Compare
Choose a tag to compare
  • Added "time-format" and "date-format" config keys, to allow own formatting; closes #28.

nwg-hello 0.2.4

24 Sep 00:50
5ce3a62
Compare
Choose a tag to compare

nwg-hello 0.2.3

19 Sep 23:52
5ab84d0
Compare
Choose a tag to compare
  • 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

16 Jun 01:12
Compare
Choose a tag to compare

nwg-hello 0.2.1

03 Jun 23:04
dc8287c
Compare
Choose a tag to compare
  • 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 use setup.py any longer. Make sure you have 'python-build', 'python-installer', 'python-wheel' and 'python-setuptools' installed.

nwg-hello 0.2.0

28 May 23:27
Compare
Choose a tag to compare
  • 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

15 Apr 22:33
Compare
Choose a tag to compare
  • Added zh_CN translation by @knm100.

nwg-hello 0.1.9

08 Apr 00:01
Compare
Choose a tag to compare

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

22 Mar 00:38
0d207e1
Compare
Choose a tag to compare

Avoid crash on non-ASCII characters in user dirs; #7