Julien Virey

Results 9 comments of Julien Virey

`~/.zlua` is not a config file, it's a data file, so the logical way to store it is to use `$XDG_DATA_HOME`. My guess is: * if `$XDG_DATA_HOME` is defined, use...

The default should use `$XDG_DATA_HOME`, which is defined to `~/.local/share` by default.

From: https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html > $XDG_DATA_HOME defines the base directory relative to which user specific data files should be stored. If $XDG_DATA_HOME is either not set or empty, a default equal to...

yep, that's a very important thing to handle. How about: * if `_ZL_DATA` is defined, use that * elseif `~/.zlua` exists use it * elseif `~/.zlua` does not exists and...

@hyx0329 Thanks for the new firmware. Can you share some information about the process of building a new firmware (cf: https://github.com/makerdiary/python-keyboard/issues/8)?

Nice idea. I use archlinux and debian for work. There is already a [git package for archlinux](https://aur.archlinux.org/packages/bash-it-git/). The [pkgbuild script](https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=bash-it-git) highlights some of the steps to make bash-it as a...

With https://github.com/awesomeWM/awesome/pull/3863, I can jump to the correct client with: ```lua naughty.connect_signal("destroyed", function(n, reason) if not n.clients then return end if reason == cst.notification_closed_reason.dismissed_by_user then -- If we clicked on...

FYI, I use this PR without issue to build the aur package available at https://aur.archlinux.org/packages/woeusb-ng. The pkgbuild file that show the build process is [available here](https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=woeusb-ng#n46). I'll subscribe to this...

The error is: `flag provided but not defined: -Wl,--sort-common` What are your LDFLAGS ? What is your go version ? Mine are: ``` ❯ grep LDFLAGS /etc/makepkg.conf LDFLAGS="-Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now" ❯ go...