Skip to content

Releases: unixorn/lima-xbar-plugin

v1.5.0

Choose a tag to compare

@unixorn unixorn released this 26 Mar 20:00
d46e455

What's Changed

New Contributors

Full Changelog: v1.4.0...v1.5.0

v1.4.0

Choose a tag to compare

@unixorn unixorn released this 16 May 15:49
c59bffc

What's Changed

New Contributors

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

v1.3.3

Choose a tag to compare

@unixorn unixorn released this 27 Feb 23:00
9cb5083

What's Changed

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

v1.3.1

Choose a tag to compare

@unixorn unixorn released this 11 Oct 02:33
46004dd

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

Choose a tag to compare

@unixorn unixorn released this 11 Oct 02:31
8c393fb

Add ability to run arbitrary lima commands in a VM.

v1.2.0

Choose a tag to compare

@unixorn unixorn released this 03 Oct 21:18
14d9cc8

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

Enjoy the 50x speedup

Choose a tag to compare

@unixorn unixorn released this 03 Oct 00:56
3ce307a

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.