Moved arch to its own subdirectory

This commit is contained in:
Tibo De Peuter 2023-03-12 19:55:04 +01:00
parent 7cefa8efec
commit f47802351e
70 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,9 @@
#!/usr/bin/env bash
# Toggle brightness to 'sleep' or 'awake', since brightnessctl does not support
# percentages of current amount.
# Just run the script
current=$( brightnessctl get )
# Doesn't have to be accurate so we can use built-in calculator.
brightnessctl -sq set $(( current / 10 * 3 ))