david/scripts-archive
david
/
scripts-archive
Archived
1
0
Fork 0
This repository has been archived on 2022-04-16. You can view files and clone it, but cannot push or open issues or pull requests.
scripts-archive/flash_scrolllock.sh

11 lines
161 B
Bash
Raw Permalink Normal View History

#!/bin/bash
# Flash the Scroll Lock LED
while [ true ]; do
xset led named 'Scroll Lock'
sleep 0.3
xset -led named 'Scroll Lock'
sleep 0.3
done