feat: add swaync, spotify, keyring
This commit is contained in:
parent
8f1e1ea06e
commit
4879c8321f
14 changed files with 561 additions and 4 deletions
47
users/gandalf/modules/spotify-player/app.toml
Normal file
47
users/gandalf/modules/spotify-player/app.toml
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
theme = "dracula"
|
||||
client_id = "65b708073fc0480ea92a077233ca87bd"
|
||||
client_port = 8080
|
||||
playback_format = """
|
||||
{track} • {artists}
|
||||
{album}
|
||||
{metadata}"""
|
||||
tracks_playback_limit = 50
|
||||
app_refresh_duration_in_ms = 32
|
||||
playback_refresh_duration_in_ms = 0
|
||||
cover_image_refresh_duration_in_ms = 2000
|
||||
page_size_in_rows = 20
|
||||
track_table_item_max_len = 32
|
||||
play_icon = "▶"
|
||||
pause_icon = "▌▌"
|
||||
liked_icon = "♥"
|
||||
border_type = "Plain"
|
||||
progress_bar_type = "Rectangle"
|
||||
playback_window_position = "Top"
|
||||
cover_img_length = 9
|
||||
cover_img_width = 5
|
||||
cover_img_scale = 1.0
|
||||
playback_window_width = 6
|
||||
enable_media_control = true
|
||||
enable_streaming = true
|
||||
enable_cover_image_cache = true
|
||||
default_device = "spotify-player"
|
||||
|
||||
[copy_command]
|
||||
command = "xclip"
|
||||
args = [
|
||||
"-sel",
|
||||
"c",
|
||||
]
|
||||
|
||||
[notify_format]
|
||||
summary = "{track} • {artists}"
|
||||
body = "{album}"
|
||||
|
||||
[device]
|
||||
name = "spotify-player"
|
||||
device_type = "speaker"
|
||||
volume = 80
|
||||
bitrate = 320
|
||||
audio_cache = false
|
||||
|
||||
# test
|
||||
Loading…
Add table
Add a link
Reference in a new issue