this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

add auto-terminal-profile formula

+26 -1
+1 -1
.github/workflows/tests.yml
··· 10 10 test-bot: 11 11 strategy: 12 12 matrix: 13 - os: [ ubuntu-22.04, macos-13, macos-15 ] 13 + os: [ macos-13, macos-14, macos-15, macos-26 ] 14 14 runs-on: ${{ matrix.os }} 15 15 permissions: 16 16 actions: read
+25
Formula/auto-terminal-profile.rb
··· 1 + class AutoTerminalProfile < Formula 2 + desc "Automatically switch Terminal profiles with macOS dark/light mode" 3 + homepage "https://github.com/patrik-csak/auto-terminal-profile" 4 + url "https://github.com/patrik-csak/auto-terminal-profile/archive/refs/tags/v7.0.0.tar.gz" 5 + sha256 "7f056da783f0924c5d7b33ec4a1469a76ae735772d7e06be667a3e9572ea3811" 6 + license "MIT" 7 + 8 + depends_on "cormacrelf/tap/dark-notify" 9 + depends_on :macos 10 + depends_on "node" 11 + 12 + def install 13 + system "npm", "install", *std_npm_args 14 + bin.install_symlink Dir["#{libexec}/bin/*"] 15 + end 16 + 17 + service do 18 + run [ 19 + Formula["cormacrelf/tap/dark-notify"].opt_bin/"dark-notify", 20 + "-c", 21 + "#{opt_bin}/auto-terminal-profile update $1", 22 + ] 23 + keep_alive successful_exit: true 24 + end 25 + end