Hax-with-flic For Mac Average ratng: 4,4/5 4304 reviews

This is a basic app for Mac that integrates with Flic buttons.

The application allows you to execute your own scripts on Flic button presses. This requires OSX 10.10 or above operating systems running on a machine that supports Bluetooth Low Energy. It is unclear exactly which machines that have Bluetooth Low Energy support, but Apple supposedly started the transition around 2012. Running the following in a terminal will output the Bluetooth LMP Version:

For the Mac app the user must configure it, I'm not sure how easy it is. For the SDK/daemon variant, the solution is that we have a daemon executable running that implements a TCP server. Then we have client libraries for a couple of languages you can use to connect to the server.

Version 0x6 was the first one that supported Low Energy, but we cannot guarantee that this will be correct for all computers. Using a Bluetooth Low Energy compatible USB dongle should also work if it is just configured correctly.

Important notice

Since this application will blindly execute the scripts that you tell it to execute, it is very important that you make sure that you know what these scripts do. You need to verify, or have verified by someone who you trust, that the code being executed is not malicious in any way. We will not take responsibility for any harm that you may cause to your machine.

How it works

This application will allow you to connect multiple Flic buttons to your Mac computer and then select which scripts that you wish to execute on click, double click, hold, up and down.

Supported script files

The following files are supported:

  • Automator workflows (.workflow)
  • All files that are executable (chmod +x a_script.py) and contains a shebang on its first line (#!/some/path)

Some examples of supported files:

  • AppleScript - .scpt, .AppleScript - #!/usr/bin/osascript
  • Shell Script - .sh - #!/bin/sh
  • Ruby Script - .rb - #!/usr/bin/env ruby
  • Python Script - .py - #!/usr/bin/env python

This can of course vary a bit depending on how your Mac is configured.

Installation

  1. Download the repository by pressing the 'Download ZIP' button.
  2. Mount the dmg file and drag and drop the HaxWithFlic.app to your applications folder.
  3. When launching the application from the applications folder the first time it will ask you if you want to open a file that was downloaded from the internet. Press open.
  4. Press on the flic icon in the menu bar and start using the application. For example, press scan if you want to add a new Flic.

Configuration

  1. Press “Configure scripts.”.
  2. Add search paths to the scripts you want to launch.

Please note that some actions (like window resizing) requires that you add “HackWithFlic” to the accessibility list under the privacy settings of your mac. You can turn off the audio notifications by unchecking the 'Play audio' option. If you are using the button for tasks that require very low latency then you can lower the latency by checking the 'Low latency mode' option, but remember that this will decrease the battery life of your Flic significantly. The low latency mode reduces the latency down to 45ms from the normal 280ms. Notice, however, that these are worst case times and that the expected time is about half of that. The button down event always arrives before any other event, so it can be used for time critical applications.

Scripts

We have added a few pre-made scripts that you can find in this repository. All of them are very small and should be self explanatory. If you have any cool scripts of your own that you believe could be useful to other people, then feel free to submit a pull request on this repository.

Clipboard-Tools

  • removeDuplicateLines.sh Goes through your clipboard and removes all duplicate lines.
  • reverseLines.sh Goes through your clipboard and reverses the characters on each line.
  • sortLines.sh Goes through your clipboard and sorts all lines.
  • textToSpeech.sh Takes the contents of your clipboard and plays it using text to speech.

Desktop-Tools

  • interactiveScreenshot.sh Lets you select an area of your screen that you want to take a screenshot of. Resulting image is saved to your desktop folder.
  • maximizeApplicationWindow.sh Maximizes the size of the frontmost window of the active application.
  • screenshot.sh Takes a screenshot of your full desktop. Resulting image is saved to your desktop.
  • splitApplicationWindows.AppleScript Resizes the two frontmost windows of your active application and displays them side by side.

Finder-Tools

  • copyPathToClipboard.AppleScript Copies the path of the selected item in your frontmost finder window to your clipboard.
  • moveSelectedFilesToFolder.AppleScript Lets you move the selected items in your frontmost finder window to a different location.

General

  • currentDateToClipboard.AppleScript Copies the current time and date to your clipboard.
  • currentDateToClipboardAndPaste.AppleScript Same as above but also pastes to your active application.
  • displayCurrentDateInDialog.AppleScript Displays a dialog window with the current time and date.
  • saveClipboardToFile.AppleScript Lets you save the contents of the clipboard to a new file at a location that you choose.
  • startCalculator.AppleScript Launches the Mac Calculator app.
  • displaysleep.sh Shuts down the display, system continues to run in the background. (Added by jonashoechst)
  • sleep.sh Puts system to sleep, no network working anymore. (Added by jonashoechst)

Google-Chrome

For
  • chrome-CloseFrontWindow.AppleScript Closes the frontmost chrome window. This closes all tabs in that window.
  • chrome-Reload.AppleScript Reload the selected tab of the frontmost chrome window.
  • chrome-ShowSourceFile.AppleScript Opens a new tab showing the source code of the selected tab of the frontmost chrome window.

Hue

  • hue_switch.sh Toggle all your Philips Hue lights on/off. (Added by patricks)
  • hue_all_off.rb Turns off all lights. (Added by patricks)
  • hue_all_on.rb Turns on all lights. (Added by patricks)
  • hue_switch.rb Switches the current state of all lights. (Added by patricks)

Keynote

  • keynoteNextSlide.sh Display next slide. This actually only simulates a keypress on the space key.
  • keynotePreviousSlide.sh Display previous slide. This simulates a press on the p-key.

Spotify

Hax-with-flic For Mac
  • spotify-NextTrack.AppleScript Moves to the next track. Also works with Spotify connect.
  • spotify-PlayPause.AppleScript Play or Pause the music. Also works with Spotify connect.
  • spotify-PreviousTrack.AppleScript Moves to the previous track. Also works with Spotify connect.
  • pauseSpotifyAndSleep.sh Pauses Spotify if a track is currently playing and then puts mac to sleep. (Added by echo0101)

Sonos

Notice: All Sonos scripts requires that you find the IP address of your Sonos and then change the script accordingly.

  • sonos-NextTrack.sh Skip to next track in your current playing playlist.
  • sonos-Pause.sh Pause the playback.
  • sonos-Play.sh Play the previously paused playback.
  • sonos-PlayPauseToggle.sh Toggle between play and pause.
  • sonos-PreviousTrack.sh Skip to the previous track in your current playing playlist.

VLC

  • vlc-Fullscreen.AppleScript Toggle fullscreen.
  • vlc-Mute.AppleScript Toggle mute.
  • vlc-NextPlaylistItem.AppleScript Jump to next item in playlist.
  • vlc-PlayPause.AppleScript Toggle play/pause.
  • vlc-PreviousPlaylistItem.AppleScript Jump to previous item in playlist.
  • vlc-StepBackward.AppleScript Step backward. Step length can be configured.
  • vlc-StepForward.AppleScript Step forward. Step length can be configured.
  • vlc-StopPlayback.AppleScript Stop the current playback.
  • vlc-VolumeDown.AppleScript Decrease volume by one step. Step length can be configured.
  • vlc-VolumeUp.AppleScript Increase volume by one step. Step length can be configured.

Track time on Toggl using a Flic button.

flictoggl connects a Flic smart button to your Toggl account for simple on/off time tracking. Hit the button to start recording time. Hit it again to stop. Simple as pie.

Requirements

  • NodeJS

Use with Flic Mobile App

You have to deploy flictoggl as an HTTP service in order to use it with the Flic mobile app.

Mac Client stuck at 33% or 99%. Comment below rating threshold, click here to show it. Hi there I bought myself a new Macbook Pro Retina 13' for working. But I also want to install the Mac version of League of Legends so I can play games even when im not on my home PC. The problem; after figuring out how to install it (xD) the Patcher. Hey, I have a problem after I open my LoL Launcher, the download is stuck at 33% and it is calculating files for a bit, then it goes in to the actual downloading, the furthest it got was 75% then I suddenly quit, and back to 33%, the launcher keeps quitting. League of legends stuck at 33 for mac. My league launcher stuck at%33 -MAC- My league launcher stuck at%33 -MAC-OByle (NA) submitted in ARCHIVED Help & Support. My league launcher keeps downloading files, currently I am at 15k files, is this normal? What should I do? Commenting is disabled Quote; Login to comment. Next, you should get a fresh copy of the Mac Client (Still don't delete the updated one), I suppose you can open the League of Legends.dmg and show packaged contents of fresh copy. Again, go to contents - LOL - System and just copy the UserKernel from the fresh copy to your updated client.

Step 1: Deploy to Heroku

You can deploy flictoggl everywhere you want. This guide shows how you can do this using Heroku though.

Make sure you note down the URL of the deployed Heroku app for later use in step 3.

Step 2: Configure Flic App

  • Open the Flic app on your phone
  • Add an HTTP Request action
  • Enter the URL of the deployed Heroku app from step 1
  • Select POST as request type
  • Paste the API token from step 2 to the Body field

Step 3: Test drive!

  • Press your Flic button once for start recording time
  • Press the button again to stop recording
  • Check the Toggl web timer

Use with hax-with-flic

hax-with-flic runs executable scripts on your Mac upon pressing a connected Flic button.To attach flictoggl to hax-with-flic, install flictoggl as command line utility:

You have to create a wrapper script around flictoggl to run it with hax-with-flic-osx. Example:

Hook the script to hax-with-flic:

How to get your Toggl API Token

  • Login to your Toggl account
  • Go to your profile
  • Copy your API token from the very bottom of the page

License

Copyright (c) 2016 Manuel Alabor

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 sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

This is a basic app for Mac that integrates with Flic buttons.

The application allows you to execute your own scripts on Flic button presses. This requires OSX 10.10 or above operating systems running on a machine that supports Bluetooth Low Energy. It is unclear exactly which machines that have Bluetooth Low Energy support, but Apple supposedly started the transition around 2012. Running the following in a terminal will output the Bluetooth LMP Version:

For the Mac app the user must configure it, I'm not sure how easy it is. For the SDK/daemon variant, the solution is that we have a daemon executable running that implements a TCP server. Then we have client libraries for a couple of languages you can use to connect to the server.

Version 0x6 was the first one that supported Low Energy, but we cannot guarantee that this will be correct for all computers. Using a Bluetooth Low Energy compatible USB dongle should also work if it is just configured correctly.

Important notice

Since this application will blindly execute the scripts that you tell it to execute, it is very important that you make sure that you know what these scripts do. You need to verify, or have verified by someone who you trust, that the code being executed is not malicious in any way. We will not take responsibility for any harm that you may cause to your machine.

How it works

This application will allow you to connect multiple Flic buttons to your Mac computer and then select which scripts that you wish to execute on click, double click, hold, up and down.

Supported script files

The following files are supported:

Some examples of supported files:

This can of course vary a bit depending on how your Mac is configured.

Installation

  1. Download the repository by pressing the 'Download ZIP' button.
  2. Mount the dmg file and drag and drop the HaxWithFlic.app to your applications folder.
  3. When launching the application from the applications folder the first time it will ask you if you want to open a file that was downloaded from the internet. Press open.
  4. Press on the flic icon in the menu bar and start using the application. For example, press scan if you want to add a new Flic.

Configuration

  1. Press “Configure scripts.”.
  2. Add search paths to the scripts you want to launch.

Please note that some actions (like window resizing) requires that you add “HackWithFlic” to the accessibility list under the privacy settings of your mac. You can turn off the audio notifications by unchecking the 'Play audio' option. If you are using the button for tasks that require very low latency then you can lower the latency by checking the 'Low latency mode' option, but remember that this will decrease the battery life of your Flic significantly. The low latency mode reduces the latency down to 45ms from the normal 280ms. Notice, however, that these are worst case times and that the expected time is about half of that. The button down event always arrives before any other event, so it can be used for time critical applications.

Scripts

We have added a few pre-made scripts that you can find in this repository. All of them are very small and should be self explanatory. If you have any cool scripts of your own that you believe could be useful to other people, then feel free to submit a pull request on this repository.

Clipboard-Tools

Desktop-Tools

Finder-Tools

General

Google-Chrome

For
  • chrome-CloseFrontWindow.AppleScript Closes the frontmost chrome window. This closes all tabs in that window.
  • chrome-Reload.AppleScript Reload the selected tab of the frontmost chrome window.
  • chrome-ShowSourceFile.AppleScript Opens a new tab showing the source code of the selected tab of the frontmost chrome window.

Hue

  • hue_switch.sh Toggle all your Philips Hue lights on/off. (Added by patricks)
  • hue_all_off.rb Turns off all lights. (Added by patricks)
  • hue_all_on.rb Turns on all lights. (Added by patricks)
  • hue_switch.rb Switches the current state of all lights. (Added by patricks)

Keynote

  • keynoteNextSlide.sh Display next slide. This actually only simulates a keypress on the space key.
  • keynotePreviousSlide.sh Display previous slide. This simulates a press on the p-key.

Spotify

Hax-with-flic For Mac
  • spotify-NextTrack.AppleScript Moves to the next track. Also works with Spotify connect.
  • spotify-PlayPause.AppleScript Play or Pause the music. Also works with Spotify connect.
  • spotify-PreviousTrack.AppleScript Moves to the previous track. Also works with Spotify connect.
  • pauseSpotifyAndSleep.sh Pauses Spotify if a track is currently playing and then puts mac to sleep. (Added by echo0101)

Sonos

Notice: All Sonos scripts requires that you find the IP address of your Sonos and then change the script accordingly.

  • sonos-NextTrack.sh Skip to next track in your current playing playlist.
  • sonos-Pause.sh Pause the playback.
  • sonos-Play.sh Play the previously paused playback.
  • sonos-PlayPauseToggle.sh Toggle between play and pause.
  • sonos-PreviousTrack.sh Skip to the previous track in your current playing playlist.

VLC

  • vlc-Fullscreen.AppleScript Toggle fullscreen.
  • vlc-Mute.AppleScript Toggle mute.
  • vlc-NextPlaylistItem.AppleScript Jump to next item in playlist.
  • vlc-PlayPause.AppleScript Toggle play/pause.
  • vlc-PreviousPlaylistItem.AppleScript Jump to previous item in playlist.
  • vlc-StepBackward.AppleScript Step backward. Step length can be configured.
  • vlc-StepForward.AppleScript Step forward. Step length can be configured.
  • vlc-StopPlayback.AppleScript Stop the current playback.
  • vlc-VolumeDown.AppleScript Decrease volume by one step. Step length can be configured.
  • vlc-VolumeUp.AppleScript Increase volume by one step. Step length can be configured.

Track time on Toggl using a Flic button.

flictoggl connects a Flic smart button to your Toggl account for simple on/off time tracking. Hit the button to start recording time. Hit it again to stop. Simple as pie.

Requirements

  • NodeJS

Use with Flic Mobile App

You have to deploy flictoggl as an HTTP service in order to use it with the Flic mobile app.

Mac Client stuck at 33% or 99%. Comment below rating threshold, click here to show it. Hi there I bought myself a new Macbook Pro Retina 13' for working. But I also want to install the Mac version of League of Legends so I can play games even when im not on my home PC. The problem; after figuring out how to install it (xD) the Patcher. Hey, I have a problem after I open my LoL Launcher, the download is stuck at 33% and it is calculating files for a bit, then it goes in to the actual downloading, the furthest it got was 75% then I suddenly quit, and back to 33%, the launcher keeps quitting. League of legends stuck at 33 for mac. My league launcher stuck at%33 -MAC- My league launcher stuck at%33 -MAC-OByle (NA) submitted in ARCHIVED Help & Support. My league launcher keeps downloading files, currently I am at 15k files, is this normal? What should I do? Commenting is disabled Quote; Login to comment. Next, you should get a fresh copy of the Mac Client (Still don't delete the updated one), I suppose you can open the League of Legends.dmg and show packaged contents of fresh copy. Again, go to contents - LOL - System and just copy the UserKernel from the fresh copy to your updated client.

Step 1: Deploy to Heroku

You can deploy flictoggl everywhere you want. This guide shows how you can do this using Heroku though.

Make sure you note down the URL of the deployed Heroku app for later use in step 3.

Step 2: Configure Flic App

  • Open the Flic app on your phone
  • Add an HTTP Request action
  • Enter the URL of the deployed Heroku app from step 1
  • Select POST as request type
  • Paste the API token from step 2 to the Body field

Step 3: Test drive!

  • Press your Flic button once for start recording time
  • Press the button again to stop recording
  • Check the Toggl web timer

Use with hax-with-flic

hax-with-flic runs executable scripts on your Mac upon pressing a connected Flic button.To attach flictoggl to hax-with-flic, install flictoggl as command line utility:

You have to create a wrapper script around flictoggl to run it with hax-with-flic-osx. Example:

Hook the script to hax-with-flic:

How to get your Toggl API Token

  • Login to your Toggl account
  • Go to your profile
  • Copy your API token from the very bottom of the page

License

Copyright (c) 2016 Manuel Alabor

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 sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

...">Hax-with-flic For Mac(25.02.2020)
  • Hax-with-flic For Mac Average ratng: 4,4/5 4304 reviews
  • This is a basic app for Mac that integrates with Flic buttons.

    The application allows you to execute your own scripts on Flic button presses. This requires OSX 10.10 or above operating systems running on a machine that supports Bluetooth Low Energy. It is unclear exactly which machines that have Bluetooth Low Energy support, but Apple supposedly started the transition around 2012. Running the following in a terminal will output the Bluetooth LMP Version:

    For the Mac app the user must configure it, I'm not sure how easy it is. For the SDK/daemon variant, the solution is that we have a daemon executable running that implements a TCP server. Then we have client libraries for a couple of languages you can use to connect to the server.

    Version 0x6 was the first one that supported Low Energy, but we cannot guarantee that this will be correct for all computers. Using a Bluetooth Low Energy compatible USB dongle should also work if it is just configured correctly.

    Important notice

    Since this application will blindly execute the scripts that you tell it to execute, it is very important that you make sure that you know what these scripts do. You need to verify, or have verified by someone who you trust, that the code being executed is not malicious in any way. We will not take responsibility for any harm that you may cause to your machine.

    How it works

    This application will allow you to connect multiple Flic buttons to your Mac computer and then select which scripts that you wish to execute on click, double click, hold, up and down.

    Supported script files

    The following files are supported:

    Some examples of supported files:

    This can of course vary a bit depending on how your Mac is configured.

    Installation

    1. Download the repository by pressing the 'Download ZIP' button.
    2. Mount the dmg file and drag and drop the HaxWithFlic.app to your applications folder.
    3. When launching the application from the applications folder the first time it will ask you if you want to open a file that was downloaded from the internet. Press open.
    4. Press on the flic icon in the menu bar and start using the application. For example, press scan if you want to add a new Flic.

    Configuration

    1. Press “Configure scripts.”.
    2. Add search paths to the scripts you want to launch.

    Please note that some actions (like window resizing) requires that you add “HackWithFlic” to the accessibility list under the privacy settings of your mac. You can turn off the audio notifications by unchecking the 'Play audio' option. If you are using the button for tasks that require very low latency then you can lower the latency by checking the 'Low latency mode' option, but remember that this will decrease the battery life of your Flic significantly. The low latency mode reduces the latency down to 45ms from the normal 280ms. Notice, however, that these are worst case times and that the expected time is about half of that. The button down event always arrives before any other event, so it can be used for time critical applications.

    Scripts

    We have added a few pre-made scripts that you can find in this repository. All of them are very small and should be self explanatory. If you have any cool scripts of your own that you believe could be useful to other people, then feel free to submit a pull request on this repository.

    Clipboard-Tools

    Desktop-Tools

    Finder-Tools

    General

    Google-Chrome

    For
    • chrome-CloseFrontWindow.AppleScript Closes the frontmost chrome window. This closes all tabs in that window.
    • chrome-Reload.AppleScript Reload the selected tab of the frontmost chrome window.
    • chrome-ShowSourceFile.AppleScript Opens a new tab showing the source code of the selected tab of the frontmost chrome window.

    Hue

    • hue_switch.sh Toggle all your Philips Hue lights on/off. (Added by patricks)
    • hue_all_off.rb Turns off all lights. (Added by patricks)
    • hue_all_on.rb Turns on all lights. (Added by patricks)
    • hue_switch.rb Switches the current state of all lights. (Added by patricks)

    Keynote

    • keynoteNextSlide.sh Display next slide. This actually only simulates a keypress on the space key.
    • keynotePreviousSlide.sh Display previous slide. This simulates a press on the p-key.

    Spotify

    Hax-with-flic For Mac
    • spotify-NextTrack.AppleScript Moves to the next track. Also works with Spotify connect.
    • spotify-PlayPause.AppleScript Play or Pause the music. Also works with Spotify connect.
    • spotify-PreviousTrack.AppleScript Moves to the previous track. Also works with Spotify connect.
    • pauseSpotifyAndSleep.sh Pauses Spotify if a track is currently playing and then puts mac to sleep. (Added by echo0101)

    Sonos

    Notice: All Sonos scripts requires that you find the IP address of your Sonos and then change the script accordingly.

    • sonos-NextTrack.sh Skip to next track in your current playing playlist.
    • sonos-Pause.sh Pause the playback.
    • sonos-Play.sh Play the previously paused playback.
    • sonos-PlayPauseToggle.sh Toggle between play and pause.
    • sonos-PreviousTrack.sh Skip to the previous track in your current playing playlist.

    VLC

    • vlc-Fullscreen.AppleScript Toggle fullscreen.
    • vlc-Mute.AppleScript Toggle mute.
    • vlc-NextPlaylistItem.AppleScript Jump to next item in playlist.
    • vlc-PlayPause.AppleScript Toggle play/pause.
    • vlc-PreviousPlaylistItem.AppleScript Jump to previous item in playlist.
    • vlc-StepBackward.AppleScript Step backward. Step length can be configured.
    • vlc-StepForward.AppleScript Step forward. Step length can be configured.
    • vlc-StopPlayback.AppleScript Stop the current playback.
    • vlc-VolumeDown.AppleScript Decrease volume by one step. Step length can be configured.
    • vlc-VolumeUp.AppleScript Increase volume by one step. Step length can be configured.

    Track time on Toggl using a Flic button.

    flictoggl connects a Flic smart button to your Toggl account for simple on/off time tracking. Hit the button to start recording time. Hit it again to stop. Simple as pie.

    Requirements

    • NodeJS

    Use with Flic Mobile App

    You have to deploy flictoggl as an HTTP service in order to use it with the Flic mobile app.

    Mac Client stuck at 33% or 99%. Comment below rating threshold, click here to show it. Hi there I bought myself a new Macbook Pro Retina 13' for working. But I also want to install the Mac version of League of Legends so I can play games even when im not on my home PC. The problem; after figuring out how to install it (xD) the Patcher. Hey, I have a problem after I open my LoL Launcher, the download is stuck at 33% and it is calculating files for a bit, then it goes in to the actual downloading, the furthest it got was 75% then I suddenly quit, and back to 33%, the launcher keeps quitting. League of legends stuck at 33 for mac. My league launcher stuck at%33 -MAC- My league launcher stuck at%33 -MAC-OByle (NA) submitted in ARCHIVED Help & Support. My league launcher keeps downloading files, currently I am at 15k files, is this normal? What should I do? Commenting is disabled Quote; Login to comment. Next, you should get a fresh copy of the Mac Client (Still don't delete the updated one), I suppose you can open the League of Legends.dmg and show packaged contents of fresh copy. Again, go to contents - LOL - System and just copy the UserKernel from the fresh copy to your updated client.

    Step 1: Deploy to Heroku

    You can deploy flictoggl everywhere you want. This guide shows how you can do this using Heroku though.

    Make sure you note down the URL of the deployed Heroku app for later use in step 3.

    Step 2: Configure Flic App

    • Open the Flic app on your phone
    • Add an HTTP Request action
    • Enter the URL of the deployed Heroku app from step 1
    • Select POST as request type
    • Paste the API token from step 2 to the Body field

    Step 3: Test drive!

    • Press your Flic button once for start recording time
    • Press the button again to stop recording
    • Check the Toggl web timer

    Use with hax-with-flic

    hax-with-flic runs executable scripts on your Mac upon pressing a connected Flic button.To attach flictoggl to hax-with-flic, install flictoggl as command line utility:

    You have to create a wrapper script around flictoggl to run it with hax-with-flic-osx. Example:

    Hook the script to hax-with-flic:

    How to get your Toggl API Token

    • Login to your Toggl account
    • Go to your profile
    • Copy your API token from the very bottom of the page

    License

    Copyright (c) 2016 Manuel Alabor

    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 sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

    The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

    THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

    ...">Hax-with-flic For Mac(25.02.2020)