mirror of
				https://github.com/Swordfish90/cool-retro-term.git
				synced 2025-10-30 22:54:21 +00:00 
			
		
		
		
	Rebranding the application cool-retro-term!
This commit is contained in:
		
							
								
								
									
										20
									
								
								README.md
									
									
									
									
									
								
							
							
						
						
									
										20
									
								
								README.md
									
									
									
									
									
								
							| @@ -1,7 +1,7 @@ | |||||||
| #cool-old-term | #cool-retro-term | ||||||
|  |  | ||||||
| ##Description | ##Description | ||||||
| cool-old-term is a terminal emulator which mimics the look and feel of the old cathode tube screens. | cool-retro-term is a terminal emulator which mimics the look and feel of the old cathode tube screens. | ||||||
| It has been designed to be eye-candy, customizable, and reasonably lightweight. | It has been designed to be eye-candy, customizable, and reasonably lightweight. | ||||||
|  |  | ||||||
| It uses the Konsole engine which is powerful and mature. | It uses the Konsole engine which is powerful and mature. | ||||||
| @@ -13,14 +13,14 @@ This terminal emulator requires Qt 5.2 or higher to run. | |||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
| ## Get cool-old-term | ## Get cool-retro-term | ||||||
| You can either build cool-old-term yourself (see below) or walk the easy way and install one of these packages: | You can either build cool-retro-term yourself (see below) or walk the easy way and install one of these packages: | ||||||
|  |  | ||||||
| Users of Fedora and openSUSE can grab a package from [Open Build Service](http://software.opensuse.org/package/cool-old-term). | Users of Fedora and openSUSE can grab a package from [Open Build Service](http://software.opensuse.org/package/cool-retro-term). | ||||||
|  |  | ||||||
| Arch users can install this [package](https://aur.archlinux.org/packages/cool-old-term-git/) directly via the [AUR](https://aur.archlinux.org): | Arch users can install this [package](https://aur.archlinux.org/packages/cool-retro-term-git/) directly via the [AUR](https://aur.archlinux.org): | ||||||
|  |  | ||||||
|     yaourt -S aur/cool-old-term-git |     yaourt -S aur/cool-retro-term-git | ||||||
|  |  | ||||||
| ##Build instructions | ##Build instructions | ||||||
|  |  | ||||||
| @@ -81,14 +81,14 @@ Once you installed all dependencies (Qt is installed and in your path) you need | |||||||
|  |  | ||||||
| ```bash | ```bash | ||||||
| # Get it from GitHub | # Get it from GitHub | ||||||
| git clone https://github.com/Swordifish90/cool-old-term.git | git clone https://github.com/Swordfish90/cool-retro-term.git | ||||||
|  |  | ||||||
| # Build it | # Build it | ||||||
| cd cool-old-term | cd cool-retro-term | ||||||
|  |  | ||||||
| # Compile (Fedora and OpenSUSE user should use qmake-qt5 instead of qmake) | # Compile (Fedora and OpenSUSE user should use qmake-qt5 instead of qmake) | ||||||
| qmake && make | qmake && make | ||||||
|  |  | ||||||
| # Have fun! | # Have fun! | ||||||
| ./cool-old-term | ./cool-retro-term | ||||||
| ``` | ``` | ||||||
|   | |||||||
| @@ -1,5 +1,5 @@ | |||||||
| QT += qml quick widgets | QT += qml quick widgets | ||||||
| TARGET = cool-old-term  | TARGET = cool-retro-term  | ||||||
|  |  | ||||||
| DESTDIR = $$OUT_PWD/../ | DESTDIR = $$OUT_PWD/../ | ||||||
| SOURCES = main.cpp | SOURCES = main.cpp | ||||||
|   | |||||||
| @@ -15,7 +15,7 @@ Window{ | |||||||
|         spacing: 15 |         spacing: 15 | ||||||
|         Text { |         Text { | ||||||
|             anchors.horizontalCenter: parent.horizontalCenter |             anchors.horizontalCenter: parent.horizontalCenter | ||||||
|             text: "cool-old-term" |             text: "cool-retro-term" | ||||||
|             font {bold: true; pointSize: 18} |             font {bold: true; pointSize: 18} | ||||||
|         } |         } | ||||||
|         Loader{ |         Loader{ | ||||||
| @@ -74,7 +74,7 @@ Window{ | |||||||
|                 text: shadersettings.version + "\n" + |                 text: shadersettings.version + "\n" + | ||||||
|                       qsTr("Author: ") + "Filippo Scognamiglio\n" + |                       qsTr("Author: ") + "Filippo Scognamiglio\n" + | ||||||
|                       qsTr("Email: ") + "flscogna@gmail.com\n" + |                       qsTr("Email: ") + "flscogna@gmail.com\n" + | ||||||
|                       qsTr("Source: ") + "https://github.com/Swordifish90/cool-old-term\n" |                       qsTr("Source: ") + "https://github.com/Swordfish90/cool-retro-term\n" | ||||||
|             } |             } | ||||||
|         } |         } | ||||||
|     } |     } | ||||||
| @@ -84,9 +84,9 @@ Window{ | |||||||
|             anchors.fill: parent |             anchors.fill: parent | ||||||
|             readOnly: true |             readOnly: true | ||||||
|             text: "Copyright (c) 2013 Filippo Scognamiglio <flscogna@gmail.com>\n\n" + |             text: "Copyright (c) 2013 Filippo Scognamiglio <flscogna@gmail.com>\n\n" + | ||||||
|                   "https://github.com/Swordifish90/cool-old-term\n\n" + |                   "https://github.com/Swordfish90/cool-retro-term\n\n" + | ||||||
|  |  | ||||||
|                   "cool-old-term is free software: you can redistribute it and/or modify " + |                   "cool-retro-term is free software: you can redistribute it and/or modify " + | ||||||
|                   "it under the terms of the GNU General Public License as published by " + |                   "it under the terms of the GNU General Public License as published by " + | ||||||
|                   "the Free Software Foundation, either version 3 of the License, or " + |                   "the Free Software Foundation, either version 3 of the License, or " + | ||||||
|                   "(at your option) any later version.\n\n" + |                   "(at your option) any later version.\n\n" + | ||||||
|   | |||||||
| @@ -1,10 +1,10 @@ | |||||||
| /******************************************************************************* | /******************************************************************************* | ||||||
| * Copyright (c) 2013 "Filippo Scognamiglio" | * Copyright (c) 2013 "Filippo Scognamiglio" | ||||||
| * https://github.com/Swordifish90/cool-old-term | * https://github.com/Swordfish90/cool-retro-term | ||||||
| * | * | ||||||
| * This file is part of cool-old-term. | * This file is part of cool-retro-term. | ||||||
| * | * | ||||||
| * cool-old-term is free software: you can redistribute it and/or modify | * cool-retro-term is free software: you can redistribute it and/or modify | ||||||
| * it under the terms of the GNU General Public License as published by | * it under the terms of the GNU General Public License as published by | ||||||
| * the Free Software Foundation, either version 3 of the License, or | * the Free Software Foundation, either version 3 of the License, or | ||||||
| * (at your option) any later version. | * (at your option) any later version. | ||||||
|   | |||||||
| @@ -1,10 +1,10 @@ | |||||||
| /******************************************************************************* | /******************************************************************************* | ||||||
| * Copyright (c) 2013 "Filippo Scognamiglio" | * Copyright (c) 2013 "Filippo Scognamiglio" | ||||||
| * https://github.com/Swordifish90/cool-old-term | * https://github.com/Swordfish90/cool-retro-term | ||||||
| * | * | ||||||
| * This file is part of cool-old-term. | * This file is part of cool-retro-term. | ||||||
| * | * | ||||||
| * cool-old-term is free software: you can redistribute it and/or modify | * cool-retro-term is free software: you can redistribute it and/or modify | ||||||
| * it under the terms of the GNU General Public License as published by | * it under the terms of the GNU General Public License as published by | ||||||
| * the Free Software Foundation, either version 3 of the License, or | * the Free Software Foundation, either version 3 of the License, or | ||||||
| * (at your option) any later version. | * (at your option) any later version. | ||||||
|   | |||||||
| @@ -1,10 +1,10 @@ | |||||||
| /******************************************************************************* | /******************************************************************************* | ||||||
| * Copyright (c) 2013 "Filippo Scognamiglio" | * Copyright (c) 2013 "Filippo Scognamiglio" | ||||||
| * https://github.com/Swordifish90/cool-old-term | * https://github.com/Swordfish90/cool-retro-term | ||||||
| * | * | ||||||
| * This file is part of cool-old-term. | * This file is part of cool-retro-term. | ||||||
| * | * | ||||||
| * cool-old-term is free software: you can redistribute it and/or modify | * cool-retro-term is free software: you can redistribute it and/or modify | ||||||
| * it under the terms of the GNU General Public License as published by | * it under the terms of the GNU General Public License as published by | ||||||
| * the Free Software Foundation, either version 3 of the License, or | * the Free Software Foundation, either version 3 of the License, or | ||||||
| * (at your option) any later version. | * (at your option) any later version. | ||||||
|   | |||||||
| @@ -1,10 +1,10 @@ | |||||||
| /******************************************************************************* | /******************************************************************************* | ||||||
| * Copyright (c) 2013 "Filippo Scognamiglio" | * Copyright (c) 2013 "Filippo Scognamiglio" | ||||||
| * https://github.com/Swordifish90/cool-old-term | * https://github.com/Swordfish90/cool-retro-term | ||||||
| * | * | ||||||
| * This file is part of cool-old-term. | * This file is part of cool-retro-term. | ||||||
| * | * | ||||||
| * cool-old-term is free software: you can redistribute it and/or modify | * cool-retro-term is free software: you can redistribute it and/or modify | ||||||
| * it under the terms of the GNU General Public License as published by | * it under the terms of the GNU General Public License as published by | ||||||
| * the Free Software Foundation, either version 3 of the License, or | * the Free Software Foundation, either version 3 of the License, or | ||||||
| * (at your option) any later version. | * (at your option) any later version. | ||||||
|   | |||||||
| @@ -1,10 +1,10 @@ | |||||||
| /******************************************************************************* | /******************************************************************************* | ||||||
| * Copyright (c) 2013 "Filippo Scognamiglio" | * Copyright (c) 2013 "Filippo Scognamiglio" | ||||||
| * https://github.com/Swordifish90/cool-old-term | * https://github.com/Swordfish90/cool-retro-term | ||||||
| * | * | ||||||
| * This file is part of cool-old-term. | * This file is part of cool-retro-term. | ||||||
| * | * | ||||||
| * cool-old-term is free software: you can redistribute it and/or modify | * cool-retro-term is free software: you can redistribute it and/or modify | ||||||
| * it under the terms of the GNU General Public License as published by | * it under the terms of the GNU General Public License as published by | ||||||
| * the Free Software Foundation, either version 3 of the License, or | * the Free Software Foundation, either version 3 of the License, or | ||||||
| * (at your option) any later version. | * (at your option) any later version. | ||||||
|   | |||||||
| @@ -1,10 +1,10 @@ | |||||||
| /******************************************************************************* | /******************************************************************************* | ||||||
| * Copyright (c) 2013 "Filippo Scognamiglio" | * Copyright (c) 2013 "Filippo Scognamiglio" | ||||||
| * https://github.com/Swordifish90/cool-old-term | * https://github.com/Swordfish90/cool-retro-term | ||||||
| * | * | ||||||
| * This file is part of cool-old-term. | * This file is part of cool-retro-term. | ||||||
| * | * | ||||||
| * cool-old-term is free software: you can redistribute it and/or modify | * cool-retro-term is free software: you can redistribute it and/or modify | ||||||
| * it under the terms of the GNU General Public License as published by | * it under the terms of the GNU General Public License as published by | ||||||
| * the Free Software Foundation, either version 3 of the License, or | * the Free Software Foundation, either version 3 of the License, or | ||||||
| * (at your option) any later version. | * (at your option) any later version. | ||||||
|   | |||||||
| @@ -1,10 +1,10 @@ | |||||||
| /******************************************************************************* | /******************************************************************************* | ||||||
| * Copyright (c) 2013 "Filippo Scognamiglio" | * Copyright (c) 2013 "Filippo Scognamiglio" | ||||||
| * https://github.com/Swordifish90/cool-old-term | * https://github.com/Swordfish90/cool-retro-term | ||||||
| * | * | ||||||
| * This file is part of cool-old-term. | * This file is part of cool-retro-term. | ||||||
| * | * | ||||||
| * cool-old-term is free software: you can redistribute it and/or modify | * cool-retro-term is free software: you can redistribute it and/or modify | ||||||
| * it under the terms of the GNU General Public License as published by | * it under the terms of the GNU General Public License as published by | ||||||
| * the Free Software Foundation, either version 3 of the License, or | * the Free Software Foundation, either version 3 of the License, or | ||||||
| * (at your option) any later version. | * (at your option) any later version. | ||||||
|   | |||||||
| @@ -1,10 +1,10 @@ | |||||||
| /******************************************************************************* | /******************************************************************************* | ||||||
| * Copyright (c) 2013 "Filippo Scognamiglio" | * Copyright (c) 2013 "Filippo Scognamiglio" | ||||||
| * https://github.com/Swordifish90/cool-old-term | * https://github.com/Swordfish90/cool-retro-term | ||||||
| * | * | ||||||
| * This file is part of cool-old-term. | * This file is part of cool-retro-term. | ||||||
| * | * | ||||||
| * cool-old-term is free software: you can redistribute it and/or modify | * cool-retro-term is free software: you can redistribute it and/or modify | ||||||
| * it under the terms of the GNU General Public License as published by | * it under the terms of the GNU General Public License as published by | ||||||
| * the Free Software Foundation, either version 3 of the License, or | * the Free Software Foundation, either version 3 of the License, or | ||||||
| * (at your option) any later version. | * (at your option) any later version. | ||||||
| @@ -75,7 +75,7 @@ Item{ | |||||||
|         id: kterminal |         id: kterminal | ||||||
|         anchors.fill: parent |         anchors.fill: parent | ||||||
|  |  | ||||||
|         colorScheme: "cool-old-term" |         colorScheme: "cool-retro-term" | ||||||
|  |  | ||||||
|         session: KSession { |         session: KSession { | ||||||
|             id: ksession |             id: ksession | ||||||
|   | |||||||
| @@ -1,10 +1,10 @@ | |||||||
| /******************************************************************************* | /******************************************************************************* | ||||||
| * Copyright (c) 2013 "Filippo Scognamiglio" | * Copyright (c) 2013 "Filippo Scognamiglio" | ||||||
| * https://github.com/Swordifish90/cool-old-term | * https://github.com/Swordfish90/cool-retro-term | ||||||
| * | * | ||||||
| * This file is part of cool-old-term. | * This file is part of cool-retro-term. | ||||||
| * | * | ||||||
| * cool-old-term is free software: you can redistribute it and/or modify | * cool-retro-term is free software: you can redistribute it and/or modify | ||||||
| * it under the terms of the GNU General Public License as published by | * it under the terms of the GNU General Public License as published by | ||||||
| * the Free Software Foundation, either version 3 of the License, or | * the Free Software Foundation, either version 3 of the License, or | ||||||
| * (at your option) any later version. | * (at your option) any later version. | ||||||
|   | |||||||
| @@ -1,10 +1,10 @@ | |||||||
| /******************************************************************************* | /******************************************************************************* | ||||||
| * Copyright (c) 2013 "Filippo Scognamiglio" | * Copyright (c) 2013 "Filippo Scognamiglio" | ||||||
| * https://github.com/Swordifish90/cool-old-term | * https://github.com/Swordfish90/cool-retro-term | ||||||
| * | * | ||||||
| * This file is part of cool-old-term. | * This file is part of cool-retro-term. | ||||||
| * | * | ||||||
| * cool-old-term is free software: you can redistribute it and/or modify | * cool-retro-term is free software: you can redistribute it and/or modify | ||||||
| * it under the terms of the GNU General Public License as published by | * it under the terms of the GNU General Public License as published by | ||||||
| * the Free Software Foundation, either version 3 of the License, or | * the Free Software Foundation, either version 3 of the License, or | ||||||
| * (at your option) any later version. | * (at your option) any later version. | ||||||
|   | |||||||
| @@ -1,10 +1,10 @@ | |||||||
| /******************************************************************************* | /******************************************************************************* | ||||||
| * Copyright (c) 2013 "Filippo Scognamiglio" | * Copyright (c) 2013 "Filippo Scognamiglio" | ||||||
| * https://github.com/Swordifish90/cool-old-term | * https://github.com/Swordfish90/cool-retro-term | ||||||
| * | * | ||||||
| * This file is part of cool-old-term. | * This file is part of cool-retro-term. | ||||||
| * | * | ||||||
| * cool-old-term is free software: you can redistribute it and/or modify | * cool-retro-term is free software: you can redistribute it and/or modify | ||||||
| * it under the terms of the GNU General Public License as published by | * it under the terms of the GNU General Public License as published by | ||||||
| * the Free Software Foundation, either version 3 of the License, or | * the Free Software Foundation, either version 3 of the License, or | ||||||
| * (at your option) any later version. | * (at your option) any later version. | ||||||
|   | |||||||
| @@ -1,10 +1,10 @@ | |||||||
| /******************************************************************************* | /******************************************************************************* | ||||||
| * Copyright (c) 2013 "Filippo Scognamiglio" | * Copyright (c) 2013 "Filippo Scognamiglio" | ||||||
| * https://github.com/Swordifish90/cool-old-term | * https://github.com/Swordfish90/cool-retro-term | ||||||
| * | * | ||||||
| * This file is part of cool-old-term. | * This file is part of cool-retro-term. | ||||||
| * | * | ||||||
| * cool-old-term is free software: you can redistribute it and/or modify | * cool-retro-term is free software: you can redistribute it and/or modify | ||||||
| * it under the terms of the GNU General Public License as published by | * it under the terms of the GNU General Public License as published by | ||||||
| * the Free Software Foundation, either version 3 of the License, or | * the Free Software Foundation, either version 3 of the License, or | ||||||
| * (at your option) any later version. | * (at your option) any later version. | ||||||
|   | |||||||
| @@ -1,10 +1,10 @@ | |||||||
| /******************************************************************************* | /******************************************************************************* | ||||||
| * Copyright (c) 2013 "Filippo Scognamiglio" | * Copyright (c) 2013 "Filippo Scognamiglio" | ||||||
| * https://github.com/Swordifish90/cool-old-term | * https://github.com/Swordfish90/cool-retro-term | ||||||
| * | * | ||||||
| * This file is part of cool-old-term. | * This file is part of cool-retro-term. | ||||||
| * | * | ||||||
| * cool-old-term is free software: you can redistribute it and/or modify | * cool-retro-term is free software: you can redistribute it and/or modify | ||||||
| * it under the terms of the GNU General Public License as published by | * it under the terms of the GNU General Public License as published by | ||||||
| * the Free Software Foundation, either version 3 of the License, or | * the Free Software Foundation, either version 3 of the License, or | ||||||
| * (at your option) any later version. | * (at your option) any later version. | ||||||
|   | |||||||
| @@ -1,10 +1,10 @@ | |||||||
| /******************************************************************************* | /******************************************************************************* | ||||||
| * Copyright (c) 2013 "Filippo Scognamiglio" | * Copyright (c) 2013 "Filippo Scognamiglio" | ||||||
| * https://github.com/Swordifish90/cool-old-term | * https://github.com/Swordfish90/cool-retro-term | ||||||
| * | * | ||||||
| * This file is part of cool-old-term. | * This file is part of cool-retro-term. | ||||||
| * | * | ||||||
| * cool-old-term is free software: you can redistribute it and/or modify | * cool-retro-term is free software: you can redistribute it and/or modify | ||||||
| * it under the terms of the GNU General Public License as published by | * it under the terms of the GNU General Public License as published by | ||||||
| * the Free Software Foundation, either version 3 of the License, or | * the Free Software Foundation, either version 3 of the License, or | ||||||
| * (at your option) any later version. | * (at your option) any later version. | ||||||
|   | |||||||
| @@ -1,10 +1,10 @@ | |||||||
| /******************************************************************************* | /******************************************************************************* | ||||||
| * Copyright (c) 2013 "Filippo Scognamiglio" | * Copyright (c) 2013 "Filippo Scognamiglio" | ||||||
| * https://github.com/Swordifish90/cool-old-term | * https://github.com/Swordfish90/cool-retro-term | ||||||
| * | * | ||||||
| * This file is part of cool-old-term. | * This file is part of cool-retro-term. | ||||||
| * | * | ||||||
| * cool-old-term is free software: you can redistribute it and/or modify | * cool-retro-term is free software: you can redistribute it and/or modify | ||||||
| * it under the terms of the GNU General Public License as published by | * it under the terms of the GNU General Public License as published by | ||||||
| * the Free Software Foundation, either version 3 of the License, or | * the Free Software Foundation, either version 3 of the License, or | ||||||
| * (at your option) any later version. | * (at your option) any later version. | ||||||
|   | |||||||
| @@ -1,10 +1,10 @@ | |||||||
| /******************************************************************************* | /******************************************************************************* | ||||||
| * Copyright (c) 2013 "Filippo Scognamiglio" | * Copyright (c) 2013 "Filippo Scognamiglio" | ||||||
| * https://github.com/Swordifish90/cool-old-term | * https://github.com/Swordfish90/cool-retro-term | ||||||
| * | * | ||||||
| * This file is part of cool-old-term. | * This file is part of cool-retro-term. | ||||||
| * | * | ||||||
| * cool-old-term is free software: you can redistribute it and/or modify | * cool-retro-term is free software: you can redistribute it and/or modify | ||||||
| * it under the terms of the GNU General Public License as published by | * it under the terms of the GNU General Public License as published by | ||||||
| * the Free Software Foundation, either version 3 of the License, or | * the Free Software Foundation, either version 3 of the License, or | ||||||
| * (at your option) any later version. | * (at your option) any later version. | ||||||
|   | |||||||
| @@ -1,10 +1,10 @@ | |||||||
| /******************************************************************************* | /******************************************************************************* | ||||||
| * Copyright (c) 2013 "Filippo Scognamiglio" | * Copyright (c) 2013 "Filippo Scognamiglio" | ||||||
| * https://github.com/Swordifish90/cool-old-term | * https://github.com/Swordfish90/cool-retro-term | ||||||
| * | * | ||||||
| * This file is part of cool-old-term. | * This file is part of cool-retro-term. | ||||||
| * | * | ||||||
| * cool-old-term is free software: you can redistribute it and/or modify | * cool-retro-term is free software: you can redistribute it and/or modify | ||||||
| * it under the terms of the GNU General Public License as published by | * it under the terms of the GNU General Public License as published by | ||||||
| * the Free Software Foundation, either version 3 of the License, or | * the Free Software Foundation, either version 3 of the License, or | ||||||
| * (at your option) any later version. | * (at your option) any later version. | ||||||
|   | |||||||
| @@ -1,10 +1,10 @@ | |||||||
| /******************************************************************************* | /******************************************************************************* | ||||||
| * Copyright (c) 2013 "Filippo Scognamiglio" | * Copyright (c) 2013 "Filippo Scognamiglio" | ||||||
| * https://github.com/Swordifish90/cool-old-term | * https://github.com/Swordfish90/cool-retro-term | ||||||
| * | * | ||||||
| * This file is part of cool-old-term. | * This file is part of cool-retro-term. | ||||||
| * | * | ||||||
| * cool-old-term is free software: you can redistribute it and/or modify | * cool-retro-term is free software: you can redistribute it and/or modify | ||||||
| * it under the terms of the GNU General Public License as published by | * it under the terms of the GNU General Public License as published by | ||||||
| * the Free Software Foundation, either version 3 of the License, or | * the Free Software Foundation, either version 3 of the License, or | ||||||
| * (at your option) any later version. | * (at your option) any later version. | ||||||
| @@ -38,7 +38,7 @@ ApplicationWindow{ | |||||||
|  |  | ||||||
|     flags: Qt.WA_TranslucentBackground |     flags: Qt.WA_TranslucentBackground | ||||||
|     color: "#00000000" |     color: "#00000000" | ||||||
|     title: qsTr("cool-old-term") |     title: qsTr("cool-retro-term") | ||||||
|  |  | ||||||
|     Action { |     Action { | ||||||
|         id: showMenubarAction |         id: showMenubarAction | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user