Chigozirim
Chigozirim
The `flatc` compiler does not use the version included by this plugin. It goes by the version of the compiler. In my case, I was using flatc compiler version `1.11.0`,...
Dear maintainer, the best way to add a dependency from a plugin is to use one of the recommended ways mentioned in this [gradle](https://guides.gradle.org/implementing-gradle-plugins/#providing_default_dependencies_for_plugins) document. ```gradle configurations { pluginTool {...
Ironically, not saving the configuration is faster than saving it. **With saving** ``` ➜ for i in {1..5}; do /usr/bin/time zsh -i -c exit; done 1.62user 0.28system 0:01.86elapsed 102%CPU (0avgtext+0avgdata...
Use a proxy and only allow the client's IP address. You can also use a cookie which is set by your proxy, then block all attempts to signup, which do...
I use the following workaround: ```sh if [[ ! -o login && -n "$COCKPIT_REMOTE_PEER" && -z "$__COCKPIT_SHELL" ]]; then __COCKPIT_SHELL=1 exec $SHELL -l fi ``` _I added it to my...
I think managing [zram](https://wiki.archlinux.org/title/Zram#) would be out of the scope of this project. I propose that rather than offering zram specifically, just allow people to choose an alternate sync location....
@eduardoeae how does the speed compare to the current use of tmpfs? Any noticeable difference?
Still an error in there. The correct command is: ```sh btrfs subvolume create -p $TOP/.snapshots/@.snapshots ```
At the time I was using Ubuntu 15.04 and I think Qt 4.5. I mostly work on windows now so I haven't had time to test again. I will see...
Hey guys I faced this [issue](https://github.com/mviereck/x11docker/issues/345) as well when creating the [archlinux container](https://github.com/xfce-test/container-archlinux) for xfce. The solution is to copy these [files](https://github.com/xfce-test/container-archlinux/tree/main/container/etc/xdg/xfce4/xfconf/xfce-perchannel-xml) into `/etc/xdg/xfce4/xfconf/xfce-perchannel-xml` folder. It's more of a hack...