/* * Edits a file based on your DE. */ void WMHelper::editFile( const QString& fileName ){ QProcess *process = new QProcess(qApp->activeWindow()); QStringList s; if (!UnixCommand::isRootRunning()){ LinuxDistro distro = UnixCommand::getLinuxDistro(); if (distro == ectn_ARCHBANGLINUX && UnixCommand::hasTheExecutable(ctn_ARCHBANG_EDITOR)) { QString p = ctn_ARCHBANG_EDITOR + " " + fileName; process->startDetached(getSUCommand() + p); } else if (isXFCERunning() && (UnixCommand::hasTheExecutable(ctn_XFCE_EDITOR) || UnixCommand::hasTheExecutable(ctn_XFCE_EDITOR_ALT))){ QString p = getXFCEEditor() + " " + fileName; process->startDetached(getSUCommand() + p); } else if (isKDERunning() && UnixCommand::hasTheExecutable(ctn_KDE_EDITOR)){ QString p = " -d -t --noignorebutton -c "; p += ctn_KDE_EDITOR + " " + fileName; process->startDetached(getSUCommand() + p); } else if (isKDERunning() && UnixCommand::hasTheExecutable(ctn_KDE4_EDITOR)){ QString p = " -d -t --noignorebutton -c "; p += ctn_KDE4_EDITOR + " " + fileName; process->startDetached(getSUCommand() + p); } else if (isTDERunning() && UnixCommand::hasTheExecutable(ctn_TDE_EDITOR)){ QString p = " -d -t --noignorebutton "; p += ctn_TDE_EDITOR + " " + fileName; process->startDetached(getSUCommand() + p); } else if (isMATERunning() && UnixCommand::hasTheExecutable(ctn_MATE_EDITOR)){ QString p = ctn_MATE_EDITOR + " " + fileName; process->startDetached(getSUCommand() + p); } else if (isCinnamonRunning() && UnixCommand::hasTheExecutable(ctn_CINNAMON_EDITOR)){ QString p = ctn_CINNAMON_EDITOR + " " + fileName; process->startDetached(getSUCommand() + p); } else if (UnixCommand::hasTheExecutable(ctn_XFCE_EDITOR) || UnixCommand::hasTheExecutable(ctn_XFCE_EDITOR_ALT)){ QString p = getXFCEEditor() + " " + fileName; process->startDetached(getSUCommand() + p); } } //Octopi was started by root account. else{ if (UnixCommand::hasTheExecutable(ctn_XFCE_EDITOR) || UnixCommand::hasTheExecutable(ctn_XFCE_EDITOR_ALT)) s << getXFCEEditor() + " " + fileName; else if (UnixCommand::hasTheExecutable(ctn_KDE_EDITOR)) s << ctn_KDE_EDITOR + " " + fileName; else if (UnixCommand::hasTheExecutable(ctn_TDE_EDITOR)) s << ctn_TDE_EDITOR + " " + fileName; process->startDetached("/bin/sh", s); } }
/* * Opens a file based on your DE */ void WMHelper::openFile(const QString& fileName){ QString fileToOpen(fileName); if (!UnixCommand::isTextFile(fileToOpen)){ int res = QMessageBox::question(qApp->activeWindow(), StrConstants::getConfirmation(), StrConstants::getThisIsNotATextFile(), QMessageBox::Yes | QMessageBox::No, QMessageBox::No); if ( res == QMessageBox::No ) return; } QProcess *p = new QProcess(qApp->activeWindow()); QStringList s; LinuxDistro distro = UnixCommand::getLinuxDistro(); if (distro == ectn_ARCHBANGLINUX && UnixCommand::hasTheExecutable(ctn_ARCHBANG_FILE_MANAGER)) { s << fileToOpen; p->startDetached( ctn_ARCHBANG_FILE_MANAGER, s ); } else if (isXFCERunning() && UnixCommand::hasTheExecutable(ctn_XFCE_FILE_MANAGER)){ s << fileToOpen; p->startDetached( ctn_XFCE_FILE_MANAGER, s ); } else if (isKDERunning() && UnixCommand::hasTheExecutable(ctn_KDE_FILE_MANAGER)){ s << "exec"; s << "file:" + fileToOpen; p->startDetached( ctn_KDE_FILE_MANAGER, s ); } else if (isKDERunning() && UnixCommand::hasTheExecutable(ctn_KDE4_FILE_MANAGER)){ s << fileToOpen; p->startDetached( ctn_KDE4_OPEN, s ); } else if (isTDERunning() && UnixCommand::hasTheExecutable(ctn_TDE_FILE_MANAGER)){ s << "exec"; s << "file:" + fileToOpen; p->startDetached( ctn_TDE_FILE_MANAGER, s ); } else if (isMATERunning() && UnixCommand::hasTheExecutable(ctn_MATE_EDITOR)){ s << fileToOpen; p->startDetached( ctn_MATE_EDITOR, s ); } else if (isCinnamonRunning() && UnixCommand::hasTheExecutable(ctn_CINNAMON_EDITOR)){ s << fileToOpen; p->startDetached( ctn_CINNAMON_EDITOR, s ); } else if (UnixCommand::hasTheExecutable(ctn_XFCE_FILE_MANAGER)){ s << fileToOpen; p->startDetached( ctn_XFCE_FILE_MANAGER, s ); } else if (UnixCommand::hasTheExecutable(ctn_LXDE_FILE_MANAGER)){ s << fileToOpen; p->startDetached( ctn_LXDE_FILE_MANAGER, s ); } }
/* * Opens a terminal based on your DE. */ void WMHelper::openTerminal(const QString& dirName){ QProcess *p = new QProcess(qApp->activeWindow()); QStringList s; QFileInfo f(dirName); if (f.exists()){ if(isXFCERunning() && UnixCommand::hasTheExecutable(ctn_XFCE_TERMINAL)){ s << "--working-directory=" + dirName; p->startDetached( ctn_XFCE_TERMINAL, s ); } else if (isKDERunning() && UnixCommand::hasTheExecutable(ctn_KDE_TERMINAL)){ s << "--workdir"; s << dirName; if (UnixCommand::isRootRunning()) { p->startDetached( "dbus-launch " + ctn_KDE_TERMINAL + " --workdir " + dirName); } else { p->startDetached( ctn_KDE_TERMINAL, s ); } } else if (isTDERunning() && UnixCommand::hasTheExecutable(ctn_TDE_TERMINAL)){ s << "--workdir"; s << dirName; p->startDetached( ctn_TDE_TERMINAL, s ); } else if (isLXDERunning() && UnixCommand::hasTheExecutable(ctn_LXDE_TERMINAL)){ s << "--working-directory=" + dirName; p->startDetached( ctn_LXDE_TERMINAL, s ); } else if (isMATERunning() && UnixCommand::hasTheExecutable(ctn_MATE_TERMINAL)){ s << "--working-directory=" + dirName; p->startDetached( ctn_MATE_TERMINAL, s ); } else if (isCinnamonRunning() && UnixCommand::hasTheExecutable(ctn_CINNAMON_TERMINAL)){ s << "--working-directory=" + dirName; p->startDetached( ctn_CINNAMON_TERMINAL, s ); } else if (UnixCommand::hasTheExecutable(ctn_XFCE_TERMINAL)){ s << "--working-directory=" + dirName; p->startDetached( ctn_XFCE_TERMINAL, s ); } else if (UnixCommand::hasTheExecutable(ctn_LXDE_TERMINAL)){ s << "--working-directory=" + dirName; p->startDetached( ctn_LXDE_TERMINAL, s ); } else if (UnixCommand::hasTheExecutable(ctn_XTERM)){ QString cmd = ctn_XTERM + " -fn \"*-fixed-*-*-*-18-*\" -fg White -bg Black -title xterm -e \"" + "cd " + dirName + " && /bin/bash\""; p->startDetached( cmd ); } } }
/* * Opens a directory based on your DE. */ void WMHelper::openDirectory( const QString& dirName ){ QProcess *p = new QProcess(qApp->activeWindow()); QStringList s; QString dir(dirName); //Is it really a directory? QFileInfo f(dirName); if (!f.isDir()) { dir = f.absolutePath(); f = QFileInfo(dir); } if (f.exists()) { LinuxDistro distro = UnixCommand::getLinuxDistro(); if (distro == ectn_ARCHBANGLINUX && UnixCommand::hasTheExecutable(ctn_ARCHBANG_FILE_MANAGER)) { s << dir; p->startDetached( ctn_ARCHBANG_FILE_MANAGER, s ); } else if(isXFCERunning() && UnixCommand::hasTheExecutable(ctn_XFCE_FILE_MANAGER)) { s << dir; p->startDetached( ctn_XFCE_FILE_MANAGER, s ); } else if (distro == ectn_MOOOSLINUX || isKDERunning()) { if (UnixCommand::hasTheExecutable(ctn_KDE4_FILE_MANAGER)) { s << dir; if (UnixCommand::isRootRunning()) { p->startDetached( "dbus-launch " + ctn_KDE4_FILE_MANAGER + " " + dir); } else { p->startDetached( ctn_KDE4_FILE_MANAGER, s); } } else if (UnixCommand::hasTheExecutable(ctn_KDE_FILE_MANAGER)) { s << "newTab"; s << dir; p->startDetached( ctn_KDE_FILE_MANAGER, s ); } } else if (isTDERunning()) { if (UnixCommand::hasTheExecutable(ctn_TDE_FILE_MANAGER)) { s << "newTab"; s << dir; p->startDetached( ctn_TDE_FILE_MANAGER, s ); } } else if (isMATERunning() && UnixCommand::hasTheExecutable(ctn_MATE_FILE_MANAGER)) { s << dir; p->startDetached( ctn_MATE_FILE_MANAGER, s ); } else if (UnixCommand::getLinuxDistro() == ectn_ANTERGOS && UnixCommand::hasTheExecutable(ctn_ANTERGOS_FILE_MANAGER)) { s << dir; p->startDetached( ctn_ANTERGOS_FILE_MANAGER, s ); } else if (isCinnamonRunning() && UnixCommand::hasTheExecutable(ctn_CINNAMON_FILE_MANAGER)) { s << dir; p->startDetached( ctn_CINNAMON_FILE_MANAGER, s ); } else if (isLXQTRunning() && UnixCommand::hasTheExecutable(ctn_LXQT_FILE_MANAGER)) { s << dir; p->startDetached( ctn_LXQT_FILE_MANAGER, s ); } else if (UnixCommand::hasTheExecutable(ctn_XFCE_FILE_MANAGER)) { s << dir; p->startDetached( ctn_XFCE_FILE_MANAGER, s ); } else if (UnixCommand::hasTheExecutable(ctn_LXDE_FILE_MANAGER)) { s << dir; p->startDetached( ctn_LXDE_FILE_MANAGER, s ); } } }