Compare commits
No commits in common. "f17bfe77266d96bbe1034abb73b4d891f82de631" and "fbeba908d8f915608fa1a7f2c026c9a2a0e66565" have entirely different histories.
f17bfe7726
...
fbeba908d8
17 changed files with 0 additions and 162 deletions
|
@ -1,9 +0,0 @@
|
||||||
[xin_0]
|
|
||||||
file=/home/vylpes/Nextcloud/Pictures/Wallpapers/Unsplash/kalle-kortelainen-7JtgUEYVOu0.jpg
|
|
||||||
mode=0
|
|
||||||
bgcolor=#000000
|
|
||||||
|
|
||||||
[xin_1]
|
|
||||||
file=/home/vylpes/Nextcloud/Pictures/Wallpapers/Unsplash/kalle-kortelainen-7JtgUEYVOu0.jpg
|
|
||||||
mode=0
|
|
||||||
bgcolor=#000000
|
|
|
@ -1,12 +0,0 @@
|
||||||
[geometry]
|
|
||||||
posx=1930
|
|
||||||
posy=47
|
|
||||||
sizex=1898
|
|
||||||
sizey=1021
|
|
||||||
|
|
||||||
[nitrogen]
|
|
||||||
view=icon
|
|
||||||
recurse=true
|
|
||||||
sort=alpha
|
|
||||||
icon_caps=false
|
|
||||||
dirs=/home/vylpes/Nextcloud/Pictures/Wallpapers;
|
|
|
@ -1,30 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
|
|
||||||
# Save this file as ~/.config/yadm/bootstrap and make it executable. It will
|
|
||||||
# execute all executable files (excluding templates and editor backups) in the
|
|
||||||
# ~/.config/yadm/bootstrap.d directory when run.
|
|
||||||
|
|
||||||
set -eu
|
|
||||||
|
|
||||||
# Directory to look for bootstrap executables in
|
|
||||||
BOOTSTRAP_D="${BASH_SOURCE[0]}.d"
|
|
||||||
|
|
||||||
if [[ ! -d "$BOOTSTRAP_D" ]]; then
|
|
||||||
echo "Error: bootstrap directory '$BOOTSTRAP_D' not found" >&2
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
declare -a bootstraps
|
|
||||||
while IFS= read -r bootstrap; do
|
|
||||||
if [[ -x "$bootstrap" && ! "$bootstrap" =~ "##" && ! "$bootstrap" =~ ~$ ]]; then
|
|
||||||
bootstraps+=("$bootstrap")
|
|
||||||
fi
|
|
||||||
done < <(find -L "$BOOTSTRAP_D" -type f | sort)
|
|
||||||
|
|
||||||
for bootstrap in "${bootstraps[@]}"; do
|
|
||||||
if ! "$bootstrap"; then
|
|
||||||
echo "Error: bootstrap '$bootstrap' failed" >&2
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
|
|
|
@ -1,11 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
if pacman -Q paru; then
|
|
||||||
exit 0
|
|
||||||
fi
|
|
||||||
|
|
||||||
sudo pacman -S --needed base-devel
|
|
||||||
git clone https://aur.archlinux.org/paru.git /tmp/paru
|
|
||||||
cd /tmp/paru
|
|
||||||
makepkg -si
|
|
||||||
cd
|
|
||||||
rm -rf /tmp/paru
|
|
|
@ -1,8 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
while read -r line; do
|
|
||||||
if paru -Q $line; then
|
|
||||||
echo "$line installed"
|
|
||||||
else
|
|
||||||
paru -S --noconfirm $line
|
|
||||||
fi
|
|
||||||
done <$HOME/.config/yadm/files/packages.txt
|
|
|
@ -1,8 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
if [ $SHELL = '/bin/zsh' ]; then
|
|
||||||
exit 0
|
|
||||||
else
|
|
||||||
chsh --shell /bin/zsh
|
|
||||||
|
|
||||||
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ~/powerlevel10k
|
|
||||||
fi
|
|
|
@ -1,9 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
if pacman -Q docker; then
|
|
||||||
exit 0
|
|
||||||
else
|
|
||||||
sudo pacman -S --noconfirm docker
|
|
||||||
|
|
||||||
sudo usermod -aG docker vylpes
|
|
||||||
sudo systemctl enable --now docker
|
|
||||||
fi
|
|
|
@ -1,6 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
if [ $(cat /etc/pam.d/login | grep pam_gnome_keyring.so | wc -l) = "0" ]; then
|
|
||||||
sudo cp $HOME/.config/yadm/files/login /etc/pam.d/login
|
|
||||||
else
|
|
||||||
exit 0
|
|
||||||
fi
|
|
|
@ -1,5 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
mkdir -p $HOME/Documents
|
|
||||||
mkdir -p $HOME/Downloads
|
|
||||||
mkdir -p $HOME/Desktop
|
|
||||||
mkdir -p $HOME/Pictures/captures
|
|
|
@ -1,9 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
if pacman -Q virt-manager; then
|
|
||||||
exit 0
|
|
||||||
else
|
|
||||||
sudo pacman -S --noconfirm virt-manager
|
|
||||||
|
|
||||||
sudo systemctl enable --now libvirtd.socket
|
|
||||||
sudo usermod -aG libvirt vylpes
|
|
||||||
fi
|
|
|
@ -1,5 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
|
|
||||||
if command -v nvim >/dev/null 2>&1; then
|
|
||||||
nvim '+PlugInstall' '+qall'
|
|
||||||
fi
|
|
|
@ -1,6 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
if command -v nvm >/dev/null 2>&1; then
|
|
||||||
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh | bash
|
|
||||||
else
|
|
||||||
exit 0
|
|
||||||
fi
|
|
|
@ -1 +0,0 @@
|
||||||
#!/bin/bash
|
|
|
@ -1 +0,0 @@
|
||||||
yadm remote set-url origin "ssh://git@ssh.git.vylpes.xyz:222/Vylpes/dotfiles.git"
|
|
|
@ -1,9 +0,0 @@
|
||||||
#%PAM-1.0
|
|
||||||
|
|
||||||
auth requisite pam_nologin.so
|
|
||||||
auth include system-local-login
|
|
||||||
auth optional pam_gnome_keyring.so
|
|
||||||
account include system-local-login
|
|
||||||
session include system-local-login
|
|
||||||
session optional pam_gnome_keyring.so auto_start
|
|
||||||
password include system-local-login
|
|
|
@ -1,29 +0,0 @@
|
||||||
alacritty
|
|
||||||
arandr
|
|
||||||
autorandr
|
|
||||||
cups
|
|
||||||
discord
|
|
||||||
dunst
|
|
||||||
firefox
|
|
||||||
flameshot
|
|
||||||
gnome-keyring
|
|
||||||
i3-wm
|
|
||||||
i3lock
|
|
||||||
keepassxc
|
|
||||||
keepmenu
|
|
||||||
nextcloud-client
|
|
||||||
nitrogen
|
|
||||||
noto-fonts-emoji
|
|
||||||
pavucontrol
|
|
||||||
playerctl
|
|
||||||
pulseaudio-control
|
|
||||||
picom
|
|
||||||
polybar
|
|
||||||
rofi
|
|
||||||
tldr
|
|
||||||
ttf-font-awesome
|
|
||||||
ttf-hack
|
|
||||||
xclip
|
|
||||||
xorg-xinit
|
|
||||||
yt-dlp
|
|
||||||
zsh
|
|
4
.zshrc
4
.zshrc
|
@ -15,7 +15,3 @@ alias lss="ls -lah"
|
||||||
alias gco="git checkout"
|
alias gco="git checkout"
|
||||||
alias gcm="git commit -m"
|
alias gcm="git commit -m"
|
||||||
alias gss="git status -s"
|
alias gss="git status -s"
|
||||||
|
|
||||||
export NVM_DIR="$HOME/.nvm"
|
|
||||||
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
|
|
||||||
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue