Home
last modified time | relevance | path

Searched refs:now_playing (Results 1 – 25 of 59) sorted by relevance

123

/dports/misc/py-powerline-status/powerline-2.8.2/powerline/segments/common/
H A Dplayers.py190 if not now_playing or now_playing.count("\n") != 3:
194 now_playing
214 if not now_playing:
464 if not now_playing:
466 now_playing = now_playing.split('\n')
506 if not now_playing:
508 now_playing = now_playing.split(status_delimiter)
556 if not now_playing:
558 now_playing = now_playing.split(status_delimiter)
561 title, artist, album = now_playing[0], now_playing[1], now_playing[2]
[all …]
/dports/x11-wm/qtile/qtile-0.18.1/libqtile/widget/
H A Dcmus.py81 def now_playing(self): member in Cmus
84 now_playing = ""
97 now_playing = "{0} - {1}".format(artist, title)
100 now_playing = info['stream']
102 now_playing = title
103 if now_playing:
104 now_playing = "♫ {0}".format(now_playing)
105 return pangocffi.markup_escape_text(now_playing)
116 return self.now_playing()
H A Dmoc.py76 def now_playing(self): member in Moc
79 now_playing = ""
91 now_playing = "♫ {0} - {1}".format(artist, title)
93 now_playing = "♫ {0}".format(title)
97 now_playing = "♫ {0}".format(filename)
100 now_playing = "♫"
102 return now_playing
113 return self.now_playing()
/dports/deskutils/py-py3status/py3status-3.40/py3status/modules/
H A Dclementine.py41 artist = lines = now_playing = title = ""
66 now_playing = f"{artist} - {title}"
68 now_playing = artist
70 now_playing = title
72 now_playing = INTERNET_RADIO
76 "full_text": self.py3.safe_format(self.format, {"current": now_playing}),
/dports/audio/beets/beets-1.4.9/beetsplug/
H A Dmpdstats.py144 self.now_playing = None
243 if self.now_playing:
244 self.handle_song_change(self.now_playing)
246 self.now_playing = None
250 self.now_playing = None
262 if self.now_playing:
263 if self.now_playing['path'] != path:
264 self.handle_song_change(self.now_playing)
280 self.now_playing = None
285 self.now_playing = {
[all …]
/dports/net-p2p/py-nicotine-plus/nicotine-plus-3.2.0/pynicotine/plugins/now_playing_search/
H A D__init__.py40 now_playing = self.core.now_playing.get_np(get_format=self.get_format)
42 if now_playing:
43 return now_playing
/dports/games/flightgear/flightgear-2020.3.11/src/Sound/
H A Dsample_queue.cxx79 bool now_playing = false; in update() local
81 now_playing = is_playing( msgid ); in update()
82 if ( !now_playing ) { in update()
89 if ( !now_playing ) { in update()
/dports/audio/mpdscribble/mpdscribble-0.22/src/
H A Dscrobbler.c101 struct record now_playing; member
136 record_clear(&scrobbler->now_playing); in scrobbler_new()
160 record_deinit(&scrobbler->now_playing); in scrobbler_free()
435 memset(&scrobbler->now_playing, 0, in scrobbler_submit_response()
644 record_deinit(&scrobbler->now_playing); in scrobbler_schedule_now_playing_callback()
689 scrobbler->now_playing.artist, in scrobbler_submit()
690 scrobbler->now_playing.track, in scrobbler_submit()
691 scrobbler->now_playing.album, in scrobbler_submit()
692 scrobbler->now_playing.number, in scrobbler_submit()
693 scrobbler->now_playing.mbid, in scrobbler_submit()
[all …]
/dports/audio/mpz/mpz-1.0.19/app/
H A Dtrayicon.cpp24 now_playing = new QAction("", this); in TrayIcon()
25 now_playing->setEnabled(false); in TrayIcon()
33 menu->addAction(now_playing); in TrayIcon()
98 now_playing->setText(""); in update_menu_now_playing()
104 now_playing->setText(t); in update_menu_now_playing()
H A Dtrayicon.h46 QAction *now_playing; variable
/dports/audio/ampache/ampache-php74-5.0.0/public/templates/
H A Dshow_localplay_status.inc.php28 $now_playing = $status['track_title']; variable
30 $now_playing .= ' - ' . $status['track_album'] . ' - ' . $status['track_artist'];
34 <?php echo T_('Now Playing'); ?>:&nbsp;<i><?php echo $now_playing; ?></i>
/dports/games/mangband/mangband-1.5.3/src/client/
H A Dsdl-sound.c18 sound_wave *now_playing = NULL; variable
25 sound_wave * wav = now_playing; in wav_play()
49 sound_wave * wav = now_playing; in sdl_play_sound_end()
182 now_playing = wav; in sdl_play_sound()
/dports/audio/p5-Music-Audioscrobbler-Submit/Music-Audioscrobbler-Submit-0.05/
H A DREADME93 now_playing()
97 $mas->now_playing("/path/to/file.mp3");
111 Music::Tag object, or hashref (see now_playing()) for format) and
157 be called by submit() or now_playing() when necessary.
183 with the structure required by submit() or now_playing. Normally
184 this is called automatically by submit() or now_playing. See
185 now_playing for syntax of hash.
/dports/audio/ampache/ampache-php74-5.0.0/public/themes/reborn/templates/
H A Ddefault.css1440 #now_playing {
1445 #now_playing .np_group {
1450 #now_playing .np_row {
1455 #now_playing .np_cell {
1476 #now_playing .cel_song,
1477 #now_playing .cel_album,
1478 #now_playing .cel_artist,
1479 #now_playing .cel_video,
1480 #now_playing .cel_year {
1500 #now_playing .cel_lyrics {
[all …]
H A Ddark.css460 #now_playing .cel_albumart img {
466 #now_playing .cel_lyrics a:hover {
/dports/audio/exaile/exaile-4.1.1/plugins/audioscrobbler/
H A D__init__.py204 def now_playing(self, player, track): member in ExaileScrobbler
214 scrobbler.now_playing(
232 self.now_playing(player, track)
H A D_scrobbler.py165 def now_playing( function
222 now_playing(artist, track, album, length, trackno, mbid, inner_call=True)
/dports/audio/p5-Music-Audioscrobbler-Submit/Music-Audioscrobbler-Submit-0.05/eg/
H A Dnowplaying.pl27 $mas->now_playing($file);
/dports/net-p2p/py-nicotine-plus/nicotine-plus-3.2.0/pynicotine/plugins/now_playing_sender/
H A D__init__.py102 playing = self.core.now_playing.get_np()
/dports/www/madsonic/madsonic/WEB-INF/classes/org/madsonic/theme/
H A Ddefault_light.properties27 nowPlayingImage = icons/default_light/now_playing.png
H A Ddefault_dark.properties27 nowPlayingImage = icons/default_dark/now_playing.png
H A Dsigelmedia.properties39 nowPlayingImage = icons/sigelmedia/now_playing.png
H A Dmadsonic_sunny.properties23 currentImage = icons/madsonic_sunny/now_playing.png
/dports/www/madsonic/madsonic/WEB-INF/classes/org/madsonic/i18n/
H A DResourceBundle_zh_CN.properties34 top.now_playing =\u64ad\u653e
/dports/audio/clementine-player/Clementine-1.4.0rc1/src/ui/
H A Dmainwindow.cpp241 ui_->now_playing->SetApplication(app_);
290 ui_->tabs->addBottomWidget(ui_->now_playing);
911 ui_->now_playing->set_ideal_height(ui_->status_bar->sizeHint().height() +
913 connect(app_->player(), SIGNAL(Stopped()), ui_->now_playing, SLOT(Stopped()));
914 connect(ui_->now_playing, SIGNAL(ShowAboveStatusBarChanged(bool)),
916 connect(ui_->action_hypnotoad, SIGNAL(toggled(bool)), ui_->now_playing,
918 connect(ui_->action_kittens, SIGNAL(toggled(bool)), ui_->now_playing,
924 NowPlayingWidgetPositionChanged(ui_->now_playing->show_above_status_bar());

123