This commit is contained in:
Benjamin Palko 2024-09-30 23:13:34 -04:00
parent ba08ba58e4
commit dde95a31ef
4 changed files with 42 additions and 79 deletions

9
.gitconfig Normal file
View file

@ -0,0 +1,9 @@
[credential "https://github.com"]
helper =
helper = !/usr/bin/gh auth git-credential
[credential "https://gist.github.com"]
helper =
helper = !/usr/bin/gh auth git-credential
[user]
email = benjaminpalko@hotmail.com
name = Benjamin Palko

View file

@ -2,53 +2,50 @@
# files
files=(
".bashrc"
".zshrc"
".tool-versions"
".bashrc"
",gitconfig"
".zshrc"
".tool-versions"
)
_symlinkFiles() {
for file; do
if [ -h ~/${file} ]; then
continue
fi
if [ -f ~/${file} ]; then
rm ~/${file}
fi
ln -s ~/dotfiles/${file} ~/${file}
done;
for file; do
if [ -h ~/${file} ]; then
continue
fi
if [ -f ~/${file} ]; then
rm ~/${file}
fi
ln -s ~/dotfiles/${file} ~/${file}
done
}
# directories
directories=(
"cava"
"discocss"
"gtk-3.0"
"hypr"
"kitty"
"neofetch"
"nvim"
"pipewire"
"rofi"
"swappy"
"swaync"
"wal"
"waybar"
"cava"
"hypr"
"kitty"
"neofetch"
"nvim"
"rofi"
"swappy"
"swaync"
"wal"
"waybar"
)
_symlinkDirs() {
for dir; do
if [ -h ~/.config/${dir} ]; then
continue
fi
if [ -d ~/.config/${dir}/ ]; then
echo "Deleting existing directory ${dir}"
rm -rf ~/.config/${dir}/
fi
ln -s ~/dotfiles/${dir}/ ~/.config/
done;
for dir; do
if [ -h ~/.config/${dir} ]; then
continue
fi
if [ -d ~/.config/${dir}/ ]; then
echo "Deleting existing directory ${dir}"
rm -rf ~/.config/${dir}/
fi
ln -s ~/dotfiles/${dir}/ ~/.config/
done
}
_symlinkFiles "${files[@]}"
_symlinkDirs "${directories[@]}"

View file

@ -1,40 +0,0 @@
/**
* @name Pywal
* @author Baobeld
* @description Uses pywal colors
* @version 0.0.2
*/
@import url("/home/benjamin/.cache/wal/colors.css");
:root {
background-color: transparent;
/* opacity: 0.6; */
--background-primary: transparent;
--background-primary-alt: transparent;
--background-secondary: rgba(0, 0, 0, 0.05);
--background-secondary-alt: rgba(0, 0, 0, 0.05);
--background-tertiary: rgba(0, 0, 0, 0.1);
--background-tertiary-alt: rgba(0, 0, 0, 0.1);
--bg-overlay-2: rgba(0, 0, 0, 0.1);
--scrollbar-auto-track: rgba(0, 0, 0, 0.1);
--scrollbar-auto-thumb: rgba(0, 0, 0, 0.75);
--primary-800: rgba(0, 0, 0, 0.15);
/* --interactive-active: var(--color7); */
/* --interactive-hover: var(--color7); */
/* --interactive-muted: var(--color7); */
/* --interactive-normal: var(--color7); */
}
.userProfileOuterUnthemed__9741c {
background-color: rgba(0, 0, 0, 0.1);
}
.userPanelInnerThemed__651e4 {
background: rgba(0, 0, 0, 0.2);
}
.themedBackground__3a4c0 {
background: rgba(0, 0, 0, 0.25);
}

View file

@ -1,3 +0,0 @@
[Settings]
gtk-application-prefer-dark-theme=1