16 lines
370 B
Bash
Executable File
16 lines
370 B
Bash
Executable File
#! /bin/bash
|
|
|
|
# Copy VSCodium settings
|
|
|
|
cp -r ./general/configs/VSCodium/* ~/.config/VSCodium/
|
|
|
|
# copy other config files
|
|
cp -r ./laptop/configs/hypr ~/.config/
|
|
cp -r ./laptop/configs/waybar ~/.config/
|
|
cp -r ./general/configs/* ~/.config/
|
|
|
|
# Copy hyprland general config
|
|
cp -r ./general/hyprland ~/.config/hypr/
|
|
|
|
echo '=> Installed all laptop config files successfully'
|