88 lines
2.8 KiB
TypeScript
88 lines
2.8 KiB
TypeScript
import { dot, DotOption } from "./scripts/dot.ts";
|
|
|
|
const common: DotOption = {
|
|
link: {
|
|
".gitconfig": "gitconfig",
|
|
".config/omz": "omz",
|
|
".config/Code/User/settings.json": "Code/User/settings.json",
|
|
".config/nvim": "nvim",
|
|
".tmux.conf": "tmux.conf",
|
|
".tmux/themes": "tmux/themes",
|
|
".zshrc": "zshrc"
|
|
}
|
|
};
|
|
|
|
const darwin: DotOption = {
|
|
hostname: "MacBook-Pro.local",
|
|
link: {
|
|
...common.link,
|
|
".config/alacritty": "darwin/alacritty",
|
|
".local/bin/ufetch": "darwin/bin/ufetch"
|
|
}
|
|
};
|
|
|
|
const linux: DotOption = {
|
|
hostname: ["office2", "T490s"],
|
|
install: [
|
|
`sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"`,
|
|
`sh -c "git clone https://github.com/addy-dclxvi/gtk-theme-collections ~/.themes"`,
|
|
"yay -Syu",
|
|
`yay -S --needed
|
|
sxhkd bspwm rofi-git dunst-git visual-studio-code-bin
|
|
picom-ibhagwan-git alacritty zsh maim gtk-engine-murrine
|
|
xclip xdotool google-chrome pulseaudio polybar-git
|
|
gnome-keyring pasystray polkit-gnome nerd-fonts-terminus
|
|
gnome-settings-daemon feh dex sassc ttf-nanum acpilight
|
|
fcitx5 fcitx5-qt fcitx5-gtk fcitx5-hangul fcitx5-anthy
|
|
kcm-fcitx5 numix-gtk-theme-git numix-circle-icon-theme-git
|
|
telegram-desktop nautilus eog smplayer smplayer-skins transgui-qt
|
|
qt5-styleplugins xdg-user-dirs slim network-manager-applet bc
|
|
glava conky jq xdo ttf-roboto`
|
|
],
|
|
link: {
|
|
...common.link,
|
|
".config/alacritty": "linux/alacritty",
|
|
".local/bin/ufetch": "linux/bin/ufetch",
|
|
".config/bspwm": "linux/bspwm",
|
|
".config/dunst": "linux/dunst",
|
|
".config/picom": "linux/picom",
|
|
".config/polybar": "linux/polybar",
|
|
".config/rofi": "linux/rofi",
|
|
".config/sxhkd": "linux/sxhkd",
|
|
".config/fcitx5": "linux/fcitx5",
|
|
".config/dconf": "linux/dconf",
|
|
".config/systemd": "linux/systemd",
|
|
".config/wallpaper": "wallpaper",
|
|
".config/glava": "linux/glava",
|
|
".xinitrc": "linux/xinitrc",
|
|
".conkyrc": "linux/conkyrc",
|
|
".jelly-conky": "linux/jelly-conky",
|
|
".themes": "linux/themes",
|
|
".bash_profile": "linux/bash_profile",
|
|
".pam_environment": "linux/pam_environment",
|
|
".Xmodmap": "linux/Xmodmap",
|
|
".Xresources": "linux/Xresources"
|
|
}
|
|
};
|
|
|
|
const linuxHiDPI: DotOption = {
|
|
...linux,
|
|
hostname: "MBP",
|
|
link: {
|
|
...linux.link,
|
|
".config/dconf": "linux-hidpi/dconf",
|
|
".config/dunst": "linux-hidpi/dunst",
|
|
".config/picom": "linux-hidpi/picom",
|
|
".pam_environment": "linux-hidpi/pam_environment",
|
|
".Xresources": "linux-hidpi/Xresources",
|
|
".config/glava": "linux-hidpi/glava",
|
|
".conkyrc": "linux-hidpi/conkyrc"
|
|
}
|
|
};
|
|
|
|
try {
|
|
await dot(Deno.args, [linux, linuxHiDPI, darwin]);
|
|
} catch (err) {
|
|
console.log(err.message);
|
|
}
|