1
0

Added config for rofi on tokyo

Added sway keybind to filter windows
Updated installer script to handle new files
This commit is contained in:
2025-09-25 23:36:12 +01:00
parent ae69d852fe
commit 21758f9cc5
4 changed files with 209 additions and 8 deletions

20
dots
View File

@@ -24,8 +24,11 @@ Install() {
case $HOSTNAME in
kanto|tokyo)
mkdir -p "$1/.config/sway"
mkdir -p "$1/.config/rofi"
cp "config/sway/$HOSTNAME.sway" "$1/.config/sway/config"
cp "config/sway/$HOSTNAME.sway" "$1/.config/sway/config"
cp "config/rofi/$HOSTNAME.rofi" "$1/.config/rofi/config.rasi"
cp "config/rofi/$HOSTNAME.theme" "$1/.config/rofi/$HOSTNAME.rasi"
;;
esac
}
@@ -35,13 +38,20 @@ Pull() {
#
echo "[Info] :: Pulling dotfile changes from $1"
cp -r "$1/.config/nvim" "config/"
cp "$1/.config/starship.toml" "config/starship.toml"
cp "$1/.config/sway/config" "config/sway/$HOSTNAME.sway"
cp "$1/.bashrc" "bashrc"
cp "$1/.bash_profile" "bash_profile"
cp "$1/.bash_aliases" "bash_aliases"
cp -r "$1/.config/nvim" "config/"
cp "$1/.config/starship.toml" "config/starship.toml"
case $HOSTNAME in
kanto|tokyo)
cp "$1/.config/sway/config" "config/sway/$HOSTNAME.sway"
cp "$1/.config/rofi/config.rasi" "config/rofi/$HOSTNAME.rofi"
cp "$1/.config/rofi/$HOSTNAME.rasi" "config/rofi/$HOSTNAME.theme"
;;
esac
}
INSTALL_DIR=${2:-$HOME}