* fix naming

* fix notification
This commit is contained in:
arcan1s 2014-11-20 06:13:09 +03:00
parent 0cd2ff6813
commit 93db63b16c
2 changed files with 9 additions and 9 deletions

View File

@ -7,7 +7,7 @@
<x>0</x>
<y>0</y>
<width>700</width>
<height>590</height>
<height>588</height>
</rect>
</property>
<property name="sizePolicy">
@ -41,7 +41,7 @@
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<y>-250</y>
<width>675</width>
<height>822</height>
</rect>
@ -481,9 +481,9 @@ $m - uptime minutes without zero</string>
</layout>
</item>
<item>
<layout class="QHBoxLayout" name="layout_updates_3">
<layout class="QHBoxLayout" name="layout_updates">
<item>
<spacer name="spacer_updates_3">
<spacer name="spacer_updates">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
@ -496,7 +496,7 @@ $m - uptime minutes without zero</string>
</spacer>
</item>
<item>
<widget class="QCheckBox" name="checkBox_updates_3">
<widget class="QCheckBox" name="checkBox_updates">
<property name="sizePolicy">
<sizepolicy hsizetype="Expanding" vsizetype="Fixed">
<horstretch>0</horstretch>

View File

@ -65,7 +65,7 @@ void CustomLabel::mousePressEvent(QMouseEvent *event)
if (debug) qDebug() << PDEBUG << ":" << "Cmd returns" << process.exitCode;
if (process.exitCode != 0)
if (debug) qDebug() << PDEBUG << ":" << "Error" << process.error;
text += QString("Kernel: %1\n").arg(QTextCodec::codecForMib(106)->toUnicode(process.output).trimmed());
text += QString("Kernel: %1<br>").arg(QTextCodec::codecForMib(106)->toUnicode(process.output).trimmed());
// hostname
cmd = QString("uname -n");
if (debug) qDebug() << PDEBUG << ":" << "cmd" << cmd;
@ -73,7 +73,7 @@ void CustomLabel::mousePressEvent(QMouseEvent *event)
if (debug) qDebug() << PDEBUG << ":" << "Cmd returns" << process.exitCode;
if (process.exitCode != 0)
if (debug) qDebug() << PDEBUG << ":" << "Error" << process.error;
text += QString("Hostname: %1\n").arg(QTextCodec::codecForMib(106)->toUnicode(process.output).trimmed());
text += QString("Hostname: %1<br>").arg(QTextCodec::codecForMib(106)->toUnicode(process.output).trimmed());
// whoami
cmd = QString("whoami");
if (debug) qDebug() << PDEBUG << ":" << "cmd" << cmd;
@ -81,7 +81,7 @@ void CustomLabel::mousePressEvent(QMouseEvent *event)
if (debug) qDebug() << PDEBUG << ":" << "Cmd returns" << process.exitCode;
if (process.exitCode != 0)
if (debug) qDebug() << PDEBUG << ":" << "Error" << process.error;
text += QString("Whoami: %1\n").arg(QTextCodec::codecForMib(106)->toUnicode(process.output).trimmed());
text += QString("Whoami: %1<br>").arg(QTextCodec::codecForMib(106)->toUnicode(process.output).trimmed());
// uptime
cmd = QString("uptime");
if (debug) qDebug() << PDEBUG << ":" << "cmd" << cmd;
@ -89,7 +89,7 @@ void CustomLabel::mousePressEvent(QMouseEvent *event)
if (debug) qDebug() << PDEBUG << ":" << "Cmd returns" << process.exitCode;
if (process.exitCode != 0)
if (debug) qDebug() << PDEBUG << ":" << "Error" << process.error;
text += QString("Uptime: %1\n").arg(QTextCodec::codecForMib(106)->toUnicode(process.output).trimmed());
text += QString("Uptime: %1").arg(QTextCodec::codecForMib(106)->toUnicode(process.output).trimmed());
widget->sendNotification(QString("system"), text);
}