copy-internal-ip-to-clipboardby Bjorn Beishline// Name: Internal IP// Description: Get Internal IP address and copy it to the clipboard// Author: Bjorn Beishline import "@johnlindquist/kit"; try { let ip = (await $`ifconfig -l | xargs -n1 ipconfig getifaddr`)?._combined; copy(ip)} catch (error) { copy(error?._combined)}