- You need to modify some Traktor files – do backup before you try – if files are incorrects screens become black.
- You're doing that at your own risk!
- If sth goes really bad – reinstall Traktor :-)
- Traktor QML files are located by default in
/Applications/Native Instruments/Traktor 2/Traktor.app/Contents/Resources/qml
on Mac, on Windows look forqml
in directory where Traktor is installed (I don't have windows machine around)… - You need real text-editor to modify files, you should try with Atom or Notepad++ to apply modifications
- Files here are so called diff files, here is how to read them: http://stackoverflow.com/questions/2529441/how-to-read-the-output-from-git-diff
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"name": "example", | |
"build": { | |
"dockerfile": "Dockerfile", | |
}, | |
"remoteUser": "user" | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
resource "aws_lb_listener" "https" { | |
load_balancer_arn = aws_lb.frontend.arn | |
port = "443" | |
protocol = "HTTPS" | |
ssl_policy = "ELBSecurityPolicy-2016-08" | |
certificate_arn = "TODO-CERT-ARN" | |
default_action { | |
type = "authenticate-oidc" | |
authenticate_oidc { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
https://overpass-turbo.eu/# | |
*/ | |
[out:xml][timeout:25]; | |
( | |
rel[route]["osmc:symbol"][route="hiking"]({{bbox}}); | |
); | |
out body; | |
>; | |
out skel qt; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Please make this file available to others | |
# by sending it to <[email protected]> | |
# | |
# this config file was automatically generated | |
# using lirc-0.9.0-pre1(default) on Thu Feb 14 12:13:24 2019 | |
# | |
# contributed by Kamil Figiela | |
# | |
# brand: Panasonic |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Device ID: XXXXXXXXXX | |
Model info: zhimi.airpurifier.ma2 | |
Address: X.X.X.X | |
Token: XXXXXXXXXXXX via stored token | |
Support: At least basic | |
Type info: miio:air-purifier, sensor, miio, air-purifier | |
Capabilities: miio:buzzer, miio:led-brightness, miio:switchable-led, pm2.5, relative-humidity, temperature, switchable-mode, mode, switchable-power, restorable-state, power, state |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
a |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<!-- | |
Put this file unter ~/Library/KeyBindings/DefaultKeyBinding.dict | |
Ctrl+Shift+D duplicate line | |
Ctrl+U uppercase Word/selection | |
Ctrl+Shift+U lowercase Word/selection | |
Ctrl+K delete line | |
Alt+Return insert new line below your cursor | |
--> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/Screens/Views/Waveform/Stripe.qml b/Screens/Views/Waveform/Stripe.qml | |
index 6561d2b..c3d9204 100755 | |
--- a/Screens/Views/Waveform/Stripe.qml | |
+++ b/Screens/Views/Waveform/Stripe.qml | |
@@ -26,6 +26,7 @@ Traktor.Stripe { | |
AppProperty { id: trackLength; path: "app.traktor.decks." + (deckId + 1) + ".track.content.track_length" } | |
AppProperty { id: propTrackSampleLength; path: "app.traktor.decks." + (deckId + 1) + ".track.content.sample_count" } | |
+ AppProperty { id: trackBPM; path: "app.traktor.decks." + (deckId+1) + ".tempo.base_bpm" } | |
NewerOlder