├── .DS_Store ├── Alfred ├── Config dotfiles.alfredworkflow ├── Docker.alfredworkflow ├── Focus Timer.alfredworkflow ├── FuckYeahMarkdown.alfredworkflow ├── HS Reload.alfredworkflow ├── Helium TV.alfredworkflow ├── IP.alfredworkflow ├── Listen WebRadios.alfredworkflow ├── Modem.alfredworkflow ├── Muximux.alfredworkflow ├── Night-Pharmacy.alfredworkflow ├── README.md ├── RStudio Server.alfredworkflow ├── Reference Importer.alfredworkflow ├── ReferenceImporter_v2.alfredworkflow ├── Send URL.alfredworkflow ├── Streamlink.alfredworkflow ├── SynAnt.alfredworkflow ├── V(M)izontele.alfredworkflow ├── beinsports Highlights.alfredworkflow └── lg.alfredworkflow ├── KeyboardMaestro ├── Add Keyword.kmmacros ├── Capitalize All.kmmacros ├── Change pdf Metadata.kmmacros ├── KM to Alfred.kmmacros ├── Open Linked Files.kmmacros ├── Open in ST.kmmacros ├── README.md ├── ReadMarkdownandTakeNoteDTPO.kmmacros ├── ReadMarkdownandTakeNotePathFinder.kmmacros ├── Sci-Hub.kmmacros ├── SkimToDTPO.kmmacros ├── Update Databases.kmmacros ├── changemetadata.gif ├── changemetadata.sh └── skimtodtpo.gif ├── PopClip ├── .DS_Store ├── RunR.popclipext │ ├── Config.plist │ ├── README.md │ ├── RunR.applescript │ └── RunR.png ├── au_library.popclipext │ ├── Config.plist │ └── au.png ├── eksisozluk.popclipext │ ├── Config.plist │ └── eksisozluk.png ├── github.popclipext │ ├── Config.plist │ └── github.png ├── iplookup.popclipext │ ├── Config.plist │ └── iplookup.png ├── ksu_library.popclipext │ ├── Config.plist │ └── ksu.png ├── libgen.popclipext │ ├── Config.plist │ └── libgen.png ├── rseek.popclipext │ ├── Config.plist │ └── rseek.png ├── scihub.popclipext │ ├── Config.plist │ └── scihub.png └── skimdtpo.popclipext │ ├── Config.plist │ ├── hlite.png │ └── km.applescript ├── README.md ├── Scripts ├── Applescripts │ ├── README.md │ └── appInfoInTitle.applescript ├── Automator │ ├── README.md │ ├── gitinfo.workflow │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── QuickLook │ │ │ └── Preview.png │ │ │ └── document.wflow │ ├── gitinfo │ │ ├── post-checkout │ │ ├── post-commit │ │ └── post-merge │ ├── nvALT2DTPO-Personal.workflow │ │ └── Contents │ │ │ ├── QuickLook │ │ │ └── Preview.png │ │ │ └── document.wflow │ ├── nvALT2DTPO.workflow │ │ └── Contents │ │ │ ├── QuickLook │ │ │ └── Preview.png │ │ │ └── document.wflow │ ├── vc.workflow │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── QuickLook │ │ │ └── Preview.png │ │ │ └── document.wflow │ └── vc │ │ ├── vc │ │ └── vc-git.awk ├── Bibdesk │ ├── Bibdesk Download.scpt │ ├── Capitalize.scpt │ ├── Error Reporting.scpt │ ├── README.md │ ├── Toggle Journal Abbreviation.scpt │ └── bibfetch.pl.scpt ├── ControlPlaneScripts │ ├── viscosity_connect.sh │ └── viscosity_disconnect.sh ├── DT │ ├── AddKeywordsToPdfMetadata___Ctrl-Alt-9.scptd │ ├── AddPathToPdfMetadata___Ctrl-Alt-0.scptd │ ├── Annotation template with specific issue tagging___Ctrl-Alt-2.scptd │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── Pashua.app │ │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ ├── MacOS │ │ │ │ └── Pashua │ │ │ │ ├── PkgInfo │ │ │ │ └── Resources │ │ │ │ ├── AppIcon.icns │ │ │ │ ├── AppIcon.png │ │ │ │ ├── AppIcon@2.png │ │ │ │ ├── English.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ ├── MainMenu.nib │ │ │ │ ├── Read me.html │ │ │ │ └── dict.strings │ │ │ │ ├── French.lproj │ │ │ │ ├── MainMenu.nib │ │ │ │ └── dict.strings │ │ │ │ ├── German.lproj │ │ │ │ ├── MainMenu.nib │ │ │ │ ├── Read me.html │ │ │ │ └── dict.strings │ │ │ │ ├── bar.png │ │ │ │ ├── bar@2.png │ │ │ │ ├── clear.png │ │ │ │ ├── clear@2x.png │ │ │ │ ├── li.png │ │ │ │ ├── logo.png │ │ │ │ ├── logo@2.png │ │ │ │ └── style.css │ │ │ └── Resources │ │ │ ├── Scripts │ │ │ └── main.scpt │ │ │ ├── description.rtfd │ │ │ └── TXT.rtf │ │ │ └── style.css │ ├── DT_Skim.scpt │ ├── Mark Read.scpt │ ├── RefreshAllRSS___Ctrl-Alt-1.scptd │ ├── Remove all tags from selection.scpt │ └── database_change_error.scpt ├── DevonAgent │ └── Open URL in Default Browser.scpt ├── PerlScripts │ ├── README.md │ ├── abbreviateJournalTitles.pl │ ├── bibfetch.el │ └── bibfetch.pl ├── PythonScripts │ ├── README.md │ ├── cb_customs.py │ ├── convertbibliography.py │ └── pdfmeat.py ├── ST │ └── LaTeX_article.sublime-snippet ├── ShellScripts │ ├── README.md │ ├── changemetadata.sh │ ├── minion.sh │ └── minion2.sh ├── homebrew │ ├── LICENSE │ ├── README.md │ ├── cask-notifier.plist │ ├── cask-notifier.sh │ ├── homebrew-notifier.plist │ ├── homebrew-notifier.sh │ └── install.sh └── journal_abbreviations │ ├── README.md │ ├── abbreviations.txt │ ├── combineJournalLists.py │ ├── jabref.txt │ └── ncbi.txt └── VivaldiCustomizations ├── Vimium ├── vimium.css └── vomnibar.css ├── browser.html ├── custom.css ├── custom.js └── vivaldi.sh /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/.DS_Store -------------------------------------------------------------------------------- /Alfred/Config dotfiles.alfredworkflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Alfred/Config dotfiles.alfredworkflow -------------------------------------------------------------------------------- /Alfred/Docker.alfredworkflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Alfred/Docker.alfredworkflow -------------------------------------------------------------------------------- /Alfred/Focus Timer.alfredworkflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Alfred/Focus Timer.alfredworkflow -------------------------------------------------------------------------------- /Alfred/FuckYeahMarkdown.alfredworkflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Alfred/FuckYeahMarkdown.alfredworkflow -------------------------------------------------------------------------------- /Alfred/HS Reload.alfredworkflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Alfred/HS Reload.alfredworkflow -------------------------------------------------------------------------------- /Alfred/Helium TV.alfredworkflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Alfred/Helium TV.alfredworkflow -------------------------------------------------------------------------------- /Alfred/IP.alfredworkflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Alfred/IP.alfredworkflow -------------------------------------------------------------------------------- /Alfred/Listen WebRadios.alfredworkflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Alfred/Listen WebRadios.alfredworkflow -------------------------------------------------------------------------------- /Alfred/Modem.alfredworkflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Alfred/Modem.alfredworkflow -------------------------------------------------------------------------------- /Alfred/Muximux.alfredworkflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Alfred/Muximux.alfredworkflow -------------------------------------------------------------------------------- /Alfred/Night-Pharmacy.alfredworkflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Alfred/Night-Pharmacy.alfredworkflow -------------------------------------------------------------------------------- /Alfred/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Alfred/README.md -------------------------------------------------------------------------------- /Alfred/RStudio Server.alfredworkflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Alfred/RStudio Server.alfredworkflow -------------------------------------------------------------------------------- /Alfred/Reference Importer.alfredworkflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Alfred/Reference Importer.alfredworkflow -------------------------------------------------------------------------------- /Alfred/ReferenceImporter_v2.alfredworkflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Alfred/ReferenceImporter_v2.alfredworkflow -------------------------------------------------------------------------------- /Alfred/Send URL.alfredworkflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Alfred/Send URL.alfredworkflow -------------------------------------------------------------------------------- /Alfred/Streamlink.alfredworkflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Alfred/Streamlink.alfredworkflow -------------------------------------------------------------------------------- /Alfred/SynAnt.alfredworkflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Alfred/SynAnt.alfredworkflow -------------------------------------------------------------------------------- /Alfred/V(M)izontele.alfredworkflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Alfred/V(M)izontele.alfredworkflow -------------------------------------------------------------------------------- /Alfred/beinsports Highlights.alfredworkflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Alfred/beinsports Highlights.alfredworkflow -------------------------------------------------------------------------------- /Alfred/lg.alfredworkflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Alfred/lg.alfredworkflow -------------------------------------------------------------------------------- /KeyboardMaestro/Add Keyword.kmmacros: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/KeyboardMaestro/Add Keyword.kmmacros -------------------------------------------------------------------------------- /KeyboardMaestro/Capitalize All.kmmacros: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/KeyboardMaestro/Capitalize All.kmmacros -------------------------------------------------------------------------------- /KeyboardMaestro/Change pdf Metadata.kmmacros: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/KeyboardMaestro/Change pdf Metadata.kmmacros -------------------------------------------------------------------------------- /KeyboardMaestro/KM to Alfred.kmmacros: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/KeyboardMaestro/KM to Alfred.kmmacros -------------------------------------------------------------------------------- /KeyboardMaestro/Open Linked Files.kmmacros: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/KeyboardMaestro/Open Linked Files.kmmacros -------------------------------------------------------------------------------- /KeyboardMaestro/Open in ST.kmmacros: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/KeyboardMaestro/Open in ST.kmmacros -------------------------------------------------------------------------------- /KeyboardMaestro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/KeyboardMaestro/README.md -------------------------------------------------------------------------------- /KeyboardMaestro/ReadMarkdownandTakeNoteDTPO.kmmacros: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/KeyboardMaestro/ReadMarkdownandTakeNoteDTPO.kmmacros -------------------------------------------------------------------------------- /KeyboardMaestro/ReadMarkdownandTakeNotePathFinder.kmmacros: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/KeyboardMaestro/ReadMarkdownandTakeNotePathFinder.kmmacros -------------------------------------------------------------------------------- /KeyboardMaestro/Sci-Hub.kmmacros: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/KeyboardMaestro/Sci-Hub.kmmacros -------------------------------------------------------------------------------- /KeyboardMaestro/SkimToDTPO.kmmacros: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/KeyboardMaestro/SkimToDTPO.kmmacros -------------------------------------------------------------------------------- /KeyboardMaestro/Update Databases.kmmacros: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/KeyboardMaestro/Update Databases.kmmacros -------------------------------------------------------------------------------- /KeyboardMaestro/changemetadata.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/KeyboardMaestro/changemetadata.gif -------------------------------------------------------------------------------- /KeyboardMaestro/changemetadata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/KeyboardMaestro/changemetadata.sh -------------------------------------------------------------------------------- /KeyboardMaestro/skimtodtpo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/KeyboardMaestro/skimtodtpo.gif -------------------------------------------------------------------------------- /PopClip/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/PopClip/.DS_Store -------------------------------------------------------------------------------- /PopClip/RunR.popclipext/Config.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/PopClip/RunR.popclipext/Config.plist -------------------------------------------------------------------------------- /PopClip/RunR.popclipext/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/PopClip/RunR.popclipext/README.md -------------------------------------------------------------------------------- /PopClip/RunR.popclipext/RunR.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/PopClip/RunR.popclipext/RunR.applescript -------------------------------------------------------------------------------- /PopClip/RunR.popclipext/RunR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/PopClip/RunR.popclipext/RunR.png -------------------------------------------------------------------------------- /PopClip/au_library.popclipext/Config.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/PopClip/au_library.popclipext/Config.plist -------------------------------------------------------------------------------- /PopClip/au_library.popclipext/au.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/PopClip/au_library.popclipext/au.png -------------------------------------------------------------------------------- /PopClip/eksisozluk.popclipext/Config.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/PopClip/eksisozluk.popclipext/Config.plist -------------------------------------------------------------------------------- /PopClip/eksisozluk.popclipext/eksisozluk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/PopClip/eksisozluk.popclipext/eksisozluk.png -------------------------------------------------------------------------------- /PopClip/github.popclipext/Config.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/PopClip/github.popclipext/Config.plist -------------------------------------------------------------------------------- /PopClip/github.popclipext/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/PopClip/github.popclipext/github.png -------------------------------------------------------------------------------- /PopClip/iplookup.popclipext/Config.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/PopClip/iplookup.popclipext/Config.plist -------------------------------------------------------------------------------- /PopClip/iplookup.popclipext/iplookup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/PopClip/iplookup.popclipext/iplookup.png -------------------------------------------------------------------------------- /PopClip/ksu_library.popclipext/Config.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/PopClip/ksu_library.popclipext/Config.plist -------------------------------------------------------------------------------- /PopClip/ksu_library.popclipext/ksu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/PopClip/ksu_library.popclipext/ksu.png -------------------------------------------------------------------------------- /PopClip/libgen.popclipext/Config.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/PopClip/libgen.popclipext/Config.plist -------------------------------------------------------------------------------- /PopClip/libgen.popclipext/libgen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/PopClip/libgen.popclipext/libgen.png -------------------------------------------------------------------------------- /PopClip/rseek.popclipext/Config.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/PopClip/rseek.popclipext/Config.plist -------------------------------------------------------------------------------- /PopClip/rseek.popclipext/rseek.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/PopClip/rseek.popclipext/rseek.png -------------------------------------------------------------------------------- /PopClip/scihub.popclipext/Config.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/PopClip/scihub.popclipext/Config.plist -------------------------------------------------------------------------------- /PopClip/scihub.popclipext/scihub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/PopClip/scihub.popclipext/scihub.png -------------------------------------------------------------------------------- /PopClip/skimdtpo.popclipext/Config.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/PopClip/skimdtpo.popclipext/Config.plist -------------------------------------------------------------------------------- /PopClip/skimdtpo.popclipext/hlite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/PopClip/skimdtpo.popclipext/hlite.png -------------------------------------------------------------------------------- /PopClip/skimdtpo.popclipext/km.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/PopClip/skimdtpo.popclipext/km.applescript -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/README.md -------------------------------------------------------------------------------- /Scripts/Applescripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/Applescripts/README.md -------------------------------------------------------------------------------- /Scripts/Applescripts/appInfoInTitle.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/Applescripts/appInfoInTitle.applescript -------------------------------------------------------------------------------- /Scripts/Automator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/Automator/README.md -------------------------------------------------------------------------------- /Scripts/Automator/gitinfo.workflow/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/Automator/gitinfo.workflow/Contents/Info.plist -------------------------------------------------------------------------------- /Scripts/Automator/gitinfo.workflow/Contents/QuickLook/Preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/Automator/gitinfo.workflow/Contents/QuickLook/Preview.png -------------------------------------------------------------------------------- /Scripts/Automator/gitinfo.workflow/Contents/document.wflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/Automator/gitinfo.workflow/Contents/document.wflow -------------------------------------------------------------------------------- /Scripts/Automator/gitinfo/post-checkout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/Automator/gitinfo/post-checkout -------------------------------------------------------------------------------- /Scripts/Automator/gitinfo/post-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/Automator/gitinfo/post-commit -------------------------------------------------------------------------------- /Scripts/Automator/gitinfo/post-merge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/Automator/gitinfo/post-merge -------------------------------------------------------------------------------- /Scripts/Automator/nvALT2DTPO-Personal.workflow/Contents/QuickLook/Preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/Automator/nvALT2DTPO-Personal.workflow/Contents/QuickLook/Preview.png -------------------------------------------------------------------------------- /Scripts/Automator/nvALT2DTPO-Personal.workflow/Contents/document.wflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/Automator/nvALT2DTPO-Personal.workflow/Contents/document.wflow -------------------------------------------------------------------------------- /Scripts/Automator/nvALT2DTPO.workflow/Contents/QuickLook/Preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/Automator/nvALT2DTPO.workflow/Contents/QuickLook/Preview.png -------------------------------------------------------------------------------- /Scripts/Automator/nvALT2DTPO.workflow/Contents/document.wflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/Automator/nvALT2DTPO.workflow/Contents/document.wflow -------------------------------------------------------------------------------- /Scripts/Automator/vc.workflow/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/Automator/vc.workflow/Contents/Info.plist -------------------------------------------------------------------------------- /Scripts/Automator/vc.workflow/Contents/QuickLook/Preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/Automator/vc.workflow/Contents/QuickLook/Preview.png -------------------------------------------------------------------------------- /Scripts/Automator/vc.workflow/Contents/document.wflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/Automator/vc.workflow/Contents/document.wflow -------------------------------------------------------------------------------- /Scripts/Automator/vc/vc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/Automator/vc/vc -------------------------------------------------------------------------------- /Scripts/Automator/vc/vc-git.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/Automator/vc/vc-git.awk -------------------------------------------------------------------------------- /Scripts/Bibdesk/Bibdesk Download.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/Bibdesk/Bibdesk Download.scpt -------------------------------------------------------------------------------- /Scripts/Bibdesk/Capitalize.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/Bibdesk/Capitalize.scpt -------------------------------------------------------------------------------- /Scripts/Bibdesk/Error Reporting.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/Bibdesk/Error Reporting.scpt -------------------------------------------------------------------------------- /Scripts/Bibdesk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/Bibdesk/README.md -------------------------------------------------------------------------------- /Scripts/Bibdesk/Toggle Journal Abbreviation.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/Bibdesk/Toggle Journal Abbreviation.scpt -------------------------------------------------------------------------------- /Scripts/Bibdesk/bibfetch.pl.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/Bibdesk/bibfetch.pl.scpt -------------------------------------------------------------------------------- /Scripts/ControlPlaneScripts/viscosity_connect.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/ControlPlaneScripts/viscosity_connect.sh -------------------------------------------------------------------------------- /Scripts/ControlPlaneScripts/viscosity_disconnect.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/ControlPlaneScripts/viscosity_disconnect.sh -------------------------------------------------------------------------------- /Scripts/DT/AddKeywordsToPdfMetadata___Ctrl-Alt-9.scptd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/DT/AddKeywordsToPdfMetadata___Ctrl-Alt-9.scptd -------------------------------------------------------------------------------- /Scripts/DT/AddPathToPdfMetadata___Ctrl-Alt-0.scptd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/DT/AddPathToPdfMetadata___Ctrl-Alt-0.scptd -------------------------------------------------------------------------------- /Scripts/DT/Annotation template with specific issue tagging___Ctrl-Alt-2.scptd/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/DT/Annotation template with specific issue tagging___Ctrl-Alt-2.scptd/Contents/Info.plist -------------------------------------------------------------------------------- /Scripts/DT/Annotation template with specific issue tagging___Ctrl-Alt-2.scptd/Contents/MacOS/Pashua.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/DT/Annotation template with specific issue tagging___Ctrl-Alt-2.scptd/Contents/MacOS/Pashua.app/Contents/Info.plist -------------------------------------------------------------------------------- /Scripts/DT/Annotation template with specific issue tagging___Ctrl-Alt-2.scptd/Contents/MacOS/Pashua.app/Contents/MacOS/Pashua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/DT/Annotation template with specific issue tagging___Ctrl-Alt-2.scptd/Contents/MacOS/Pashua.app/Contents/MacOS/Pashua -------------------------------------------------------------------------------- /Scripts/DT/Annotation template with specific issue tagging___Ctrl-Alt-2.scptd/Contents/MacOS/Pashua.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLPash -------------------------------------------------------------------------------- /Scripts/DT/Annotation template with specific issue tagging___Ctrl-Alt-2.scptd/Contents/MacOS/Pashua.app/Contents/Resources/AppIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/DT/Annotation template with specific issue tagging___Ctrl-Alt-2.scptd/Contents/MacOS/Pashua.app/Contents/Resources/AppIcon.icns -------------------------------------------------------------------------------- /Scripts/DT/Annotation template with specific issue tagging___Ctrl-Alt-2.scptd/Contents/MacOS/Pashua.app/Contents/Resources/AppIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/DT/Annotation template with specific issue tagging___Ctrl-Alt-2.scptd/Contents/MacOS/Pashua.app/Contents/Resources/AppIcon.png -------------------------------------------------------------------------------- /Scripts/DT/Annotation template with specific issue tagging___Ctrl-Alt-2.scptd/Contents/MacOS/Pashua.app/Contents/Resources/AppIcon@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/DT/Annotation template with specific issue tagging___Ctrl-Alt-2.scptd/Contents/MacOS/Pashua.app/Contents/Resources/AppIcon@2.png -------------------------------------------------------------------------------- /Scripts/DT/Annotation template with specific issue tagging___Ctrl-Alt-2.scptd/Contents/MacOS/Pashua.app/Contents/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/DT/Annotation template with specific issue tagging___Ctrl-Alt-2.scptd/Contents/MacOS/Pashua.app/Contents/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Scripts/DT/Annotation template with specific issue tagging___Ctrl-Alt-2.scptd/Contents/MacOS/Pashua.app/Contents/Resources/English.lproj/MainMenu.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/DT/Annotation template with specific issue tagging___Ctrl-Alt-2.scptd/Contents/MacOS/Pashua.app/Contents/Resources/English.lproj/MainMenu.nib -------------------------------------------------------------------------------- /Scripts/DT/Annotation template with specific issue tagging___Ctrl-Alt-2.scptd/Contents/MacOS/Pashua.app/Contents/Resources/English.lproj/Read me.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/DT/Annotation template with specific issue tagging___Ctrl-Alt-2.scptd/Contents/MacOS/Pashua.app/Contents/Resources/English.lproj/Read me.html -------------------------------------------------------------------------------- /Scripts/DT/Annotation template with specific issue tagging___Ctrl-Alt-2.scptd/Contents/MacOS/Pashua.app/Contents/Resources/English.lproj/dict.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/DT/Annotation template with specific issue tagging___Ctrl-Alt-2.scptd/Contents/MacOS/Pashua.app/Contents/Resources/English.lproj/dict.strings -------------------------------------------------------------------------------- /Scripts/DT/Annotation template with specific issue tagging___Ctrl-Alt-2.scptd/Contents/MacOS/Pashua.app/Contents/Resources/French.lproj/MainMenu.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/DT/Annotation template with specific issue tagging___Ctrl-Alt-2.scptd/Contents/MacOS/Pashua.app/Contents/Resources/French.lproj/MainMenu.nib -------------------------------------------------------------------------------- /Scripts/DT/Annotation template with specific issue tagging___Ctrl-Alt-2.scptd/Contents/MacOS/Pashua.app/Contents/Resources/French.lproj/dict.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/DT/Annotation template with specific issue tagging___Ctrl-Alt-2.scptd/Contents/MacOS/Pashua.app/Contents/Resources/French.lproj/dict.strings -------------------------------------------------------------------------------- /Scripts/DT/Annotation template with specific issue tagging___Ctrl-Alt-2.scptd/Contents/MacOS/Pashua.app/Contents/Resources/German.lproj/MainMenu.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/DT/Annotation template with specific issue tagging___Ctrl-Alt-2.scptd/Contents/MacOS/Pashua.app/Contents/Resources/German.lproj/MainMenu.nib -------------------------------------------------------------------------------- /Scripts/DT/Annotation template with specific issue tagging___Ctrl-Alt-2.scptd/Contents/MacOS/Pashua.app/Contents/Resources/German.lproj/Read me.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/DT/Annotation template with specific issue tagging___Ctrl-Alt-2.scptd/Contents/MacOS/Pashua.app/Contents/Resources/German.lproj/Read me.html -------------------------------------------------------------------------------- /Scripts/DT/Annotation template with specific issue tagging___Ctrl-Alt-2.scptd/Contents/MacOS/Pashua.app/Contents/Resources/German.lproj/dict.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/DT/Annotation template with specific issue tagging___Ctrl-Alt-2.scptd/Contents/MacOS/Pashua.app/Contents/Resources/German.lproj/dict.strings -------------------------------------------------------------------------------- /Scripts/DT/Annotation template with specific issue tagging___Ctrl-Alt-2.scptd/Contents/MacOS/Pashua.app/Contents/Resources/bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/DT/Annotation template with specific issue tagging___Ctrl-Alt-2.scptd/Contents/MacOS/Pashua.app/Contents/Resources/bar.png -------------------------------------------------------------------------------- /Scripts/DT/Annotation template with specific issue tagging___Ctrl-Alt-2.scptd/Contents/MacOS/Pashua.app/Contents/Resources/bar@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/DT/Annotation template with specific issue tagging___Ctrl-Alt-2.scptd/Contents/MacOS/Pashua.app/Contents/Resources/bar@2.png -------------------------------------------------------------------------------- /Scripts/DT/Annotation template with specific issue tagging___Ctrl-Alt-2.scptd/Contents/MacOS/Pashua.app/Contents/Resources/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/DT/Annotation template with specific issue tagging___Ctrl-Alt-2.scptd/Contents/MacOS/Pashua.app/Contents/Resources/clear.png -------------------------------------------------------------------------------- /Scripts/DT/Annotation template with specific issue tagging___Ctrl-Alt-2.scptd/Contents/MacOS/Pashua.app/Contents/Resources/clear@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/DT/Annotation template with specific issue tagging___Ctrl-Alt-2.scptd/Contents/MacOS/Pashua.app/Contents/Resources/clear@2x.png -------------------------------------------------------------------------------- /Scripts/DT/Annotation template with specific issue tagging___Ctrl-Alt-2.scptd/Contents/MacOS/Pashua.app/Contents/Resources/li.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/DT/Annotation template with specific issue tagging___Ctrl-Alt-2.scptd/Contents/MacOS/Pashua.app/Contents/Resources/li.png -------------------------------------------------------------------------------- /Scripts/DT/Annotation template with specific issue tagging___Ctrl-Alt-2.scptd/Contents/MacOS/Pashua.app/Contents/Resources/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/DT/Annotation template with specific issue tagging___Ctrl-Alt-2.scptd/Contents/MacOS/Pashua.app/Contents/Resources/logo.png -------------------------------------------------------------------------------- /Scripts/DT/Annotation template with specific issue tagging___Ctrl-Alt-2.scptd/Contents/MacOS/Pashua.app/Contents/Resources/logo@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/DT/Annotation template with specific issue tagging___Ctrl-Alt-2.scptd/Contents/MacOS/Pashua.app/Contents/Resources/logo@2.png -------------------------------------------------------------------------------- /Scripts/DT/Annotation template with specific issue tagging___Ctrl-Alt-2.scptd/Contents/MacOS/Pashua.app/Contents/Resources/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/DT/Annotation template with specific issue tagging___Ctrl-Alt-2.scptd/Contents/MacOS/Pashua.app/Contents/Resources/style.css -------------------------------------------------------------------------------- /Scripts/DT/Annotation template with specific issue tagging___Ctrl-Alt-2.scptd/Contents/Resources/Scripts/main.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/DT/Annotation template with specific issue tagging___Ctrl-Alt-2.scptd/Contents/Resources/Scripts/main.scpt -------------------------------------------------------------------------------- /Scripts/DT/Annotation template with specific issue tagging___Ctrl-Alt-2.scptd/Contents/Resources/description.rtfd/TXT.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/DT/Annotation template with specific issue tagging___Ctrl-Alt-2.scptd/Contents/Resources/description.rtfd/TXT.rtf -------------------------------------------------------------------------------- /Scripts/DT/Annotation template with specific issue tagging___Ctrl-Alt-2.scptd/Contents/Resources/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/DT/Annotation template with specific issue tagging___Ctrl-Alt-2.scptd/Contents/Resources/style.css -------------------------------------------------------------------------------- /Scripts/DT/DT_Skim.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/DT/DT_Skim.scpt -------------------------------------------------------------------------------- /Scripts/DT/Mark Read.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/DT/Mark Read.scpt -------------------------------------------------------------------------------- /Scripts/DT/RefreshAllRSS___Ctrl-Alt-1.scptd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/DT/RefreshAllRSS___Ctrl-Alt-1.scptd -------------------------------------------------------------------------------- /Scripts/DT/Remove all tags from selection.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/DT/Remove all tags from selection.scpt -------------------------------------------------------------------------------- /Scripts/DT/database_change_error.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/DT/database_change_error.scpt -------------------------------------------------------------------------------- /Scripts/DevonAgent/Open URL in Default Browser.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/DevonAgent/Open URL in Default Browser.scpt -------------------------------------------------------------------------------- /Scripts/PerlScripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/PerlScripts/README.md -------------------------------------------------------------------------------- /Scripts/PerlScripts/abbreviateJournalTitles.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/PerlScripts/abbreviateJournalTitles.pl -------------------------------------------------------------------------------- /Scripts/PerlScripts/bibfetch.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/PerlScripts/bibfetch.el -------------------------------------------------------------------------------- /Scripts/PerlScripts/bibfetch.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/PerlScripts/bibfetch.pl -------------------------------------------------------------------------------- /Scripts/PythonScripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/PythonScripts/README.md -------------------------------------------------------------------------------- /Scripts/PythonScripts/cb_customs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/PythonScripts/cb_customs.py -------------------------------------------------------------------------------- /Scripts/PythonScripts/convertbibliography.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/PythonScripts/convertbibliography.py -------------------------------------------------------------------------------- /Scripts/PythonScripts/pdfmeat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/PythonScripts/pdfmeat.py -------------------------------------------------------------------------------- /Scripts/ST/LaTeX_article.sublime-snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/ST/LaTeX_article.sublime-snippet -------------------------------------------------------------------------------- /Scripts/ShellScripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/ShellScripts/README.md -------------------------------------------------------------------------------- /Scripts/ShellScripts/changemetadata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/ShellScripts/changemetadata.sh -------------------------------------------------------------------------------- /Scripts/ShellScripts/minion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/ShellScripts/minion.sh -------------------------------------------------------------------------------- /Scripts/ShellScripts/minion2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/ShellScripts/minion2.sh -------------------------------------------------------------------------------- /Scripts/homebrew/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/homebrew/LICENSE -------------------------------------------------------------------------------- /Scripts/homebrew/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/homebrew/README.md -------------------------------------------------------------------------------- /Scripts/homebrew/cask-notifier.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/homebrew/cask-notifier.plist -------------------------------------------------------------------------------- /Scripts/homebrew/cask-notifier.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/homebrew/cask-notifier.sh -------------------------------------------------------------------------------- /Scripts/homebrew/homebrew-notifier.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/homebrew/homebrew-notifier.plist -------------------------------------------------------------------------------- /Scripts/homebrew/homebrew-notifier.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/homebrew/homebrew-notifier.sh -------------------------------------------------------------------------------- /Scripts/homebrew/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/homebrew/install.sh -------------------------------------------------------------------------------- /Scripts/journal_abbreviations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/journal_abbreviations/README.md -------------------------------------------------------------------------------- /Scripts/journal_abbreviations/abbreviations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/journal_abbreviations/abbreviations.txt -------------------------------------------------------------------------------- /Scripts/journal_abbreviations/combineJournalLists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/journal_abbreviations/combineJournalLists.py -------------------------------------------------------------------------------- /Scripts/journal_abbreviations/jabref.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/journal_abbreviations/jabref.txt -------------------------------------------------------------------------------- /Scripts/journal_abbreviations/ncbi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/Scripts/journal_abbreviations/ncbi.txt -------------------------------------------------------------------------------- /VivaldiCustomizations/Vimium/vimium.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/VivaldiCustomizations/Vimium/vimium.css -------------------------------------------------------------------------------- /VivaldiCustomizations/Vimium/vomnibar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/VivaldiCustomizations/Vimium/vomnibar.css -------------------------------------------------------------------------------- /VivaldiCustomizations/browser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/VivaldiCustomizations/browser.html -------------------------------------------------------------------------------- /VivaldiCustomizations/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/VivaldiCustomizations/custom.css -------------------------------------------------------------------------------- /VivaldiCustomizations/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/VivaldiCustomizations/custom.js -------------------------------------------------------------------------------- /VivaldiCustomizations/vivaldi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emraher/workflow/HEAD/VivaldiCustomizations/vivaldi.sh --------------------------------------------------------------------------------