mirror of
https://github.com/Mastermindzh/dotfiles.git
synced 2024-11-22 14:53:58 +01:00
10 lines
199 B
Bash
10 lines
199 B
Bash
#!/bin/bash
|
|
# startup stuffs
|
|
|
|
#/bin/bash
|
|
displays=($(xrandr | awk '/ connected /{print $1}'))
|
|
selected_display="${displays[0]}"
|
|
xrandr --output "$selected_display" --brightness 0.75
|
|
|
|
# power savings
|