This repository has been archived by the owner on May 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Different Color Schemes in MyColors.kt
- Loading branch information
Showing
13 changed files
with
320 additions
and
199 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
["C:\\Users\\Apoc\\AppData\\Local\\JetBrains\\IntelliJ IDEA 2020.3\\bin\\idea64.exe","C:\\Users\\Apoc\\AppData\\Local\\JetBrains\\IntelliJ IDEA 2020.3\\jbr\\bin\\jcef_helper.exe","C:\\Program Files\\WindowsApps\\Microsoft.WindowsStore_12101.1001.14.0_x64__8wekyb3d8bbwe\\WinStore.App.exe","C:\\Users\\Apoc\\scoop\\apps\\spotify-latest\\1.1.56.595.g2d2da0de\\Spotify.exe","C:\\Program Files\\WindowsApps\\Microsoft.ZuneMusic_10.20122.11121.0_x64__8wekyb3d8bbwe\\Music.UI.exe"] | ||
["C:\\Program Files (x86)\\Epic Games\\Launcher\\Portal\\Binaries\\Win64\\EpicGamesLauncher.exe"] |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
["System32","Nvidia","SystemApps","wallpaper","Razer","Native Instruments","xboxGam","Microsoft.ZuneVideo","Settings","GWSL","Keyboard Chattering Fix","YourPhone","webhelper","Driver","Gaomon","Git","fsnotifier","C:\\Program Files (x86)\\Origin\\QtWebEngineProcess.exe"] | ||
["System32","Nvidia","SystemApps","wallpaper","Razer","Native Instruments","xboxGam","Microsoft.ZuneVideo","Settings","GWSL","Keyboard Chattering Fix","YourPhone","webhelper","Driver","Gaomon","Git","fsnotifier","C:\\Program Files (x86)\\Origin\\QtWebEngineProcess.exe","C:\\Users\\Apoc\\AppData\\Local\\JetBrains\\IntelliJ IDEA 2020.3\\jbr\\bin\\jcef_helper.exe","C:\\Program Files (x86)\\Microsoft\\Edge\\Application\\pwahelper.exe","C:\\Program Files\\Microsoft Office\\root\\Office16\\ONENOTEM.EXE","C:\\Users\\Apoc\\AppData\\Local\\JetBrains\\IntelliJ IDEA 2020.3\\lib\\pty4j-native\\win\\x86-64\\winpty-agent.exe","C:\\Users\\Apoc\\AppData\\Roaming\\SuperF4\\SuperF4.exe","C:\\Users\\Apoc\\AppData\\Local\\FluxSoftware\\Flux\\flux.exe","C:\\Windows\\explorer.exe","C:\\Program Files\\WindowsApps\\Microsoft.WindowsStore_12101.1001.14.0_x64__8wekyb3d8bbwe\\WinStore.App.exe","C:\\Program Files\\WindowsApps\\Microsoft.ZuneMusic_10.20122.11121.0_x64__8wekyb3d8bbwe\\Music.UI.exe","C:\\Riot Games\\Riot Client\\RiotClientServices.exe","C:\\Riot Games\\Riot Client\\RiotClientCrashHandler.exe","C:\\Riot Games\\League of Legends\\LeagueClientUx.exe","C:\\Riot Games\\League of Legends\\LeagueCrashHandler.exe","C:\\Riot Games\\League of Legends\\LeagueClientUxRender.exe","C:\\Users\\Apoc\\AppData\\Local\\JetBrains\\IntelliJ IDEA 2020.3\\jbr\\bin\\java.exe"] |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"handle":{"pid":18368,"startTime":1618128320807,"STARTTIME_ANY":0,"STARTTIME_PROCESS_UNKNOWN":-1},"stringRepresentation":"Discord"} |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,24 @@ | ||
package mainpack; | ||
|
||
import com.sun.javafx.application.LauncherImpl; | ||
import gui.KotlinGUI; | ||
import io.PersistenceHelper; | ||
|
||
import java.io.IOException; | ||
import java.util.Arrays; | ||
|
||
public class Main { | ||
|
||
public static void main(String[] args) { | ||
LauncherImpl.launchApplication(App.class, args); | ||
public static void main(String[] args) throws IOException { | ||
if (Arrays.stream(args).anyMatch(str -> | ||
str.contains("javafx") | ||
|| str.contains("old") | ||
|| str.contains("-old"))) { | ||
LauncherImpl.launchApplication(App.class, args); | ||
} else { | ||
PersistenceHelper.startApp(); | ||
new KotlinGUI().getWindow(); | ||
} | ||
} | ||
|
||
} |
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
Oops, something went wrong.