12 lines
205 B
Nix
12 lines
205 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
home.file.".config/hypr/scripts/refresh-eww.sh".text = ''
|
|
#!/bin/bash
|
|
while true; do
|
|
eww update line_refresh=$(date +%s%3N)
|
|
sleep 0.05
|
|
done
|
|
}
|
|
'';
|
|
} |