forked from Syllo/nvtop
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added scripts to build for debian & AppImage
- Loading branch information
1 parent
45a1796
commit d8fe0f4
Showing
17 changed files
with
780 additions
and
75 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
*.o | ||
*ctags | ||
.vscode/ | ||
build/ | ||
cmake-build*/ | ||
.vscode | ||
release/ | ||
ld |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/bin/bash | ||
|
||
rm -rf build | ||
mkdir build | ||
cd build | ||
cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CXX_COMPILER=g++ .. | ||
make -j $(nproc) | ||
cd .. | ||
|
||
./build/src/nvtop |
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,10 @@ | ||
#!/bin/bash | ||
|
||
rm -rf build | ||
rm -rf release | ||
find . -name CMakeFiles -exec rm -rf {} + | ||
find . -name '*_autogen' -exec rm -rf {} + | ||
|
||
find . -name cmake_install.cmake -delete | ||
find . -name CMakeCache.txt -delete | ||
find . -name Makefile -delete |
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,10 @@ | ||
nvtop (3.0.2-1) focal; urgency=medium | ||
|
||
* AMGDPU: GPUs other than id 0 should now be correctly monitored | ||
* Fixed a bug in GPU selection logic through the F2 menu where the wrong GPUs would still be displayed | ||
* Support for ADRENO GPUs through the msm driver | ||
* Better AMDGPU device name query for newer GPUs | ||
* "hjkl" directional keys | ||
* Build app deb package | ||
|
||
-- Quentin Lienhardt <[email protected]> Tue, 7 Sep 2023 12:00:00 +0100 |
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 @@ | ||
10 |
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,15 @@ | ||
Source: nvtop | ||
Section: utils | ||
Priority: optional | ||
Maintainer: Quentin Lienhardt <[email protected]> | ||
Build-Depends: debhelper (>= 12) | ||
Standards-Version: 4.6.2 | ||
Homepage: https://github.com/Quentium-Forks/nvtop | ||
Vcs-Browser: https://github.com/Quentium-Forks/nvtop | ||
Vcs-Git: https://github.com/Quentium-Forks/nvtop.git | ||
|
||
Package: nvtop | ||
Architecture: all | ||
Depends: ${misc:Depends} | ||
Recommends: systemd | ||
Description: XXX |
Oops, something went wrong.