aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/lumina-desktop-unified
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2018-02-06 10:59:48 -0500
committerKen Moore <ken@ixsystems.com>2018-02-06 10:59:48 -0500
commitb8a19f7ad4f8ef78f2c29a275b8c6057d37a13d5 (patch)
tree30bd6d60098b0bb282187b84b876d1af0c19d687 /src-qt5/core/lumina-desktop-unified
parentAdd an xsession file for Lumina 2. (diff)
downloadlumina-b8a19f7ad4f8ef78f2c29a275b8c6057d37a13d5.tar.gz
lumina-b8a19f7ad4f8ef78f2c29a275b8c6057d37a13d5.tar.bz2
lumina-b8a19f7ad4f8ef78f2c29a275b8c6057d37a13d5.zip
Some quick updates to lumina-terminal
Diffstat (limited to 'src-qt5/core/lumina-desktop-unified')
-rw-r--r--src-qt5/core/lumina-desktop-unified/lumina-desktop-unified.desktop29
-rw-r--r--src-qt5/core/lumina-desktop-unified/src-desktop/DesktopManager.cpp8
2 files changed, 5 insertions, 32 deletions
diff --git a/src-qt5/core/lumina-desktop-unified/lumina-desktop-unified.desktop b/src-qt5/core/lumina-desktop-unified/lumina-desktop-unified.desktop
index 33681964..9f082647 100644
--- a/src-qt5/core/lumina-desktop-unified/lumina-desktop-unified.desktop
+++ b/src-qt5/core/lumina-desktop-unified/lumina-desktop-unified.desktop
@@ -4,31 +4,4 @@ TryExec=lumina-desktop-unified
Icon=Lumina-DE
Type=Application
Name=Lumina 2
-Name[de]=Lumina
-Name[en_GB]=Lumina
-Name[en_ZA]=Lumina
-Name[et]=Lumina
-Name[fr]=Lumina
-Name[fr_CA]=Lumina
-Name[hi]=ल्यूमिना
-Name[ja]=Lumina
-Name[mt]=Lumina
-Name[pl]=Lumina
-Name[pt_BR]=Lumina
-Name[ru]=Lumina
-Name[uk]=Lumina
-Name[vi]=Lumina
-Comment=A Lightweight Desktop for FreeBSD
-Comment[de]=Eine leichtgewichtige Arbeitsplatzumgebung für FreeBSD
-Comment[en_GB]=A Lightweight Desktop for FreeBSD
-Comment[en_ZA]=A Lightweight Desktop for FreeBSD
-Comment[et]=Minimalistlik töölauakeskkond FreeBSD-le
-Comment[fr]=Un environnement bureau léger pour FreeBSD
-Comment[fr_CA]=Un environnement bureau léger pour FreeBSD
-Comment[hi]=एक हल्का डेस्कटॉप फ्री बी.एस.डी के लिए
-Comment[ja]=FreeBSD の為に作られた軽快なデスクトップ環境
-Comment[mt]=A Desktop irqiq għal FreeBSD
-Comment[pl]=Lekkie Środowisko graficzne dla FreeBSD
-Comment[pt_BR]=Um ambiente de trabalho leve para FreeBSD
-Comment[uk]=Легковісне оточення стільниці для FreeBSD
-Comment[vi]=Một máy tính để bàn nhẹ cho FreeBSD
+Comment=Illuminating the desktop
diff --git a/src-qt5/core/lumina-desktop-unified/src-desktop/DesktopManager.cpp b/src-qt5/core/lumina-desktop-unified/src-desktop/DesktopManager.cpp
index 35bd288d..73cd6645 100644
--- a/src-qt5/core/lumina-desktop-unified/src-desktop/DesktopManager.cpp
+++ b/src-qt5/core/lumina-desktop-unified/src-desktop/DesktopManager.cpp
@@ -142,19 +142,19 @@ void DesktopManager::syncWindowList(){
void DesktopManager::syncTrayWindowList(){
QList<NativeWindowObject*> allWins = Lumina::NWS->currentTrayWindows();
- qDebug() << "Synced Tray Window List:" << allWins.length();
+ //qDebug() << "Synced Tray Window List:" << allWins.length();
RootDesktopObject::instance()->setTrayWindows(allWins);
}
// === PRIVATE SLOTS ===
void DesktopManager::updateSessionSettings(){
- qDebug() << "Update Session Settings...";
+ //qDebug() << "Update Session Settings...";
RootDesktopObject::instance()->updateCurrentTimeFormat(DesktopSettings::instance()->value(DesktopSettings::Session, "datetime_format", "").toString());
}
void DesktopManager::updateDesktopSettings(){
- qDebug() << "Update Desktop Settings...";
+ //qDebug() << "Update Desktop Settings...";
QList<QScreen*> scrns = QGuiApplication::screens();
int wkspace = Lumina::NWS->currentWorkspace();
for(int i=0; i<scrns.length(); i++){ updateWallpaper(scrns[i]->name(), wkspace); }
@@ -164,7 +164,7 @@ void DesktopManager::updateDesktopSettings(){
void DesktopManager::updatePanelSettings(){
QList<QScreen*> scrns = QGuiApplication::screens();
int primary = QApplication::desktop()->primaryScreen();
- qDebug() << "Panel Settings Changed:" << primary << scrns.length();
+ //qDebug() << "Panel Settings Changed:" << primary << scrns.length();
QStringList total_ids;
for(int i=0; i<scrns.length(); i++){
//qDebug() << " - Check Screen Name:" << scrns[i]->name();
bgstack15