Compare commits
11 Commits
5292ef4c97
...
main
Author | SHA1 | Date | |
---|---|---|---|
7604e85f22 | |||
1ba56f86ae | |||
7c05ce0a59 | |||
aa8cf789c1 | |||
7d8dd03d45 | |||
401e3bab20 | |||
ad8be2883b | |||
5b1a58a53f | |||
bbe5f753ae | |||
95a187cb24 | |||
72671d212f |
@@ -1,8 +1,8 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
./installbasics.sh
|
./installbasics.sh
|
||||||
./installthemes.sh
|
|
||||||
./installadditions.sh
|
./installadditions.sh
|
||||||
|
./installthemes.sh
|
||||||
|
|
||||||
if getopts "v" OPTION
|
if getopts "v" OPTION
|
||||||
then
|
then
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
apk add bash zoxide neovim eza bat ristretto htop fzf py3-pip
|
apk add bash zoxide neovim eza bat ristretto htop fzf py3-pip tar xz
|
||||||
|
|
||||||
pip install hyfetch --break-system-packages
|
pip install hyfetch --break-system-packages
|
||||||
|
3
system/installlang.sh
Executable file
3
system/installlang.sh
Executable file
@@ -0,0 +1,3 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
apk add ristretto-lang thunar-lang xfce4-panel-lang xfce4-session-lang xfce4-settings-lang xfce4-terminal-lang xfconf-lang xfdesktop-lang xfwm4-lang
|
@@ -1,21 +1,50 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
|
########## ICONS ###############
|
||||||
|
### Candy
|
||||||
cd /usr/share/icons/
|
cd /usr/share/icons/
|
||||||
wget https://github.com/EliverLara/candy-icons/archive/refs/heads/master.zip
|
wget https://github.com/EliverLara/candy-icons/archive/refs/heads/master.zip
|
||||||
unzip master.zip
|
unzip master.zip
|
||||||
rm master.zip
|
rm master.zip
|
||||||
mv candy-icons-master candy-icons
|
mv candy-icons-master candy-icons
|
||||||
|
|
||||||
|
### WhiteSur
|
||||||
|
cd /root
|
||||||
|
git clone --depth=1 https://github.com/vinceliuice/WhiteSur-icon-theme
|
||||||
|
cd WhiteSur-icon-theme
|
||||||
|
./install.sh -a
|
||||||
|
cd /root
|
||||||
|
rm -rf WhiteSur-icon-theme
|
||||||
|
|
||||||
|
########## GTK THEMES ##########
|
||||||
|
### Sweet Dark
|
||||||
cd /usr/share/themes/
|
cd /usr/share/themes/
|
||||||
wget https://github.com/EliverLara/Sweet/releases/latest/download/Sweet-Dark-v40.tar.xz
|
wget https://github.com/EliverLara/Sweet/releases/latest/download/Sweet-Dark-v40.tar.xz
|
||||||
tar xf Sweet-Dark-v40.tar.xz
|
tar xf Sweet-Dark-v40.tar.xz
|
||||||
rm Sweet-Dark-v40.tar.xz
|
rm Sweet-Dark-v40.tar.xz
|
||||||
|
|
||||||
|
### WhiteSur
|
||||||
|
wget https://github.com/vinceliuice/WhiteSur-gtk-theme/raw/master/release/WhiteSur-Light.tar.xz
|
||||||
|
wget https://github.com/vinceliuice/WhiteSur-gtk-theme/raw/master/release/WhiteSur-Dark.tar.xz
|
||||||
|
tar xf WhiteSur-Light.tar.xz
|
||||||
|
tar xf WhiteSur-Dark.tar.xz
|
||||||
|
rm WhiteSur-Light.tar.xz
|
||||||
|
rm WhiteSur-Dark.tar.xz
|
||||||
|
|
||||||
|
########## CURSORS #############
|
||||||
|
### BreezeX
|
||||||
|
cd /usr/share/icons/
|
||||||
|
wget https://github.com/ful1e5/BreezeX_Cursor/releases/latest/download/BreezeX-Light.tar.xz
|
||||||
|
tar xf BreezeX-Light.tar.xz
|
||||||
|
rm BreezeX-Light.tar.xz
|
||||||
|
|
||||||
|
########## FONTS ###############
|
||||||
mkdir -p /usr/share/fonts/EnvyCodeR
|
mkdir -p /usr/share/fonts/EnvyCodeR
|
||||||
cd /usr/share/fonts/EnvyCodeR/
|
cd /usr/share/fonts/EnvyCodeR/
|
||||||
wget https://github.com/ryanoasis/nerd-fonts/releases/latest/download/EnvyCodeR.zip
|
wget https://github.com/ryanoasis/nerd-fonts/releases/latest/download/EnvyCodeR.zip
|
||||||
unzip EnvyCodeR.zip
|
unzip EnvyCodeR.zip
|
||||||
rm EnvyCodeR.zip
|
rm EnvyCodeR.zip
|
||||||
|
|
||||||
|
|
||||||
echo "theme-name=Sweet-Dark-v40" >> /etc/lightdm/lightdm-gtk-greeter.conf
|
echo "theme-name=Sweet-Dark-v40" >> /etc/lightdm/lightdm-gtk-greeter.conf
|
||||||
echo "icon-theme-name=candy-icons" >> /etc/lightdm/lightdm-gtk-greeter.conf
|
echo "icon-theme-name=candy-icons" >> /etc/lightdm/lightdm-gtk-greeter.conf
|
||||||
|
BIN
user/emptypixel.png
Normal file
BIN
user/emptypixel.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 563 B |
@@ -2,6 +2,9 @@
|
|||||||
vim.g.loaded_netrw = 1
|
vim.g.loaded_netrw = 1
|
||||||
vim.g.loaded_netrwPlugin = 1
|
vim.g.loaded_netrwPlugin = 1
|
||||||
|
|
||||||
|
-- deactivating zig fmt because it enforces spaces over tabs
|
||||||
|
vim.g.zig_fmt_autosave = 0
|
||||||
|
|
||||||
local lazypath = vim.fn.stdpath 'data' .. '/lazy/lazy.nvim'
|
local lazypath = vim.fn.stdpath 'data' .. '/lazy/lazy.nvim'
|
||||||
if not vim.loop.fs_stat(lazypath) then
|
if not vim.loop.fs_stat(lazypath) then
|
||||||
local lazyrepo = 'https://github.com/folke/lazy.nvim.git'
|
local lazyrepo = 'https://github.com/folke/lazy.nvim.git'
|
||||||
|
@@ -12,3 +12,5 @@ cp xfce-perchannel-xml/* ~/.config/xfce4/xfconf/xfce-perchannel-xml/
|
|||||||
|
|
||||||
mkdir -p ~/Pictures/Wallpapers
|
mkdir -p ~/Pictures/Wallpapers
|
||||||
wget https://w.wallhaven.cc/full/85/wallhaven-856dlk.png -P ~/Pictures/Wallpapers
|
wget https://w.wallhaven.cc/full/85/wallhaven-856dlk.png -P ~/Pictures/Wallpapers
|
||||||
|
wget https://github.com/vinceliuice/WhiteSur-wallpapers/raw/main/1080p/WhiteSur.jpg -P ~/Pictures/Wallpapers
|
||||||
|
cp emptypixel.png ~/Pictures/
|
||||||
|
8
user/whitesur-firefox.sh
Executable file
8
user/whitesur-firefox.sh
Executable file
@@ -0,0 +1,8 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
cd /tmp
|
||||||
|
git clone --depth=1 https://github.com/vinceliuice/WhiteSur-firefox-theme
|
||||||
|
cd WhiteSur-firefox-theme
|
||||||
|
./install.sh
|
||||||
|
cd ..
|
||||||
|
rm -rf WhiteSur-firefox-theme
|
Reference in New Issue
Block a user