summaryrefslogtreecommitdiff
path: root/src/resolution.c
blob: f089fd26743c8d0e29f3f181d4a9deaa9d61ccda (plain)
1
2
3
4
5
6
7
8
9
10
#include "resolution.h"
#include "common.h"

const char *display_resolution() {
  return run_command_s("xrandr --nograb --current | "
                       "awk -F 'connected |\\\\+|\\\\(' '/ "
                       "connected.*[0-9]+x[0-9]+\\+/ && $2 {printf $2 "
                       "\", \"}' | sed 's/primary //' | "
                       "sed 's/,\\([^,]*\\)$/\\1/'");
}