Skip to content

Commit 5b18454

Browse files
author
Prime Again
committed
automated dev commit
1 parent b5b9d9c commit 5b18454

File tree

8 files changed

+19
-1
lines changed

8 files changed

+19
-1
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

init

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
git submodule init
2+
git submodule update
3+
pushd env/.config/nvim
4+
git checkout master
5+
popd
6+
cd tmux-sessionizer
7+
git checkout master
8+
cd ..
9+

runs/ghostty

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,15 @@
11
#!/usr/bin/env bash
22

3+
sudo apt update
4+
sudo apt install llvm lld llvm-dev liblld-dev clang libclang-dev libglib2.0-dev libgtk-4-dev libadwaita-1-dev git
5+
6+
wget https://ziglang.org/download/0.13.0/zig-linux-x86_64-0.13.0.tar.xz -O /tmp/zig.tar.xz
7+
tar -xvf /tmp/zig.tar.xz -C $HOME/.local
8+
export PATH="$HOME/.local/zig-linux-x86_64-0.13.0:$PATH"
9+
310
git clone git@github.com:ghostty-org/ghostty.git $HOME/personal/ghostty
411

512
(
613
cd $HOME/personal/ghostty
7-
zig build -Dapp-runtime=glfw run
14+
zig build -p $HOME/.local -Doptimize=ReleaseFast
815
)

runs/zsh

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#!/usr/bin/env bash
22

33
sudo apt install zsh
4+
hash -r
5+
sudo chsh -s $(which zsh)
46
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
57

0 commit comments

Comments
 (0)