This file contains hidden or 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
declare namespace premierepro { | |
export class Action {} | |
export class AddTransitionOptions { | |
constructor(); | |
setApplyToStart(applyToStart: boolean): AddTransitionOptions; //Set whether to apply transition to the start or end of trackitem | |
setForceSingleSided(forceSingleSided: boolean): AddTransitionOptions; //Set whether transition should be applied one/both sides | |
setTransitionAlignment(transitionAlignment: number): AddTransitionOptions; //Sets the transitionAlignment of transition | |
setDuration(tickTime: TickTime): AddTransitionOptions; //Sets the duration of transition |
This file contains hidden or 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
function debloat-adobe | |
# First part: Kill all Adobe and Creative Cloud processes repeatedly | |
echo "Hunting for Adobe processes..." | |
set killed_something 1 | |
while test $killed_something -eq 1 | |
set killed_something 0 | |
# Find any process with 'adobe' or 'creative cloud' in it (case insensitive) | |
for pid in (ps -ax | grep -i "adobe\|creative cloud" | grep -v grep | awk '{print $1}') |