-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- change paths to HOME/bin/conky instead of HOME/pi-build/conky - new conky/update that can be use to install conky and to update conky locally, good for development - move local and zulu text below the first gray line
- Loading branch information
Showing
7 changed files
with
45 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
#!/usr/bin/env bash | ||
|
||
mkdir -p $HOME/bin/conky | ||
cp -p $HOME/pi-build/conky/* $HOME/bin/conky/ | ||
chmod +x $HOME/bin/conky/get-grid $HOME/bin/conky/get-freq $HOME/bin/conky/grid $HOME/bin/conky/setconky | ||
|
||
#Create files needed for autostart at login | ||
#Fix issue https://github.com/km4ack/pi-build/issues/83 | ||
|
||
cat <<EOF > $HOME/.local/share/applications/conky.desktop | ||
[Desktop Entry] | ||
Name=Conky | ||
Comment=Conky | ||
GenericName=Conky Screen Background Monitor | ||
Exec=conky | ||
Icon=/home/pi/bin/conky/conky-logo.png | ||
Type=Application | ||
Encoding=UTF-8 | ||
Terminal=false | ||
Categories=HamRadio | ||
Keywords=Radio | ||
EOF | ||
|
||
ln -sf $HOME/.local/share/applications/conky.desktop $HOME/.config/autostart/conky.desktop | ||
|
||
#####Add setconky to main menu | ||
cat <<EOF > $HOME/.local/share/applications/setconky.desktop | ||
[Desktop Entry] | ||
Name=Conky-Prefs | ||
Comment=Conky-Prefs | ||
GenericName=Change Conky Preferences | ||
Exec=/home/pi/bin/conky/setconky | ||
Icon=/home/pi/bin/conky/conky-logo.png | ||
Type=Application | ||
Encoding=UTF-8 | ||
Terminal=false | ||
Categories=Settings;DesktopSettings;GTK;X-LXDE-Settings; | ||
Keywords=Radio,Conky | ||
EOF |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters