This repository contains configuration files for Hyprland and related tools.
Make sure the following packages and tools are installed:
sudo pacman -S hyprland
sudo pacman -S hypridle
sudo pacman -S hyprlock
sudo pacman -S hyprpaper
sudo pacman -S waybar
sudo pacman -S grimblast-git
sudo pacman -S fastfetchWalker and Elephant tools:
yay -S walker-bin elephant elephant-providerlist elephant-desktopapplicationsSDDM Astronaut Theme:
sh -c "$(curl -fsSL https://raw.githubusercontent.com/keyitdev/sddm-astronaut-theme/master/setup.sh)"- Clone this repository into your home directory or preferred location.
- Copy the configuration files to their respective locations (e.g.,
~/.config/hyprland/,~/.config/waybar/, etc.). - Install all required packages listed above.
- Configure the SDDM Astronaut Theme as per the setup script.
- Use
Hyprpaperto set wallpapers for your monitors. - The Walker and Elephant tools provide additional menu and desktop application management.
- Grimblast is used for screenshots, and Fastfetch displays system info on launch.
- After installing the SDDM Astronaut Theme, choose the 'black hole' template and update the
black_hole.confas needed.
If you want to store Steam games on an NTFS partition in Linux, follow these steps carefully. NTFS is not fully Linux-native, so extra precautions are needed to avoid game launch issues.
Requirements: make sure to have ntfs-3g installed:
sudo pacman -S ntfs-3g- Edit
/etc/fstabto mount the NTFS partition with proper permissions. Open the file:
sudo nano /etc/fstabAdd this line (replace the UUID with your drive’s UUID):
UUID=266EA8206EA7E731 /E ntfs-3g uid=1000,gid=1000,rw,user,exec,umask=000 0 0Then mount it:
sudo mount -a- Set ownership for your user (replace bruno with your username):
sudo chown -R bruno:bruno /E- Move the Proton compatibility data to a Linux-native filesystem (to handle symlinks and permissions properly):
mkdir -p /home/bruno/SteamCompatData
mv /E/SteamLibrary/steamapps/compatdata /home/bruno/SteamCompatData/
ln -s /home/bruno/SteamCompatData /E/SteamLibrary/steamapps/compatdata- Run Steam normally. Your games will now launch from the NTFS partition, while Proton stores compatibility data safely on your Linux filesystem.
PS: Don’t forget to keep your system updated:
sudo pacman -Syu