mirror of
https://github.com/dylanaraps/neofetch.git
synced 2025-12-24 04:22:32 +00:00
added xrandr without refresh rate
This commit is contained in:
7
neofetch
7
neofetch
@@ -1273,8 +1273,11 @@ getsong () {
|
||||
getresolution () {
|
||||
case "$os" in
|
||||
"Linux" | *"BSD")
|
||||
if type -p xrandr >/dev/null 2>&1 && [ "$refresh_rate" == "on" ]; then
|
||||
resolution=$(xrandr --nograb --current | awk 'match($0,/[0-0]{2,3}.[0-9]{2}\*/) {printf $1 " @ " substr($0,RSTART,RLENGTH) "Hz, "}')
|
||||
if type -p xrandr >/dev/null 2>&1; then
|
||||
case "$refresh_rate" in
|
||||
"on") resolution=$(xrandr --nograb --current | awk 'match($0,/[0-0]{2,3}.[0-9]{2}\*/) {printf $1 " @ " substr($0,RSTART,RLENGTH) "Hz, "}') ;;
|
||||
"off") resolution=$(xrandr --nograb --current | awk '/*/ {printf $1 ", "}') ;;
|
||||
esac
|
||||
resolution=${resolution//\*}
|
||||
|
||||
elif type -p xdpyinfo >/dev/null 2>&1 && \
|
||||
|
||||
Reference in New Issue
Block a user