Getting desktop background on Mac

前端 未结 2 1736
清酒与你
清酒与你 2021-02-10 07:12

How do I get the current wallpaper on a Mac? Just point me to an API function so I can Google more.

Edit: I think I found it. [NSUserDefaults standardUserDefaults] menti

2条回答
  •  陌清茗
    陌清茗 (楼主)
    2021-02-10 07:42

    You can do it in shell + Applescript like this:

    #!/bin/bash
    osascript -e 'tell app "finder" to get posix path of (get desktop picture as alias)'
    

提交回复
热议问题