Skip to content

Commit e1e5679

Browse files
committed
update
1 parent 5282957 commit e1e5679

6 files changed

Lines changed: 162 additions & 95 deletions

File tree

bin/findcores.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/usr/bin/env bash
2+
3+
find . -name core\* -user $USER -type f -size +1000000c -exec file {} \; -exec ls -l {} \; -exec printf "\n\ny to remove this core file\n" \; -exec /bin/rm -i {} \;

bin/light

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
#!/usr/bin/env bash
2+
3+
case "$1" in
4+
"")
5+
exec xbacklight -get
6+
;;
7+
-S)
8+
shift
9+
exec xbacklight -set "$1"
10+
;;
11+
-A)
12+
shift
13+
exec xbacklight -inc "$1"
14+
;;
15+
-U)
16+
shift
17+
exec xbacklight -dec "$1"
18+
;;
19+
*)
20+
echo "Unsupported option: $1"
21+
echo "Supported: (none), -S, -A, -U"
22+
exit 1
23+
;;
24+
esac
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
#[Backend]
2+
backend = "auto"
3+
transition_mode = "static" # No time-based transitions
4+
5+
#[Smoothing]
6+
smoothing = true
7+
startup_duration = 0.5 # Quick fade-in
8+
shutdown_duration = 0.5 # Instant shutdown
9+
adaptive_interval = 1
10+
11+
#[Static configuration]
12+
static_temp = 6500 # Neutral daylight
13+
static_gamma = 100 # Full brightness

0 commit comments

Comments
 (0)