├── Bing Wallpaper ├── BingWallpaper.app │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── Application Stub │ │ ├── Resources │ │ ├── AutomatorApplet.icns │ │ ├── Dutch.lproj │ │ │ └── ApplicationStub.nib │ │ ├── English.lproj │ │ │ └── ApplicationStub.nib │ │ ├── French.lproj │ │ │ └── ApplicationStub.nib │ │ ├── German.lproj │ │ │ └── ApplicationStub.nib │ │ ├── Italian.lproj │ │ │ └── ApplicationStub.nib │ │ ├── Japanese.lproj │ │ │ └── ApplicationStub.nib │ │ ├── Spanish.lproj │ │ │ └── ApplicationStub.nib │ │ ├── ar.lproj │ │ │ └── ApplicationStub.nib │ │ ├── ca.lproj │ │ │ └── ApplicationStub.nib │ │ ├── cs.lproj │ │ │ └── ApplicationStub.nib │ │ ├── da.lproj │ │ │ └── ApplicationStub.nib │ │ ├── el.lproj │ │ │ └── ApplicationStub.nib │ │ ├── es_MX.lproj │ │ │ └── ApplicationStub.nib │ │ ├── fi.lproj │ │ │ └── ApplicationStub.nib │ │ ├── he.lproj │ │ │ └── ApplicationStub.nib │ │ ├── hr.lproj │ │ │ └── ApplicationStub.nib │ │ ├── hu.lproj │ │ │ └── ApplicationStub.nib │ │ ├── id.lproj │ │ │ └── ApplicationStub.nib │ │ ├── ko.lproj │ │ │ └── ApplicationStub.nib │ │ ├── ms.lproj │ │ │ └── ApplicationStub.nib │ │ ├── no.lproj │ │ │ └── ApplicationStub.nib │ │ ├── pl.lproj │ │ │ └── ApplicationStub.nib │ │ ├── pt.lproj │ │ │ └── ApplicationStub.nib │ │ ├── pt_PT.lproj │ │ │ └── ApplicationStub.nib │ │ ├── ro.lproj │ │ │ └── ApplicationStub.nib │ │ ├── ru.lproj │ │ │ └── ApplicationStub.nib │ │ ├── sk.lproj │ │ │ └── ApplicationStub.nib │ │ ├── sv.lproj │ │ │ └── ApplicationStub.nib │ │ ├── th.lproj │ │ │ └── ApplicationStub.nib │ │ ├── tr.lproj │ │ │ └── ApplicationStub.nib │ │ ├── uk.lproj │ │ │ └── ApplicationStub.nib │ │ ├── vi.lproj │ │ │ └── ApplicationStub.nib │ │ ├── zh_CN.lproj │ │ │ └── ApplicationStub.nib │ │ └── zh_TW.lproj │ │ │ └── ApplicationStub.nib │ │ └── document.wflow ├── CheckBingStatus.app │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── Application Stub │ │ ├── Resources │ │ ├── AutomatorApplet.icns │ │ ├── Dutch.lproj │ │ │ └── ApplicationStub.nib │ │ ├── English.lproj │ │ │ └── ApplicationStub.nib │ │ ├── French.lproj │ │ │ └── ApplicationStub.nib │ │ ├── German.lproj │ │ │ └── ApplicationStub.nib │ │ ├── Italian.lproj │ │ │ └── ApplicationStub.nib │ │ ├── Japanese.lproj │ │ │ └── ApplicationStub.nib │ │ ├── Spanish.lproj │ │ │ └── ApplicationStub.nib │ │ ├── ar.lproj │ │ │ └── ApplicationStub.nib │ │ ├── ca.lproj │ │ │ └── ApplicationStub.nib │ │ ├── cs.lproj │ │ │ └── ApplicationStub.nib │ │ ├── da.lproj │ │ │ └── ApplicationStub.nib │ │ ├── el.lproj │ │ │ └── ApplicationStub.nib │ │ ├── es_MX.lproj │ │ │ └── ApplicationStub.nib │ │ ├── fi.lproj │ │ │ └── ApplicationStub.nib │ │ ├── he.lproj │ │ │ └── ApplicationStub.nib │ │ ├── hr.lproj │ │ │ └── ApplicationStub.nib │ │ ├── hu.lproj │ │ │ └── ApplicationStub.nib │ │ ├── id.lproj │ │ │ └── ApplicationStub.nib │ │ ├── ko.lproj │ │ │ └── ApplicationStub.nib │ │ ├── ms.lproj │ │ │ └── ApplicationStub.nib │ │ ├── no.lproj │ │ │ └── ApplicationStub.nib │ │ ├── pl.lproj │ │ │ └── ApplicationStub.nib │ │ ├── pt.lproj │ │ │ └── ApplicationStub.nib │ │ ├── pt_PT.lproj │ │ │ └── ApplicationStub.nib │ │ ├── ro.lproj │ │ │ └── ApplicationStub.nib │ │ ├── ru.lproj │ │ │ └── ApplicationStub.nib │ │ ├── sk.lproj │ │ │ └── ApplicationStub.nib │ │ ├── sv.lproj │ │ │ └── ApplicationStub.nib │ │ ├── th.lproj │ │ │ └── ApplicationStub.nib │ │ ├── tr.lproj │ │ │ └── ApplicationStub.nib │ │ ├── uk.lproj │ │ │ └── ApplicationStub.nib │ │ ├── vi.lproj │ │ │ └── ApplicationStub.nib │ │ ├── zh_CN.lproj │ │ │ └── ApplicationStub.nib │ │ └── zh_TW.lproj │ │ │ └── ApplicationStub.nib │ │ └── document.wflow ├── CheckStatus.py └── GetWallpaper.py ├── LICENSE.md ├── README.md └── bing.wallpaper.mac.plist /Bing Wallpaper/BingWallpaper.app/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | AMIsApplet 6 | 7 | AMStayOpen 8 | 9 | BuildMachineOSBuild 10 | 14D49 11 | CFBundleDevelopmentRegion 12 | English 13 | CFBundleDocumentTypes 14 | 15 | 16 | CFBundleTypeExtensions 17 | 18 | * 19 | 20 | CFBundleTypeName 21 | Automator workflow file 22 | CFBundleTypeOSTypes 23 | 24 | **** 25 | 26 | CFBundleTypeRole 27 | Viewer 28 | 29 | 30 | CFBundleExecutable 31 | Application Stub 32 | CFBundleIconFile 33 | AutomatorApplet 34 | CFBundleIdentifier 35 | com.apple.automator.BingWallpaper copy 36 | CFBundleInfoDictionaryVersion 37 | 6.0 38 | CFBundleName 39 | BingWallpaper copy 40 | CFBundlePackageType 41 | APPL 42 | CFBundleShortVersionString 43 | 1.2 44 | CFBundleSignature 45 | ???? 46 | CFBundleURLTypes 47 | 48 | CFBundleVersion 49 | 409.2 50 | DTCompiler 51 | com.apple.compilers.llvm.clang.1_0 52 | DTPlatformBuild 53 | 6D97u 54 | DTPlatformVersion 55 | GM 56 | DTSDKBuild 57 | 14D42 58 | DTSDKName 59 | macosx10.10internal 60 | DTXcode 61 | 0630 62 | DTXcodeBuild 63 | 6D97u 64 | LSMinimumSystemVersion 65 | 10.5 66 | LSMinimumSystemVersionByArchitecture 67 | 68 | x86_64 69 | 10.6 70 | 71 | LSUIElement 72 | 73 | NSAppleScriptEnabled 74 | YES 75 | NSMainNibFile 76 | ApplicationStub 77 | NSPrincipalClass 78 | NSApplication 79 | NSServices 80 | 81 | UTExportedTypeDeclarations 82 | 83 | UTImportedTypeDeclarations 84 | 85 | 86 | 87 | -------------------------------------------------------------------------------- /Bing Wallpaper/BingWallpaper.app/Contents/MacOS/Application Stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/BingWallpaper.app/Contents/MacOS/Application Stub -------------------------------------------------------------------------------- /Bing Wallpaper/BingWallpaper.app/Contents/Resources/AutomatorApplet.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/BingWallpaper.app/Contents/Resources/AutomatorApplet.icns -------------------------------------------------------------------------------- /Bing Wallpaper/BingWallpaper.app/Contents/Resources/Dutch.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/BingWallpaper.app/Contents/Resources/Dutch.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Bing Wallpaper/BingWallpaper.app/Contents/Resources/English.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/BingWallpaper.app/Contents/Resources/English.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Bing Wallpaper/BingWallpaper.app/Contents/Resources/French.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/BingWallpaper.app/Contents/Resources/French.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Bing Wallpaper/BingWallpaper.app/Contents/Resources/German.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/BingWallpaper.app/Contents/Resources/German.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Bing Wallpaper/BingWallpaper.app/Contents/Resources/Italian.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/BingWallpaper.app/Contents/Resources/Italian.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Bing Wallpaper/BingWallpaper.app/Contents/Resources/Japanese.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/BingWallpaper.app/Contents/Resources/Japanese.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Bing Wallpaper/BingWallpaper.app/Contents/Resources/Spanish.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/BingWallpaper.app/Contents/Resources/Spanish.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Bing Wallpaper/BingWallpaper.app/Contents/Resources/ar.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/BingWallpaper.app/Contents/Resources/ar.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Bing Wallpaper/BingWallpaper.app/Contents/Resources/ca.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/BingWallpaper.app/Contents/Resources/ca.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Bing Wallpaper/BingWallpaper.app/Contents/Resources/cs.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/BingWallpaper.app/Contents/Resources/cs.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Bing Wallpaper/BingWallpaper.app/Contents/Resources/da.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/BingWallpaper.app/Contents/Resources/da.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Bing Wallpaper/BingWallpaper.app/Contents/Resources/el.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/BingWallpaper.app/Contents/Resources/el.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Bing Wallpaper/BingWallpaper.app/Contents/Resources/es_MX.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/BingWallpaper.app/Contents/Resources/es_MX.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Bing Wallpaper/BingWallpaper.app/Contents/Resources/fi.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/BingWallpaper.app/Contents/Resources/fi.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Bing Wallpaper/BingWallpaper.app/Contents/Resources/he.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/BingWallpaper.app/Contents/Resources/he.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Bing Wallpaper/BingWallpaper.app/Contents/Resources/hr.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/BingWallpaper.app/Contents/Resources/hr.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Bing Wallpaper/BingWallpaper.app/Contents/Resources/hu.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/BingWallpaper.app/Contents/Resources/hu.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Bing Wallpaper/BingWallpaper.app/Contents/Resources/id.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/BingWallpaper.app/Contents/Resources/id.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Bing Wallpaper/BingWallpaper.app/Contents/Resources/ko.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/BingWallpaper.app/Contents/Resources/ko.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Bing Wallpaper/BingWallpaper.app/Contents/Resources/ms.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/BingWallpaper.app/Contents/Resources/ms.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Bing Wallpaper/BingWallpaper.app/Contents/Resources/no.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/BingWallpaper.app/Contents/Resources/no.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Bing Wallpaper/BingWallpaper.app/Contents/Resources/pl.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/BingWallpaper.app/Contents/Resources/pl.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Bing Wallpaper/BingWallpaper.app/Contents/Resources/pt.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/BingWallpaper.app/Contents/Resources/pt.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Bing Wallpaper/BingWallpaper.app/Contents/Resources/pt_PT.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/BingWallpaper.app/Contents/Resources/pt_PT.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Bing Wallpaper/BingWallpaper.app/Contents/Resources/ro.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/BingWallpaper.app/Contents/Resources/ro.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Bing Wallpaper/BingWallpaper.app/Contents/Resources/ru.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/BingWallpaper.app/Contents/Resources/ru.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Bing Wallpaper/BingWallpaper.app/Contents/Resources/sk.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/BingWallpaper.app/Contents/Resources/sk.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Bing Wallpaper/BingWallpaper.app/Contents/Resources/sv.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/BingWallpaper.app/Contents/Resources/sv.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Bing Wallpaper/BingWallpaper.app/Contents/Resources/th.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/BingWallpaper.app/Contents/Resources/th.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Bing Wallpaper/BingWallpaper.app/Contents/Resources/tr.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/BingWallpaper.app/Contents/Resources/tr.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Bing Wallpaper/BingWallpaper.app/Contents/Resources/uk.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/BingWallpaper.app/Contents/Resources/uk.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Bing Wallpaper/BingWallpaper.app/Contents/Resources/vi.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/BingWallpaper.app/Contents/Resources/vi.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Bing Wallpaper/BingWallpaper.app/Contents/Resources/zh_CN.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/BingWallpaper.app/Contents/Resources/zh_CN.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Bing Wallpaper/BingWallpaper.app/Contents/Resources/zh_TW.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/BingWallpaper.app/Contents/Resources/zh_TW.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Bing Wallpaper/BingWallpaper.app/Contents/document.wflow: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | AMApplicationBuild 6 | 409.2 7 | AMApplicationVersion 8 | 2.5 9 | AMDocumentVersion 10 | 2 11 | actions 12 | 13 | 14 | action 15 | 16 | AMAccepts 17 | 18 | Container 19 | List 20 | Optional 21 | 22 | Types 23 | 24 | com.apple.cocoa.path 25 | 26 | 27 | AMActionVersion 28 | 2.1.1 29 | AMApplication 30 | 31 | Finder 32 | 33 | AMParameterProperties 34 | 35 | itemType 36 | 37 | predicate 38 | 39 | searchPath 40 | 41 | isPathPopUp 42 | 43 | variableUUIDsInMenu 44 | 45 | 46 | 47 | AMProvides 48 | 49 | Container 50 | List 51 | Types 52 | 53 | com.apple.cocoa.path 54 | 55 | 56 | AMRequiredResources 57 | 58 | AMSelectedInputType 59 | com.apple.cocoa.path 60 | AMSelectedOutputType 61 | com.apple.cocoa.path 62 | ActionBundlePath 63 | /System/Library/Automator/Find Finder Items 2.action 64 | ActionName 65 | Find Finder Items 66 | ActionParameters 67 | 68 | itemType 69 | com.apple.cocoa.path 70 | predicate 71 | 72 | YnBsaXN0MDDUAQIDBAUGbG1YJHZlcnNpb25Y 73 | JG9iamVjdHNZJGFyY2hpdmVyVCR0b3ASAAGG 74 | oK8QFgcIDxQcJicpMTU6O0BESk9QVVtgZWdV 75 | JG51bGzTCQoLDA0OXxAXTlNDb21wb3VuZFBy 76 | ZWRpY2F0ZVR5cGVfEA9OU1N1YnByZWRpY2F0 77 | ZXNWJGNsYXNzEAGAAoAV0hALERNaTlMub2Jq 78 | ZWN0c6ESgAOAFNQLFRYXGBkaG18QEU5TUmln 79 | aHRFeHByZXNzaW9uXxAQTlNMZWZ0RXhwcmVz 80 | c2lvbl8QE05TUHJlZGljYXRlT3BlcmF0b3KA 81 | E4AOgASAEdUdHh8gCyEiIyQlWU5TT3BlcmFu 82 | ZF5OU1NlbGVjdG9yTmFtZV8QEE5TRXhwcmVz 83 | c2lvblR5cGVbTlNBcmd1bWVudHOABoAFEAOA 84 | CIANXHZhbHVlRm9yS2V5OtIfCwwogAfSKiss 85 | LVokY2xhc3NuYW1lWCRjbGFzc2VzXxAQTlNT 86 | ZWxmRXhwcmVzc2lvbqMuLzBfEBBOU1NlbGZF 87 | eHByZXNzaW9uXE5TRXhwcmVzc2lvblhOU09i 88 | amVjdNIQCzI0oTOACYAM0wsfNjc4OVlOU0tl 89 | eVBhdGiACxAKgApaYW55Q29udGVudNIqKzw9 90 | XxAcTlNLZXlQYXRoU3BlY2lmaWVyRXhwcmVz 91 | c2lvbqM+PzBfEBxOU0tleVBhdGhTcGVjaWZp 92 | ZXJFeHByZXNzaW9uXE5TRXhwcmVzc2lvbtIq 93 | K0FCXk5TTXV0YWJsZUFycmF5o0FDMFdOU0Fy 94 | cmF50iorRUZfEBNOU0tleVBhdGhFeHByZXNz 95 | aW9upEdISTBfEBNOU0tleVBhdGhFeHByZXNz 96 | aW9uXxAUTlNGdW5jdGlvbkV4cHJlc3Npb25c 97 | TlNFeHByZXNzaW9u00sfC0xNTl8QD05TQ29u 98 | c3RhbnRWYWx1ZYAPEACAEFDSKitRUl8QGU5T 99 | Q29uc3RhbnRWYWx1ZUV4cHJlc3Npb26jU1Qw 100 | XxAZTlNDb25zdGFudFZhbHVlRXhwcmVzc2lv 101 | blxOU0V4cHJlc3Npb27UC1ZXWFlNI1paTlNN 102 | b2RpZmllcldOU0ZsYWdzXk5TT3BlcmF0b3JU 103 | eXBlgBIQY9IqK1xdXxAVTlNJblByZWRpY2F0 104 | ZU9wZXJhdG9yo15fMF8QFU5TSW5QcmVkaWNh 105 | dGVPcGVyYXRvcl8QE05TUHJlZGljYXRlT3Bl 106 | cmF0b3LSKithYl8QFU5TQ29tcGFyaXNvblBy 107 | ZWRpY2F0ZaNjZDBfEBVOU0NvbXBhcmlzb25Q 108 | cmVkaWNhdGVbTlNQcmVkaWNhdGXSKitDZqJD 109 | MNIqK2hpXxATTlNDb21wb3VuZFByZWRpY2F0 110 | ZaNqazBfEBNOU0NvbXBvdW5kUHJlZGljYXRl 111 | W05TUHJlZGljYXRlXxAPTlNLZXllZEFyY2hp 112 | dmVy0W5vVHJvb3SAAQAIABEAGgAjAC0AMgA3 113 | AFAAVgBdAHcAiQCQAJIAlACWAJsApgCoAKoA 114 | rAC1AMkA3ADyAPQA9gD4APoBBQEPAR4BMQE9 115 | AT8BQQFDAUUBRwFUAVkBWwFgAWsBdAGHAYsB 116 | ngGrAbQBuQG7Ab0BvwHGAdAB0gHUAdYB4QHm 117 | AgUCCQIoAjUCOgJJAk0CVQJaAnACdQKLAqIC 118 | rwK2AsgCygLMAs4CzwLUAvAC9AMQAx0DJgMx 119 | AzkDSANKA0wDUQNpA20DhQObA6ADuAO8A9QD 120 | 4APlA+gD7QQDBAcEHQQpBDsEPgRDAAAAAAAA 121 | AgEAAAAAAAAAcAAAAAAAAAAAAAAAAAAABEU= 122 | 123 | searchPath 124 | ~/Pictures/bing-wallpaper 125 | 126 | BundleIdentifier 127 | com.apple.Automator.Find_Finder_Items_2 128 | CFBundleVersion 129 | 2.1.1 130 | CanShowSelectedItemsWhenRun 131 | 132 | CanShowWhenRun 133 | 134 | Category 135 | 136 | AMCategoryFilesAndFolders 137 | 138 | Class Name 139 | Find_Finder_Items_2 140 | InputUUID 141 | EACB3F78-CC38-4B6D-888F-315810C38B33 142 | Keywords 143 | 144 | OutputUUID 145 | ED307DDC-8D89-4DFE-ADF0-ECBCAC633383 146 | UUID 147 | 66C3F436-AE0D-43AC-9D2B-F1907B520EC3 148 | UnlocalizedApplications 149 | 150 | Finder 151 | 152 | arguments 153 | 154 | 0 155 | 156 | default value 157 | com.apple.cocoa.path 158 | name 159 | itemType 160 | required 161 | 0 162 | type 163 | 0 164 | uuid 165 | 0 166 | 167 | 1 168 | 169 | default value 170 | 171 | name 172 | searchPath 173 | required 174 | 0 175 | type 176 | 0 177 | uuid 178 | 1 179 | 180 | 2 181 | 182 | default value 183 | 184 | 185 | name 186 | predicate 187 | required 188 | 0 189 | type 190 | 0 191 | uuid 192 | 2 193 | 194 | 195 | isViewVisible 196 | 197 | location 198 | 529.000000:232.000000 199 | nibPath 200 | /System/Library/Automator/Find Finder Items 2.action/Contents/Resources/Base.lproj/main.nib 201 | 202 | isViewVisible 203 | 204 | 205 | 206 | action 207 | 208 | AMAccepts 209 | 210 | Container 211 | List 212 | Optional 213 | 214 | Types 215 | 216 | com.apple.cocoa.path 217 | 218 | 219 | AMActionVersion 220 | 1.0.2 221 | AMApplication 222 | 223 | Finder 224 | 225 | AMParameterProperties 226 | 227 | recurse 228 | 229 | 230 | AMProvides 231 | 232 | Container 233 | List 234 | Types 235 | 236 | com.apple.cocoa.path 237 | 238 | 239 | AMRequiredResources 240 | 241 | ActionBundlePath 242 | /System/Library/Automator/Get Folder Contents.action 243 | ActionName 244 | Get Folder Contents 245 | ActionParameters 246 | 247 | recurse 248 | 249 | 250 | BundleIdentifier 251 | com.apple.Automator.GetFolderContents 252 | CFBundleVersion 253 | 1.0.2 254 | CanShowSelectedItemsWhenRun 255 | 256 | CanShowWhenRun 257 | 258 | Category 259 | 260 | AMCategoryFilesAndFolders 261 | 262 | Class Name 263 | GetFolderContents 264 | InputUUID 265 | 5DE4FBC0-2616-4644-A9C4-B4183A0416C6 266 | Keywords 267 | 268 | File 269 | Folder 270 | 271 | OutputUUID 272 | FDD87017-2EE6-499F-AC8C-6628AB22E97E 273 | UUID 274 | 8EBD0691-AC52-417F-8598-80090801933C 275 | UnlocalizedApplications 276 | 277 | Finder 278 | 279 | arguments 280 | 281 | 0 282 | 283 | default value 284 | 285 | name 286 | recurse 287 | required 288 | 0 289 | type 290 | 0 291 | uuid 292 | 0 293 | 294 | 295 | isViewVisible 296 | 297 | location 298 | 529.000000:332.000000 299 | nibPath 300 | /System/Library/Automator/Get Folder Contents.action/Contents/Resources/Base.lproj/main.nib 301 | 302 | isViewVisible 303 | 304 | 305 | 306 | action 307 | 308 | AMAccepts 309 | 310 | Container 311 | List 312 | Optional 313 | 314 | Types 315 | 316 | com.apple.cocoa.path 317 | 318 | 319 | AMActionVersion 320 | 1.1.2 321 | AMApplication 322 | 323 | Finder 324 | 325 | AMParameterProperties 326 | 327 | ActionBundlePath 328 | /System/Library/Automator/Move Finder Items to Trash.action 329 | ActionName 330 | Move Finder Items to Trash 331 | ActionParameters 332 | 333 | BundleIdentifier 334 | com.apple.Automator.MoveToTrash 335 | CFBundleVersion 336 | 1.1.2 337 | CanShowSelectedItemsWhenRun 338 | 339 | CanShowWhenRun 340 | 341 | Category 342 | 343 | AMCategoryUtilities 344 | AMCategoryFilesAndFolders 345 | 346 | Class Name 347 | MoveToTrashAction 348 | InputUUID 349 | 2D5A3D20-9156-45D5-BC26-214673A77C17 350 | Keywords 351 | 352 | File 353 | Folder 354 | Move 355 | Trash 356 | Delete 357 | 358 | UUID 359 | B5238DCE-3C65-47A4-B574-775C672517E1 360 | UnlocalizedApplications 361 | 362 | Finder 363 | 364 | arguments 365 | 366 | 367 | 368 | 369 | action 370 | 371 | AMAccepts 372 | 373 | Container 374 | List 375 | Optional 376 | 377 | Types 378 | 379 | com.apple.cocoa.string 380 | 381 | 382 | AMActionVersion 383 | 2.0.3 384 | AMApplication 385 | 386 | Automator 387 | 388 | AMParameterProperties 389 | 390 | COMMAND_STRING 391 | 392 | CheckedForUserDefaultShell 393 | 394 | inputMethod 395 | 396 | shell 397 | 398 | source 399 | 400 | 401 | AMProvides 402 | 403 | Container 404 | List 405 | Types 406 | 407 | com.apple.cocoa.string 408 | 409 | 410 | ActionBundlePath 411 | /System/Library/Automator/Run Shell Script.action 412 | ActionName 413 | Run Shell Script 414 | ActionParameters 415 | 416 | COMMAND_STRING 417 | python ~/Applications/Bing\ Wallpaper/GetWallpaper.py 418 | CheckedForUserDefaultShell 419 | 420 | inputMethod 421 | 0 422 | shell 423 | /bin/bash 424 | source 425 | 426 | 427 | BundleIdentifier 428 | com.apple.RunShellScript 429 | CFBundleVersion 430 | 2.0.3 431 | CanShowSelectedItemsWhenRun 432 | 433 | CanShowWhenRun 434 | 435 | Category 436 | 437 | AMCategoryUtilities 438 | 439 | Class Name 440 | RunShellScriptAction 441 | InputUUID 442 | 58B63418-CA12-40BD-BDE6-E398EAA78CE2 443 | Keywords 444 | 445 | Shell 446 | Script 447 | Command 448 | Run 449 | Unix 450 | 451 | OutputUUID 452 | E8AD152B-33BD-48A4-9DA1-974180169A7F 453 | UUID 454 | C3526F6A-6CF4-43F0-967E-5A8CE0163A0F 455 | UnlocalizedApplications 456 | 457 | Automator 458 | 459 | arguments 460 | 461 | 0 462 | 463 | default value 464 | 0 465 | name 466 | inputMethod 467 | required 468 | 0 469 | type 470 | 0 471 | uuid 472 | 0 473 | 474 | 1 475 | 476 | default value 477 | 478 | name 479 | source 480 | required 481 | 0 482 | type 483 | 0 484 | uuid 485 | 1 486 | 487 | 2 488 | 489 | default value 490 | 491 | name 492 | CheckedForUserDefaultShell 493 | required 494 | 0 495 | type 496 | 0 497 | uuid 498 | 2 499 | 500 | 3 501 | 502 | default value 503 | 504 | name 505 | COMMAND_STRING 506 | required 507 | 0 508 | type 509 | 0 510 | uuid 511 | 3 512 | 513 | 4 514 | 515 | default value 516 | /bin/sh 517 | name 518 | shell 519 | required 520 | 0 521 | type 522 | 0 523 | uuid 524 | 4 525 | 526 | 527 | isViewVisible 528 | 529 | location 530 | 529.000000:581.000000 531 | nibPath 532 | /System/Library/Automator/Run Shell Script.action/Contents/Resources/English.lproj/main.nib 533 | 534 | isViewVisible 535 | 536 | 537 | 538 | action 539 | 540 | AMAccepts 541 | 542 | Container 543 | List 544 | Optional 545 | 546 | Types 547 | 548 | com.apple.cocoa.path 549 | 550 | 551 | AMActionVersion 552 | 1.1.2 553 | AMApplication 554 | 555 | Finder 556 | 557 | AMParameterProperties 558 | 559 | replaceExisting 560 | 561 | toDirectory 562 | 563 | isPathPopUp 564 | 565 | variableUUIDsInMenu 566 | 567 | 568 | 569 | AMProvides 570 | 571 | Container 572 | List 573 | Types 574 | 575 | com.apple.cocoa.path 576 | 577 | 578 | ActionBundlePath 579 | /System/Library/Automator/Move Finder Items.action 580 | ActionName 581 | Move Finder Items 582 | ActionParameters 583 | 584 | replaceExisting 585 | 586 | toDirectory 587 | ~/Pictures/bing-wallpaper 588 | 589 | BundleIdentifier 590 | com.apple.Automator.MoveFiles 591 | CFBundleVersion 592 | 1.1.2 593 | CanShowSelectedItemsWhenRun 594 | 595 | CanShowWhenRun 596 | 597 | Category 598 | 599 | AMCategoryFilesAndFolders 600 | 601 | Class Name 602 | MoveFilesAction 603 | InputUUID 604 | 571AE764-82F9-4AAA-AB23-ED10CCC90638 605 | Keywords 606 | 607 | File 608 | Move 609 | 610 | OutputUUID 611 | 5C1DE61C-5FEC-4C1A-907B-F543BFE198F8 612 | UUID 613 | A4A30176-A692-4EC2-AC80-74FB2E6AAD2E 614 | UnlocalizedApplications 615 | 616 | Finder 617 | 618 | arguments 619 | 620 | 0 621 | 622 | default value 623 | ~/Desktop 624 | name 625 | toDirectory 626 | required 627 | 0 628 | type 629 | 0 630 | uuid 631 | 0 632 | 633 | 1 634 | 635 | default value 636 | 637 | name 638 | replaceExisting 639 | required 640 | 0 641 | type 642 | 0 643 | uuid 644 | 1 645 | 646 | 647 | isViewVisible 648 | 649 | location 650 | 529.000000:684.000000 651 | nibPath 652 | /System/Library/Automator/Move Finder Items.action/Contents/Resources/Base.lproj/main.nib 653 | 654 | isViewVisible 655 | 656 | 657 | 658 | action 659 | 660 | AMAccepts 661 | 662 | Container 663 | List 664 | Optional 665 | 666 | Types 667 | 668 | com.apple.cocoa.path 669 | 670 | 671 | AMActionVersion 672 | 1.0.2 673 | AMApplication 674 | 675 | Finder 676 | 677 | AMParameterProperties 678 | 679 | AMProvides 680 | 681 | Container 682 | List 683 | Types 684 | 685 | com.apple.applescript.alias-object 686 | 687 | 688 | ActionBundlePath 689 | /System/Library/Automator/Set Desktop Picture.action 690 | ActionName 691 | Set the Desktop Picture 692 | ActionParameters 693 | 694 | BundleIdentifier 695 | com.apple.Automator.SetDesktopPicture 696 | CFBundleVersion 697 | 1.0.2 698 | CanShowSelectedItemsWhenRun 699 | 700 | CanShowWhenRun 701 | 702 | Category 703 | 704 | AMCategoryFilesAndFolders 705 | 706 | Class Name 707 | Set_Desktop_Picture 708 | InputUUID 709 | 41C47116-29E3-48F2-8C98-C535530236EE 710 | Keywords 711 | 712 | Set 713 | Image 714 | Photo 715 | Display 716 | 717 | OutputUUID 718 | FD870343-7CDA-48E9-8A91-EA23C0C9F6D2 719 | UUID 720 | 946516ED-E49F-4907-B0AE-99A918F54CED 721 | UnlocalizedApplications 722 | 723 | Finder 724 | 725 | arguments 726 | 727 | 728 | 729 | 730 | connectors 731 | 732 | 13C22FE4-1DED-48BE-9B39-494ED125F767 733 | 734 | from 735 | 8EBD0691-AC52-417F-8598-80090801933C - 8EBD0691-AC52-417F-8598-80090801933C 736 | to 737 | B5238DCE-3C65-47A4-B574-775C672517E1 - B5238DCE-3C65-47A4-B574-775C672517E1 738 | 739 | 355E234E-06D3-4593-9AC4-BFEFB36CB40E 740 | 741 | to 742 | C3526F6A-6CF4-43F0-967E-5A8CE0163A0F - C3526F6A-6CF4-43F0-967E-5A8CE0163A0F 743 | 744 | 38EFB0EA-C0FD-431B-A4B9-A9D5A9A018F8 745 | 746 | from 747 | 66C3F436-AE0D-43AC-9D2B-F1907B520EC3 - 66C3F436-AE0D-43AC-9D2B-F1907B520EC3 748 | to 749 | 8EBD0691-AC52-417F-8598-80090801933C - 8EBD0691-AC52-417F-8598-80090801933C 750 | 751 | 562CCE22-FD6D-4EC6-B87B-E585C27A83C5 752 | 753 | from 754 | C3526F6A-6CF4-43F0-967E-5A8CE0163A0F - C3526F6A-6CF4-43F0-967E-5A8CE0163A0F 755 | to 756 | A4A30176-A692-4EC2-AC80-74FB2E6AAD2E - A4A30176-A692-4EC2-AC80-74FB2E6AAD2E 757 | 758 | 71407757-93B1-475E-B1FC-15C8347B9F65 759 | 760 | from 761 | A4A30176-A692-4EC2-AC80-74FB2E6AAD2E - A4A30176-A692-4EC2-AC80-74FB2E6AAD2E 762 | to 763 | 946516ED-E49F-4907-B0AE-99A918F54CED - 946516ED-E49F-4907-B0AE-99A918F54CED 764 | 765 | 766 | workflowMetaData 767 | 768 | workflowTypeIdentifier 769 | com.apple.Automator.application 770 | 771 | 772 | 773 | -------------------------------------------------------------------------------- /Bing Wallpaper/CheckBingStatus.app/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | AMIsApplet 6 | 7 | AMStayOpen 8 | 9 | BuildMachineOSBuild 10 | 14C58 11 | CFBundleDevelopmentRegion 12 | English 13 | CFBundleDocumentTypes 14 | 15 | 16 | CFBundleTypeExtensions 17 | 18 | * 19 | 20 | CFBundleTypeName 21 | Automator workflow file 22 | CFBundleTypeOSTypes 23 | 24 | **** 25 | 26 | CFBundleTypeRole 27 | Viewer 28 | 29 | 30 | CFBundleExecutable 31 | Application Stub 32 | CFBundleIconFile 33 | AutomatorApplet 34 | CFBundleIdentifier 35 | com.apple.automator.GetWallpaper 36 | CFBundleInfoDictionaryVersion 37 | 6.0 38 | CFBundleName 39 | GetWallpaper 40 | CFBundlePackageType 41 | APPL 42 | CFBundleShortVersionString 43 | 1.2 44 | CFBundleSignature 45 | ???? 46 | CFBundleURLTypes 47 | 48 | CFBundleVersion 49 | 409.1 50 | DTCompiler 51 | com.apple.compilers.llvm.clang.1_0 52 | DTPlatformBuild 53 | 6D68e 54 | DTPlatformVersion 55 | GM 56 | DTSDKBuild 57 | 14C55 58 | DTSDKName 59 | macosx10.10internal 60 | DTXcode 61 | 0650 62 | DTXcodeBuild 63 | 6D68e 64 | LSMinimumSystemVersion 65 | 10.5 66 | LSMinimumSystemVersionByArchitecture 67 | 68 | x86_64 69 | 10.6 70 | 71 | LSUIElement 72 | 73 | NSAppleScriptEnabled 74 | YES 75 | NSMainNibFile 76 | ApplicationStub 77 | NSPrincipalClass 78 | NSApplication 79 | NSServices 80 | 81 | UTExportedTypeDeclarations 82 | 83 | UTImportedTypeDeclarations 84 | 85 | 86 | 87 | -------------------------------------------------------------------------------- /Bing Wallpaper/CheckBingStatus.app/Contents/MacOS/Application Stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/CheckBingStatus.app/Contents/MacOS/Application Stub -------------------------------------------------------------------------------- /Bing Wallpaper/CheckBingStatus.app/Contents/Resources/AutomatorApplet.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/CheckBingStatus.app/Contents/Resources/AutomatorApplet.icns -------------------------------------------------------------------------------- /Bing Wallpaper/CheckBingStatus.app/Contents/Resources/Dutch.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/CheckBingStatus.app/Contents/Resources/Dutch.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Bing Wallpaper/CheckBingStatus.app/Contents/Resources/English.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/CheckBingStatus.app/Contents/Resources/English.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Bing Wallpaper/CheckBingStatus.app/Contents/Resources/French.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/CheckBingStatus.app/Contents/Resources/French.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Bing Wallpaper/CheckBingStatus.app/Contents/Resources/German.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/CheckBingStatus.app/Contents/Resources/German.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Bing Wallpaper/CheckBingStatus.app/Contents/Resources/Italian.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/CheckBingStatus.app/Contents/Resources/Italian.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Bing Wallpaper/CheckBingStatus.app/Contents/Resources/Japanese.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/CheckBingStatus.app/Contents/Resources/Japanese.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Bing Wallpaper/CheckBingStatus.app/Contents/Resources/Spanish.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/CheckBingStatus.app/Contents/Resources/Spanish.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Bing Wallpaper/CheckBingStatus.app/Contents/Resources/ar.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/CheckBingStatus.app/Contents/Resources/ar.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Bing Wallpaper/CheckBingStatus.app/Contents/Resources/ca.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/CheckBingStatus.app/Contents/Resources/ca.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Bing Wallpaper/CheckBingStatus.app/Contents/Resources/cs.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/CheckBingStatus.app/Contents/Resources/cs.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Bing Wallpaper/CheckBingStatus.app/Contents/Resources/da.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/CheckBingStatus.app/Contents/Resources/da.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Bing Wallpaper/CheckBingStatus.app/Contents/Resources/el.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/CheckBingStatus.app/Contents/Resources/el.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Bing Wallpaper/CheckBingStatus.app/Contents/Resources/es_MX.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/CheckBingStatus.app/Contents/Resources/es_MX.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Bing Wallpaper/CheckBingStatus.app/Contents/Resources/fi.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/CheckBingStatus.app/Contents/Resources/fi.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Bing Wallpaper/CheckBingStatus.app/Contents/Resources/he.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/CheckBingStatus.app/Contents/Resources/he.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Bing Wallpaper/CheckBingStatus.app/Contents/Resources/hr.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/CheckBingStatus.app/Contents/Resources/hr.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Bing Wallpaper/CheckBingStatus.app/Contents/Resources/hu.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/CheckBingStatus.app/Contents/Resources/hu.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Bing Wallpaper/CheckBingStatus.app/Contents/Resources/id.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/CheckBingStatus.app/Contents/Resources/id.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Bing Wallpaper/CheckBingStatus.app/Contents/Resources/ko.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/CheckBingStatus.app/Contents/Resources/ko.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Bing Wallpaper/CheckBingStatus.app/Contents/Resources/ms.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/CheckBingStatus.app/Contents/Resources/ms.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Bing Wallpaper/CheckBingStatus.app/Contents/Resources/no.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/CheckBingStatus.app/Contents/Resources/no.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Bing Wallpaper/CheckBingStatus.app/Contents/Resources/pl.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/CheckBingStatus.app/Contents/Resources/pl.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Bing Wallpaper/CheckBingStatus.app/Contents/Resources/pt.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/CheckBingStatus.app/Contents/Resources/pt.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Bing Wallpaper/CheckBingStatus.app/Contents/Resources/pt_PT.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/CheckBingStatus.app/Contents/Resources/pt_PT.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Bing Wallpaper/CheckBingStatus.app/Contents/Resources/ro.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/CheckBingStatus.app/Contents/Resources/ro.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Bing Wallpaper/CheckBingStatus.app/Contents/Resources/ru.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/CheckBingStatus.app/Contents/Resources/ru.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Bing Wallpaper/CheckBingStatus.app/Contents/Resources/sk.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/CheckBingStatus.app/Contents/Resources/sk.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Bing Wallpaper/CheckBingStatus.app/Contents/Resources/sv.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/CheckBingStatus.app/Contents/Resources/sv.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Bing Wallpaper/CheckBingStatus.app/Contents/Resources/th.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/CheckBingStatus.app/Contents/Resources/th.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Bing Wallpaper/CheckBingStatus.app/Contents/Resources/tr.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/CheckBingStatus.app/Contents/Resources/tr.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Bing Wallpaper/CheckBingStatus.app/Contents/Resources/uk.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/CheckBingStatus.app/Contents/Resources/uk.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Bing Wallpaper/CheckBingStatus.app/Contents/Resources/vi.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/CheckBingStatus.app/Contents/Resources/vi.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Bing Wallpaper/CheckBingStatus.app/Contents/Resources/zh_CN.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/CheckBingStatus.app/Contents/Resources/zh_CN.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Bing Wallpaper/CheckBingStatus.app/Contents/Resources/zh_TW.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkprogrammer/bing-wallpaper-for-mac/e0d840ae445bb17efc80f6cc3d7698c340992985/Bing Wallpaper/CheckBingStatus.app/Contents/Resources/zh_TW.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Bing Wallpaper/CheckBingStatus.app/Contents/document.wflow: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | AMApplicationBuild 6 | 409.1 7 | AMApplicationVersion 8 | 2.5 9 | AMDocumentVersion 10 | 2 11 | actions 12 | 13 | 14 | action 15 | 16 | AMAccepts 17 | 18 | Container 19 | List 20 | Optional 21 | 22 | Types 23 | 24 | com.apple.cocoa.string 25 | 26 | 27 | AMActionVersion 28 | 2.0.3 29 | AMApplication 30 | 31 | Automator 32 | 33 | AMParameterProperties 34 | 35 | COMMAND_STRING 36 | 37 | CheckedForUserDefaultShell 38 | 39 | inputMethod 40 | 41 | shell 42 | 43 | source 44 | 45 | 46 | AMProvides 47 | 48 | Container 49 | List 50 | Types 51 | 52 | com.apple.cocoa.string 53 | 54 | 55 | ActionBundlePath 56 | /System/Library/Automator/Run Shell Script.action 57 | ActionName 58 | Run Shell Script 59 | ActionParameters 60 | 61 | COMMAND_STRING 62 | python ~/Applications/Bing\ Wallpaper/CheckStatus.py 63 | CheckedForUserDefaultShell 64 | 65 | inputMethod 66 | 0 67 | shell 68 | /bin/bash 69 | source 70 | 71 | 72 | BundleIdentifier 73 | com.apple.RunShellScript 74 | CFBundleVersion 75 | 2.0.3 76 | CanShowSelectedItemsWhenRun 77 | 78 | CanShowWhenRun 79 | 80 | Category 81 | 82 | AMCategoryUtilities 83 | 84 | Class Name 85 | RunShellScriptAction 86 | InputUUID 87 | 90C30957-B7FB-4284-A951-C9BA44A35A67 88 | Keywords 89 | 90 | Shell 91 | Script 92 | Command 93 | Run 94 | Unix 95 | 96 | OutputUUID 97 | 35F11A45-8209-47B4-BE1A-D3E4C5B8526D 98 | UUID 99 | 625940BE-69B1-4341-9F3B-C407F49BBA19 100 | UnlocalizedApplications 101 | 102 | Automator 103 | 104 | arguments 105 | 106 | 0 107 | 108 | default value 109 | 0 110 | name 111 | inputMethod 112 | required 113 | 0 114 | type 115 | 0 116 | uuid 117 | 0 118 | 119 | 1 120 | 121 | default value 122 | 123 | name 124 | source 125 | required 126 | 0 127 | type 128 | 0 129 | uuid 130 | 1 131 | 132 | 2 133 | 134 | default value 135 | 136 | name 137 | CheckedForUserDefaultShell 138 | required 139 | 0 140 | type 141 | 0 142 | uuid 143 | 2 144 | 145 | 3 146 | 147 | default value 148 | 149 | name 150 | COMMAND_STRING 151 | required 152 | 0 153 | type 154 | 0 155 | uuid 156 | 3 157 | 158 | 4 159 | 160 | default value 161 | /bin/sh 162 | name 163 | shell 164 | required 165 | 0 166 | type 167 | 0 168 | uuid 169 | 4 170 | 171 | 172 | isViewVisible 173 | 174 | location 175 | 309.000000:387.000000 176 | nibPath 177 | /System/Library/Automator/Run Shell Script.action/Contents/Resources/English.lproj/main.nib 178 | 179 | isViewVisible 180 | 181 | 182 | 183 | connectors 184 | 185 | workflowMetaData 186 | 187 | workflowTypeIdentifier 188 | com.apple.Automator.application 189 | 190 | 191 | 192 | -------------------------------------------------------------------------------- /Bing Wallpaper/CheckStatus.py: -------------------------------------------------------------------------------- 1 | import os, datetime 2 | 3 | #For python3 4 | try: 5 | from urllib.request import urlopen 6 | #For python2 7 | except: 8 | from urllib2 import urlopen 9 | 10 | #Ping function to validate internet connectivity 11 | def ping(): 12 | hostname = "www.bing.com" 13 | response = os.system("ping -c 1 " + hostname) 14 | # and then check the response... 15 | if response == 0: 16 | return True #If exit code is 0, ping completed successfully 17 | 18 | else: 19 | return False #Else no internet connection 20 | 21 | 22 | 23 | #Get home folder 24 | homeFolder = os.path.expanduser("~") 25 | pictureLocation = homeFolder + "/Pictures/bing-wallpaper/" 26 | appLocation = homeFolder + "/Applications/Bing\ Wallpaper/BingWallpaper.app" 27 | internetConnected = False 28 | 29 | 30 | #Ping and check status of internet connection 31 | internetConnected = ping() 32 | 33 | #Old block to check internet connection - does not always provide reliable result 34 | """ 35 | #Check to see if there is an active internet connection 36 | try: 37 | urlopen("http://www.bing.com",timeout=10) 38 | internetConnected = True 39 | except: 40 | internetConnected = False 41 | """ 42 | 43 | #Flag to see if any jpg file was found in the bing-wallpaper folder 44 | fileExists=0 45 | 46 | #Check to see if the bing-wallpaper folder exists in the Pictures directory 47 | if not os.path.exists(pictureLocation): 48 | #If it does not exist, create the directory 49 | os.makedirs(pictureLocation) 50 | #Find the jpg file in the bing-wallpaper folder 51 | for f in os.listdir(pictureLocation): 52 | #if there is a file... 53 | if os.path.isfile(pictureLocation + f): 54 | #Check to see if the file ends with jpg. This removes the .DS files 55 | if f.endswith(".jpg"): 56 | #Flag that a jpg file was found 57 | fileExists=1 58 | file = pictureLocation + f 59 | #Get change date of the file 60 | #Returns number of seconds since the epoch 61 | fileChange = os.path.getctime(file) 62 | 63 | #Convert change time into string 64 | changeTimeStr = (datetime.datetime.fromtimestamp(fileChange).strftime('%Y-%m-%d %H:%M:%S.%f')) 65 | 66 | #Convert the 67 | changeTime = datetime.datetime.strptime(changeTimeStr, "%Y-%m-%d %H:%M:%S.%f") 68 | 69 | #Get the time now 70 | today = datetime.datetime.today() 71 | 72 | #Get the difference between now and the date the file was changed 73 | c = today.date() - changeTime.date() 74 | 75 | #If the difference is 1 day, then run the app to download a new image, else pass. 76 | if c.days > 0 and internetConnected==True: 77 | os.system("open " + appLocation) 78 | 79 | #If there was no jpg file in the folder, run the app to get a new wallpaper 80 | if internetConnected==True and fileExists==0: 81 | os.system("open " + appLocation) 82 | -------------------------------------------------------------------------------- /Bing Wallpaper/GetWallpaper.py: -------------------------------------------------------------------------------- 1 | import json 2 | 3 | #Try with python3 4 | try: 5 | from urllib.request import urlopen, urlretrieve 6 | from urllib.request import urlretrieve 7 | 8 | #Else try python2 9 | except: 10 | from urllib2 import urlopen 11 | from urllib import urlretrieve 12 | 13 | from os import path 14 | 15 | 16 | #User home folder 17 | homeFolder = path.expanduser("~") 18 | 19 | #Save pictures to a folder 20 | pictureLocation = homeFolder + "/Downloads/" 21 | 22 | 23 | def main(): 24 | ########Defining variables####### 25 | 26 | #URL in json format for latest wallpaper 27 | url = "http://www.bing.com/HPImageArchive.aspx?format=js&idx=0&n=1&mkt=en-US" 28 | 29 | getHighRes = 1 #Manually change the resolution in the url to 1920x1200. Change to 0 if url breaks. 30 | 31 | #Get json response from bing.com 32 | response = urlopen(url) 33 | 34 | #Trying python 3 35 | try: 36 | output = response.readall().decode('utf-8') 37 | 38 | #Else trying python2 39 | except: 40 | output = response.read() 41 | 42 | #Get json output 43 | data = json.loads(output) 44 | 45 | #Form image url from json 46 | output_url = "http://www.bing.com/" + data["images"][0]["url"] 47 | 48 | #Form 1920x1200 image from above url 49 | output_url_highres = output_url.replace("1080", "1200") 50 | 51 | 52 | #If higher resolution is preferred(default) 53 | if getHighRes == 1: 54 | 55 | #Use try block to catch any failure in getting the high res image 56 | try: 57 | process_url(output_url_highres) 58 | 59 | except: 60 | process_url(output_url) 61 | 62 | else: 63 | process_url(output_url) 64 | 65 | 66 | def process_url(image_url): 67 | if not check_url(image_url) == 1: 68 | #Get the filename of the new file from the url 69 | filename = pictureLocation + image_url.split('/')[-1] 70 | 71 | #Retrieve the image from the web and save it to desired location 72 | req = urlretrieve(image_url, filename) 73 | 74 | #Save the file path + filename to the output variable 75 | bingImage = path.abspath(filename) 76 | print(bingImage) 77 | else: 78 | raise Exception('bad url') 79 | 80 | def check_url(image_url): 81 | conn = urlopen(image_url) 82 | if not conn.getcode() == 200: 83 | return 1 84 | main() 85 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 Bobin Joseph 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # bing-wallpaper-for-mac 2 | Bing wallpaper for mac 3 | 4 | This program is written in python specifically for OSX and tested on Yosemite 10.10.2 running python 2.7.9 and 3.4.3 5 | 6 | ###Notes 7 | 8 | - The app calls the python scripts on execution. 9 | - In order to save space, the script assumes that *only 1 image* is kept in the ~/Pictures/bing-wallpaper folder. 10 | - Place all the files into a single folder. Here it is in the Applications folder within the user's home directory - `~/Applications/Bing Wallpaper` 11 | - Open the plist file with your favorite editor and change the username to your username 12 | 13 | ![Image](http://i.imgur.com/Zr9qkQs.jpg) 14 | 15 | ###The App 16 | - The application is split in the following ways: 17 | - The checker app checks to ensure there is internet connectivity, then checks to see if an image file already exists in the ~/Pictures/bing-wallpaper folder. 18 | - If there are files, it will check to see if the file was created today. 19 | - If the file was created today, stop and don't do anything 20 | - Else, run the app to download the wallpaper. 21 | - If there are no files, run the app to download the wallpaper 22 | - The wallpaper downloader app ensures that you only have the latest wallpaper in your folder. It makes sure to delete all files from that folder before downloading the new wallpaper. 23 | 24 | ###Plist File 25 | - Copy the plist file to `~/Library/LaunchAgents` 26 | ``` 27 | cp bing.wallpaper.mac.plist ~/Library/LaunchAgents 28 | ``` 29 | - Edit the plist file to reflect your username 30 | - Save and close 31 | - Run the following terminal command 32 | ``` 33 | launchctl load ~/Library/LaunchAgents/bing.wallpaper.mac.plist 34 | ``` 35 | 36 | ###Uninstall 37 | - To uninstall run this command 38 | ``` 39 | launchctl unload ~/Library/LaunchAgents/bing.wallpaper.mac.plist 40 | ``` 41 | - Delete the `~/Applications/Bing Wallpaper` folder and its contents 42 | - Delete the `~/Pictures/bing-wallpaper` folder and its contents 43 | 44 | ###Thanks 45 | Feel free to share your comments and thoughts. I am new to github. 46 | -------------------------------------------------------------------------------- /bing.wallpaper.mac.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Label 6 | bing.wallpaper.mac 7 | ProgramArguments 8 | 9 | /Users/username/Applications/Bing Wallpaper/CheckBingStatus.app/Contents/MacOS/Application Stub 10 | 11 | 12 | 16 | 17 | 18 | StartInterval 19 | 3600 20 | 21 | 22 | 31 | 32 | 33 | --------------------------------------------------------------------------------