Piotr Miller

Results 172 comments of Piotr Miller

Sorry, I know nothing about Fedora. According to the [gotk3 Wiki](https://github.com/gotk3/gotk3/wiki/Installing-on-Linux) you need: ``` sudo dnf install gtk3-devel cairo-devel glib-devel ``` You could also check if [the binary](https://github.com/nwg-piotr/nwg-menu/releases/download/v0.1.1/nwg-menu-v0.1.1_x86_64.tar.gz) works for...

> mkdir: cannot create directory '/usr/share/nwg-menu': Permission denied Looks as if you missed `sudo` before `make install`, but I know nothing about Mandriva. Maybe you need to use `sudo` also...

If I had to add this feature to the dock, I would do it together with remembering the floating state, workspace and output, and use the same cache file -...

Could you show me the command you start the dock with in the sway config file? Also: which dock version do you use?

I have no idea what to say. It works as expected on my side. BTW: turning exclusive zone on (`-x`) only makes sense if you use the dock in the...

Running external commands in golang sucks, as you can not give env vars and the command together. I'll try to improve parsing, as soon as I'm back from holiday (after...

@soreau In case you're interested: I've coded the alternative `nwgocc` command in Go. For now it won't work standalone (needs `nwgcc` installed), but it executes twice as fast as the...

Fingers crossed! The damned gtkmm still gives me a headache. ;) In the meantime I developed a full GUI, and merged all the stuff from the `preferences` branch a minute...

Well, each "defaults" are being added to prevent the panel from crashing in case some keys are missing from the config file. The provided config is very basic, and honestly,...

Well, I'm not the author of this module, but it seems that the whole Gtk.EventBox has the `root-css-name` name property, and `css-name` belongs to the Gtk.Box inside: ```python class Tray(Gtk.EventBox):...