Remove conky
parent
a73ef35cee
commit
40cb019b8b
@ -1,74 +0,0 @@
|
||||
-- vim: ts=4 sw=4 noet ai cindent syntax=lua
|
||||
--[[
|
||||
Conky, a system monitor, based on torsmo
|
||||
|
||||
Any original torsmo code is licensed under the BSD license
|
||||
|
||||
All code written since the fork of torsmo is licensed under the GPL
|
||||
|
||||
Please see COPYING for details
|
||||
|
||||
Copyright (c) 2004, Hannu Saransaari and Lauri Hakkarainen
|
||||
Copyright (c) 2005-2012 Brenden Matthews, Philip Kovacs, et. al. (see AUTHORS)
|
||||
All rights reserved.
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
]]
|
||||
|
||||
conky.config = {
|
||||
alignment = 'top_right',
|
||||
background = false,
|
||||
border_width = 7,
|
||||
cpu_avg_samples = 2,
|
||||
default_color = 'black',
|
||||
draw_borders = false,
|
||||
draw_graph_borders = true,
|
||||
draw_outline = false,
|
||||
draw_shades = false,
|
||||
double_buffer = true,
|
||||
use_xft = true,
|
||||
font = 'Noto Sans:size=9:style=Regular',
|
||||
gap_x = 30,
|
||||
gap_y = 25,
|
||||
minimum_width = 5,
|
||||
net_avg_samples = 2,
|
||||
no_buffers = true,
|
||||
out_to_console = false,
|
||||
out_to_stderr = false,
|
||||
extra_newline = false,
|
||||
own_window = true,
|
||||
own_window_class = 'Conky',
|
||||
own_window_type = 'normal',
|
||||
own_window_transparent = false,
|
||||
own_window_argb_visual = false,
|
||||
own_window_colour = 'white',
|
||||
stippled_borders = 0,
|
||||
update_interval = 1.0,
|
||||
uppercase = false,
|
||||
use_spacer = 'none',
|
||||
show_graph_scale = false,
|
||||
show_graph_range = false,
|
||||
use_xft = true,
|
||||
}
|
||||
|
||||
conky.text = [[
|
||||
# ${font Noto Sans:size=9:bold}Sync
|
||||
# ${font Noto Sans:size=9:regular}${exec command insync get_sync_progress}
|
||||
# $hr insync very stupidly got rid of this feature in version 3
|
||||
${font Noto Sans:size=9:style=Bold}Agenda
|
||||
${font Noto Mono:size=9:style=Regular}${exec command ~/.linux/scripts/today.sh}
|
||||
$hr
|
||||
${font Noto Sans:size=9:style=Bold}Music
|
||||
${font Noto Sans CJK JP:size=9:style=Regular}${exec command ~/.linux/scripts/nowplaying.sh}
|
||||
${execbar command ~/.linux/scripts/cmus-conky-timebar.sh}
|
||||
]]
|
@ -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
|
@ -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…
Reference in New Issue