Git Product home page Git Product logo

Comments (4)

tjdoc avatar tjdoc commented on June 30, 2024 1

You can add custom Raycast scripts to achieve this functionality. Commands you'll need are

  • open keepingyouawake:///activate
  • open keepingyouawake:///deactivate
  • open keepingyouawake:///toggle

for example, you can use the following code (keepingyouawake.py)

#!/usr/bin/env python3
#
# Required parameters:
# @raycast.schemaVersion 1
# @raycast.title keepingyouawake
# @raycast.mode silent
# @raycast.packageName Raycast Scripts
#
# Optional parameters:
# @raycast.argument1 { "type": "text", "placeholder": "on/off/Toggle", "optional": true}

import sys
import subprocess
if sys.argv[1].lower() == 'on':
  subprocess.call("open keepingyouawake:///activate", shell=True)
elif sys.argv[1].lower() == 'off':
  subprocess.call("open keepingyouawake:///deactivate", shell=True)
else:
  # no argument will toggle on/off
  subprocess.call("open keepingyouawake:///toggle", shell=True)

from keepingyouawake.

newmarcel avatar newmarcel commented on June 30, 2024

That's definitely a good idea to provide a customizable keyboard shortcut 👍. Thanks for the suggestion!

from keepingyouawake.

ibehnam avatar ibehnam commented on June 30, 2024

Sure thing! I think if KYA gets integrated with Raycast, then it would solve the problem because one can set shortcuts in Raycast. For example, this does what KYA does within Raycast, but unfortunately it doesn't show the status in the menu bar like KYA.

from keepingyouawake.

ibehnam avatar ibehnam commented on June 30, 2024

You can add custom Raycast scripts to achieve this functionality. Commands you'll need are

  • open keepingyouawake:///activate
  • open keepingyouawake:///deactivate
  • open keepingyouawake:///toggle

for example, you can use the following code (keepingyouawake.py)

#!/usr/bin/env python3
#
# Required parameters:
# @raycast.schemaVersion 1
# @raycast.title keepingyouawake
# @raycast.mode silent
# @raycast.packageName Raycast Scripts
#
# Optional parameters:
# @raycast.argument1 { "type": "text", "placeholder": "on/off/Toggle", "optional": true}

import sys
import subprocess
if sys.argv[1].lower() == 'on':
  subprocess.call("open keepingyouawake:///activate", shell=True)
elif sys.argv[1].lower() == 'off':
  subprocess.call("open keepingyouawake:///deactivate", shell=True)
else:
  # no argument will toggle on/off
  subprocess.call("open keepingyouawake:///toggle", shell=True)

Thanks, this is the way. I aliased it with ka in Raycast and solved the problem!

from keepingyouawake.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.