This commit is contained in:
Stephan Raabe 2024-05-07 21:02:31 +02:00
parent 176a8671f4
commit 72fca9a386
12 changed files with 91 additions and 9 deletions

View File

@ -135,7 +135,7 @@ cat ~/.cache/wal/sequences
# ----------------------------------------------------- # -----------------------------------------------------
echo "" echo ""
if [[ $(tty) == *"pts"* ]]; then if [[ $(tty) == *"pts"* ]]; then
pfetch fastfetch
else else
if [ -f /bin/qtile ]; then if [ -f /bin/qtile ]; then
echo "Start Qtile X11 with command Qtile" echo "Start Qtile X11 with command Qtile"

View File

@ -40,5 +40,8 @@ fi
if [ -d ~/dotfiles-versions/$version/swappy ]; then if [ -d ~/dotfiles-versions/$version/swappy ]; then
_installSymLink eww ~/.config/eww ~/dotfiles/eww/ ~/.config _installSymLink eww ~/.config/eww ~/dotfiles/eww/ ~/.config
fi fi
if [ -d ~/dotfiles-versions/$version/fastfetch ]; then
_installSymLink fastfetch ~/.config/fastfetch ~/dotfiles/fastfetch/ ~/.config
fi
echo ":: Symbolic links created." echo ":: Symbolic links created."
echo echo

View File

@ -53,10 +53,10 @@ packagesPacman=(
"guvcview" "guvcview"
"jq" "jq"
"rofi-wayland" "rofi-wayland"
"fastfetch"
); );
packagesYay=( packagesYay=(
"pfetch"
"bibata-cursor-theme" "bibata-cursor-theme"
"trizen" "trizen"
"pacseek" "pacseek"

View File

@ -12,9 +12,7 @@ packagesPacman=(
); );
packagesYay=( packagesYay=(
"swww"
"wlogout" "wlogout"
"nwg-look" "nwg-look"
"emote"
"eww" "eww"
); );

View File

@ -1 +1 @@
2.9 2.9.1BETA1

View File

@ -1 +1 @@
2900 2910

View File

@ -1,3 +1,9 @@
Version 2.9.1
https://gitlab.com/stephan-raabe/dotfiles/-/releases/2.9
--------------------------------------------------------
- Hyprpaper is the default wallpaper engine. swww will not be installed by the installer anymore. You can still switch to swww in the Dotfiles Settings App (System tab) but you need to install swww manually with yay -S swww
- pfetch has been replaced with fastfetch
Version 2.9 Version 2.9
https://gitlab.com/stephan-raabe/dotfiles/-/releases/2.9 https://gitlab.com/stephan-raabe/dotfiles/-/releases/2.9
-------------------------------------------------------- --------------------------------------------------------

View File

@ -1,11 +1,12 @@
#!/bin/bash #!/bin/bash
if [[ "$1" == "--welcome" ]]; then if [[ "$1" == "--welcome" ]]; then
$HOME/dotfiles/apps/ML4W_Welcome-x86_64.AppImage $HOME/dotfiles/apps/ML4W_Welcome-x86_64.AppImage &
elif [[ "$1" == "--dotfiles" ]]; then elif [[ "$1" == "--dotfiles" ]]; then
$HOME/dotfiles/apps/ML4W_Dotfiles_Settings-x86_64.AppImage $HOME/dotfiles/apps/ML4W_Dotfiles_Settings-x86_64.AppImage &
elif [[ "$1" == "--hyprland" ]]; then elif [[ "$1" == "--hyprland" ]]; then
$HOME/dotfiles/apps/ML4W_Hyprland_Settings-x86_64.AppImage $HOME/dotfiles/apps/ML4W_Hyprland_Settings-x86_64.AppImage &
else else
echo "ERROR: $1 not found" echo "ERROR: $1 not found"
fi fi
$HOME/dotfiles/eww/ml4w-sidebar/launch.sh &

20
fastfetch/config.jsonc Normal file
View File

@ -0,0 +1,20 @@
{
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json",
"logo": {
"type": "small"
},
"modules": [
"title",
"os",
"kernel",
"uptime",
"packages",
"memory",
"shell",
"display",
"de",
"wmtheme",
"font",
"cpu"
]
}

54
setup.sh Executable file
View File

@ -0,0 +1,54 @@
#!/bin/bash
clear
# Some colors
GREEN='\033[0;32m'
NONE='\033[0m'
# Header
echo -e "${GREEN}"
cat <<"EOF"
____ _
/ ___| ___| |_ _ _ _ __
\___ \ / _ \ __| | | | '_ \
___) | __/ |_| |_| | |_) |
|____/ \___|\__|\__,_| .__/
|_|
EOF
echo "for ML4W Hyprland Settings App"
echo
echo -e "${NONE}"
echo "This script will download the ML4W Dotfiles and start the installation."
echo
while true; do
read -p "DO YOU WANT TO START THE INSTALLATION NOW? (Yy/Nn): " yn
case $yn in
[Yy]* )
echo "Installation started."
echo
break;;
[Nn]* )
echo "Installation canceled."
exit;
break;;
* ) echo "Please answer yes or no.";;
esac
done
# Change into your Downloads directory
cd ~/Downloads
# Remove existing folder
if [ -d ~/Downloads/dotfiles ] ;then
rm -rf ~/Downloads/dotfiles
fi
# Clone the packages
git clone --depth 1 https://gitlab.com/stephan-raabe/dotfiles.git
# Change into the folder
cd ml4w-hyprland-settings
# Start the script
./install.sh