Skip to content

Commit 0bc2ba3

Browse files
committed
feat: add ramalama installed from brew on fist login after DX
1 parent 98a6f7b commit 0bc2ba3

2 files changed

Lines changed: 18 additions & 0 deletions

File tree

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
[Unit]
2+
Description=Run bluefin-dx-brew once on user login
3+
4+
[Service]
5+
Type=oneshot
6+
ExecStart=/usr/libexec/bluefin-dx-brew
7+
8+
[Install]
9+
WantedBy=default.target
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#!/bin/bash
2+
# Install Ramalama from homebrew
3+
# This script will run on login and install Ramalama if not already installed
4+
if ! command -v ramalama &> /dev/null; then
5+
echo "Ramalama is not installed. Installing now..."
6+
brew install ramalama
7+
else
8+
echo "Ramalama is already installed."
9+
fi

0 commit comments

Comments
 (0)