os/bricks/omz.brick

16 lines
284 B
Plaintext
Raw Normal View History

2024-02-13 09:55:29 +01:00
#!/bin/sh
# omz brick (pacakge is GPL3 only, omz itself is MIT (as of jan 2024))
# made by alice
2024-02-13 10:26:55 +01:00
info() {
echo a nice shell framework
}
2024-02-13 09:55:29 +01:00
pkgs() {
echo sh curl git zsh
}
install() {
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
}