Hi, Jean-Baptiste.
You could add
tribe-bar="false"
to your shortcode to make the Tribe Bar not display at all. Or, if you want the bar but not the view switcher, you could add some custom CSS like this:
#tribe-events.tribe-events-shortcode.view-photo #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner {
background-color: #f5f5f5;
}
#tribe-events.tribe-events-shortcode.view-photo #tribe-events-bar #tribe-bar-collapse-toggle,
#tribe-events.tribe-events-shortcode.view-photo #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner select,
#tribe-events.tribe-events-shortcode.view-photo #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label,
#tribe-events.tribe-events-shortcode.view-photo #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul,
#tribe-events.tribe-events-shortcode.view-photo #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner a {
display: none;
}
You could even add CSS for overriding the cursor.
I hope this was helpful!