Skip to content
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions qubesmanager/informationnotes.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
#

from PyQt6.QtWidgets import QDialog # pylint: disable=import-error
from PyQt6.QtGui import QFont # pylint: disable=import-error

from . import ui_informationnotes # pylint: disable=no-name-in-module
import subprocess
Expand All @@ -36,4 +37,5 @@ def __init__(self, parent=None):
self.setupUi(self)
details = subprocess.check_output(
['/usr/libexec/qubes-manager/qvm_about.sh'])
self.informationNotes.setFont(QFont('Monospace', 10))
self.informationNotes.setText(details.decode())
2 changes: 1 addition & 1 deletion qubesmanager/qvm_about.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ uname -sr
echo " "
echo "Installed Packages: "
echo " "
dnf list installed |awk '$1~/qubes/ && $1!~/@qubes*/ { printf "%-50s\t%s \n",$1 ,$2}'
dnf list --installed |awk '$1~/qubes/ && $1!~/@qubes*/ { printf "%-50s\t%s \n",$1 ,$2}'



Expand Down
2 changes: 1 addition & 1 deletion ui/informationnotes.ui
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<rect>
<x>0</x>
<y>0</y>
<width>600</width>
<width>800</width>
<height>600</height>
</rect>
</property>
Expand Down