mirror of
https://github.com/ilya-zlobintsev/LACT.git
synced 2025-02-25 18:55:26 -06:00
feat: properly set icon, use app id for names
This commit is contained in:
parent
26547f0123
commit
16b1b3d5e2
8
Makefile
8
Makefile
@ -7,11 +7,11 @@ build-release:
|
|||||||
install:
|
install:
|
||||||
install -Dm755 target/release/lact ${DESTDIR}/bin/lact
|
install -Dm755 target/release/lact ${DESTDIR}/bin/lact
|
||||||
install -Dm755 res/lactd.service ${DESTDIR}/lib/systemd/system/lactd.service
|
install -Dm755 res/lactd.service ${DESTDIR}/lib/systemd/system/lactd.service
|
||||||
install -Dm755 res/lact.desktop ${DESTDIR}/share/applications/lact.desktop
|
install -Dm755 res/io.github.lact-linux.desktop ${DESTDIR}/share/applications/io.github.lact-linux.desktop
|
||||||
install -Dm755 res/lact.png ${DESTDIR}/share/pixmaps/lact.png
|
install -Dm755 res/io.github.lact-linux.png ${DESTDIR}/share/pixmaps/io.github.lact-linux.png
|
||||||
|
|
||||||
uninstall:
|
uninstall:
|
||||||
rm ${DESTDIR}/bin/lact
|
rm ${DESTDIR}/bin/lact
|
||||||
rm ${DESTDIR}/lib/systemd/system/lactd.service
|
rm ${DESTDIR}/lib/systemd/system/lactd.service
|
||||||
rm ${DESTDIR}/share/applications/lact.desktop
|
rm ${DESTDIR}/share/applications/io.github.lact-linux.desktop
|
||||||
rm ${DESTDIR}/share/pixmaps/lact.png
|
rm ${DESTDIR}/share/pixmaps/io.github.lact-linux.png
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
# Linux AMDGPU Control Application
|
# Linux AMDGPU Control Application
|
||||||
|
|
||||||
|
<img src="res/lact.png" alt="icon" width="100"/>
|
||||||
|
|
||||||
This application allows you to control your AMD GPU on a Linux system.
|
This application allows you to control your AMD GPU on a Linux system.
|
||||||
|
|
||||||
| | | |
|
| | | |
|
||||||
|
@ -22,7 +22,7 @@ use std::{
|
|||||||
time::Duration,
|
time::Duration,
|
||||||
};
|
};
|
||||||
use tokio::{select, sync::Notify, task::JoinHandle, time::sleep};
|
use tokio::{select, sync::Notify, task::JoinHandle, time::sleep};
|
||||||
use tracing::{debug, error, info, trace, warn};
|
use tracing::{debug, error, trace, warn};
|
||||||
|
|
||||||
type FanControlHandle = (Arc<Notify>, JoinHandle<()>, FanCurve);
|
type FanControlHandle = (Arc<Notify>, JoinHandle<()>, FanCurve);
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ impl App {
|
|||||||
.title("LACT")
|
.title("LACT")
|
||||||
.default_width(500)
|
.default_width(500)
|
||||||
.default_height(600)
|
.default_height(600)
|
||||||
|
.icon_name(APP_ID)
|
||||||
.build();
|
.build();
|
||||||
|
|
||||||
window.set_titlebar(Some(&header.container));
|
window.set_titlebar(Some(&header.container));
|
||||||
|
Before Width: | Height: | Size: 43 KiB After Width: | Height: | Size: 43 KiB |
Loading…
Reference in New Issue
Block a user