Compare commits

..

18 Commits

Author SHA1 Message Date
7604e85f22 Updated nvim config 2025-01-27 21:06:27 +01:00
1ba56f86ae Added script for installing lang packages 2024-07-29 20:48:51 +02:00
7c05ce0a59 Changed WhiteSur icon theme to alternative version 2024-07-29 20:43:20 +02:00
aa8cf789c1 fix: Made whitesur-firefox.sh executable '^^ 2024-07-28 17:11:29 +02:00
7d8dd03d45 Added utility script to install WhiteSur firefox theme 2024-07-28 17:10:31 +02:00
401e3bab20 Added BreezeX Light cursors 2024-07-28 17:03:20 +02:00
ad8be2883b Fixed WhiteSur Icons installation 2024-07-28 17:00:17 +02:00
5b1a58a53f Added WhiteSur background to user 2024-07-28 15:52:07 +02:00
bbe5f753ae Added emptypixel.png as optional panel background for user 2024-07-28 15:33:48 +02:00
95a187cb24 Added WhiteSur themes 2024-07-28 15:31:14 +02:00
72671d212f Installing themes after additions due to build dependencies of WhiteSur 2024-07-28 15:22:43 +02:00
5292ef4c97 Fixed wrong service name in virtualboxsetup 2024-07-27 19:07:40 +02:00
0f1b8e63bc Added utility script to sort mirrors by speed 2024-07-27 19:07:07 +02:00
11935ab4e1 Added hyfetch to additions 2024-07-26 21:42:12 +02:00
d8d0287651 Added fzf to additions 2024-07-26 20:43:33 +02:00
f7db5f0314 Moved candy-icons-master to candy-icons 2024-07-26 20:40:54 +02:00
fcfbbb6f5b Added utility script for full system install 2024-07-26 20:37:05 +02:00
115f977cd3 Changed desktop background to relative path 2024-07-26 18:50:29 +02:00
12 changed files with 77 additions and 4 deletions

12
fastestmirror.sh Normal file
View File

@@ -0,0 +1,12 @@
#!/bin/sh
data=""
for s in $(wget -qO- https://mirrors.alpinelinux.org/mirrors.txt); do
t=$(time -f "%E" wget -q $s/MIRRORS.txt -O /dev/null 2>&1)
echo "$s was $t"
data="$data$t $s\n"
done
echo "===RESULTS==="
echo -e $data | sort

13
system/full.sh Executable file
View File

@@ -0,0 +1,13 @@
#!/bin/sh
./installbasics.sh
./installadditions.sh
./installthemes.sh
if getopts "v" OPTION
then
if [ "$OPTION" = "v" ]
then
./virtualboxsetup.sh
fi
fi

View File

@@ -1,3 +1,5 @@
#!/bin/sh #!/bin/sh
apk add bash zoxide neovim eza bat ristretto htop apk add bash zoxide neovim eza bat ristretto htop fzf py3-pip tar xz
pip install hyfetch --break-system-packages

3
system/installlang.sh Executable file
View 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

View File

@@ -1,20 +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
### 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

View File

@@ -3,7 +3,7 @@
apk add virtualbox-guest-additions virtualbox-guest-additions-x11 apk add virtualbox-guest-additions virtualbox-guest-additions-x11
rc-update add virtualbox-guest-additions boot rc-update add virtualbox-guest-additions boot
rc-update add virtualbox-guest-additions-x11 boot rc-update add virtualbox-drm-client boot
service virtualbox-guest-additions start service virtualbox-guest-additions start
service virtualbox-drm-client start service virtualbox-drm-client start

BIN
user/emptypixel.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 563 B

View File

@@ -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'

View File

@@ -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
View 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

View File

@@ -7,7 +7,7 @@
<property name="workspace0" type="empty"> <property name="workspace0" type="empty">
<property name="color-style" type="int" value="0"/> <property name="color-style" type="int" value="0"/>
<property name="image-style" type="int" value="5"/> <property name="image-style" type="int" value="5"/>
<property name="last-image" type="string" value="/home/hannah/Pictures/Wallpapers/wallhaven-856dlk.png"/> <property name="last-image" type="string" value="~/Pictures/Wallpapers/wallhaven-856dlk.png"/>
</property> </property>
<property name="workspace1" type="empty"> <property name="workspace1" type="empty">
<property name="color-style" type="int" value="0"/> <property name="color-style" type="int" value="0"/>

View File

@@ -3,7 +3,7 @@
<channel name="xsettings" version="1.0"> <channel name="xsettings" version="1.0">
<property name="Net" type="empty"> <property name="Net" type="empty">
<property name="ThemeName" type="string" value="Sweet-Dark-v40"/> <property name="ThemeName" type="string" value="Sweet-Dark-v40"/>
<property name="IconThemeName" type="string" value="candy-icons-master"/> <property name="IconThemeName" type="string" value="candy-icons"/>
<property name="DoubleClickTime" type="empty"/> <property name="DoubleClickTime" type="empty"/>
<property name="DoubleClickDistance" type="empty"/> <property name="DoubleClickDistance" type="empty"/>
<property name="DndDragThreshold" type="empty"/> <property name="DndDragThreshold" type="empty"/>