background-video-player

Background video player.

justUmen

80

0

0.26.0

MIT

GitHub

Background video player / manager for Atom

*** ALPHA VERSION (Not really public ready) ***

update with GIT + token : https://github.com/settings/tokens/

*** ESPECIALLY BAD WINDOWS SUPPORT FOR NOW 😛 ***

Usage

Play videos in background

recommended

Todo :

XTRA (Not directly related to background-video-player but to Atom in general on my personal configuration)

1 - I want to switch displayCodeHighlights on text selection, to see it better on the minimap, Need to change 2 functions in the "highlight-selected" plugin :

search-model.js :

static makeClasses() { atom.config.set('minimap.displayCodeHighlights', 'false');

selection-manager.js :

removeAllMarkers() { atom.config.set('minimap.displayCodeHighlights', 'true');

2 - Refresh the css right position of wallpaper to avoid minimap by changing "tree-view-autoresize" plugin : On hide/show tree-view, the background wallpaper goes under the minimap plugin...

tree-view-autoresize.coffee :

resizeTreeView: -> setTimeout => if(atom.config.get('background-video-player.underMinimap')==false) document.querySelectorAll(".item-views")[1].style.backgroundPosition="top 0px right " + document.getElementsByTagName('atom-text-editor-minimap')[0].width + "px";