blob: 3c794c4ad05721f98f3fc36d7c813b44f15f8a83 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/fish
. (dirname (status filename))/util.fish
install-deps git dart-sass libastal-gjs-git libastal-meta npm curl libnotify ttf-material-symbols-variable-git ttf-jetbrains-mono-nerd ttf-rubik-vf pacman-contrib
install-optional-deps 'uwsm (for systems using uwsm)' 'yay (AUR package management)' 'fd (launcher file search)' 'tod-bin (launcher todo action)' 'wl-clipboard (clipboard support)' 'foot (opening stuff in terminal)'
set -l shell $C_DATA/shell
# Update/Clone repo
update-repo shell $shell
cd $shell || exit
npm install
log 'Done.'
|