Skip to content

Commit

Permalink
Merge pull request #1685 from bap2pecs/feat/nightfall
Browse files Browse the repository at this point in the history
add new rule to toggle dark mode with Nightfall
  • Loading branch information
tekezo authored Jul 9, 2024
2 parents e3fb171 + 7cf1dc8 commit c57c3f8
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions public/json/nightfall_toggle.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"title": "Nightfall Dark Mode Toggle",
"rules": [
{
"description": "Change F7 to Ctrl+Cmd+Opt+T (toggle dark mode from Nightfall)",
"manipulators": [
{
"from": {
"key_code": "f7"
},
"to": [
{
"key_code": "t",
"modifiers": [
"left_control",
"left_command",
"left_option"
]
}
],
"type": "basic"
}
]
}
]
}

0 comments on commit c57c3f8

Please sign in to comment.