Remove conky
This commit is contained in:
parent
a73ef35cee
commit
40cb019b8b
7 changed files with 2 additions and 120 deletions
|
@ -1,15 +0,0 @@
|
|||
#!/bin/bash
|
||||
|
||||
# from https://github.com/TiredSounds/cmus-conky
|
||||
|
||||
## Gets current track time for a bar in Conky.
|
||||
## Usage: Put ${execbar /path/to/script} in your .conkyrc.
|
||||
## It might be useful to use ${goto x} or ${voffset x} to adjust position, and ${color #xxxxxx} for color.
|
||||
## The 'default_bar_size x y' option can be used before the TEXT section in your .conkyrc to adjust height and width.
|
||||
## Requires 'bc' for calculating percentage.
|
||||
|
||||
if cmus-remote -Q &>/dev/null ; then
|
||||
DUR=$( cmus-remote -Q | grep "duration" | cut -c10- )
|
||||
POS=$( cmus-remote -Q | grep "position" | cut -c10- )
|
||||
echo "($POS/$DUR)*100" | bc -l
|
||||
fi
|
|
@ -1,22 +0,0 @@
|
|||
#/usr/bin/bash
|
||||
|
||||
ARTIST=$( cmus-remote -Q 2>/dev/null | grep "tag artist " | cut -d " " -f 3- )
|
||||
TITLE=$( cmus-remote -Q 2>/dev/null | grep "tag title" | cut -d " " -f 3- )
|
||||
SPOTIFY_PID="$(pidof -s spotify || pidof -s .spotify-wrapped)"
|
||||
|
||||
if [ -z "$ARTIST" ];
|
||||
then
|
||||
if [ -z "$SPOTIFY_PID" ];
|
||||
then
|
||||
echo "Nothing playing"
|
||||
else
|
||||
if [ -z "$(dbus-send --print-reply --dest=org.mpris.MediaPlayer2.spotify /org/mpris/MediaPlayer2 org.freedesktop.DBus.Properties.Get string:'org.mpris.MediaPlayer2.Player' string:'Metadata'|egrep -A 2 "artist"|egrep -v "artist"|egrep -v "array"|cut -b 27-|cut -d '"' -f 1|egrep -v ^$)" ];
|
||||
then
|
||||
echo "Nothing playing"
|
||||
else
|
||||
echo "$(dbus-send --print-reply --dest=org.mpris.MediaPlayer2.spotify /org/mpris/MediaPlayer2 org.freedesktop.DBus.Properties.Get string:'org.mpris.MediaPlayer2.Player' string:'Metadata'|egrep -A 2 "artist"|egrep -v "artist"|egrep -v "array"|cut -b 27-|cut -d '"' -f 1|egrep -v ^$): $(dbus-send --print-reply --dest=org.mpris.MediaPlayer2.spotify /org/mpris/MediaPlayer2 org.freedesktop.DBus.Properties.Get string:'org.mpris.MediaPlayer2.Player' string:'Metadata'|egrep -A 1 "title"|egrep -v "title"|cut -b 44-|cut -d '"' -f 1|egrep -v ^$)"
|
||||
fi
|
||||
fi
|
||||
else
|
||||
echo "$ARTIST: $TITLE"
|
||||
fi
|
|
@ -25,7 +25,7 @@ echo "deb [signed-by=/usr/share/keyrings/vivaldi-browser.gpg arch=$(dpkg --print
|
|||
sudo apt update
|
||||
|
||||
# Install things
|
||||
sudo apt install abcde arc-theme biber cmus conky-all curl dh-autoreconf emacs27 evince eyed3 feh ffmpeg fonts-crosextra-carlito fonts-noto fonts-noto-color-emoji fonts-sil-andika fonts-sil-doulos geoclue-2.0 ghostscript gimp insync kid3-qt lame libcurl4-openssl-dev libnotify-dev libreoffice libsox-fmt-mp3 lilypond maildir-utils mu4e offlineimap openbox pandoc papirus-icon-theme plank pnmixer python2.7 python3 python3-bs4 python3-venv python3-pip redshift-gtk ruby-full sakura sox spotify-client sqlite3 suru-icon-set texlive-extra-utils texlive-latex-extra texlive-xetex tex-gyre thunderbird timidity tint2 tree vivaldi vlc vlc-plugin-fluidsynth xcompmgr zsh
|
||||
sudo apt install abcde arc-theme biber cmus curl dh-autoreconf emacs27 evince eyed3 feh ffmpeg fonts-crosextra-carlito fonts-noto fonts-noto-color-emoji fonts-sil-andika fonts-sil-doulos geoclue-2.0 ghostscript gimp insync kid3-qt lame libcurl4-openssl-dev libnotify-dev libreoffice libsox-fmt-mp3 lilypond maildir-utils mu4e offlineimap openbox pandoc papirus-icon-theme plank pnmixer python2.7 python3 python3-bs4 python3-venv python3-pip redshift-gtk ruby-full sakura sox spotify-client sqlite3 suru-icon-set texlive-extra-utils texlive-latex-extra texlive-xetex tex-gyre thunderbird timidity tint2 tree vivaldi vlc vlc-plugin-fluidsynth xcompmgr zsh
|
||||
# build-essential libsox-fmt-all sox xserver-xorg-core xserver-xlib-input-synaptics zlib1g-dev zotero # not required
|
||||
# python-pip # not working in focal
|
||||
|
||||
|
@ -152,7 +152,6 @@ rm -f ~/.config/gtk-4.0/settings.ini
|
|||
rm -f ~/.config/fontconfig/fonts.conf
|
||||
rm -f ~/.config/pnmixer/config
|
||||
rm -f ~/.config/sakura/sakura.conf
|
||||
rm -f ~/.conkyrc
|
||||
rm -rf ~/.config/plank
|
||||
rm -f ~/mail.el ~/.offlineimaprc
|
||||
|
||||
|
@ -176,7 +175,6 @@ mkdir -p ~/.config/pnmixer
|
|||
ln -s ~/.linux/dots/pnmixer/config ~/.config/pnmixer
|
||||
mkdir -p ~/.config/sakura
|
||||
ln -s ~/.linux/dots/sakura.conf ~/.config/sakura
|
||||
ln -s ~/.linux/dots/.conkyrc ~
|
||||
mkdir -p ~/.config/plank/dock1/launchers
|
||||
cp ~/.linux/dots/plank/items/*.dockitem ~/.config/plank/dock1/launchers/
|
||||
cat ~/.linux/dots/plank/plank.ini | dconf load /net/launchpad/plank/docks/
|
||||
|
|
|
@ -1,3 +0,0 @@
|
|||
#/usr/bin/bash
|
||||
|
||||
emacs27 -batch -Q -l ~/.emacs.d/agenda.el -eval '(org-batch-agenda "a" org-agenda-span 1)'
|
Loading…
Add table
Add a link
Reference in a new issue