Follow guidelines from GitHub: https://docs.github.com/en/authentication/connecting-to-github-with-ssh/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent
- Add ssh config
# Default GitHub
Host github.com
HostName github.com
User git
Follow guidelines from GitHub: https://docs.github.com/en/authentication/connecting-to-github-with-ssh/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent
# Default GitHub
Host github.com
HostName github.com
User git
local MICROPHONE_DEVICE_NAME = "MacBook Pro Microphone" | |
function detectAirPods(event) | |
if event ~= "dOut" and event ~= "dIn " then | |
return | |
end | |
local device_name = hs.audiodevice.current().name | |
if device_name:find("AirPods") == nil then | |
return |
FROM alpine | |
LABEL authors="Trung-DV" | |
WORKDIR /pr | |
RUN apk add --no-cache git github-cli | |
COPY ./entrypoint.sh entrypoint.sh | |
ENTRYPOINT ["./entrypoint.sh"] |