mirror of
https://github.com/house-of-vanity/tmux-helper.git
synced 2026-02-04 01:37:57 +00:00
Improve player MPRIS line.
This commit is contained in:
committed by
Alexandr Bogomyakov
parent
5d37a86d09
commit
e9c59a6733
2
.github/workflows/PKGBUILD
vendored
2
.github/workflows/PKGBUILD
vendored
@@ -1,7 +1,7 @@
|
||||
# Maintainer: Alexandr Bogomyakov (ultradesu) <ab@hexor.ru>
|
||||
|
||||
pkgname=tmux-helper
|
||||
pkgver=0.3.3
|
||||
pkgver=0.3.4
|
||||
pkgrel=1
|
||||
pkgdesc="Tmux helper"
|
||||
url="https://github.com/house-of-vanity/tmux-helper.git"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "tmux-helper"
|
||||
version = "0.3.3"
|
||||
version = "0.3.4"
|
||||
description = "Utility for printing system info for tmux status line."
|
||||
authors = ["Ultra Desu <ultradesu@hexor.ru>"]
|
||||
edition = "2018"
|
||||
|
||||
16
src/utils.rs
16
src/utils.rs
@@ -200,6 +200,21 @@ fn format_player(track_info: TrackInfo, config: &config::Config) {
|
||||
}
|
||||
let artist_line = shorten(track_info.artist, max_len, 6);
|
||||
let title_line = shorten(track_info.title, max_len, 6);
|
||||
if track_info.position == "00:00" || track_info.duration == "" {
|
||||
println!(
|
||||
"#[none]#[bold]{}{}{}#[none]{}{}{}{} {}{} {}#[default]",
|
||||
config.color_track_name,
|
||||
title_line,
|
||||
config.color_end,
|
||||
separator,
|
||||
config.color_track_artist,
|
||||
artist_line,
|
||||
config.color_end,
|
||||
config.color_track_time,
|
||||
track_info.status,
|
||||
config.color_end,
|
||||
);
|
||||
} else {
|
||||
println!(
|
||||
"#[none]#[bold]{}{}{}#[none]{}{}{}{} {}[{}/{}] {} {}#[default]",
|
||||
config.color_track_name,
|
||||
@@ -215,6 +230,7 @@ fn format_player(track_info: TrackInfo, config: &config::Config) {
|
||||
track_info.status,
|
||||
config.color_end,
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
pub fn mpris(config: &config::Config) {
|
||||
|
||||
Reference in New Issue
Block a user