new iso
This commit is contained in:
tromjaro/xfce
Packages-Desktop.profile.zshrcprofile.conf
desktop-overlay
etc
lightdm
skel
.config
Kvantum
gtk-3.0
xfce4
.local
bin
share
.mozilla
firefox
6q5q3muz.default
SiteSecurityServiceState.txtaddonStartup.json.lz4addons.jsonbroadcast-listeners.jsoncompatibility.iniextension-preferences.jsonextensions.jsonpermissions.sqliteplaces.sqliteprefs.jsprotections.sqlitesearch.json.mozlz4webappsstore.sqlitexulstore.json
datareporting
glean
extensions
jid1-MnnxcxisBPnSXQ@jetpack.xpikeepassxc-browser@keepassxc.org.xpisponsorBlocker@ajay.app.xpiuBlock0@raymondhill.net.xpi
favicons.sqlitefeatures
{10216de7-0b98-4bf5-a3e3-3ebe11c3a372}
{1543cc96-50e7-40a0-86af-7a2f5f1b3d89}
{e48fbd74-5da1-4bf5-88e3-cad068ef1192}
sessionstore-backups
storage-sync-v2.sqlite-shmstorage-sync-v2.sqlite-walstorage.sqlitestorage
default
https+++forum.tromjaro.com
moz-extension+++26d6ad01-a771-4b46-9e35-342122037141^userContextId=4294967295
moz-extension+++5fa9f4d9-b1b6-436a-976d-16c0d1f6a207^userContextId=4294967295
moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41
.metadata-v2
idb
moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41^userContextId=4294967295
moz-extension+++ac01c99c-ee6d-49f3-bbce-5ef76b0c7c04^userContextId=4294967295
moz-extension+++d439fe79-e9bd-449b-b9ec-cc2b271f80c0^userContextId=4294967295
moz-extension+++dbb00a92-98b5-481a-8acc-56821f5c1539^userContextId=4294967295
moz-extension+++f393b4c4-359a-4d1e-b377-fd4b41112e16^userContextId=4294967295
permanent
Crash Reports
usr
share
rofi
themes
live-overlay
etc
calamares
@ -0,0 +1,26 @@
|
||||
---
|
||||
componentName: manjaro
|
||||
|
||||
strings:
|
||||
productName: TROMjaro Linux
|
||||
shortProductName: TROMjaro
|
||||
version:
|
||||
shortVersion:
|
||||
versionedName: TROMjaro Linux
|
||||
shortVersionedName: TROMjaro
|
||||
bootloaderEntryName: TROMjaro
|
||||
|
||||
images:
|
||||
productLogo: "logo.png"
|
||||
productIcon: "logo.png"
|
||||
productWelcome: "languages.png"
|
||||
|
||||
slideshow: "show.qml"
|
||||
slideshowAPI: 1
|
||||
|
||||
style:
|
||||
sidebarBackground: "#23252e"
|
||||
sidebarText: "#efefef"
|
||||
sidebarTextSelect: "#2eb69b"
|
||||
sidebarTextHighlight: "#292c37"
|
||||
Background: "#23252e"
|
@ -0,0 +1,58 @@
|
||||
/* === This file is part of Calamares - <http://github.com/calamares> ===
|
||||
*
|
||||
* Copyright 2015, Teo Mrnjavac <teo@kde.org>
|
||||
*
|
||||
* Calamares is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* Calamares is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with Calamares. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
* Slides images dimensions are 800x440px.
|
||||
*/
|
||||
|
||||
import QtQuick 2.0;
|
||||
import calamares.slideshow 1.0;
|
||||
|
||||
Presentation
|
||||
{
|
||||
id: presentation
|
||||
|
||||
Timer {
|
||||
interval: 30000
|
||||
running: true
|
||||
repeat: true
|
||||
onTriggered: presentation.goToNextSlide()
|
||||
}
|
||||
|
||||
Slide {
|
||||
anchors.fill: parent
|
||||
|
||||
Image {
|
||||
id: background
|
||||
source: "slide1.png"
|
||||
width: 924; height: 496
|
||||
|
||||
|
||||
anchors.fill: parent
|
||||
}
|
||||
Text {
|
||||
anchors.horizontalCenter: background1.horizontalCenter
|
||||
anchors.top: background1.bottom
|
||||
text: ""
|
||||
wrapMode: Text.WordWrap
|
||||
width: 800
|
||||
horizontalAlignment: Text.Center
|
||||
}
|
||||
}
|
||||
|
||||
}
|
Binary file not shown.
After ![]() (image error) Size: 116 KiB |
@ -0,0 +1,440 @@
|
||||
/*
|
||||
A branding component can ship a stylesheet (like this one)
|
||||
which is applied to parts of the Calamares user-interface.
|
||||
In principle, all parts can be styled through CSS.
|
||||
Missing parts should be filed as issues.
|
||||
|
||||
The IDs are based on the object names in the C++ code.
|
||||
|
||||
Documentation for styling Qt Widgets through a stylesheet
|
||||
can be found at
|
||||
https://doc.qt.io/qt-5/stylesheet-examples.html
|
||||
In Calamares, styling widget classes is supported (e.g.
|
||||
using `QComboBox` as a selector). You can also use specific
|
||||
object names (ids), which you can find through debugging tools.
|
||||
*/
|
||||
|
||||
|
||||
#mainText{
|
||||
font : bold 18px;
|
||||
}
|
||||
|
||||
#logoApp {
|
||||
min-height: 80px;
|
||||
margin-bottom: 50px;
|
||||
}
|
||||
|
||||
|
||||
QVBoxLayout {
|
||||
background-color: #23252e;
|
||||
color: #e4e4e4;
|
||||
}
|
||||
|
||||
QProgressBar::chunk {
|
||||
background-color: #23252e;
|
||||
}
|
||||
|
||||
|
||||
|
||||
#textBoxVerifiedRootPassword
|
||||
{
|
||||
height:40px;
|
||||
margin:10px;
|
||||
border:1px solid;
|
||||
display:inline-box;
|
||||
text-transform: lowercase;
|
||||
color: #ccc;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
#textBoxRootPassword
|
||||
{
|
||||
height:40px;
|
||||
margin:10px;
|
||||
border:1px solid;
|
||||
display:inline-box;
|
||||
text-transform: lowercase;
|
||||
color: #ccc;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#checkBoxReusePassword
|
||||
{
|
||||
margin-top: 10px;
|
||||
margin-left: 5px;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
|
||||
#labelChooseRootPassword
|
||||
{
|
||||
margin-top: 10px;
|
||||
margin-left: 5px;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
#checkBoxDoAutoLogin
|
||||
{
|
||||
margin-top: 10px;
|
||||
margin-left: 5px;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
|
||||
#password_label_2
|
||||
{
|
||||
margin-top: 10px;
|
||||
margin-left: 5px;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
#textBoxUserVerifiedPassword
|
||||
{
|
||||
height:40px;
|
||||
margin:10px;
|
||||
border:1px solid;
|
||||
display:inline-box;
|
||||
text-transform: lowercase;
|
||||
color: #ccc;
|
||||
}
|
||||
|
||||
|
||||
#textBoxUserPassword
|
||||
{
|
||||
height:40px;
|
||||
margin:10px;
|
||||
border:1px solid;
|
||||
display:inline-box;
|
||||
text-transform: lowercase;
|
||||
color: #ccc;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#hostname_label_2
|
||||
{
|
||||
margin-top: 10px;
|
||||
margin-left: 5px;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
#textBoxHostName
|
||||
{
|
||||
height:40px;
|
||||
margin:10px;
|
||||
border:1px solid;
|
||||
display:inline-box;
|
||||
text-transform: lowercase;
|
||||
color: #ccc;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#username_label_2
|
||||
{
|
||||
margin-top: 10px;
|
||||
margin-left: 5px;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
#textBoxLoginName
|
||||
{
|
||||
height:40px;
|
||||
margin:10px;
|
||||
border:1px solid;
|
||||
display:inline-box;
|
||||
text-transform: lowercase;
|
||||
color: #ccc;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#labelWhatIsYourName
|
||||
{
|
||||
margin-top: 10px;
|
||||
margin-left: 5px;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
#textBoxFullName
|
||||
{
|
||||
height:40px;
|
||||
margin:10px;
|
||||
border:1px solid;
|
||||
display:inline-box;
|
||||
text-transform: lowercase;
|
||||
color: #ccc;
|
||||
}
|
||||
|
||||
|
||||
#sidebarMenuApp
|
||||
{
|
||||
text-transform: uppercase;
|
||||
font: bold;
|
||||
}
|
||||
|
||||
|
||||
|
||||
#aboutButton:hover
|
||||
|
||||
{
|
||||
width:0px;
|
||||
font: 0px;
|
||||
color: #292c37;
|
||||
background-color: #292c37;
|
||||
border: 0px;
|
||||
}
|
||||
|
||||
|
||||
#aboutButton
|
||||
|
||||
{
|
||||
border: 0px;
|
||||
width:0px;
|
||||
font: 0px;
|
||||
color: #292c37;
|
||||
}
|
||||
|
||||
QComboBox::drop-down
|
||||
{
|
||||
width: 30px;
|
||||
font-weight: bold;color: #5E749C;
|
||||
font: bold 15px #ffffff;
|
||||
selection-background-color: #fff;
|
||||
|
||||
}
|
||||
|
||||
QComboBox QAbstractItemView
|
||||
{
|
||||
border: 1px solid;
|
||||
selection-background-color: #2eb398;
|
||||
}
|
||||
|
||||
QComboBox
|
||||
{
|
||||
color: #fff;
|
||||
border: 1px solid rgb(54, 57, 62,0);
|
||||
padding: 10px;
|
||||
selection-background-color: #fff;
|
||||
}
|
||||
|
||||
QAbstractItemView::item:hover {
|
||||
background-color: rgb(46, 179, 152);
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
|
||||
|
||||
QAbstractItemView::item {
|
||||
padding: 10px;
|
||||
color: #2eb398;
|
||||
border-bottom: 1px solid #1e1e1e;
|
||||
}
|
||||
|
||||
#view-button-back {
|
||||
background-color: rgb(54, 57, 62);
|
||||
color: #bcbcbc;
|
||||
text-transform: uppercase;
|
||||
border: 1px;
|
||||
padding:10px;
|
||||
margin: 5px;
|
||||
font : bold 15px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
#view-button-back:hover {
|
||||
background-color: #272727;
|
||||
color: #bcbcbc;
|
||||
}
|
||||
|
||||
#view-button-next:hover {
|
||||
background-color: rgb(46, 179, 152,0.3);
|
||||
color: #bcbcbc;
|
||||
}
|
||||
|
||||
#view-button-cancel:hover {
|
||||
background-color: rgb(169, 65, 80,0.3);
|
||||
color: #bcbcbc;
|
||||
}
|
||||
|
||||
#view-button-next {
|
||||
background-color: rgb(46, 179, 152);
|
||||
color: #fff;
|
||||
text-transform: uppercase;
|
||||
border: 1px;
|
||||
padding:10px;
|
||||
margin: 5px;
|
||||
font : bold 15px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
|
||||
#view-button-cancel {
|
||||
background-color: rgb(169, 65, 80);
|
||||
color: #fff;
|
||||
text-transform: uppercase;
|
||||
border: 1px;
|
||||
padding:10px;
|
||||
margin-right: 5px;
|
||||
font : bold 15px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
#restartCheckBox
|
||||
{
|
||||
font: bold;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
#mainApp {
|
||||
background-color: #292c37;
|
||||
}
|
||||
|
||||
#mainText{
|
||||
font : bold 11px;
|
||||
}
|
||||
|
||||
#logoApp {
|
||||
min-height: 80px;
|
||||
margin-bottom: 50px;
|
||||
}
|
||||
|
||||
|
||||
#physicalModelSelector {
|
||||
color: #ffffff;
|
||||
background-color: #2eb398;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
#label {
|
||||
color: #ffffff;
|
||||
text-transform: uppercase;
|
||||
font: bold;
|
||||
margin-left: 20px;
|
||||
}
|
||||
|
||||
#viewManagerStack {
|
||||
margin: 20px;
|
||||
}
|
||||
|
||||
#summaryStep {
|
||||
background-color: #292c37;
|
||||
}
|
||||
|
||||
|
||||
#m_drivesLabel {
|
||||
color: #ffffff;
|
||||
background-color: #2eb398;
|
||||
font: 15px;
|
||||
width:300px;
|
||||
padding-left: 10px;
|
||||
padding-right: 10px;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
|
||||
#hLine
|
||||
{
|
||||
background-color: #2eb398;
|
||||
|
||||
}
|
||||
|
||||
#m_encryptCheckBox {
|
||||
color: #ffffff;
|
||||
background-color: rgb(169, 65, 80);
|
||||
text-transform: uppercase;
|
||||
padding: 20px;
|
||||
font: bold 13px;
|
||||
margin-top: 5px;
|
||||
border: 2px #fff;
|
||||
}
|
||||
|
||||
#m_itemsScrollArea {
|
||||
color: #ffffff;
|
||||
background-color: #292c37;
|
||||
padding: 20px;
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
#m_iconLabel {
|
||||
color: #ffffff;
|
||||
width: 20px;
|
||||
height:10px;
|
||||
|
||||
}
|
||||
|
||||
#partitionLabel {
|
||||
color: #fff;
|
||||
background-color: #292c37;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
#m_previewAfterLabel {
|
||||
color: #fff;
|
||||
padding:10px;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
#m_previewBeforeLabel {
|
||||
color: #fff;
|
||||
padding:10px;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
|
||||
#partitionBarView {
|
||||
color: #ffffff;
|
||||
background-color: #23252e;
|
||||
}
|
||||
|
||||
#partitionLabel {
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
#bootInfoLabel {
|
||||
color: #ffffff;
|
||||
background-color: rgb(169, 65, 80);
|
||||
}
|
||||
|
||||
#deviceInfoLabel {
|
||||
color: #ffffff;
|
||||
background-color: rgb(169, 65, 80);
|
||||
}
|
||||
|
||||
QPushButton:hover {
|
||||
color: #ffffff;
|
||||
background-color: #272727;
|
||||
padding:10px;
|
||||
text-transform: uppercase;
|
||||
border: 1px solid;
|
||||
}
|
||||
|
||||
QPushButton {
|
||||
margin:5px;
|
||||
color: #ffffff;
|
||||
background-color: #23252e;
|
||||
padding:10px;
|
||||
text-transform: uppercase;
|
||||
border: 1px solid;
|
||||
}
|
||||
|
||||
#backgroundWidget
|
||||
{background-color: #292c37;
|
||||
}
|
||||
|
||||
|
||||
#debugButton {
|
||||
color: #ffffff;
|
||||
background-color: rgb(169, 65, 80);
|
||||
}
|
||||
|
@ -0,0 +1,14 @@
|
||||
---
|
||||
efiSystemPartition: "/boot/efi"
|
||||
userSwapChoices:
|
||||
- none # Create no swap, use no swap
|
||||
- small # Up to 4GB
|
||||
- suspend # At least main memory size
|
||||
- file # To swap file instead of partition
|
||||
alwaysShowPartitionLabels: true
|
||||
# There are four options: erase, replace, alongside, manual),
|
||||
# the default is "none".
|
||||
initialPartitioningChoice: erase
|
||||
initialSwapChoice: none
|
||||
defaultFileSystemType: "btrfs"
|
||||
availableFileSystemTypes: ["btrfs","ext4"]
|
Reference in New Issue
Block a user