본문 바로가기
반응형

#컴퓨터 과학 [Computer Science]69

[OS - 🍎 macOS] macOS 앱 실행하기 (Launching apps programmatically) 👓 001. launchApplication // MARK: - Launches the specified app. func launchApplication(_ appName: String) -> Bool 📔 Launching apps programmatically Source Code by Swift NSWorkspace.shared.launchApplication('APP NAME') // EXAMPLE NSWorkspace.shared.launchApplication("Safari") 🚀 REFERENCE ChangYeop-Yang/Study-macOS macOS는 기업 애플이 제작한 운영 체제이다. 2002년 4월부터 모든 매킨토시 컴퓨터에 적용되고 있다. - ChangYeop-Yang/Study-.. 2019. 11. 1.
[OS - 🍎 macOS] macOS 일련 번호 가져오기 (Find macOS serial number) 📄 Find macOS serial number by Swift /* * Copyright (c) 2019 양창엽. All rights reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or s.. 2019. 10. 12.
[OS - 🍎 MacOS] iOS/macOS 주요 웹 브라우저 방문 기록 파일 경로 (Chrome, Safari, Opera, Firefox, Whale, Chromium, Canary History Database Path) 🔎 [NAVER - Whale] macOS History Database Path 001. /Users/[COMPUTER_USER_NAME]/Library/Application Support/Naver/Whale/Default 002. /Users/[COMPUTER_USER_NAME]/Library/Application Support/Naver/Whale/Profile 🔎 [Google - Chrome, Canary, Chromium] macOS History Database Path 001. [Chrome] ~/Library/Application Support/Google/Chrome 002. [Chrome Canary] ~/Library/Application Support/Google/Chrome C.. 2019. 9. 28.
[OS - 🍎 MacOS] launchd와 launchctl ✏️ launchctl In launchd, control of services is centralized in the launchctl application. launchctl은 launchd에서 XPC Service, Agent, Daemon을 관리 및 검사하는 애플리케이션입니다. ✏️ launchd launchd is an init and operating system service management daemon created by Apple Computer as part of macOS to replace its BSD-style init and SystemStarter. There have been efforts to port launchd to FreeBSD and derived system.. 2019. 9. 23.
반응형