mirror of
https://github.com/Toxblh/MTMR.git
synced 2026-01-12 09:58:38 +00:00
1. Have similar template brightness/space/volume/time 2. Volume buttons work but without visual a status in macos 3. Brightness don't work, but should :) 4. Time don't work Soon will be: 1. Work time 2. Set in strip the app for popover 3. Need find how simulate real buttons for brightness and volume
28 lines
461 B
Swift
28 lines
461 B
Swift
//
|
|
// ViewController.swift
|
|
// MTMR
|
|
//
|
|
// Created by Anton Palgunov on 16/03/2018.
|
|
// Copyright © 2018 Anton Palgunov. All rights reserved.
|
|
//
|
|
|
|
import Cocoa
|
|
|
|
class ViewController: NSViewController {
|
|
|
|
override func viewDidLoad() {
|
|
super.viewDidLoad()
|
|
|
|
// Do any additional setup after loading the view.
|
|
}
|
|
|
|
override var representedObject: Any? {
|
|
didSet {
|
|
// Update the view, if already loaded.
|
|
}
|
|
}
|
|
|
|
|
|
}
|
|
|