Updates #2

Merged
wyj merged 96 commits from dev into main 2024-05-18 16:33:42 -04:00
3 changed files with 31 additions and 11 deletions
Showing only changes of commit b7a46d3e25 - Show all commits

View File

@ -51,6 +51,7 @@ packagesPacman=(
"qalculate-gtk" "qalculate-gtk"
"imagemagick" "imagemagick"
"guvcview" "guvcview"
"jq"
); );
packagesYay=( packagesYay=(

View File

@ -40,7 +40,7 @@ if [[ $(_isInstalledYay "hypridle-git") == 0 ]]; then
echo echo
fi fi
# Remove hypridle-bin # Remove hyprlock-bin
if [[ $(_isInstalledYay "hyprlock-git") == 0 ]]; then if [[ $(_isInstalledYay "hyprlock-git") == 0 ]]; then
yay --noconfirm -Rns hyprlock-git yay --noconfirm -Rns hyprlock-git
if [ -f /usr/lib/debug/usr/bin/hyprlock.debug ] ;then if [ -f /usr/lib/debug/usr/bin/hyprlock.debug ] ;then

View File

@ -1,4 +1,4 @@
# ML4W Dotfiles 2.9 BETA 4 # ML4W Dotfiles 2.9 RC1
An advanced configuration of Hyprland and Qtile for Arch Linux based distributions. This package includes an installation script to install and setup the required components. An advanced configuration of Hyprland and Qtile for Arch Linux based distributions. This package includes an installation script to install and setup the required components.
@ -46,25 +46,44 @@ The easiest way to install the ML4W Dotfiles is to use the ML4W Dotfiles Install
[You can download the app here.](https://gitlab.com/stephan-raabe/dotfiles/-/raw/main/apps/ML4W_Dotfiles_Installer.AppImage) (Right click + Save link as... into your Downloads Folder) [You can download the app here.](https://gitlab.com/stephan-raabe/dotfiles/-/raw/main/apps/ML4W_Dotfiles_Installer.AppImage) (Right click + Save link as... into your Downloads Folder)
Or with wget if your starting point is a minimal Arch Linux installation without DE:
``` ```
mkdir ~/Downloads # If Downloads folder doesn't exists # 0.) Install required packages
wget -P ~/Downloads/ https://gitlab.com/stephan-raabe/dotfiles/-/raw/main/apps/ML4W_Dotfiles_Installer.AppImage sudo pacman -S wget fuse2 # If wget or libfuse.so.2 is not installed
``` # 1.) Change to the Downloads folder
```
# Change to the Downloads folder
cd ~/Downloads cd ~/Downloads
# Make the file executable # 2.) Make the file executable
chmod +x ML4W_Dotfiles_Installer.AppImage chmod +x ML4W_Dotfiles_Installer.AppImage
# Start the App from your terminal with # 3.) Start the App from your terminal with
./ML4W_Dotfiles_Installer.AppImage ./ML4W_Dotfiles_Installer.AppImage
``` ```
Or with download the Installer App with wget if your starting point is a minimal Arch Linux with without DE from tty:
```
# 0.) Install required packages
sudo pacman -S wget fuse2 # If wget or libfuse.so.2 is not installed
# 1.) Create Downloads folder
mkdir ~/Downloads # If Downloads folder doesn't exists
# 2.) Download the installer
wget -P ~/Downloads/ https://gitlab.com/stephan-raabe/dotfiles/-/raw/main/apps/ML4W_Dotfiles_Installer.AppImage
# 3.) Change to the Downloads folder
cd ~/Downloads
# 4.) Make the file executable
chmod +x ML4W_Dotfiles_Installer.AppImage
# 5.) Start the App from your terminal with
./ML4W_Dotfiles_Installer.AppImage
```
Alternatively you can install with GIT. Alternatively you can install with GIT.
## Update ## Update