mirror of
https://github.com/alrayyes/dotfiles/
synced 2023-11-14 15:56:30 +00:00
Added mpris support to mpv
This commit is contained in:
parent
3dcdf62f36
commit
385d9beb22
@ -98,6 +98,7 @@ A repository of my personal configuration files.
|
|||||||
- [[https://github.com/gokcehan/lf][lf]]
|
- [[https://github.com/gokcehan/lf][lf]]
|
||||||
- [[https://github.com/phuhl/linux_notification_center][Lintux Notification Center]]
|
- [[https://github.com/phuhl/linux_notification_center][Lintux Notification Center]]
|
||||||
- [[https://www.musicpd.org/][mpd]]
|
- [[https://www.musicpd.org/][mpd]]
|
||||||
|
- [[https://mpv.io/][mpv]]
|
||||||
- [[https://rybczak.net/ncmpcpp/][ncmpcpp]]
|
- [[https://rybczak.net/ncmpcpp/][ncmpcpp]]
|
||||||
- [[https://neomutt.org/][neomutt]]
|
- [[https://neomutt.org/][neomutt]]
|
||||||
- [[https://neovim.io/][neovim]]
|
- [[https://neovim.io/][neovim]]
|
||||||
|
11
install
11
install
@ -1,10 +1,10 @@
|
|||||||
#!/usr/bin/env fish
|
#!/usr/bin/env fish
|
||||||
|
|
||||||
# Prerequisite & inistalled apps
|
# Prerequisite & inistalled apps
|
||||||
set prerequisiteApps bat broot brave caffeine-ng exa fslint fzf go graphviz isync imagemagick lightdm-gtk-greeter mailcap mpv deadd-notification-center-bin npm pamixer pfetch playerctl pulseaudio pulsemixer python pywal stow sxiv tldr udisks xwallpaper zathura
|
set prerequisiteApps bat broot brave caffeine-ng exa fslint fzf go graphviz isync imagemagick lightdm-gtk-greeter mailcap deadd-notification-center-bin npm pamixer pfetch playerctl pulseaudio pulsemixer python pywal stow sxiv tldr udisks2 xwallpaper zathura
|
||||||
set prerequisiteFonts otf-nerd-fonts-fira-code noto-fonts ttf-unifont
|
set prerequisiteFonts otf-nerd-fonts-fira-code noto-fonts ttf-unifont
|
||||||
set prerequisiteLsp bash-language-server ccls php-language-server python-language-server typescript-language-server vscode-css-languageserver vscode-html-languageserver nodejs-intelephense
|
set prerequisiteLsp bash-language-server ccls php-language-server python-language-server typescript-language-server vscode-css-languageserver vscode-html-languageserver nodejs-intelephense
|
||||||
set configuredApps alacritty bspwm castero emacs firejail git gnupg gtk lf deadd-notification-center-bin mpd ncmpcpp neomutt neovim picom redshift sxhkd tmux tuir weechat
|
set configuredApps alacritty bspwm castero emacs firejail git gnupg gtk lf deadd-notification-center-bin mpd mpv mpv-mpris ncmpcpp neomutt neovim picom redshift sxhkd tmux tuir weechat
|
||||||
set locales aspell-en hunspell-en_GB hunspell-en_US hunspell-nl
|
set locales aspell-en hunspell-en_GB hunspell-en_US hunspell-nl
|
||||||
|
|
||||||
function mkdir_if_not_exist
|
function mkdir_if_not_exist
|
||||||
@ -68,6 +68,13 @@ mkdir_if_not_exist ~/.config/wal
|
|||||||
mkdir_if_not_exist ~/.config/weechat
|
mkdir_if_not_exist ~/.config/weechat
|
||||||
mkdir_if_not_exist ~/.config/X11
|
mkdir_if_not_exist ~/.config/X11
|
||||||
mkdir_if_not_exist ~/.gnupg
|
mkdir_if_not_exist ~/.gnupg
|
||||||
|
mkdir_if_not_exist ~/.config/mpv/scripts
|
||||||
|
|
||||||
|
# Link mpv plugins if they don't exist
|
||||||
|
if [ ! -h ~/.config/mpv/scripts/mpris.so ]
|
||||||
|
echo "Linking mpris.so"
|
||||||
|
ln -s /usr/lib/mpv/mpris.so ~/.config/mpv/scripts/mpris.so
|
||||||
|
end
|
||||||
|
|
||||||
for d in (find -- */ -maxdepth 0 -type d | cut -f1 -d '/')
|
for d in (find -- */ -maxdepth 0 -type d | cut -f1 -d '/')
|
||||||
echo "Linking $d..."
|
echo "Linking $d..."
|
||||||
|
1
mpv/.config/firejail/mpv.local
Normal file
1
mpv/.config/firejail/mpv.local
Normal file
@ -0,0 +1 @@
|
|||||||
|
ignore nodbus
|
Loading…
Reference in New Issue
Block a user