Merge Arch config as main #1
4 changed files with 42 additions and 79 deletions
9
.gitconfig
Normal file
9
.gitconfig
Normal 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
|
||||||
|
|
@ -2,53 +2,50 @@
|
||||||
|
|
||||||
# files
|
# files
|
||||||
files=(
|
files=(
|
||||||
".bashrc"
|
".bashrc"
|
||||||
".zshrc"
|
",gitconfig"
|
||||||
".tool-versions"
|
".zshrc"
|
||||||
|
".tool-versions"
|
||||||
)
|
)
|
||||||
|
|
||||||
_symlinkFiles() {
|
_symlinkFiles() {
|
||||||
for file; do
|
for file; do
|
||||||
if [ -h ~/${file} ]; then
|
if [ -h ~/${file} ]; then
|
||||||
continue
|
continue
|
||||||
fi
|
fi
|
||||||
if [ -f ~/${file} ]; then
|
if [ -f ~/${file} ]; then
|
||||||
rm ~/${file}
|
rm ~/${file}
|
||||||
fi
|
fi
|
||||||
ln -s ~/dotfiles/${file} ~/${file}
|
ln -s ~/dotfiles/${file} ~/${file}
|
||||||
done;
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
# directories
|
# directories
|
||||||
directories=(
|
directories=(
|
||||||
"cava"
|
"cava"
|
||||||
"discocss"
|
"hypr"
|
||||||
"gtk-3.0"
|
"kitty"
|
||||||
"hypr"
|
"neofetch"
|
||||||
"kitty"
|
"nvim"
|
||||||
"neofetch"
|
"rofi"
|
||||||
"nvim"
|
"swappy"
|
||||||
"pipewire"
|
"swaync"
|
||||||
"rofi"
|
"wal"
|
||||||
"swappy"
|
"waybar"
|
||||||
"swaync"
|
|
||||||
"wal"
|
|
||||||
"waybar"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
_symlinkDirs() {
|
_symlinkDirs() {
|
||||||
for dir; do
|
for dir; do
|
||||||
if [ -h ~/.config/${dir} ]; then
|
if [ -h ~/.config/${dir} ]; then
|
||||||
continue
|
continue
|
||||||
fi
|
fi
|
||||||
if [ -d ~/.config/${dir}/ ]; then
|
if [ -d ~/.config/${dir}/ ]; then
|
||||||
echo "Deleting existing directory ${dir}"
|
echo "Deleting existing directory ${dir}"
|
||||||
rm -rf ~/.config/${dir}/
|
rm -rf ~/.config/${dir}/
|
||||||
fi
|
fi
|
||||||
ln -s ~/dotfiles/${dir}/ ~/.config/
|
ln -s ~/dotfiles/${dir}/ ~/.config/
|
||||||
done;
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
_symlinkFiles "${files[@]}"
|
_symlinkFiles "${files[@]}"
|
||||||
_symlinkDirs "${directories[@]}"
|
_symlinkDirs "${directories[@]}"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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);
|
|
||||||
}
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
[Settings]
|
|
||||||
gtk-application-prefer-dark-theme=1
|
|
||||||
|
|
||||||
Loading…
Add table
Reference in a new issue