Skip to content

Commit

Permalink
Fix default liked, shuffle, etc. icons to more recognizable symbols (R…
Browse files Browse the repository at this point in the history
  • Loading branch information
rasmuspeders1 authored Jan 27, 2021
1 parent e471bb7 commit a3e214c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -248,12 +248,12 @@ behavior:
# Determines the text icon to display next to "liked" Spotify items, such as
# liked songs and albums, or followed artists. Can be any length string.
# These icons require a patched nerd font.
liked_icon: " "
shuffle_icon: "咽"
repeat_track_icon: "ο₯—"
repeat_context_icon: "ο₯•"
playing_icon: ""
paused_icon: "ο££"
liked_icon: β™₯
shuffle_icon: πŸ”€
repeat_track_icon: πŸ”‚
repeat_context_icon: πŸ”
playing_icon: β–Ά
paused_icon: ⏸

keybindings:
# Key stroke can be used if it only uses two keys:
Expand Down
12 changes: 6 additions & 6 deletions src/user_config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -288,12 +288,12 @@ impl UserConfig {
tick_rate_milliseconds: 250,
enable_text_emphasis: true,
show_loading_indicator: true,
liked_icon: " ".to_string(),
shuffle_icon: "咽".to_string(),
repeat_track_icon: "ο₯—".to_string(),
repeat_context_icon: "ο₯•".to_string(),
playing_icon: "".to_string(),
paused_icon: "ο££ ".to_string(),
liked_icon: "β™₯".to_string(),
shuffle_icon: "πŸ”€".to_string(),
repeat_track_icon: "πŸ”‚".to_string(),
repeat_context_icon: "πŸ”".to_string(),
playing_icon: "β–Ά".to_string(),
paused_icon: "⏸".to_string(),
},
path_to_config: None,
}
Expand Down

0 comments on commit a3e214c

Please sign in to comment.