Skip to content

Commit

Permalink
Miscellaneous fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Dave Slotter committed May 16, 2022
1 parent 4e2bf67 commit c6175b9
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions files/usr/local/share/applications/lopora.desktop
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ Version=1.0
Name=Lopora
GenericName=QRSS Beacon Reception
Comment=Lopora is a QRSS Beacon Reception program
Exec=/home/hampi/lopora/scriptfiles/quickstartlopora-hampi.sh
Path=/home/hampi/lopora
Exec=/home/pi/lopora/scriptfiles/quickstartlopora-pi.sh
Path=/home/pi/lopora
Terminal=false
StartupNotify=true
Categories=Utility;HamRadio
Expand Down
6 changes: 3 additions & 3 deletions files/usr/local/share/applications/noaa-apt.desktop
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
Name=NOAA Apt Image Decoder
GenericName=NOAA Apt Image Decoder
Comment=Image decoder for APT signals from NOAA satellites
Exec=/home/hampi/hamradio/noaa-apt/target/release/noaa-apt
Path=/home/hampi/hamradio/noaa-apt
Icon=/home/hampi/hamradio/noaa-apt/res/icon.png
Exec=/home/pi/hamradio/noaa-apt/target/release/noaa-apt
Path=/home/pi/hamradio/noaa-apt
Icon=/home/pi/hamradio/noaa-apt/res/icon.png
Terminal=false
Type=Application
Categories=HamRadio
16 changes: 8 additions & 8 deletions tasks/install_about.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
file:
path: /usr/share/icons/hampi/{{ item }}
state: directory
mode: 644
mode: 0644
with_items:
- 256x256
- 128x128
Expand All @@ -25,14 +25,14 @@
copy:
src: "{{ playbook_dir }}/../files/usr/share/icons/hampi.png"
dest: "/usr/share/icons/hampi.png"
mode: 644
mode: 0644

- name: Create HamPi icon in /usr/share/icons/hampi/[RESOLUTION]
become: yes
copy:
src: "{{ playbook_dir }}/../files/usr/share/icons/hampi/hampi.png"
dest: "/usr/share/icons/hampi/{{ item }}/hampi.png"
mode: 644
mode: 0644
with_items:
- 256x256
- 128x128
Expand All @@ -45,7 +45,7 @@
file:
path: /usr/share/pixmaps/hampi/{{ item }}
state: directory
mode: 644
mode: 0644
with_items:
- 256x256
- 128x128
Expand All @@ -58,14 +58,14 @@
copy:
src: "{{ playbook_dir }}/../files/usr/share/pixmaps/hampi.png"
dest: "/usr/share/pixmaps/hampi.png"
mode: 644
mode: 0644

- name: Create HamPi icon in /usr/share/pixmaps/hampi/[RESOLUTION]
become: yes
copy:
src: "{{ playbook_dir }}/../files/usr/share/pixmaps/hampi/hampi.png"
dest: "/usr/share/pixmaps/hampi/{{ item }}/hampi.png"
mode: 644
mode: 0644
with_items:
- 256x256
- 128x128
Expand All @@ -78,11 +78,11 @@
copy:
src: "{{ playbook_dir }}/../files/usr/share/applications/HamPi.desktop"
dest: "/usr/share/applications/HamPi.desktop"
mode: 644
mode: 0644

- name: Create HamPi script in /usr/bin
become: yes
copy:
src: "{{ playbook_dir }}/../files/usr/bin/about_hampi"
dest: "/usr/bin/about_hampi"
mode: 755
mode: 0755

0 comments on commit c6175b9

Please sign in to comment.