It seems to work by adding in this file /usr/lib/systemd/system/vmtoolsd.service
After=display-manager.service At the end of the [Unit] part.
| { | |
| "compilerOptions": { | |
| /* Basic Options */ | |
| "target": "es2015", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019' or 'ESNEXT'. */ | |
| "module": "ESNext", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */ | |
| // "lib": [], /* Specify library files to be included in the compilation. */ | |
| "allowJs": true, /* Allow javascript files to be compiled. */ | |
| // "checkJs": true, /* Report errors in .js files. */ | |
| // "jsx": "preserve", /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */ | |
| "declaration": true, /* Generates corresponding '.d.ts' file. */ |
| use std::{env, fs, path::{Path, PathBuf}}; | |
| fn get_output_path() -> PathBuf { | |
| let manifest_dir_string = env::var("CARGO_MANIFEST_DIR").unwrap(); | |
| let build_type = env::var("PROFILE").unwrap(); | |
| let path = Path::new(&manifest_dir_string) | |
| .join("target") | |
| .join(build_type); | |
| return PathBuf::from(path); | |
| } |
| # -*- coding: utf8 -*- | |
| # !/usr/bin/env python3 | |
| """ | |
| ApplETS VM Backup script automatically creates a backup of all VirtualBox | |
| virtual machines, stores the backups in Google drive and | |
| deletes too old backups in Google drive. Crontab it if you | |
| want to make it every a definite period of time. | |
| Copyright 2015 ApplETS applets@ens.etsmtl.ca |
| #pragma warning disable 0414, 0219, 649, 169, 1570 | |
| using System; | |
| using UnityEngine; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| public enum Tags : long | |
| { | |
| None = 0, | |
| Player = 1 << 0, |
It seems to work by adding in this file /usr/lib/systemd/system/vmtoolsd.service
After=display-manager.service At the end of the [Unit] part.
| <!-- This snippet binds a function to the "dom:loaded" event. | |
| You can put your own javascript into the function, or replace | |
| the entire snippet. --> | |
| <script type="text/javascript"> | |
| Event.observe(document,"dom:loaded", function() { | |
| //Just filter by span since BB uses random hashes for class names | |
| let elements = document.getElementsByTagName('span'); | |
| let matching = "None"; | |
| for (let i = 0; i < elements.length; i++) { |
| # UNREAL # | |
| *.uasset filter=lfs diff=lfs merge=lfs -text | |
| *.umap filter=lfs diff=lfs merge=lfs -text | |
| *.upk filter=lfs diff=lfs merge=lfs -text | |
| *.udk filter=lfs diff=lfs merge=lfs -text | |
| *.bin filter=lfs diff=lfs merge=lfs -text | |
| #Unity | |
| *.cginc text | |
| *.shader text |
| [alias] | |
| hist = log --pretty=format:'%h %ad | %s%d [%an]' --graph --date=short | |
| ls = log --oneline | |
| amend = commit -a --amend -C HEAD | |
| new = !sh -c 'git log $1@{1}..$1@{0} "$@"' | |
| ci = commit | |
| co = checkout | |
| cm = !git add . && git commit -a -m '$1' && git push && : |
CMDER_ROOT to your root Cmder folder (in my case C:\Program Files (x86)\Cmder). It seems to be important that this does not have quotes around it because they mess with concatenation in the init script."cmd" /k ""%CMDER_ROOT%\vendor\init.bat"" as the Shell path. The double-double-quotes are intentional, as they counteract the missing double quotes in the environment variable.| public static void AO() | |
| public static void ActivateCameraSplineFollow(float followTime) | |
| public static void AddCameraSplinePoint(float x, float y, float z, float zoom) | |
| public static void AddCameraSplinePointAtMouse() | |
| public static void AddExperienceToActiveCrew(int xp) | |
| public static void AdvanceDay() | |
| public static void Aggression(Guid character, AutoAttackType aggression) | |
| public static void AntiStagingWorldMap() | |
| public static void ApplyProgressionTable(Guid character, Guid tableId) | |
| public static void AttributeScore(Guid character, AttributeType attribute, int score) |