Skip to content

Commit 06aba16

Browse files
committed
Merge branch 'main' of github.com:joshmedeski/sesh
2 parents b155b26 + 0c2dbd9 commit 06aba16

File tree

1 file changed

+51
-0
lines changed

1 file changed

+51
-0
lines changed

Formula/sesh.rb

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
# typed: false
2+
# frozen_string_literal: true
3+
4+
# This file was generated by GoReleaser. DO NOT EDIT.
5+
class Sesh < Formula
6+
desc "Smart terminal session manager"
7+
homepage "https://github.com/joshmedeski/sesh"
8+
version "0.1.8"
9+
license "MIT"
10+
11+
depends_on "tmux"
12+
depends_on "zoxide"
13+
14+
on_macos do
15+
if Hardware::CPU.arm?
16+
url "https://github.com/joshmedeski/sesh/releases/download/v0.1.8/sesh_Darwin_arm64.tar.gz"
17+
sha256 "e0d56e0023239c6012338575c9688c7b3842ba3c338a24c3a37fa9e484108d62"
18+
19+
def install
20+
bin.install "sesh"
21+
end
22+
end
23+
if Hardware::CPU.intel?
24+
url "https://github.com/joshmedeski/sesh/releases/download/v0.1.8/sesh_Darwin_x86_64.tar.gz"
25+
sha256 "3cdfc4aaee13085f17a1f11ea63fce663e35467f7ef144f01463af1bbeeafb8b"
26+
27+
def install
28+
bin.install "sesh"
29+
end
30+
end
31+
end
32+
33+
on_linux do
34+
if Hardware::CPU.arm? && Hardware::CPU.is_64_bit?
35+
url "https://github.com/joshmedeski/sesh/releases/download/v0.1.8/sesh_Linux_arm64.tar.gz"
36+
sha256 "b2d7ad4db29dc3687f9fe1f990ea609e375341a4192d8876f873b0b29b1c1ea0"
37+
38+
def install
39+
bin.install "sesh"
40+
end
41+
end
42+
if Hardware::CPU.intel?
43+
url "https://github.com/joshmedeski/sesh/releases/download/v0.1.8/sesh_Linux_x86_64.tar.gz"
44+
sha256 "d0aeb8fbecc9b0f9f60646e9ded719d4f098d0e590cde3e5aa9fe2894edc9626"
45+
46+
def install
47+
bin.install "sesh"
48+
end
49+
end
50+
end
51+
end

0 commit comments

Comments
 (0)