diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-04-22 17:58:18 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-04-22 17:58:18 +0200 |
commit | a177eb89c5d3043cfdab91864f50658f7d7546de (patch) | |
tree | 5e31abb3d9afc85524ed22e377e7a575e4d195a1 | |
parent | Better (diff) | |
download | 42-cub3d-a177eb89c5d3043cfdab91864f50658f7d7546de.tar.gz 42-cub3d-a177eb89c5d3043cfdab91864f50658f7d7546de.tar.bz2 42-cub3d-a177eb89c5d3043cfdab91864f50658f7d7546de.tar.xz 42-cub3d-a177eb89c5d3043cfdab91864f50658f7d7546de.tar.zst 42-cub3d-a177eb89c5d3043cfdab91864f50658f7d7546de.zip |
Compliant betatest version
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -152,8 +152,9 @@ RM = rm -rf MV = mv OS = $(shell uname) ifeq (${OS}, Darwin) - SCR_SZE = $(shell osascript -e 'tell application "Finder" to get bounds of window of desktop' \ + # SCR_SZE = $(shell osascript -e 'tell application "Finder" to get bounds of window of desktop' \ | tr ',' 'x' | tr -d '\n' | tr -d ' ' | cut -c 5-) + SCR_SZE = 1920x1080 else SCR_SZE = $(shell xdpyinfo | grep dimensions | awk '{print $$2}') endif |