Skip to content

Releases: unixorn/lima-xbar-plugin

v1.4.0

16 May 15:49
c59bffc
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.3.3...v1.4.0

v1.3.3

27 Feb 23:00
9cb5083
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.3.1...v1.3.3

v1.3.1

11 Oct 02:33
46004dd
Compare
Choose a tag to compare

brew doesn't always use /usr/local/bin any more, and macOS doesn't pass the $PATH from .zshrc/.bashrc to GUI applications which caused problems with a brew-installed version of lima.

prep_environment_for_lima() now adds a list of potential directories to $PATH if they exist and are directories - currently /usr/local/bin, /opt/homebrew/bin and /opt/local/bin.

Closes #24

v1.3.0

11 Oct 02:31
8c393fb
Compare
Choose a tag to compare

Add ability to run arbitrary lima commands in a VM.

v1.2.0

03 Oct 21:18
14d9cc8
Compare
Choose a tag to compare

Adds a menu option to pull an arbitrary docker image into one of your Lima VMs.

Enjoy the 50x speedup

03 Oct 00:56
3ce307a
Compare
Choose a tag to compare

Rewrite in Python, mainly because the bash code was starting to get too large to work with comfortably, and Python's way more maintainable.

On top of that, the original bash version was slow, because there were a lot of cases where it was running lima nerdctl XYZ | jq to parse out information about containers and images, and it wasn't caching the output.

The python version caches the image and container information, and is much faster - 0.355 seconds on my MBP, the shell version takes 17.332 seconds.