2018-04-02 13:59:50 -05:00
|
|
|
|
#!/bin/sh
|
2018-04-02 15:30:49 -05:00
|
|
|
|
#
|
2018-06-10 11:03:20 -05:00
|
|
|
|
# init
|
2018-04-02 13:59:50 -05:00
|
|
|
|
function init()
|
|
|
|
|
{
|
|
|
|
|
#
|
|
|
|
|
cat << EEF
|
2018-06-10 11:03:20 -05:00
|
|
|
|
|
|
|
|
|
_ _ _____ _____ _____ _____
|
|
|
|
|
| | | | |_ _| | __ \ | __ \ |_ _|
|
|
|
|
|
| |__| | | | | | | | | |__) | | |
|
|
|
|
|
| __ | | | | | | | | ___/ | |
|
|
|
|
|
| | | | _| |_ | |__| | | | _| |_
|
|
|
|
|
|_| |_| |_____| |_____/ |_| |_____|
|
|
|
|
|
|
|
|
|
|
============================================
|
2018-04-02 13:59:50 -05:00
|
|
|
|
EEF
|
|
|
|
|
#
|
|
|
|
|
VendorID=$(ioreg -l | grep "DisplayVendorID" | awk '{print $8}')
|
|
|
|
|
ProductID=$(ioreg -l | grep "DisplayProductID" | awk '{print $8}')
|
|
|
|
|
EDID=$(ioreg -l | grep "IODisplayEDID" | awk '{print $8}' | sed -e 's/.$//' -e 's/^.//')
|
|
|
|
|
|
|
|
|
|
Vid=$(echo "obase=16;$VendorID" | bc | tr 'A-Z' 'a-z')
|
|
|
|
|
Pid=$(echo "obase=16;$ProductID" | bc | tr 'A-Z' 'a-z')
|
|
|
|
|
|
|
|
|
|
edID=$(echo $EDID | sed 's/../b5/21')
|
|
|
|
|
EDid=$(echo $edID | xxd -r -p | base64)
|
2018-06-10 11:03:20 -05:00
|
|
|
|
|
2018-04-02 13:59:50 -05:00
|
|
|
|
thisDir=$(dirname $0)
|
|
|
|
|
thatDir="/System/Library/Displays/Contents/Resources/Overrides"
|
|
|
|
|
Overrides="\/System\/Library\/Displays\/Contents\/Resources\/Overrides\/"
|
|
|
|
|
|
|
|
|
|
DICON="com\.apple\.cinema-display"
|
|
|
|
|
imacicon=${Overrides}"DisplayVendorID-610\/DisplayProductID-a032.tiff"
|
|
|
|
|
mbpicon=${Overrides}"DisplayVendorID-610\/DisplayProductID-a030-e1e1df.tiff"
|
|
|
|
|
mbicon=${Overrides}"DisplayVendorID-610\/DisplayProductID-a028-9d9da0.tiff"
|
|
|
|
|
lgicon=${Overrides}"DisplayVendorID-1e6d\/DisplayProductID-5b11.tiff"
|
|
|
|
|
|
|
|
|
|
if [[ ! -d $thatDir/backup ]]; then
|
2018-06-10 11:03:20 -05:00
|
|
|
|
echo "Backing up..."
|
2018-04-02 13:59:50 -05:00
|
|
|
|
sudo mkdir -p $thatDir/backup
|
|
|
|
|
sudo cp $thatDir/Icons.plist $thatDir/backup/
|
2018-04-02 15:30:49 -05:00
|
|
|
|
if [[ -d $thatDir/DisplayVendorID-$Vid ]]; then
|
|
|
|
|
sudo cp -r $thatDir/DisplayVendorID-$Vid $thatDir/backup/
|
|
|
|
|
fi
|
2018-04-02 13:59:50 -05:00
|
|
|
|
fi
|
|
|
|
|
}
|
|
|
|
|
|
2018-06-10 11:03:20 -05:00
|
|
|
|
# choose_icon
|
2018-04-02 13:59:50 -05:00
|
|
|
|
function choose_icon()
|
|
|
|
|
{
|
|
|
|
|
#
|
2018-06-07 20:12:54 -05:00
|
|
|
|
rm -rf $thisDir/tmp/
|
|
|
|
|
mkdir -p $thisDir/tmp/
|
2018-04-02 13:59:50 -05:00
|
|
|
|
curl -fsSL https://raw.githubusercontent.com/xzhih/one-key-hidpi/master/Icons.plist -o $thisDir/tmp/Icons.plist
|
|
|
|
|
# curl -fsSL http://127.0.0.1:8080/Icons.plist -o $thisDir/tmp/Icons.plist
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
|
cat << EOF
|
2018-06-10 11:03:20 -05:00
|
|
|
|
------------------------------------
|
|
|
|
|
|********** Choose Icon ***********|
|
|
|
|
|
------------------------------------
|
2018-04-02 13:59:50 -05:00
|
|
|
|
(1) iMac
|
|
|
|
|
(2) MacBook
|
|
|
|
|
(3) MacBook Pro
|
2018-06-10 11:03:20 -05:00
|
|
|
|
(4) LG Display
|
|
|
|
|
(5) Remain as it is
|
2018-04-02 13:59:50 -05:00
|
|
|
|
|
|
|
|
|
EOF
|
2018-06-07 20:12:54 -05:00
|
|
|
|
|
2018-06-10 11:03:20 -05:00
|
|
|
|
read -p "Enter your choice [1~5]: " logo
|
2018-04-02 13:59:50 -05:00
|
|
|
|
case $logo in
|
|
|
|
|
1) Picon=$imacicon
|
|
|
|
|
RP=("33" "68" "160" "90")
|
|
|
|
|
;;
|
|
|
|
|
2) Picon=$mbicon
|
|
|
|
|
RP=("52" "66" "122" "76")
|
|
|
|
|
;;
|
|
|
|
|
3) Picon=$mbpicon
|
|
|
|
|
RP=("40" "62" "147" "92")
|
|
|
|
|
;;
|
|
|
|
|
4) Picon=$lgicon
|
|
|
|
|
RP=("11" "47" "202" "114")
|
|
|
|
|
DICON=${Overrides}"DisplayVendorID-1e6d\/DisplayProductID-5b11.icns"
|
|
|
|
|
;;
|
|
|
|
|
5) rm -rf $thisDir/tmp/Icons.plist
|
|
|
|
|
;;
|
2018-06-10 11:03:20 -05:00
|
|
|
|
*) echo "Enter error, bye";
|
2018-04-02 13:59:50 -05:00
|
|
|
|
exit 0
|
|
|
|
|
;;
|
|
|
|
|
esac
|
|
|
|
|
|
|
|
|
|
if [[ $Picon ]]; then
|
|
|
|
|
sed -i '' "s/VID/$Vid/g" $thisDir/tmp/Icons.plist
|
|
|
|
|
sed -i '' "s/PID/$Pid/g" $thisDir/tmp/Icons.plist
|
|
|
|
|
sed -i '' "s/RPX/${RP[0]}/g" $thisDir/tmp/Icons.plist
|
|
|
|
|
sed -i '' "s/RPY/${RP[1]}/g" $thisDir/tmp/Icons.plist
|
|
|
|
|
sed -i '' "s/RPW/${RP[2]}/g" $thisDir/tmp/Icons.plist
|
|
|
|
|
sed -i '' "s/RPH/${RP[3]}/g" $thisDir/tmp/Icons.plist
|
|
|
|
|
sed -i '' "s/PICON/$Picon/g" $thisDir/tmp/Icons.plist
|
|
|
|
|
sed -i '' "s/DICON/$DICON/g" $thisDir/tmp/Icons.plist
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-04 03:24:19 -05:00
|
|
|
|
# main
|
2018-04-02 13:59:50 -05:00
|
|
|
|
function main()
|
|
|
|
|
{
|
2018-04-02 15:30:49 -05:00
|
|
|
|
sudo mkdir -p $thisDir/tmp/DisplayVendorID-$Vid
|
2018-04-02 13:59:50 -05:00
|
|
|
|
dpiFile=$thisDir/tmp/DisplayVendorID-$Vid/DisplayProductID-$Pid
|
2018-04-02 15:30:49 -05:00
|
|
|
|
sudo chmod -R 777 $thisDir/tmp/
|
2018-04-02 13:59:50 -05:00
|
|
|
|
|
|
|
|
|
#
|
2018-06-10 11:03:20 -05:00
|
|
|
|
cat > "$dpiFile" <<-\CCC
|
2018-04-02 13:59:50 -05:00
|
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
|
|
|
<plist version="1.0">
|
|
|
|
|
<dict>
|
|
|
|
|
<key>DisplayProductID</key>
|
|
|
|
|
<integer>PID</integer>
|
|
|
|
|
<key>DisplayVendorID</key>
|
|
|
|
|
<integer>VID</integer>
|
|
|
|
|
<key>IODisplayEDID</key>
|
2018-04-02 15:30:49 -05:00
|
|
|
|
<data>EDid</data>
|
2018-04-02 13:59:50 -05:00
|
|
|
|
<key>scale-resolutions</key>
|
|
|
|
|
<array>
|
2018-06-10 11:03:20 -05:00
|
|
|
|
CCC
|
|
|
|
|
|
|
|
|
|
cat << EOF
|
|
|
|
|
------------------------------------------
|
|
|
|
|
|********** resolution config ***********|
|
|
|
|
|
------------------------------------------
|
|
|
|
|
(1) 1080P Display
|
|
|
|
|
(2) 2K Display
|
|
|
|
|
(3) Manual input resolution
|
|
|
|
|
|
|
|
|
|
EOF
|
|
|
|
|
|
|
|
|
|
read -p "Enter your choice: " res
|
|
|
|
|
case $res in
|
2018-08-05 07:00:58 -05:00
|
|
|
|
1 ) create_res_1 1920x1080 1680x945 1440x810 1280x720 1024x576
|
|
|
|
|
;;
|
|
|
|
|
2 ) create_res_1 2048x1152 1920x1080 1680x945 1440x810 1280x720
|
|
|
|
|
create_res_2 1024x576
|
|
|
|
|
create_res_3 960x540
|
|
|
|
|
create_res_4 2048x1152
|
|
|
|
|
;;
|
2018-06-10 11:03:20 -05:00
|
|
|
|
3 ) custom_res;;
|
|
|
|
|
esac
|
|
|
|
|
|
2018-08-05 07:00:58 -05:00
|
|
|
|
create_res_2 1280x720 960x540 640x360
|
|
|
|
|
create_res_3 840x472 720x405 640x360 576x324 512x288 420x234 400x225 320x180
|
|
|
|
|
create_res_4 1920x1080 1680x945 1440x810 1280x720 1024x576 960x540 640x360
|
2018-06-10 11:03:20 -05:00
|
|
|
|
|
|
|
|
|
cat >> "$dpiFile" <<-\FFF
|
|
|
|
|
</array>
|
2018-04-02 13:59:50 -05:00
|
|
|
|
<key>target-default-ppmm</key>
|
2018-06-07 20:12:54 -05:00
|
|
|
|
<real>10.0699301</real>
|
2018-04-02 13:59:50 -05:00
|
|
|
|
</dict>
|
|
|
|
|
</plist>
|
2018-06-10 11:03:20 -05:00
|
|
|
|
FFF
|
2018-04-02 13:59:50 -05:00
|
|
|
|
|
|
|
|
|
sed -i '' "s/VID/$VendorID/g" $dpiFile
|
|
|
|
|
sed -i '' "s/PID/$ProductID/g" $dpiFile
|
2018-04-02 15:30:49 -05:00
|
|
|
|
}
|
2018-04-02 13:59:50 -05:00
|
|
|
|
|
2018-06-10 11:03:20 -05:00
|
|
|
|
# end
|
2018-04-02 15:30:49 -05:00
|
|
|
|
function end()
|
|
|
|
|
{
|
2018-04-02 13:59:50 -05:00
|
|
|
|
sudo cp -r $thisDir/tmp/* $thatDir/
|
2018-04-02 15:30:49 -05:00
|
|
|
|
sudo rm -rf $thisDir/tmp
|
2018-06-10 11:03:20 -05:00
|
|
|
|
echo "Enabled, please reboot."
|
|
|
|
|
echo "Rebooting the logo for the first time will become huge, then it will not be."
|
|
|
|
|
say "Good"
|
2018-04-02 15:30:49 -05:00
|
|
|
|
}
|
|
|
|
|
|
2018-06-10 11:03:20 -05:00
|
|
|
|
# custom resolution
|
|
|
|
|
function custom_res()
|
|
|
|
|
{
|
|
|
|
|
echo "Enter the HIDPI resolution, separated by a space,like this: 1680x945 1600x900 1440x810"
|
|
|
|
|
read -p ":" res
|
|
|
|
|
create_res $res
|
|
|
|
|
}
|
2018-06-07 20:12:54 -05:00
|
|
|
|
|
2018-06-10 11:03:20 -05:00
|
|
|
|
# create resolution
|
|
|
|
|
function create_res()
|
|
|
|
|
{
|
|
|
|
|
for res in $@; do
|
|
|
|
|
width=$(echo $res | cut -d x -f 1)
|
|
|
|
|
height=$(echo $res | cut -d x -f 2)
|
|
|
|
|
hidpi=$(printf '%08x %08x' $(($width*2)) $(($height*2)) | xxd -r -p | base64)
|
|
|
|
|
#
|
|
|
|
|
cat << OOO >> $dpiFile
|
2018-08-05 07:00:58 -05:00
|
|
|
|
<data>${hidpi:0:11}AAAAB</data>
|
|
|
|
|
<data>${hidpi:0:11}AAAABACAAAA==</data>
|
|
|
|
|
OOO
|
|
|
|
|
done
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function create_res_1()
|
|
|
|
|
{
|
|
|
|
|
for res in $@; do
|
|
|
|
|
width=$(echo $res | cut -d x -f 1)
|
|
|
|
|
height=$(echo $res | cut -d x -f 2)
|
|
|
|
|
hidpi=$(printf '%08x %08x' $(($width*2)) $(($height*2)) | xxd -r -p | base64)
|
|
|
|
|
#
|
|
|
|
|
cat << OOO >> $dpiFile
|
2018-06-10 11:03:20 -05:00
|
|
|
|
<data>${hidpi:0:11}A</data>
|
2018-08-05 07:00:58 -05:00
|
|
|
|
OOO
|
|
|
|
|
done
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function create_res_2()
|
|
|
|
|
{
|
|
|
|
|
for res in $@; do
|
|
|
|
|
width=$(echo $res | cut -d x -f 1)
|
|
|
|
|
height=$(echo $res | cut -d x -f 2)
|
|
|
|
|
hidpi=$(printf '%08x %08x' $(($width*2)) $(($height*2)) | xxd -r -p | base64)
|
|
|
|
|
#
|
|
|
|
|
cat << OOO >> $dpiFile
|
2018-06-10 11:03:20 -05:00
|
|
|
|
<data>${hidpi:0:11}AAAABACAAAA==</data>
|
2018-08-05 07:00:58 -05:00
|
|
|
|
OOO
|
|
|
|
|
done
|
|
|
|
|
}
|
2018-06-10 11:03:20 -05:00
|
|
|
|
|
2018-08-05 07:00:58 -05:00
|
|
|
|
function create_res_3()
|
|
|
|
|
{
|
|
|
|
|
for res in $@; do
|
|
|
|
|
width=$(echo $res | cut -d x -f 1)
|
|
|
|
|
height=$(echo $res | cut -d x -f 2)
|
|
|
|
|
hidpi=$(printf '%08x %08x' $(($width*2)) $(($height*2)) | xxd -r -p | base64)
|
|
|
|
|
#
|
|
|
|
|
cat << OOO >> $dpiFile
|
|
|
|
|
<data>${hidpi:0:11}AAAAB</data>
|
2018-06-10 11:03:20 -05:00
|
|
|
|
OOO
|
2018-08-05 07:00:58 -05:00
|
|
|
|
done
|
|
|
|
|
}
|
2018-06-07 20:12:54 -05:00
|
|
|
|
|
2018-08-05 07:00:58 -05:00
|
|
|
|
function create_res_4()
|
|
|
|
|
{
|
|
|
|
|
for res in $@; do
|
|
|
|
|
width=$(echo $res | cut -d x -f 1)
|
|
|
|
|
height=$(echo $res | cut -d x -f 2)
|
|
|
|
|
hidpi=$(printf '%08x %08x' $(($width*2)) $(($height*2)) | xxd -r -p | base64)
|
|
|
|
|
#
|
|
|
|
|
cat << OOO >> $dpiFile
|
|
|
|
|
<data>${hidpi:0:11}AAAAJAKAAAA==</data>
|
|
|
|
|
OOO
|
2018-06-10 11:03:20 -05:00
|
|
|
|
done
|
|
|
|
|
}
|
2018-06-07 20:12:54 -05:00
|
|
|
|
|
2018-06-10 11:03:20 -05:00
|
|
|
|
# enable
|
2018-04-02 15:30:49 -05:00
|
|
|
|
function enable_hidpi()
|
|
|
|
|
{
|
|
|
|
|
choose_icon
|
|
|
|
|
main
|
|
|
|
|
sed -i "" "/.*IODisplayEDID/d" $dpiFile
|
|
|
|
|
sed -i "" "/.*EDid/d" $dpiFile
|
|
|
|
|
end
|
|
|
|
|
}
|
2018-04-02 13:59:50 -05:00
|
|
|
|
|
2018-06-10 11:03:20 -05:00
|
|
|
|
# patch
|
2018-04-02 15:30:49 -05:00
|
|
|
|
function enable_hidpi_with_patch()
|
|
|
|
|
{
|
|
|
|
|
choose_icon
|
|
|
|
|
main
|
|
|
|
|
sed -i '' "s:EDid:${EDid}:g" $dpiFile
|
|
|
|
|
end
|
2018-04-02 13:59:50 -05:00
|
|
|
|
}
|
|
|
|
|
|
2018-06-10 11:03:20 -05:00
|
|
|
|
# disable
|
2018-04-02 13:59:50 -05:00
|
|
|
|
function disable()
|
|
|
|
|
{
|
|
|
|
|
sudo rm -rf $thatDir/DisplayVendorID-$Vid
|
|
|
|
|
sudo rm -rf $thatDir/Icons.plist
|
|
|
|
|
sudo cp -r $thatDir/backup/* $thatDir/
|
|
|
|
|
sudo rm -rf $thatDir/backup
|
2018-06-10 11:03:20 -05:00
|
|
|
|
echo "Disabled, restart takes effect"
|
2018-04-02 13:59:50 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function start()
|
|
|
|
|
{
|
|
|
|
|
init
|
|
|
|
|
#
|
|
|
|
|
cat << EOF
|
|
|
|
|
|
2018-06-10 11:03:20 -05:00
|
|
|
|
(1) Enable HIDPI
|
|
|
|
|
(2) Enable HIDPI (with patch)
|
|
|
|
|
(3) Disable HIDPI
|
2018-04-02 13:59:50 -05:00
|
|
|
|
|
|
|
|
|
EOF
|
2018-06-07 20:12:54 -05:00
|
|
|
|
|
2018-06-10 11:03:20 -05:00
|
|
|
|
read -p "Enter your choice [1~3]: " input
|
2018-04-02 13:59:50 -05:00
|
|
|
|
case $input in
|
|
|
|
|
1) enable_hidpi
|
|
|
|
|
;;
|
|
|
|
|
2) enable_hidpi_with_patch
|
|
|
|
|
;;
|
|
|
|
|
3) disable
|
|
|
|
|
;;
|
2018-06-07 20:12:54 -05:00
|
|
|
|
*)
|
2018-06-10 11:03:20 -05:00
|
|
|
|
echo "Enter error, bye";
|
2018-04-02 13:59:50 -05:00
|
|
|
|
exit 0
|
|
|
|
|
;;
|
|
|
|
|
esac
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
start
|