feat: hyprland fix error on new version & change wallpaper to video wallpaper

This commit is contained in:
grassblock 2025-01-17 13:54:22 +08:00
parent 2976fbab63
commit fadb073153
5 changed files with 140 additions and 16 deletions

View file

@ -0,0 +1,11 @@
#!/bin/bash
# Define the output file
output_file="$HOME/.config/hypr/conf/env.conf"
# Write Info into file
echo -e "# This file was imported from envvars config in .config .\n# Don't edit this file! This file would be override by import-env script.\n" > "$output_file"
# Use sed to process all .conf files in the directory
sed '/^#/! s/^\([^=]\+\)=\(.*\)$/env=\1,\2/' ~/.config/environment.d/*.conf >> "$output_file"