Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Switch RDNN to io.elementary.monitor #395

Merged
merged 3 commits into from
Oct 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ obj-*-linux-gnu
*.debhelper.log
*.substvars
*.debhelper
debian/com.github.stsdc.monitor
debian/io.elementary.monitor
debian/files
# subprojects/*/
.flatpak-builder
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<p align="center">
<img align="left" width="64" height="64" src="data/icons/64/com.github.stsdc.monitor.svg">
<img align="left" width="64" height="64" src="data/icons/64/io.elementary.monitor.svg">
<h1 class="rich-diff-level-zero">Monitor</h1>
</p>

Expand All @@ -26,7 +26,7 @@ Add the PPA of Monitor and then install it:

```bash
sudo add-apt-repository ppa:stsdc/monitor
sudo apt install com.github.stsdc.monitor
sudo apt install io.elementary.monitor
```

Monitor will be available from the Applications menu.
Expand Down Expand Up @@ -63,5 +63,5 @@ Check dependencies in [the deb control file](debian/control).
### Debug logging

```bash
G_MESSAGES_DEBUG=all GTK_DEBUG=interactive com.github.stsdc.monitor
G_MESSAGES_DEBUG=all GTK_DEBUG=interactive io.elementary.monitor
```
2 changes: 1 addition & 1 deletion data/css.gresource.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<gresources>
<gresource prefix="/com/github/stsdc/monitor">
<gresource prefix="/io/elementary/monitor">
<file alias="monitor-light.css" compressed="true">monitor-light.css</file>
<file alias="monitor-dark.css" compressed="true">monitor-dark.css</file>
</gresource>
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion data/icons/icons.indicator.gresource.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<gresources>
<gresource prefix="/com/github/stsdc/monitor/icons">
<gresource prefix="/io/elementary/monitor/icons">
<file compressed="true" preprocess="xml-stripblanks">cpu-symbolic.svg</file>
<file compressed="true" preprocess="xml-stripblanks">gpu-symbolic.svg</file>
<file compressed="true" preprocess="xml-stripblanks">ram-symbolic.svg</file>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright 2021 Stanisław <@ststdc> -->
<component type="desktop">
<id>com.github.stsdc.monitor</id>
<id>io.elementary.monitor</id>
<metadata_license>CC0</metadata_license>
<project_license>GPL-3.0+</project_license>
<name>Monitor</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ Name=Monitor
GenericName=System Monitor
Comment=Manage processes and monitor resource usage of the system
Categories=System;Utility;
Exec=com.github.stsdc.monitor %U
Icon=com.github.stsdc.monitor
Exec=io.elementary.monitor %U
Icon=io.elementary.monitor
Terminal=false
Type=Application
X-GNOME-Gettext-Domain=monitor
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<schemalist>
<enum id="com.github.stsdc.monitor.windowstate">
<enum id="io.elementary.monitor.windowstate">
<value value="0" nick="normal"/>
<value value="1" nick="maximized"/>
</enum>
<schema path="/com/github/stsdc/monitor/settings/" id="com.github.stsdc.monitor.settings">
<schema path="/io/elementary/monitor/settings/" id="io.elementary.monitor.settings">
<key type='b' name="is-maximized">
<default>false</default>
<summary>Is window maximized or not</summary>
Expand Down
Loading