mirror of
https://github.com/JaKooLit/Debian-Hyprland.git
synced 2025-12-21 18:20:13 +01:00
10 lines
490 B
Bash
Executable File
10 lines
490 B
Bash
Executable File
#!/bin/bash
|
|
|
|
function random_hex() {
|
|
random_hex=("0xff$(openssl rand -hex 3)")
|
|
echo $random_hex
|
|
}
|
|
|
|
hyprctl keyword general:col.active_border $(random_hex) $(random_hex) $(random_hex) $(random_hex) $(random_hex) $(random_hex) $(random_hex) $(random_hex) $(random_hex) $(random_hex) 270deg
|
|
|
|
hyprctl keyword general:col.inactive_border $(random_hex) $(random_hex) $(random_hex) $(random_hex) $(random_hex) $(random_hex) $(random_hex) $(random_hex) $(random_hex) $(random_hex) 270deg |