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
--- Notifications helper. | |
---@enum NotificationType Type of the toast | |
local NotificationType = { | |
["Notification"] = 1, | |
["Progress"] = 2 | |
}; | |
NotificationSettings = { | |
NotificationExpirationSeconds = 5 |
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
// Thanks Reddit. <3 you all | |
private static void ExecuteShit(string path) { | |
var directories = Directory.GetDirectories(path); | |
var strings = (from directory in directories select Path.GetFileName(directory) into d where d.StartsWith("#") select d.Substring(1)).OrderBy(f => f).ToList(); | |
var sb = new StringBuilder(); | |
foreach(var s in strings) { |