mirror of
https://github.com/elenapan/dotfiles.git
synced 2025-12-26 15:14:58 +08:00
17 lines
277 B
Bash
Executable file
17 lines
277 B
Bash
Executable file
#!/bin/sh
|
|
# Launch ncmpcpp in a terminal with class "music"
|
|
|
|
# Kitty
|
|
kitty --class music -e ncmpcpp
|
|
|
|
# Alacritty
|
|
# alacritty --class music -e ncmpcpp
|
|
|
|
# st / xst
|
|
# st -c music -e ncmpcpp
|
|
|
|
# Termite
|
|
# termite --class music --exec ncmpcpp
|
|
|
|
# Urxvt
|
|
# urxvt -name music -e ncmpcpp
|