forked from artix/iso-profiles
Compare commits
5 Commits
Author | SHA1 | Date | |
---|---|---|---|
15124ee5d9 | |||
5422a8a70e | |||
34c30203ef | |||
843e3d7441 | |||
ed35ada27d
|
89
Makefile
Normal file
89
Makefile
Normal file
@@ -0,0 +1,89 @@
|
||||
VERSION=0.8
|
||||
|
||||
PKG = iso-profiles
|
||||
TOOLS = artools
|
||||
ifdef PREFIX
|
||||
PREFIX = /usr/local
|
||||
endif
|
||||
SYSCONFDIR = /etc
|
||||
PROFDIR = $(PREFIX)/share/$(TOOLS)/$(PKG)
|
||||
|
||||
BASEDIR = $(PROFDIR)/base
|
||||
OVERLAYDIR = $(BASEDIR)/live-overlay$(SYSCONFDIR)
|
||||
LXQTDIR = $(PROFDIR)/lxqt
|
||||
LXDEDOR = $(PROFDIR)/lxde
|
||||
|
||||
DMODE = -dm0755
|
||||
FMODE = -m0644
|
||||
RM = rm -f
|
||||
RMD = rm -fr --one-file-system
|
||||
|
||||
BASE = \
|
||||
$(wildcard base/Packages-*) \
|
||||
base/profile.conf
|
||||
|
||||
LIVE = \
|
||||
base/live-overlay/etc/fstab \
|
||||
base/live-overlay/etc/issue
|
||||
|
||||
LIVE_DEFAULT = \
|
||||
$(wildcard base/live-overlay/etc/default/*)
|
||||
|
||||
LIVE_PAM = \
|
||||
$(wildcard base/live-overlay/etc/pam.d/*)
|
||||
|
||||
LIVE_SUDOERS = \
|
||||
$(wildcard base/live-overlay/etc/sudoers.d/*)
|
||||
|
||||
LXQT = \
|
||||
$(wildcard lxqt/Packages-*) \
|
||||
lxqt/profile.conf
|
||||
|
||||
LXQT_DM = \
|
||||
lxqt/desktop-overlay/etc/sddm.conf
|
||||
|
||||
install-base:
|
||||
install $(DMODE) $(DESTDIR)$(BASEDIR)
|
||||
install $(FMODE) $(BASE) $(DESTDIR)$(BASEDIR)
|
||||
|
||||
install $(DMODE) $(DESTDIR)$(OVERLAYDIR)
|
||||
install $(FMODE) $(LIVE) $(DESTDIR)$(OVERLAYDIR)
|
||||
|
||||
install $(DMODE) $(DESTDIR)$(OVERLAYDIR)/default
|
||||
install $(FMODE) $(LIVE_DEFAULT) $(DESTDIR)$(OVERLAYDIR)/default
|
||||
|
||||
install $(DMODE) $(DESTDIR)$(OVERLAYDIR)/pam.d
|
||||
install $(FMODE) $(LIVE_PAM) $(DESTDIR)$(OVERLAYDIR)/pam.d
|
||||
|
||||
install $(DMODE) $(DESTDIR)$(OVERLAYDIR)/sudoers.d
|
||||
install $(FMODE) $(LIVE_SUDOERS) $(DESTDIR)$(OVERLAYDIR)/sudoers.d
|
||||
|
||||
install-lxqt:
|
||||
install $(DMODE) $(DESTDIR)$(LXQTDIR)
|
||||
install $(FMODE) $(LXQT) $(DESTDIR)$(LXQTDIR)
|
||||
install $(DMODE) $(DESTDIR)$(LXQTDIR)$(SYSCONFDIR)
|
||||
install $(FMODE) $(LXQT_DM) $(DESTDIR)$(LXQTDIR)$(SYSCONFDIR)
|
||||
|
||||
uninstall-base:
|
||||
for f in $(notdir $(BASE)); do $(RM) $(DESTDIR)$(BASEDIR)/$$f; done
|
||||
for f in $(notdir $(LIVE)); do $(RM) $(DESTDIR)$(OVERLAYDIR)/$$f; done
|
||||
for f in $(notdir $(LIVE_DEFAULT)); do $(RM) $(DESTDIR)$(OVERLAYDIR)/default/$$f; done
|
||||
for f in $(notdir $(LIVE_PAM)); do $(RM) $(DESTDIR)$(OVERLAYDIR)/pam.d/$$f; done
|
||||
for f in $(notdir $(LIVE_SUDOERS)); do $(RM) $(DESTDIR)$(OVERLAYDIR)/sudoers.d/$$f; done
|
||||
$(RMD) $(DESTDIR)$(BASEDIR)
|
||||
|
||||
uninstall-lxqt:
|
||||
for f in $(notdir $(LXQT)); do $(RM) $(DESTDIR)$(LXQTDIR)/$$f; done
|
||||
for f in $(notdir $(LXQT_DM)); do $(RM) $(DESTDIR)$(LXQTDIR)$(SYSCONFDIR)/$$f; done
|
||||
$(RMD) $(DESTDIR)$(LXQTDIR)
|
||||
|
||||
install: install-lxqt install-base
|
||||
|
||||
uninstall: uninstall-lxqt uninstall-base
|
||||
|
||||
dist:
|
||||
git archive --format=tar --prefix=$(PKG)-$(VERSION)/ $(VERSION) | gzip -9 > $(PKG)-$(VERSION).tar.gz
|
||||
gpg --detach-sign --use-agent $(PKG)-$(VERSION).tar.gz
|
||||
|
||||
.PHONY: install uninstall dist install-lxqt install-base uninstall-lxqt uninstall-base
|
||||
|
10
Notes
10
Notes
@@ -1,10 +0,0 @@
|
||||
BuildISO order
|
||||
rootfs
|
||||
desktopfs
|
||||
livefs
|
||||
|
||||
1. buildiso uses /usr/share/artools/pacman-default.conf for all pacman operations, and copies it into the ISO.
|
||||
2. ~/artools-workspace/iso-profiles overrides the system default ones
|
||||
3. livefs overlay isn't copied over to installed system
|
||||
4. having more than one kernel specified in base/Packages-Root fails
|
||||
5. buildiso seems to use both /etc/pacman.conf and /usr/share/artools/pacman-default.conf
|
36
README.md
36
README.md
@@ -1,36 +1,2 @@
|
||||
# iso-profiles
|
||||
The Artix ISO profiles
|
||||
|
||||
The *community* profiles (Plasma-LXQt and MATE-LXDE) are mostly symlinks to community. Only a few files/directories differ that accomodate settings specific to the flavour. Those files/directories are ***not*** symlinks.
|
||||
|
||||
Compared to *base/lxqt* profiles, the community profiles differ in:
|
||||
1. /etc/skel is a lot more populous, as it contains DE and application settings
|
||||
2. A few scripts in /etc/local.d/ get executed at first boot:
|
||||
* theme-root creates in /root/.config some symlinks to /etc/skel/.config, for allowing sudo apps follow the overall theme, and gets deleted after execution
|
||||
* artix-icons converts all start-here.png icons in /usr/share/icons to the Artix logo
|
||||
* 0-remove-openbox-sessions deletes openbox entries in /usr/share/xsessions; openbox sessions are unconfigured and can even hang if chosen. Also gets deleted after execution
|
||||
* change-machine-id replaces machine-id in /etc and /var/lib/dbus at every boot
|
||||
* mkinitcpio detects whether the installation is encrypted or not and modifies /etc/default/grub and /etc/mkinitcpio.conf accordingly
|
||||
3. The default erowise mirror in mirrorlist-arch is commented out for being very slow
|
||||
4. rc.local enables the magic sysrq key and replaces the boring /etc/issue with a neofetch dump
|
||||
5. A nice DIR_COLORS is present in /etc.
|
||||
6. /etc/environment sets QT_QPA_PLATFORMTHEME=gtk2 and QT_STYLE_OVERRIDE=gtk in the GTK ISO. Only the latter is needed in QT (I think, forgot to test).
|
||||
7. /etc/vconsole.conf is symlinked to conf.d/consolefont, which is a merge of both. This allows both OpenRC to set the console font and mkinitcpio run the hook early at boot.
|
||||
8. /etc/xdg/kcm-about-distrorc is branded for Artix. There are a few more config files there, stolen from other distros.
|
||||
9. The mkinitcpio.conf in *desktop* profile is preconfigured for rootfs encryption, otherwise system becomes unbootable at first kernel upgrade. If encryption isn't enabled, the script in local.d removes the setting.
|
||||
10. There's a custom local.bashrc in bashrc/bashrc.d, with a better PS1 and a few useful aliases and customizations.
|
||||
11. default/grub is preconfigured with the artix-grub-theme and rootfs encryption; see no.9.
|
||||
12. elogind/logind.conf sets KillUserProcesses=no, which seems to be forgotten to incredibly stupid default 'yes'
|
||||
13. In profile.d/ libreoffice is themed with SAL_USE_VCLPLUGIN=gtk
|
||||
14. rc.conf sets *rc_parallel* and *rc_crashed_start* to YES
|
||||
15. /etc/hosts for live sets *artix* to loopback, some programs hung for a while resolving it
|
||||
16. The branding icons in /usr/share/icons/matefaenzadark are set to Artix
|
||||
17. 60-ioschedulers.rules in udev/rules.d sets I/O scheduler according to disk type (ssd/rotational)
|
||||
18. /root/.config contains settings for Midnight Commander
|
||||
19. /usr/lib/firefox/distribution/distribution.ini is branded for Artix
|
||||
20. An untested and possibly incomplete theme for LXDM lies in /usr/share
|
||||
21. A KDE .rules file from Fedora is put in /usr/share/polkit-1/rules.d
|
||||
22. A tweaked SDDM theme appears in /usr/share/sddm
|
||||
23. /etc/lightdm in GTK is themed and present in both *live* and *desktop* GTK, configured for autologin in the former
|
||||
|
||||
|
||||
The artix iso profiles
|
||||
|
12
TODO
12
TODO
@@ -1,12 +0,0 @@
|
||||
# TODO
|
||||
|
||||
1. DONE: /etc/default/grub append net.ifnames=0
|
||||
2. DONE: metalog-openrc instead of syslog-ng-openrc in ~/artools-workspace/iso-profiles/base/Packages-Root
|
||||
3. DONE: connman instead of nm in base/Packages-Live
|
||||
4. DONE: gparted instead of partitionmanager
|
||||
5. DONE: Remove start menu arrow in MATE (~/.config/gtk-3.0/gtk.css)
|
||||
6. DONE: remove mate-backgrounds and add artix wallpapers instead
|
||||
7. DONE: Encrypted filesystem requires /crypto_keyfile.bin in mkinitcpio.conf/FILES and cryptkey=rootfs:/crypto_keyfile.bin in default/grub/GRUB_CMDLINE_LINUX, or kernel updates break
|
||||
8. DONE: For QT ISO: QT_QPA_PLATFORMTHEME must be unset, otherwise icons are invisible in Plasma desktop (nuoveXT2 set gets picked up by the gtk2 settings) and there are dark text on dark background issues in systemsettings5 and some widget settings. QT_STYLE_OVERRIDE=gtk perhaps should be set (e.g. in /etc/environment)
|
||||
9. DONE: GTK2 toolbar is a png, needs some darkening.
|
||||
10. Create a package with all untracked community files.
|
@@ -2,17 +2,14 @@ mkinitcpio-nfs-utils
|
||||
squashfs-tools
|
||||
nbd
|
||||
|
||||
@openrc artix-live-openrc
|
||||
@runit artix-live-runit
|
||||
>openrc artix-live-openrc
|
||||
>runit artix-live-runit
|
||||
artix-live-portable-efi
|
||||
|
||||
@openrc networkmanager-openrc
|
||||
@openrc ntp-openrc
|
||||
@openrc bluez-openrc
|
||||
>openrc networkmanager-openrc
|
||||
>openrc ntp-openrc
|
||||
>openrc bluez-openrc
|
||||
|
||||
@runit networkmanager-runit
|
||||
@runit ntp-runit
|
||||
@runit bluez-runit
|
||||
|
||||
intel-ucode
|
||||
amd-ucode
|
||||
>runit networkmanager-runit
|
||||
>runit ntp-runit
|
||||
>runit bluez-runit
|
||||
|
@@ -24,7 +24,6 @@ glibc
|
||||
grep
|
||||
grub
|
||||
gzip
|
||||
htop
|
||||
inetutils
|
||||
iproute2
|
||||
iptables
|
||||
@@ -45,30 +44,29 @@ mkinitcpio-openswap
|
||||
nano
|
||||
net-tools
|
||||
ntfs-3g
|
||||
@openrc acpid-openrc
|
||||
@openrc cronie-openrc
|
||||
@openrc cryptsetup-openrc
|
||||
@openrc dhcpcd-openrc
|
||||
@openrc haveged-openrc
|
||||
@openrc lvm2-openrc
|
||||
@openrc mdadm-openrc
|
||||
@openrc nfs-utils-openrc
|
||||
@openrc rsync-openrc
|
||||
@openrc openssh-openrc
|
||||
@openrc wpa_supplicant-openrc
|
||||
@openrc syslog-ng-openrc
|
||||
@runit acpid-runit
|
||||
@runit cronie-runit
|
||||
@runit cryptsetup-runit
|
||||
@runit dhcpcd-runit
|
||||
@runit haveged-runit
|
||||
@runit lvm2-runit
|
||||
@runit mdadm-runit
|
||||
@runit nfs-utils-runit
|
||||
@runit rsync-runit
|
||||
@runit openssh-runit
|
||||
@runit wpa_supplicant-runit
|
||||
@runit syslog-ng-runit
|
||||
>openrc acpid-openrc
|
||||
>openrc cronie-openrc
|
||||
>openrc cryptsetup-openrc
|
||||
>openrc dhcpcd-openrc
|
||||
>openrc haveged-openrc
|
||||
>openrc lvm2-openrc
|
||||
>openrc mdadm-openrc
|
||||
>openrc nfs-utils-openrc
|
||||
>openrc rsync-openrc
|
||||
>openrc openssh-openrc
|
||||
>openrc wpa_supplicant-openrc
|
||||
>openrc syslog-ng-openrc
|
||||
>runit acpid-runit
|
||||
>runit cronie-runit
|
||||
>runit dhcpcd-runit
|
||||
>runit haveged-runit
|
||||
>runit lvm2-runit
|
||||
>runit mdadm-runit
|
||||
>runit nfs-utils-runit
|
||||
>runit rsync-runit
|
||||
>runit openssh-runit
|
||||
>runit wpa_supplicant-runit
|
||||
>runit syslog-ng-runit
|
||||
artix-sysvcompat
|
||||
os-prober
|
||||
pacman
|
||||
|
@@ -1,7 +0,0 @@
|
||||
Artix Live ISO (\l) - \s-\r \m
|
||||
|
||||
login for the live environment:
|
||||
user 'artix'
|
||||
password 'artix'
|
||||
|
||||
|
@@ -1,8 +0,0 @@
|
||||
/* Allow members of the wheel group to execute any actions
|
||||
* without password authentication, similar to "sudo NOPASSWD:"
|
||||
*/
|
||||
polkit.addRule(function(action, subject) {
|
||||
if (subject.isInGroup("wheel")) {
|
||||
return polkit.Result.YES;
|
||||
}
|
||||
});
|
@@ -22,11 +22,11 @@ RunsWithoutOptimizeDb=5
|
||||
CursiveFont=TeX Gyre Chorus
|
||||
DefaultFontSize=15
|
||||
FantasyFont=Impact
|
||||
FixedFont=Fira Mono
|
||||
FixedFont=Liberation Mono
|
||||
FixedFontSize=14
|
||||
MinimumFontSize=3
|
||||
MinimumLogicalFontSize=5
|
||||
SansSerifFont=Fira Sans
|
||||
SansSerifFont=Noto Sans
|
||||
SerifFont=DejaVu Serif
|
||||
StandardFont=DejaVu Serif
|
||||
|
||||
@@ -101,9 +101,9 @@ useSpeedDialNumberShortcuts=true
|
||||
useTabNumberShortcuts=true
|
||||
|
||||
[SpeedDial]
|
||||
background=file:///usr/share/backgrounds/space1080p.jpg
|
||||
background=
|
||||
backsize=auto
|
||||
pages="url:\"https://artixlinux.org\"|title:\"Artix Linux - Home\";url:\"https://wiki.artixlinux.org\"|title:\"Wiki | Main / Artix Wiki Main Page\";url:\"https://forum.artixlinux.org\"|title:\"Artix Linux Forum - Index\";url:\"https://gitea.artixlinux.org\"|title:\"Explore - Artix Linux Gitea\";"
|
||||
pages=
|
||||
pagesrow=4
|
||||
sdcenter=false
|
||||
sdsize=231
|
@@ -0,0 +1,3 @@
|
||||
[Desktop]
|
||||
Wallpaper=/usr/share/backgrounds/Artix_dna_spiral.png
|
||||
WallpaperMode=zoom
|
69
base/live-overlay/etc/skel/Desktop/Instructions/.print.css
Normal file
69
base/live-overlay/etc/skel/Desktop/Instructions/.print.css
Normal file
@@ -0,0 +1,69 @@
|
||||
/***********************************************************************
|
||||
** .print.css
|
||||
** Copyright 2004 Patrick R. Michaud (pmichaud@pobox.com)
|
||||
** This file is part of PmWiki; 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 2 of the License, or
|
||||
** (at your option) any later version. See pmwiki.php for full details.
|
||||
***********************************************************************/
|
||||
|
||||
/***********************************************************************
|
||||
** These settings are part of the ?action=print skin. If you want
|
||||
** to change these settings, create a new print template and set
|
||||
** $PrintTemplateFmt in the config.php file to point to your new
|
||||
** printing skin.
|
||||
***********************************************************************/
|
||||
|
||||
body {
|
||||
width:auto;
|
||||
background-color: #1a1a1a;
|
||||
color: #dedede;
|
||||
font-family:serif;
|
||||
}
|
||||
|
||||
#printhead {
|
||||
font-family:sans-serif;
|
||||
border-top:3px solid #a0a0a0;
|
||||
border-bottom:5px solid #a0a0a0;
|
||||
margin-bottom:1em;
|
||||
}
|
||||
#printhead h3 { margin-top:0px; }
|
||||
#printhead h1 { margin-bottom:0px; }
|
||||
|
||||
#printtitle {
|
||||
}
|
||||
|
||||
#printfoot {
|
||||
clear:both;
|
||||
margin-top:1em;
|
||||
border-top:5px solid #a0a0a0;
|
||||
font-size:smaller;
|
||||
}
|
||||
|
||||
|
||||
a:link { color:#4444ee; font-weight:bold; text-decoration:none; }
|
||||
a:visited { color:#4444ee; font-weight:bold; text-decoration:none; }
|
||||
a.wikilink:hover { color: #4444ee; text-decoration:underline; }
|
||||
a.createlink { color:#4444ee; }
|
||||
a.createlink:visited { color:#4444ee; }
|
||||
a.createlink:hover { color:#ff2222; }
|
||||
|
||||
.mini { padding:2px; border:1px solid #c6c6c6; background-color:#1a1a1a; }
|
||||
.miniH, .miniF {display:block;}
|
||||
|
||||
a {color: #80d3fc; text-decoration: none;}
|
||||
|
||||
a:visited {color: #cc77cc;}
|
||||
|
||||
code {color: #99aabb;}
|
||||
|
||||
wikitrail {background-color: #232423;}
|
||||
|
||||
.container-fluid {
|
||||
padding-right: 2px;
|
||||
padding-left: 2px;
|
||||
}
|
||||
|
||||
.well {
|
||||
padding: 5px;
|
||||
}
|
@@ -0,0 +1,109 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><head>
|
||||
<title>Artix Wiki | Main / Configuration</title>
|
||||
<link rel="stylesheet" href=".print.css" type="text/css">
|
||||
<!--HTMLHeader--><style type="text/css"><!--
|
||||
ul, ol, pre, dl, p { margin-top:0px; margin-bottom:0px; }
|
||||
code.escaped { white-space: nowrap; }
|
||||
.vspace { margin-top:1.33em; }
|
||||
.indent { margin-left:40px; }
|
||||
.outdent { margin-left:40px; text-indent:-40px; }
|
||||
a.createlinktext { text-decoration:none; border-bottom:1px dotted gray; }
|
||||
a.createlink { text-decoration:none; position:relative; top:-0.5em;
|
||||
font-weight:bold; font-size:smaller; border-bottom:none; }
|
||||
img { border:0px; }
|
||||
|
||||
.rtl, .rtl * {direction:rtl; unicode-bidi:bidi-override;}
|
||||
.ltr, .ltr * {direction:ltr; unicode-bidi:bidi-override;}
|
||||
.rtl .indent, .rtl.indent, .rtl .outdent, .rtl.outdent {
|
||||
margin-left:0; margin-right: 40px;
|
||||
}
|
||||
.ltplus{cursor:pointer; opacity:.3; font-weight:bold; padding: 0 .3em;}
|
||||
.ltplus:hover{ color: white; background: blue; opacity: 1; }.TCprogress {background-color:#5af; min-height:13px; width:13px; color:#fff; margin-left:auto; margin-right:auto;}
|
||||
table.TotalCounter td {font-size:x-small; text-align:center}.editconflict { color:green;
|
||||
font-style:italic; margin-top:1.33em; margin-bottom:1.33em; }
|
||||
|
||||
table.markup { border:2px dotted #ccf; width:90%; }
|
||||
td.markup1, td.markup2 { padding-left:10px; padding-right:10px; }
|
||||
table.vert td.markup1 { border-bottom:1px solid #ccf; }
|
||||
table.horiz td.markup1 { width:23em; border-right:1px solid #ccf; }
|
||||
table.markup caption { text-align:left; }
|
||||
div.faq p, div.faq pre { margin-left:2em; }
|
||||
div.faq p.question { margin:1em 0 0.75em 0; font-weight:bold; }
|
||||
div.faqtoc div.faq * { display:none; }
|
||||
div.faqtoc div.faq p.question
|
||||
{ display:block; font-weight:normal; margin:0.5em 0 0.5em 20px; line-height:normal; }
|
||||
div.faqtoc div.faq p.question * { display:inline; }
|
||||
td.markup1 pre { white-space: pre-wrap; }
|
||||
|
||||
.frame
|
||||
{ border:1px solid #cccccc; padding:4px; background-color:#f9f9f9; }
|
||||
.lfloat { float:left; margin-right:0.5em; }
|
||||
.rfloat { float:right; margin-left:0.5em; }
|
||||
a.varlink { text-decoration:none;}
|
||||
|
||||
--></style><link rel="icon" href="https://wiki.artixlinux.org/favicon.ico" type="image/x-icon"><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<script async="" src="Artix%20Wiki%20-%20Main%20_%20Configuration_files/analytics.js"></script><script>
|
||||
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
||||
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
||||
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
||||
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
|
||||
|
||||
ga('create', 'UA-105345407-1', 'auto');
|
||||
ga('send', 'pageview');
|
||||
|
||||
</script> <meta name="robots" content="noindex,nofollow">
|
||||
<link rel="stylesheet" type="text/css" href="local.css">
|
||||
<meta name="description" content="System configuration and fine tuning">
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<div id="printhead">
|
||||
<h3>From Artix Wiki</h3>
|
||||
<h1 class="pagename"><a href="https://wiki.artixlinux.org/Main">Main: Configuration</a></h1>
|
||||
</div>
|
||||
<!--PageText-->
|
||||
<div id="wikitext">
|
||||
<div class="vspace"></div><h3>OpenRC</h3>
|
||||
<h4>OpenRC settings</h4>
|
||||
<p>Various parameters are controlled by <code>/etc/rc.conf</code>. Most common tweaks include setting <strong>rc_parallel</strong> and<strong> rc_logger</strong> to <strong>YES</strong> and <strong>rc_depend_strict</strong> to <strong>NO</strong>.
|
||||
</p>
|
||||
<div class="vspace"></div><h4>Networking</h4>
|
||||
<p>Most people will do fine with <strong>NetworkManager</strong>. For static network configuration it's preferable to install <strong>netifrc</strong> and edit <code>/etc/conf.d/net</code> for their setup.
|
||||
</p>
|
||||
<div class="vspace"></div><h4>User permissions</h4>
|
||||
<p>You can control who has access to and control of what by assigning
|
||||
them to groups. A more than full permission set for the primary user is
|
||||
granted by the following, consider reducing it to only necessary ones:
|
||||
</p><pre> usermod -a -G video,audio,input,power,storage,optical,lp,scanner,dbus,adbusers,uucp,vboxusers USER
|
||||
</pre><div class="vspace"></div><h4>Hostname</h4>
|
||||
<p><a class="wikilink" href="https://wiki.artixlinux.org/Main/OpenRC?action=print">OpenRC</a> can set the host name either from <code>/etc/hostname</code> or from <code>/etc/conf.d/hostname</code>, with the former taking precedence. Their syntax differs somewhat:<br><code>/etc/hostname</code>
|
||||
</p><pre> reallycoolhostname
|
||||
</pre><p class="vspace"><code>/etc/conf.d/hostname</code>
|
||||
</p><pre> hostname="reallycoolhostname"
|
||||
</pre><div class="vspace"></div><h3>Runit</h3>
|
||||
<h4>Keyboard configuration in console</h4>
|
||||
<p>A persistent keymap can be set in <code>/etc/vconsole.conf</code>,
|
||||
which is read by runit-rc on start-up. The KEYMAP variable is used for
|
||||
specifying the keymap. If the variable is empty or not set, the us
|
||||
keymap is used as default value. See vconsole.conf(5) (coming soon, but
|
||||
in the meantime you can see <a class="urllink" href="https://jlk.fjfi.cvut.cz/arch/manpages/man/vconsole.conf.5" rel="nofollow">Arch's manual which refers to systemd</a>, but is compatible with runit) for all options. For example:
|
||||
</p>
|
||||
<p class="vspace"><code>/etc/vconsole.conf</code>
|
||||
</p><pre> KEYMAP=uk
|
||||
...
|
||||
</pre><div class="vspace"></div><h4>Hostname</h4>
|
||||
<p>You can set it in <code>/etc/hostname</code>.
|
||||
</p>
|
||||
<p class="vspace"><code>/etc/hostname</code>
|
||||
</p><pre> reallycoolhostname
|
||||
</pre>
|
||||
</div>
|
||||
|
||||
<div id="printfoot">
|
||||
<div class="from">Retrieved from https://wiki.artixlinux.org/Main/Configuration</div>
|
||||
<div class="lastmod">Page last modified on September 07, 2018, at 01:47 AM</div></div>
|
||||
<!--HTMLFooter-->
|
||||
|
||||
|
||||
</body><div id="simple-translate-button" style="display: none;"></div><div id="simple-translate-panel" style="display: none;"><p>...</p></div></html>
|
@@ -0,0 +1,176 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><head>
|
||||
<title>Artix Wiki | Main / Installation</title>
|
||||
<link rel="stylesheet" href=".print.css" type="text/css">
|
||||
<!--HTMLHeader--><style type="text/css"><!--
|
||||
ul, ol, pre, dl, p { margin-top:0px; margin-bottom:0px; }
|
||||
code.escaped { white-space: nowrap; }
|
||||
.vspace { margin-top:1.33em; }
|
||||
.indent { margin-left:40px; }
|
||||
.outdent { margin-left:40px; text-indent:-40px; }
|
||||
a.createlinktext { text-decoration:none; border-bottom:1px dotted gray; }
|
||||
a.createlink { text-decoration:none; position:relative; top:-0.5em;
|
||||
font-weight:bold; font-size:smaller; border-bottom:none; }
|
||||
img { border:0px; }
|
||||
|
||||
.rtl, .rtl * {direction:rtl; unicode-bidi:bidi-override;}
|
||||
.ltr, .ltr * {direction:ltr; unicode-bidi:bidi-override;}
|
||||
.rtl .indent, .rtl.indent, .rtl .outdent, .rtl.outdent {
|
||||
margin-left:0; margin-right: 40px;
|
||||
}
|
||||
.ltplus{cursor:pointer; opacity:.3; font-weight:bold; padding: 0 .3em;}
|
||||
.ltplus:hover{ color: white; background: blue; opacity: 1; }.TCprogress {background-color:#5af; min-height:13px; width:13px; color:#fff; margin-left:auto; margin-right:auto;}
|
||||
table.TotalCounter td {font-size:x-small; text-align:center}.editconflict { color:green;
|
||||
font-style:italic; margin-top:1.33em; margin-bottom:1.33em; }
|
||||
|
||||
table.markup { border:2px dotted #ccf; width:90%; }
|
||||
td.markup1, td.markup2 { padding-left:10px; padding-right:10px; }
|
||||
table.vert td.markup1 { border-bottom:1px solid #ccf; }
|
||||
table.horiz td.markup1 { width:23em; border-right:1px solid #ccf; }
|
||||
table.markup caption { text-align:left; }
|
||||
div.faq p, div.faq pre { margin-left:2em; }
|
||||
div.faq p.question { margin:1em 0 0.75em 0; font-weight:bold; }
|
||||
div.faqtoc div.faq * { display:none; }
|
||||
div.faqtoc div.faq p.question
|
||||
{ display:block; font-weight:normal; margin:0.5em 0 0.5em 20px; line-height:normal; }
|
||||
div.faqtoc div.faq p.question * { display:inline; }
|
||||
td.markup1 pre { white-space: pre-wrap; }
|
||||
|
||||
.frame
|
||||
{ border:1px solid #cccccc; padding:4px; background-color:#f9f9f9; }
|
||||
.lfloat { float:left; margin-right:0.5em; }
|
||||
.rfloat { float:right; margin-left:0.5em; }
|
||||
a.varlink { text-decoration:none;}
|
||||
|
||||
--></style><link rel="icon" href="https://wiki.artixlinux.org/favicon.ico" type="image/x-icon"><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<script async="" src="Artix%20Wiki%20-%20Main%20_%20Installation_files/analytics.js"></script><script>
|
||||
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
||||
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
||||
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
||||
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
|
||||
|
||||
ga('create', 'UA-105345407-1', 'auto');
|
||||
ga('send', 'pageview');
|
||||
|
||||
</script> <meta name="robots" content="noindex,nofollow">
|
||||
<link rel="stylesheet" type="text/css" href="local.css">
|
||||
<meta name="description" content="Fresh Artix Installation">
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<div id="printhead">
|
||||
<h3>From Artix Wiki</h3>
|
||||
<h1 class="pagename"><a href="https://wiki.artixlinux.org/Main">Main: Installation</a></h1>
|
||||
</div>
|
||||
<!--PageText-->
|
||||
<div id="wikitext">
|
||||
<p class="vspace"><big>It is possible to use runit iso to install OpenRC-based system, and vice-versa.</big>
|
||||
</p>
|
||||
<div class="vspace"></div><h3>Fresh Artix installation from bootable media</h3>
|
||||
<p>Artix can either be installed through the console or the GUI
|
||||
installer. The GUI install is quite straightforward, we'll focus on the
|
||||
console installation procedure here.
|
||||
</p>
|
||||
<p class="vspace">NOTE: The Artix ISO does not seem to support UEFI only
|
||||
systems. On such a system, a successfull Artix install is possible by
|
||||
booting an <a class="urllink" href="http://archlinux.org/download/" rel="nofollow">Arch Linux ISO</a>, converting the Arch live system to Artix as <a class="wikilink" href="https://wiki.artixlinux.org/Main/Migration?action=print">described here</a>, and then continuing with the installation steps below.
|
||||
Before migrating the Arch Live system to Artix it is necessary to increase the size of the overlay tmpfs; this is done by
|
||||
</p><pre> mount -o remount,size=4G /
|
||||
</pre><p>(make sure your system has enough RAM). Adapt the size to what
|
||||
you need; the pacman commands will show what they need to download and
|
||||
install, the sum of both plus something more is needed.
|
||||
</p>
|
||||
<div class="vspace"></div><h4>Partition your disk (BIOS)</h4>
|
||||
<p>Partition your hard drive (<code>/dev/sda</code> will be used in this guide) with <strong>fdisk</strong> or <strong>cfdisk</strong>, the partition numbers and order are at your discretion:
|
||||
</p><pre> cfdisk /dev/sda
|
||||
</pre><p>If you want to install side-by-side with other operating
|
||||
systems, you must make some space on the disk by resizing the existing
|
||||
partitions. You may use <strong>gparted</strong> for this, however
|
||||
detailed instructions are out of the scope of this guide. Next, format
|
||||
the new partitions, for example as ext4:
|
||||
</p><pre> mkfs.ext4 -L ROOT /dev/sda2 <- root partition
|
||||
mkfs.ext4 -L HOME /dev/sda3 <- home partition, optional
|
||||
mkfs.ext4 -L BOOT /dev/sda4 <- boot partition, optional
|
||||
mkswap -L SWAP /dev/sda1 <- swap partition
|
||||
</pre><p>The -L switch assigns labels to the partitions, which helps referring to them later through <code>/dev/disk/by-label</code> without having to remember their numbers. Now, mount your partitions:
|
||||
</p><pre> swapon /dev/sda1
|
||||
mount /dev/sda2 /mnt
|
||||
mount /dev/sda3 /mnt/home (if created)
|
||||
mount /dev/sda4 /mnt/boot (if created)
|
||||
</pre><div class="vspace"></div><h4>Install base system</h4>
|
||||
<p>A working internet connection is required and assumed. A wired
|
||||
connection is setup automatically, if found. Wireless ones must be
|
||||
configured by the user. Verify your connection and update the
|
||||
repositories:
|
||||
</p><pre> ping artixlinux.org
|
||||
pacman -Syy
|
||||
</pre><p class="vspace">Use <strong>basestrap</strong> to install the <strong>base</strong> and optionally the <strong>base-devel</strong> package groups and your preferred init (currently available: <code>openrc</code> and <code>runit</code>):
|
||||
</p><pre> basestrap /mnt base base-devel openrc
|
||||
</pre><p>or
|
||||
</p><pre> basestrap /mnt base base-devel runit
|
||||
</pre><p class="vspace">Use <strong>fstabgen</strong> to generate <code>/etc/fstab</code>, use -U for UUIDs and -L for partition labels:
|
||||
</p><pre> fstabgen -L /mnt >>/mnt/etc/fstab
|
||||
</pre><p class="vspace">Check the resulting fstab for errors before rebooting. Now, you can chroot into your new Artix system with:
|
||||
</p><pre> artools-chroot /mnt
|
||||
</pre><div class="vspace"></div><h4>Configure the base system</h4>
|
||||
<p>First, install <strong>grub</strong> and <strong>os-prober</strong> (for detecting other installed operating systems):
|
||||
</p><pre> pacman -S grub os-prober
|
||||
grub-install --recheck /dev/sda
|
||||
grub-mkconfig -o /boot/grub/grub.cfg
|
||||
</pre><p>Create a user and password:
|
||||
</p><pre> useradd -m user
|
||||
passwd user
|
||||
</pre><p>Set root password:
|
||||
</p><pre> passwd
|
||||
</pre><p class="vspace">Install <strong>networkmanager</strong>:
|
||||
</p><pre> pacman -S networkmanager networkmanager-openrc network-manager-applet
|
||||
rc-update add NetworkManager default
|
||||
</pre><p class="vspace">Generate locales:
|
||||
</p><pre> nano /etc/locale.gen <- uncomment your locale
|
||||
locale-gen
|
||||
</pre><p>To set the locale systemwide, edit <code>/etc/profile.d/locale.sh</code> (which is sourced by <code>/etc/profile</code>) or <code>/etc/bash/bashrc.d/artix.bashrc</code> or <code>/etc/bash/bashrc.d/local.bashrc</code>; user-specific changes may be made to their respective <code>~/.bashrc</code>, for example:
|
||||
</p><pre> export LANG="en_US.UTF-8"
|
||||
export LC_COLLATE="C"
|
||||
</pre><div class="vspace"></div><h4>Post installation configuration</h4>
|
||||
<p>Now, you can reboot and enter into your new installation:
|
||||
</p><pre> exit <- exit chroot environment
|
||||
umount -R /mnt
|
||||
reboot
|
||||
</pre><p>Once shutdown is complete, remove your installation media. If
|
||||
all went well, you should boot into your new system. Log in as your root
|
||||
to complete the post-installation configuration.
|
||||
To get a graphical environment you need to install the xorg group:
|
||||
</p><pre> pacman -S xorg
|
||||
</pre><p>Choose your packages, or just install all of them. For the closed-source nvidia drivers you can use the <strong>nvidia-lts</strong> package, as our default kernel is <strong>linux-lts</strong>:
|
||||
</p><pre> pacman -S nvidia-lts
|
||||
</pre><p>Older nvidia cards work with the legacy series, <strong>nvidia-340xx-lts</strong> and <strong>nvidia-304xx-lts</strong>.
|
||||
If you want to run a custom kernel, you can install the respective
|
||||
nvidia dkms package which ensures all installed kernels get their nvidia
|
||||
modules.
|
||||
AMD and Intel cards enjoy excellent (or near-excellent) 3D support with
|
||||
open-source drivers. Read the Arch wiki, for information on how Xorg
|
||||
chooses the best available video driver and which one is optimal for
|
||||
your hardware.
|
||||
</p>
|
||||
<p class="vspace">Install a desktop environment, for example <strong>MATE</strong>, <strong>LXQt</strong> or <strong>XFCE4</strong>:
|
||||
</p><pre> pacman -S mate mate-extra xfce4 xfce4-goodies lxqt
|
||||
</pre><p>And optionally a display manager, like <strong>LXDM</strong> or <strong>SDDM</strong>:
|
||||
</p><pre> pacman -S lxdm displaymanager-openrc
|
||||
rc-update add xdm default
|
||||
nano /etc/conf.d/xdm <- edit and set DISPLAYMANAGER="lxdm"
|
||||
</pre><p>Or you can use .xinitrc to launch your DE manually; edit (or create) <code>~/.xinitrc</code> and add <strong>exec mate-session</strong>.
|
||||
Notice: <strong>mate-session</strong> and quite a few other packages
|
||||
from the Arch repositories are compiled against systemd even if they
|
||||
don't actually use it, at least not as PID1; to satisfy the library link
|
||||
you may install <strong>libsystemd-dummy</strong> and <strong>systemd-dummy</strong>.
|
||||
</p><pre> pacman -S systemd-dummy libsystemd-dummy
|
||||
</pre>
|
||||
</div>
|
||||
|
||||
<div id="printfoot">
|
||||
<div class="from">Retrieved from https://wiki.artixlinux.org/Main/Installation</div>
|
||||
<div class="lastmod">Page last modified on August 24, 2018, at 10:56 AM</div></div>
|
||||
<!--HTMLFooter-->
|
||||
|
||||
|
||||
</body><div id="simple-translate-button"></div><div id="simple-translate-panel"><p>...</p></div></html>
|
@@ -0,0 +1,196 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><head>
|
||||
<title>Artix Wiki | Main / OpenRC</title>
|
||||
<link rel="stylesheet" href=".print.css" type="text/css">
|
||||
<!--HTMLHeader--><style type="text/css"><!--
|
||||
ul, ol, pre, dl, p { margin-top:0px; margin-bottom:0px; }
|
||||
code.escaped { white-space: nowrap; }
|
||||
.vspace { margin-top:1.33em; }
|
||||
.indent { margin-left:40px; }
|
||||
.outdent { margin-left:40px; text-indent:-40px; }
|
||||
a.createlinktext { text-decoration:none; border-bottom:1px dotted gray; }
|
||||
a.createlink { text-decoration:none; position:relative; top:-0.5em;
|
||||
font-weight:bold; font-size:smaller; border-bottom:none; }
|
||||
img { border:0px; }
|
||||
|
||||
.rtl, .rtl * {direction:rtl; unicode-bidi:bidi-override;}
|
||||
.ltr, .ltr * {direction:ltr; unicode-bidi:bidi-override;}
|
||||
.rtl .indent, .rtl.indent, .rtl .outdent, .rtl.outdent {
|
||||
margin-left:0; margin-right: 40px;
|
||||
}
|
||||
.ltplus{cursor:pointer; opacity:.3; font-weight:bold; padding: 0 .3em;}
|
||||
.ltplus:hover{ color: white; background: blue; opacity: 1; }.TCprogress {background-color:#5af; min-height:13px; width:13px; color:#fff; margin-left:auto; margin-right:auto;}
|
||||
table.TotalCounter td {font-size:x-small; text-align:center}.editconflict { color:green;
|
||||
font-style:italic; margin-top:1.33em; margin-bottom:1.33em; }
|
||||
|
||||
table.markup { border:2px dotted #ccf; width:90%; }
|
||||
td.markup1, td.markup2 { padding-left:10px; padding-right:10px; }
|
||||
table.vert td.markup1 { border-bottom:1px solid #ccf; }
|
||||
table.horiz td.markup1 { width:23em; border-right:1px solid #ccf; }
|
||||
table.markup caption { text-align:left; }
|
||||
div.faq p, div.faq pre { margin-left:2em; }
|
||||
div.faq p.question { margin:1em 0 0.75em 0; font-weight:bold; }
|
||||
div.faqtoc div.faq * { display:none; }
|
||||
div.faqtoc div.faq p.question
|
||||
{ display:block; font-weight:normal; margin:0.5em 0 0.5em 20px; line-height:normal; }
|
||||
div.faqtoc div.faq p.question * { display:inline; }
|
||||
td.markup1 pre { white-space: pre-wrap; }
|
||||
|
||||
.frame
|
||||
{ border:1px solid #cccccc; padding:4px; background-color:#f9f9f9; }
|
||||
.lfloat { float:left; margin-right:0.5em; }
|
||||
.rfloat { float:right; margin-left:0.5em; }
|
||||
a.varlink { text-decoration:none;}
|
||||
|
||||
--></style><link rel="icon" href="https://wiki.artixlinux.org/favicon.ico" type="image/x-icon"><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<script async="" src="Artix%20Wiki%20-%20Main%20_%20OpenRC_files/analytics.js"></script><script>
|
||||
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
||||
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
||||
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
||||
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
|
||||
|
||||
ga('create', 'UA-105345407-1', 'auto');
|
||||
ga('send', 'pageview');
|
||||
|
||||
</script> <meta name="robots" content="noindex,nofollow">
|
||||
<link rel="stylesheet" type="text/css" href="local.css">
|
||||
<meta name="description" content="The OpenRC init system">
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<div id="printhead">
|
||||
<h3>From Artix Wiki</h3>
|
||||
<h1 class="pagename"><a href="https://wiki.artixlinux.org/Main">Main: OpenRC</a></h1>
|
||||
</div>
|
||||
<!--PageText-->
|
||||
<div id="wikitext">
|
||||
<p class="vspace"><strong><big>OpenRC</big></strong>
|
||||
</p>
|
||||
<p class="vspace">OpenRC is a dependency-based init system that
|
||||
initially maintained compatibility with sysvinit (/sbin/init) and,
|
||||
beginning with OpenRC 0.25, provided its own. OpenRC was written by <a class="urllink" href="https://gentoo.org/" rel="nofollow">Gentoo</a> developers and it is designed to be used by other distributions and BSD systems.
|
||||
</p>
|
||||
<div class="vspace"></div><h4>Features</h4>
|
||||
<p>OpenRC provides features such as hardware initiated initscripts or cgroups support.
|
||||
</p>
|
||||
<div class="vspace"></div><h4>Configuration</h4>
|
||||
<p><code>/etc/rc.conf</code> is the global OpenRC configuration file.
|
||||
</p>
|
||||
<div class="vspace"></div><h4>Network management</h4>
|
||||
<p>OpenRC can be used with one of several network managers or even with none, see <code>/etc/conf.d/net</code> for examples of static or dynamic network configuration. The <strong>netifrc</strong>
|
||||
package provides a collection of modules for configuring and managing
|
||||
network interfaces via individual, per-interface scripts located in the
|
||||
/etc/init.d/ directory. Its presence is not mandatory or it can be left
|
||||
unused in favour of another network manager.
|
||||
</p>
|
||||
<div class="vspace"></div><h4>Dependency behavior</h4>
|
||||
<p>Changing the default dependencies of init scripts might be needed to fit more complex setups. See <code>/etc/rc.conf</code> for how to change the default behavior; notice the <strong>rc_depend_strict</strong> option. In addition, the following networking examples show how flexible OpenRC can be.
|
||||
</p>
|
||||
<div class="vspace"></div><h4>Selecting a specific runlevel at boot</h4>
|
||||
<p>OpenRC reads the kernel command-line used at boot time, and will start the runlevel specified by the <strong>softlevel</strong> parameter if provided, instead of <strong>default</strong>. For instance, you can choose whether to boot into the <strong>default</strong>, <strong>nonetwork</strong> or <strong>single-user</strong> runlevels with the following example grub.conf configuration:
|
||||
</p><pre> /boot/grub/grub.conf
|
||||
title=Regular start-up
|
||||
kernel (hd0,0)/boot/vmlinuz-linux root=/dev/sda3
|
||||
title=Start without networking
|
||||
kernel (hd0,0)/boot/vmlinuz-linux root=/dev/sda3 softlevel=nonetwork
|
||||
title=Single-user mode
|
||||
kernel (hd0,0)/boot/vmlinuz-linux root=/dev/sda3 softlevel=single
|
||||
</pre><div class="vspace"></div><h3>Usage</h3>
|
||||
<h4>Runlevels</h4>
|
||||
<p>OpenRC uses runlevels in very much the same way as sysvinit (or BSD
|
||||
init). At any given time the system is in one of the defined runlevels.
|
||||
There are three internal runlevels and four user defined runlevels.
|
||||
</p>
|
||||
<div class="vspace"></div><ul><li>Internal runlevels, the names are self-explanatory:
|
||||
<ul><li><code>sysinit</code>
|
||||
</li><li><code>shutdown</code>
|
||||
</li><li><code>reboot</code>
|
||||
</li></ul><div class="vspace"></div></li><li>User Runlevels:
|
||||
<div class="vspace"></div><ul><li><code>boot</code>: Starts all system-necessary services for other runlevels
|
||||
</li><li><code>default</code>: Used for day-to-day-operations
|
||||
</li><li><code>nonetwork</code>: Used when no network connectivity is required
|
||||
</li><li><code>single</code>: Single-user mode
|
||||
</li></ul></li></ul><p class="vspace">The system can switch to a runlevel with the <strong>openrc <runlevel></strong> command, e.g.:
|
||||
</p><pre> openrc nonetwork
|
||||
</pre><div class="vspace"></div><h4>Control</h4>
|
||||
<p>OpenRC can be controlled and configured using <strong>openrc</strong>, <strong>rc-service</strong>, <strong>rc-update</strong> and <strong>rc-status</strong> commands.
|
||||
</p>
|
||||
<div class="vspace"></div><h4>Adding/removing services to/from runlevels</h4>
|
||||
<pre> # rc-update add net.eth0 boot
|
||||
# rc-update del dropbox default
|
||||
</pre><div class="vspace"></div><h4>Listing</h4>
|
||||
<p>Use <strong>rc-update show -v</strong> to display all available init scripts and their their current runlevel (if they have been added to one):
|
||||
</p><pre> # rc-update show -v
|
||||
</pre><p>Running <strong>rc-update</strong> or <strong>rc-update show</strong> will display only the init scripts that have been added to a runlevel.
|
||||
</p>
|
||||
<div class="vspace"></div><h4>Named runlevels</h4>
|
||||
<p>OpenRC runlevels are directories living in <code>/etc/runlevels</code> to create additional runlevels is enough to issue:
|
||||
</p><pre> # install -d /etc/runlevels/$runlevel
|
||||
</pre><div class="vspace"></div><h4>Stacked runlevels</h4>
|
||||
<p>It is possible to manage variants using <strong>rc-update -s</strong>. An example for using stacked runlevels on laptop to group networking services based on location is at <a class="urllink" href="https://wiki.gentoo.org/wiki/OpenRC/StackedRunlevel" rel="nofollow">OpenRC/StackedRunlevel</a>.
|
||||
</p>
|
||||
<div class="vspace"></div><h4>Hotplug</h4>
|
||||
<p>OpenRC monitors and can be triggered by external events, such as new hardware from udev. See <a class="urllink" href="https://wiki.gentoo.org/wiki/Iphone_USB_Tethering#udev_trigger" rel="nofollow">OpenRC/Event Driven</a> for details.
|
||||
</p>
|
||||
<div class="vspace"></div><h4>Automatic respawning of crashed services</h4>
|
||||
<p>OpenRC can return the state of services to the runlevel's setting
|
||||
state, provide stateful init scripts and automatic respawning. If one
|
||||
issues <strong>openrc</strong> as root (for default runlevel), crashed
|
||||
services will start and manually launched services will stop. To prevent
|
||||
the latter you can run <strong>openrc -n</strong> (--not-stop)
|
||||
By default openrc will attempt just to start crashed services, not restart. This сontrolled by <strong>rc_crashed_stop</strong> (default NO) and <strong>rc_crashed_start</strong> (default YES) options in <code>/etc/rc.conf</code>.
|
||||
</p>
|
||||
<div class="vspace"></div><h4>CGroups support</h4>
|
||||
<p>OpenRC has extended cgroups support. See <a class="urllink" href="https://wiki.gentoo.org/wiki/OpenRC/CGroups" rel="nofollow">OpenRC/CGroups</a> for details.
|
||||
</p>
|
||||
<div class="vspace"></div><h4>rc.local</h4>
|
||||
<p>OpenRC doesn't execute <code>/etc/rc.local</code> by default; instead, it executes scripts from <code>/etc/local.d</code> ending in .start when local service starts and .stop when it stops. To mimic the good old <code>rc.local</code> behaviour, create <code>/etc/rc.local/rc.local.start</code> with the following and make it executable with <strong>chmod +x</strong>:
|
||||
</p><pre> :
|
||||
# /etc/local.d/rc.local.start
|
||||
[ -e /etc/rc.local ] && /etc/rc.local
|
||||
</pre><p>Make sure that the <strong>local</strong> service is enabled. The scripts in <code>/etc/local.d</code> are executed in lexical order and the example above assumes <code>/etc/rc.local</code> has got execute permissions.
|
||||
</p>
|
||||
<div class="vspace"></div><h3>Examples</h3>
|
||||
<h4>Multiple network interfaces</h4>
|
||||
<p>The SSH service must come up with the internal network, for instance eth0 and never wlan0.
|
||||
Override the <strong>net</strong> dependency from <code>/etc/init.d/sshd</code>, and refine it to depend on <strong>net.eth0</strong>:
|
||||
</p><pre> /etc/conf.d/sshd
|
||||
rc_need="!net net.eth0"
|
||||
</pre><div class="vspace"></div><h4>Multiple network interfaces in multiple runlevels</h4>
|
||||
<p>The SSH service must start with <strong>eth0</strong> (not <strong>wlan0</strong>) in "default" runlevel, but in "office" runlevel it must start with <strong>wlan0</strong> (not <strong>eth0</strong>).
|
||||
</p><pre> /etc/rc.conf
|
||||
#rc_depend_strict="YES"
|
||||
</pre><p>Make additional symlinks to sshd with the network interface names:
|
||||
</p><pre> # ln -s sshd /etc/init.d/sshd.eth0
|
||||
# ln -s sshd /etc/init.d/sshd.wlan0
|
||||
</pre><p>Settings are read from <code>/etc/conf.d/sshd.eth0</code> and <code>/etc/conf.d/sshd.wlan0</code> now:
|
||||
</p><pre> # cp /etc/conf.d/sshd /etc/conf.d/sshd.eth0
|
||||
# cp /etc/conf.d/sshd /etc/conf.d/sshd.wlan0
|
||||
</pre><p>Add the dependencies:
|
||||
</p><pre> # echo 'rc_need="!net net.eth0"' >> /etc/conf.d/sshd.eth0
|
||||
# echo 'rc_need="!net net.wlan0"' >> /etc/conf.d/sshd.wlan0
|
||||
</pre><p>In this example net.eth0 and net.wlan0 read their settings from <code>/etc/conf.d/net</code>, or <code>/etc/conf.d/net.office</code>, depending on the active runlevel. Add all runscripts to the different runlevels:
|
||||
</p><pre> # rc-update add sshd.eth0 default
|
||||
# rc-update add sshd.wlan0 office
|
||||
# rc-update add net.eth0 default office
|
||||
# rc-update add net.wlan0 default office
|
||||
</pre><p>To switch between "default" runlevel and "office" runlevel
|
||||
without rebooting the computer, change to "nonetwork" runlevel in
|
||||
between. The network interfaces will be stopped this way, and re-read
|
||||
their runlevel specific configuration. This works best when "nonetwork"
|
||||
is a stacked runlevel in both the "default" and "office" runlevels, and
|
||||
the display manager and other non-network services are added to the
|
||||
"nonetwork" runlevel only.
|
||||
<br> <em>default runlevel <---> nonetwork runlevel <---> office runlevel</em>
|
||||
</p><pre> # rc nonetwork && rc office
|
||||
# rc nonetwork && rc default
|
||||
</pre>
|
||||
</div>
|
||||
|
||||
<div id="printfoot">
|
||||
<div class="from">Retrieved from https://wiki.artixlinux.org/Main/OpenRC</div>
|
||||
<div class="lastmod">Page last modified on June 29, 2018, at 09:59 PM</div></div>
|
||||
<!--HTMLFooter-->
|
||||
|
||||
|
||||
</body><div id="simple-translate-button"></div><div id="simple-translate-panel"><p>...</p></div></html>
|
@@ -0,0 +1,164 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><head>
|
||||
<title>Artix Wiki | Main / Troubleshooting</title>
|
||||
<link rel="stylesheet" href=".print.css" type="text/css">
|
||||
<!--HTMLHeader--><style type="text/css"><!--
|
||||
ul, ol, pre, dl, p { margin-top:0px; margin-bottom:0px; }
|
||||
code.escaped { white-space: nowrap; }
|
||||
.vspace { margin-top:1.33em; }
|
||||
.indent { margin-left:40px; }
|
||||
.outdent { margin-left:40px; text-indent:-40px; }
|
||||
a.createlinktext { text-decoration:none; border-bottom:1px dotted gray; }
|
||||
a.createlink { text-decoration:none; position:relative; top:-0.5em;
|
||||
font-weight:bold; font-size:smaller; border-bottom:none; }
|
||||
img { border:0px; }
|
||||
|
||||
.rtl, .rtl * {direction:rtl; unicode-bidi:bidi-override;}
|
||||
.ltr, .ltr * {direction:ltr; unicode-bidi:bidi-override;}
|
||||
.rtl .indent, .rtl.indent, .rtl .outdent, .rtl.outdent {
|
||||
margin-left:0; margin-right: 40px;
|
||||
}
|
||||
.ltplus{cursor:pointer; opacity:.3; font-weight:bold; padding: 0 .3em;}
|
||||
.ltplus:hover{ color: white; background: blue; opacity: 1; }.TCprogress {background-color:#5af; min-height:13px; width:13px; color:#fff; margin-left:auto; margin-right:auto;}
|
||||
table.TotalCounter td {font-size:x-small; text-align:center}.editconflict { color:green;
|
||||
font-style:italic; margin-top:1.33em; margin-bottom:1.33em; }
|
||||
|
||||
table.markup { border:2px dotted #ccf; width:90%; }
|
||||
td.markup1, td.markup2 { padding-left:10px; padding-right:10px; }
|
||||
table.vert td.markup1 { border-bottom:1px solid #ccf; }
|
||||
table.horiz td.markup1 { width:23em; border-right:1px solid #ccf; }
|
||||
table.markup caption { text-align:left; }
|
||||
div.faq p, div.faq pre { margin-left:2em; }
|
||||
div.faq p.question { margin:1em 0 0.75em 0; font-weight:bold; }
|
||||
div.faqtoc div.faq * { display:none; }
|
||||
div.faqtoc div.faq p.question
|
||||
{ display:block; font-weight:normal; margin:0.5em 0 0.5em 20px; line-height:normal; }
|
||||
div.faqtoc div.faq p.question * { display:inline; }
|
||||
td.markup1 pre { white-space: pre-wrap; }
|
||||
|
||||
.frame
|
||||
{ border:1px solid #cccccc; padding:4px; background-color:#f9f9f9; }
|
||||
.lfloat { float:left; margin-right:0.5em; }
|
||||
.rfloat { float:right; margin-left:0.5em; }
|
||||
a.varlink { text-decoration:none;}
|
||||
|
||||
--></style><link rel="icon" href="https://wiki.artixlinux.org/favicon.ico" type="image/x-icon"><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<script async="" src="Artix%20Wiki%20-%20Main%20_%20Troubleshooting_files/analytics.js"></script><script>
|
||||
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
||||
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
||||
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
||||
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
|
||||
|
||||
ga('create', 'UA-105345407-1', 'auto');
|
||||
ga('send', 'pageview');
|
||||
|
||||
</script> <meta name="robots" content="noindex,nofollow">
|
||||
<link rel="stylesheet" type="text/css" href="local.css">
|
||||
<meta name="description" content="Troubleshooting your Artix issues">
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<div id="printhead">
|
||||
<h3>From Artix Wiki</h3>
|
||||
<h1 class="pagename"><a href="https://wiki.artixlinux.org/Main">Main: Troubleshooting</a></h1>
|
||||
</div>
|
||||
<!--PageText-->
|
||||
<div id="wikitext">
|
||||
<div class="vspace"></div><h3>Updating icu/ncurses/whatever breaks a ton of packages</h3>
|
||||
<p>Make sure you have the correct repositories activated in <code>/etc/pacman.conf</code>.
|
||||
Testing [gremlins] repositories should be disabled by default. If you
|
||||
want to use them, you should also uncomment [testing] from Arch. These <strong>must</strong> be above all other repositories.
|
||||
<strong>Note:</strong> [gremlins] is Artix equivalent of Arch [testing]
|
||||
</p><pre> #[gremlins]
|
||||
#Include = /etc/pacman.d/mirrorlist
|
||||
#[galaxy-gremlins]
|
||||
#Include = /etc/pacman.d/mirrorlist
|
||||
#[lib32-gremlins]
|
||||
#Include = /etc/pacman.d/mirrorlist
|
||||
|
||||
[system]
|
||||
Include = /etc/pacman.d/mirrorlist
|
||||
[world]
|
||||
Include = /etc/pacman.d/mirrorlist
|
||||
[galaxy]
|
||||
Include = /etc/pacman.d/mirrorlist
|
||||
# If you want to run 32 bit applications on your x86_64 system,
|
||||
# enable the multilib repositories as required here.
|
||||
[lib32]
|
||||
Include = /etc/pacman.d/mirrorlist
|
||||
</pre><p>Since we still depend on some of Arch packages from [extra] and
|
||||
most of [community], some version mismatches during updates and until
|
||||
we fully sync may cause problems. In such case, enabling temporarily the
|
||||
testing repositories might just give you the right package to fix your
|
||||
situation.
|
||||
</p>
|
||||
<p class="vspace">The list below might not be updated, always check the <a class="urllink" href="https://gitea.artixlinux.org/packages/artix-mirrorlist/src/branch/master/repos/core-any/mirrorlist" rel="nofollow">Gitea repository</a>.
|
||||
</p><pre> ## Artix Linux repository mirrorlist
|
||||
## Generated on 2017-10-21
|
||||
##
|
||||
# Artix mirrors
|
||||
Server = <a class="urllink" href="https://mirror.clarkson.edu/artix-linux/repos/$repo/os/$arch" rel="nofollow">https://mirror.clarkson.edu/artix-linux/repos/$repo/os/$arch</a>
|
||||
Server = <a class="urllink" href="https://ftp.sh.cvut.cz/artix-linux/$repo/os/$arch" rel="nofollow">https://ftp.sh.cvut.cz/artix-linux/$repo/os/$arch</a>
|
||||
Server = <a class="urllink" href="https://ftp.cc.uoc.gr/mirrors/linux/artixlinux/$repo/os/$arch" rel="nofollow">https://ftp.cc.uoc.gr/mirrors/linux/artixlinux/$repo/os/$arch</a>
|
||||
Server = <a class="urllink" href="https://artix.wheaton.edu/repos/$repo/os/$arch" rel="nofollow">https://artix.wheaton.edu/repos/$repo/os/$arch</a>
|
||||
Server = <a class="urllink" href="http://mirror.strits.dk/artix-linux/repos/$repo/os/$arch" rel="nofollow">http://mirror.strits.dk/artix-linux/repos/$repo/os/$arch</a>
|
||||
Server = <a class="urllink" href="https://mirrors.dotsrc.org/artix-linux/repos/$repo/os/$arch" rel="nofollow">https://mirrors.dotsrc.org/artix-linux/repos/$repo/os/$arch</a>
|
||||
Server = <a class="urllink" href="http://mirror1.artixlinux.org/repos/$repo/os/$arch" rel="nofollow">http://mirror1.artixlinux.org/repos/$repo/os/$arch</a>
|
||||
</pre><div class="vspace"></div><h3>Invalid or corrupted packages (PGP signature)</h3>
|
||||
<p>If pacman warns you about invalid or corrupted packages, it may be
|
||||
due to obsolete PGP keys or Arch-signed packages in the repos. Make sure
|
||||
the Artix repos are above the Arch ones and:
|
||||
</p>
|
||||
<p class="vspace">1. Reinstall keyrings including the latest keys:
|
||||
</p><pre> sudo pacman -Sy gnupg archlinux-keyring artix-keyring --force
|
||||
</pre><p>If you can't install the artix-keyring because of , perform step 2 and repeat 1, otherwise proceed to step 3.
|
||||
</p>
|
||||
<p class="vspace">2. Remove old and possibly expired, revoked or invalid keys by issuing this command:
|
||||
</p><pre> sudo rm -r /etc/pacman.d/gnupg
|
||||
</pre><p>3. Initialize the pacman keyring:
|
||||
</p><pre> sudo pacman-key --init
|
||||
</pre><p>4. Load the signature keys:
|
||||
</p><pre> sudo pacman-key --populate archlinux artix
|
||||
</pre><p>5. Clear out the software packages downloaded during the aborted installation:
|
||||
</p><pre> sudo pacman -Scc
|
||||
sudo pacman -Syyu
|
||||
</pre><p>6. In a pinch, install the package with the -U pacman switch:
|
||||
</p><pre> pacman -U /var/cache/pacman/pkg/package-1.3.9-1.x86_64.pkg.tar.xz
|
||||
</pre><div class="vspace"></div><h3>Can't play games, run Steam etc!</h3>
|
||||
<p>You must enable [lib32] from Artix and [multilib] from Arch in <code>/etc/pacman.conf</code> and install relevant packages for 32bit executables. Make sure [lib32] is above [multilib] (as a matter of fact <strong>all</strong> Artix repos must be above Arch's).
|
||||
</p><pre> [lib32]
|
||||
Include = /etc/pacman.d/mirrorlist
|
||||
[multilib]
|
||||
Include = /etc/pacman.d/mirrorlist-arch
|
||||
</pre><div class="vspace"></div><h3>Warning: this GPT partition label contains no BIOS Boot Partition; embedding won't be possible.</h3>
|
||||
<p>Install parted and execute:
|
||||
</p><pre> parted -s /dev/sdx set 1 bios_grub on
|
||||
</pre><div class="vspace"></div><h3>I'm having <strong>dbus-related</strong> problems and I keep seeing messages about <code>/etc/machine-id</code></h3>
|
||||
<p>This file originated from dbus development and was adopted by systemd
|
||||
as a universally unique machine identifier. Ergo, it is a useless (for
|
||||
the end user) tag but apparently of some use to dbus because <a class="urllink" href="https://dbus.freedesktop.org/doc/dbus-uuidgen.1.html" rel="nofollow">"<em>The
|
||||
important properties of the machine UUID are that 1) it remains
|
||||
unchanged until the next reboot and 2) it is different for any two
|
||||
running instances of the OS kernel. That is, if two processes see the
|
||||
same UUID, they should also see the same shared memory, UNIX domain
|
||||
sockets, local X displays, localhost.localdomain resolution, process
|
||||
IDs, and so forth.</em>"</a> Also, <a class="urllink" href="https://www.freedesktop.org/software/systemd/man/machine-id.html" rel="nofollow">"<em>The
|
||||
simple configuration file format of /etc/machine-id originates in the
|
||||
/var/lib/dbus/machine-id file introduced by D-Bus. In fact, this latter
|
||||
file might be a symlink to /etc/machine-id.</em>"</a> and <a class="urllink" href="https://www.freedesktop.org/software/systemd/man/machine-id.html" rel="nofollow"><em>This
|
||||
ID uniquely identifies the host. It should be considered
|
||||
"confidential", and must not be exposed in untrusted environments, in
|
||||
particular on the network.</em></a> Privacy-conscious people <em>might</em> want to regenerate their machine-ids frequently; a new ID can be generated with
|
||||
</p><pre> dbus-uuidgen >| /etc/machine-id
|
||||
</pre><p>or
|
||||
</p><pre> dbus-uuidgen >| /var/lib/dbus/machine-id
|
||||
</pre>
|
||||
</div>
|
||||
|
||||
<div id="printfoot">
|
||||
<div class="from">Retrieved from https://wiki.artixlinux.org/Main/Troubleshooting</div>
|
||||
<div class="lastmod">Page last modified on August 12, 2018, at 01:15 PM</div></div>
|
||||
<!--HTMLFooter-->
|
||||
|
||||
|
||||
</body><div id="simple-translate-button"></div><div id="simple-translate-panel"><p>...</p></div></html>
|
@@ -0,0 +1,157 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><head>
|
||||
<title>Artix Wiki | Main / runit</title>
|
||||
<link rel="stylesheet" href=".print.css" type="text/css">
|
||||
<!--HTMLHeader--><style type="text/css"><!--
|
||||
ul, ol, pre, dl, p { margin-top:0px; margin-bottom:0px; }
|
||||
code.escaped { white-space: nowrap; }
|
||||
.vspace { margin-top:1.33em; }
|
||||
.indent { margin-left:40px; }
|
||||
.outdent { margin-left:40px; text-indent:-40px; }
|
||||
a.createlinktext { text-decoration:none; border-bottom:1px dotted gray; }
|
||||
a.createlink { text-decoration:none; position:relative; top:-0.5em;
|
||||
font-weight:bold; font-size:smaller; border-bottom:none; }
|
||||
img { border:0px; }
|
||||
|
||||
.rtl, .rtl * {direction:rtl; unicode-bidi:bidi-override;}
|
||||
.ltr, .ltr * {direction:ltr; unicode-bidi:bidi-override;}
|
||||
.rtl .indent, .rtl.indent, .rtl .outdent, .rtl.outdent {
|
||||
margin-left:0; margin-right: 40px;
|
||||
}
|
||||
.ltplus{cursor:pointer; opacity:.3; font-weight:bold; padding: 0 .3em;}
|
||||
.ltplus:hover{ color: white; background: blue; opacity: 1; }.TCprogress {background-color:#5af; min-height:13px; width:13px; color:#fff; margin-left:auto; margin-right:auto;}
|
||||
table.TotalCounter td {font-size:x-small; text-align:center}.editconflict { color:green;
|
||||
font-style:italic; margin-top:1.33em; margin-bottom:1.33em; }
|
||||
|
||||
table.markup { border:2px dotted #ccf; width:90%; }
|
||||
td.markup1, td.markup2 { padding-left:10px; padding-right:10px; }
|
||||
table.vert td.markup1 { border-bottom:1px solid #ccf; }
|
||||
table.horiz td.markup1 { width:23em; border-right:1px solid #ccf; }
|
||||
table.markup caption { text-align:left; }
|
||||
div.faq p, div.faq pre { margin-left:2em; }
|
||||
div.faq p.question { margin:1em 0 0.75em 0; font-weight:bold; }
|
||||
div.faqtoc div.faq * { display:none; }
|
||||
div.faqtoc div.faq p.question
|
||||
{ display:block; font-weight:normal; margin:0.5em 0 0.5em 20px; line-height:normal; }
|
||||
div.faqtoc div.faq p.question * { display:inline; }
|
||||
td.markup1 pre { white-space: pre-wrap; }
|
||||
|
||||
.frame
|
||||
{ border:1px solid #cccccc; padding:4px; background-color:#f9f9f9; }
|
||||
.lfloat { float:left; margin-right:0.5em; }
|
||||
.rfloat { float:right; margin-left:0.5em; }
|
||||
a.varlink { text-decoration:none;}
|
||||
|
||||
--></style><link rel="icon" href="https://wiki.artixlinux.org/favicon.ico" type="image/x-icon"><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<script async="" src="Artix%20Wiki%20-%20Main%20_%20runit_files/analytics.js"></script><script>
|
||||
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
||||
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
||||
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
||||
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
|
||||
|
||||
ga('create', 'UA-105345407-1', 'auto');
|
||||
ga('send', 'pageview');
|
||||
|
||||
</script> <meta name="robots" content="noindex,nofollow">
|
||||
<link rel="stylesheet" type="text/css" href="local.css">
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<div id="printhead">
|
||||
<h3>From Artix Wiki</h3>
|
||||
<h1 class="pagename"><a href="https://wiki.artixlinux.org/Main">Main: runit</a></h1>
|
||||
</div>
|
||||
<!--PageText-->
|
||||
<div id="wikitext">
|
||||
<p class="vspace">runit is a suite of tools which provides an init (PID
|
||||
1) as well as daemontools-compatible process supervision framework,
|
||||
along with utilites which streamline creation and maintenance of
|
||||
services.
|
||||
</p>
|
||||
<div class="vspace"></div><h3>Installation</h3>
|
||||
<p>Install the <code>runit</code> package.
|
||||
</p>
|
||||
<div class="vspace"></div><h4>Installation of services</h4>
|
||||
<p>runit service packages are named <code><em>package_name</em>-runit</code> and, when installed, will be available in <code>/etc/runit/sv</code>.
|
||||
</p>
|
||||
<div class="vspace"></div><h3>Programs</h3>
|
||||
<p>Runit has several programs, but usually you will only interact directly with one program only.
|
||||
</p>
|
||||
<div class="vspace"></div><ul><li><code>sv</code> - used for controlling services, getting status of services, and dependency checking.
|
||||
</li><li><code>chpst</code> - control of a process environment,
|
||||
including memory caps, limits on cores, data segments, environments,
|
||||
user/group privileges, and more.
|
||||
</li><li><code>runsv</code> - supervises a process, and optionally a log service for that process.
|
||||
</li><li><code>svlogd</code> - a simple but powerful logger, includes
|
||||
auto-rotation based on different methods (time, size, etc),
|
||||
post-processing, pattern matching, and socket (remote logging) options.
|
||||
Say goodbye to logrotate and the need to stop your services to rotate
|
||||
logs.
|
||||
</li><li><code>runsvchdir</code> - changes service levels (runlevels, see below)
|
||||
</li><li><code>runsvdir</code> - starts a supervision tree
|
||||
</li><li><code>runit-init</code> - PID 1, does almost nothing besides being the init
|
||||
</li></ul><div class="vspace"></div><h3>Files</h3>
|
||||
<p>There are several files that will be installed by <code>runit</code>.
|
||||
</p>
|
||||
<div class="vspace"></div><ul><li><code>/etc/runit/1</code> - stage 1, system’s one-time initialization tasks
|
||||
</li><li><code>/etc/runit/2</code> - stage 2, Normally runs <code>runsvdir</code>, should not return until the system is going to halt or reboot.
|
||||
</li><li><code>/etc/runit/3</code> - stage 3, system’s shutdown tasks
|
||||
</li><li><code>/etc/runit/ctrlaltdel</code> - Runit will execute this when receiving a <code>SIGINT</code> signal
|
||||
</li><li><code>/etc/runit/runsvdir/*</code> - Runlevels
|
||||
</li><li><code>/etc/runit/sv/*</code> - directory containing subdirectories of available service files
|
||||
</li><li><code>/run/runit/service</code> - always symlinked to active runlevel, <code>sv</code> will search for running service here
|
||||
</li></ul><p class="vspace">However, since <code>runit</code> itself depends on <code>runit-rc</code>, there will be several extra rc files installed, most contained in <code>/etc/rc</code> and <code>/usr/lib/rc</code>.
|
||||
</p>
|
||||
<div class="vspace"></div><h3>Basic usage</h3>
|
||||
<p>Unlike other distros using runit, Artix doesn’t store its service directory in <code>/var/service</code> or <code>/service</code>, but in <code>/run/runit/service</code> instead.
|
||||
</p>
|
||||
<div class="vspace"></div><ul><li>Enable service (in runlevel <em>default</em>)<code># ln -s /etc/runit/sv/<em>service_name</em> /run/runit/service</code>
|
||||
</li><li>Disable service <code> # rm /run/runit/service/<em>service_name</em></code>
|
||||
</li><li>Stop immediately <code> # sv down <em>service_name</em></code> or <code> # sv stop <em>service_name</em></code>
|
||||
</li><li>Start (if not running) <code> # sv up <em>service_name</em></code> or <code> # sv restart <em>service_name</em></code>
|
||||
</li><li>Restart <code> # sv restart <em>service_name</em></code>
|
||||
</li><li>Reload <code> # sv restart <em>service_name</em></code>
|
||||
</li><li>Status check <code> # sv status <em>service_name</em></code>
|
||||
</li><li>Switch runlevels (this will stop all services that are currently running and will start all services in the new runlevel) <code> # runsvchdir <em>runlevel</em></code>
|
||||
</li></ul><div class="vspace"></div><h3>Runlevel</h3>
|
||||
<p>By default, runit has 2 runlevels, <code>default</code> and <code>single</code>. You can make your own runlevels just by creating a new folder in <code>/etc/runit/runsvdir/</code> and symlinking your desired service to that runlevel.
|
||||
</p><pre> ln -s /etc/runit/sv/service /etc/runit/runsvdir/<em>runlevel</em>@@
|
||||
</pre><div class="vspace"></div><h3>Service directory structure</h3>
|
||||
<p>This is a tree of a complete service directory structure (aka <code>/etc/runit/sv/<em>servicedir</em></code>), in some run scripts, typically only <code>run</code> will be available as usually it's the only file needed.
|
||||
</p>
|
||||
<div class="vspace"></div><pre> servicedir
|
||||
├── run (755)
|
||||
├── check (755)
|
||||
├── conf (644)
|
||||
├── finish (755)
|
||||
└── log (directory)
|
||||
├── config (644)
|
||||
└── run (755)
|
||||
</pre><p class="vspace">A runit (or any daemontools-compatible) run script service directory usually contains only one executable file, <code>run</code>, which runs process in the <strong>foreground</strong>. Processes that run in the background cannot be supervised by runit.
|
||||
</p>
|
||||
<p class="vspace">If a service directory contains another directory named <code>log</code>, the output of the <code>run</code> process in the service directory will be piped to the input of the <code>run</code> process in the log directory. If the log service uses <code>svlogd</code>, it may be configured by using the file <code>config</code>. How <code>svlogd</code> can be configured is explained in the <code>svlogd(1)</code> manpage.
|
||||
</p>
|
||||
<p class="vspace">A run script may also contain executables like <code>finish</code> and <code>check</code>. <code>finish</code> will be executed when a service is stopped, and <code>check</code> will be executed (if exists) by <code>sv check</code> or <code>sv status</code>.
|
||||
</p>
|
||||
<p class="vspace">A run script may also contain a <code>conf</code> file (which is not executable) that modifies the variables available to the script.
|
||||
</p>
|
||||
<div class="vspace"></div><h3>Service dependencies</h3>
|
||||
<p>Some services may depend on other services. For example, <code>NetworkManager</code> depends on <code>dbus</code>. To ensure that required dependencies are satisfied, check the service's <code>run</code> file. For example, for NetworkManager:
|
||||
</p>
|
||||
<div class="vspace"></div><pre> # /etc/runit/sv/NetworkManager/run
|
||||
sv check dbus >/dev/null || exit 1
|
||||
</pre><p class="vspace">This means you have to enable <code>dbus</code> for NetworkManager to start.
|
||||
</p>
|
||||
<div class="vspace"></div><h3>See also</h3>
|
||||
<ul><li><a class="urllink" href="http://smarden.org/runit" rel="nofollow">http://smarden.org/runit</a> - Official runit documentation
|
||||
</li><li><a class="urllink" href="https://voidlinux.eu/wiki/Runit" rel="nofollow">https://voidlinux.eu/wiki/Runit</a> - Void Linux wiki on runit
|
||||
</li></ul>
|
||||
</div>
|
||||
|
||||
<div id="printfoot">
|
||||
<div class="from">Retrieved from https://wiki.artixlinux.org/Main/Runit</div>
|
||||
<div class="lastmod">Page last modified on June 21, 2018, at 05:32 AM</div></div>
|
||||
<!--HTMLFooter-->
|
||||
|
||||
|
||||
</body><div id="simple-translate-button"></div><div id="simple-translate-panel"><p>...</p></div></html>
|
6
base/live-overlay/etc/skel/Desktop/README
Normal file
6
base/live-overlay/etc/skel/Desktop/README
Normal file
@@ -0,0 +1,6 @@
|
||||
Username: artix
|
||||
Password: artix
|
||||
|
||||
root password: artix
|
||||
|
||||
The graphical installer is in Menu -> System Tools -> Install System
|
@@ -1 +0,0 @@
|
||||
root ALL=(ALL) ALL
|
@@ -2,24 +2,24 @@
|
||||
|
||||
# default displaymanager: none
|
||||
# supported: lightdm, sddm, gdm, lxdm, mdm
|
||||
# DISPLAYMANAGER="none"
|
||||
# displaymanager="none"
|
||||
|
||||
# Set to false to disable autologin in the livecd
|
||||
AUTOLOGIN="false"
|
||||
autologin="false"
|
||||
|
||||
# start services
|
||||
# SERVICES=('acpid' 'bluetooth' 'cronie' 'cupsd' 'syslog-ng' 'NetworkManager')
|
||||
# services=('acpid' 'bluetooth' 'cronie' 'cupsd' 'syslog-ng' 'NetworkManager')
|
||||
|
||||
# default group membership
|
||||
# ADDGROUPS="video,power,storage,optical,network,lp,scanner,wheel,users,log"
|
||||
# addgroups="video,power,storage,optical,network,lp,scanner,wheel,users,log"
|
||||
|
||||
################# live-session #################
|
||||
|
||||
# default value
|
||||
# HOST_NANE="artix"
|
||||
# hostname="artix"
|
||||
|
||||
# default value
|
||||
# USER_NAME="artix"
|
||||
# username="artix"
|
||||
|
||||
# default value
|
||||
# PASSWORD="artix"
|
||||
# password="artix"
|
||||
|
@@ -1,173 +0,0 @@
|
||||
# Configuration file for dircolors, a utility to help you set the
|
||||
# LS_COLORS environment variable used by GNU ls with the --color option.
|
||||
#
|
||||
# You can copy this file to .dir_colors in your $HOME directory to override
|
||||
# the system defaults.
|
||||
|
||||
# Below, there should be one TERM entry for each termtype that is colorizable
|
||||
TERM ansi
|
||||
TERM color-xterm
|
||||
TERM con132x25
|
||||
TERM con132x30
|
||||
TERM con132x43
|
||||
TERM con132x60
|
||||
TERM con80x25
|
||||
TERM con80x28
|
||||
TERM con80x30
|
||||
TERM con80x43
|
||||
TERM con80x50
|
||||
TERM con80x60
|
||||
TERM cons25
|
||||
TERM console
|
||||
TERM cygwin
|
||||
TERM dtterm
|
||||
TERM Eterm
|
||||
TERM gnome
|
||||
TERM konsole
|
||||
TERM kterm
|
||||
TERM linux
|
||||
TERM linux-c
|
||||
TERM mach-color
|
||||
TERM putty
|
||||
TERM rxvt
|
||||
TERM rxvt-cygwin
|
||||
TERM rxvt-cygwin-native
|
||||
TERM rxvt-unicode
|
||||
TERM screen
|
||||
TERM screen-bce
|
||||
TERM screen-w
|
||||
TERM screen.linux
|
||||
TERM vt100
|
||||
TERM xterm
|
||||
TERM xterm-256color
|
||||
TERM xterm-color
|
||||
TERM xterm-debian
|
||||
|
||||
# Below are the color init strings for the basic file types. A color init
|
||||
# string consists of one or more of the following numeric codes:
|
||||
# Attribute codes:
|
||||
# 00=none 01=bold 04=underscore 05=blink 07=reverse 08=concealed
|
||||
# Text color codes:
|
||||
# 30=black 31=red 32=green 33=yellow 34=blue 35=magenta 36=cyan 37=white
|
||||
# Background color codes:
|
||||
# 40=black 41=red 42=green 43=yellow 44=blue 45=magenta 46=cyan 47=white
|
||||
NORMAL 00 # global default, although everything should be something.
|
||||
FILE 00 # normal file
|
||||
DIR 01;34 # directory
|
||||
LINK 01;36 # symbolic link. (If you set this to 'target' instead of a
|
||||
# numerical value, the color is as for the file pointed to.)
|
||||
FIFO 40;33 # pipe
|
||||
SOCK 01;35 # socket
|
||||
DOOR 01;35 # door
|
||||
BLK 40;33;01 # block device driver
|
||||
CHR 40;33;01 # character device driver
|
||||
ORPHAN 01;05;37;41 # orphaned syminks
|
||||
MISSING 01;05;37;41 # ... and the files they point to
|
||||
SETUID 37;41 # file that is setuid (u+s)
|
||||
SETGID 30;43 # file that is setgid (g+s)
|
||||
STICKY_OTHER_WRITABLE 30;42 # dir that is sticky and other-writable (+t,o+w)
|
||||
OTHER_WRITABLE 34;42 # dir that is other-writable (o+w) and not sticky
|
||||
STICKY 37;44 # dir with the sticky bit set (+t) and not other-writable
|
||||
|
||||
# This is for files with execute permission:
|
||||
EXEC 01;32
|
||||
|
||||
# List any file extensions like '.gz' or '.tar' that you would like ls
|
||||
# to colorize below. Put the extension, a space, and the color init string.
|
||||
# (and any comments you want to add after a '#')
|
||||
|
||||
# If you use DOS-style suffixes, you may want to uncomment the following:
|
||||
#.cmd 01;32 # executables (bright green)
|
||||
#.exe 01;32
|
||||
#.com 01;32
|
||||
#.btm 01;32
|
||||
#.bat 01;32
|
||||
.sh 01;32
|
||||
.pl 01;32
|
||||
.py 01;32
|
||||
#.csh 01;32
|
||||
|
||||
.tar 00;31 # archives or compressed (bright red)
|
||||
.tgz 00;31
|
||||
.arj 00;31
|
||||
.taz 00;31
|
||||
.lzh 00;31
|
||||
.zip 00;31
|
||||
.z 00;31
|
||||
.Z 00;31
|
||||
.gz 00;31
|
||||
.bz2 00;31
|
||||
.bz 00;31
|
||||
.tbz2 00;31
|
||||
.xz 00;31
|
||||
.tz 00;31
|
||||
.deb 00;31
|
||||
.rpm 00;31
|
||||
.jar 00;31
|
||||
.rar 00;31 # rar
|
||||
.ace 00;31 # unace
|
||||
.zoo 00;31 # zoo
|
||||
.cpio 00;31 # cpio
|
||||
.7z 00;31 # p7zip
|
||||
.rz 00;31 # rzip
|
||||
|
||||
# image formats
|
||||
.jpg 00;35
|
||||
.jpeg 00;35
|
||||
.gif 00;35
|
||||
.bmp 00;35
|
||||
.pbm 00;35
|
||||
.pgm 00;35
|
||||
.ppm 00;35
|
||||
.tga 00;35
|
||||
.xbm 00;35
|
||||
.xpm 00;35
|
||||
.tif 00;35
|
||||
.tiff 00;35
|
||||
.png 00;35
|
||||
.mng 00;35
|
||||
.pcx 00;35
|
||||
.mov 00;35
|
||||
.mpg 00;35
|
||||
.mpeg 00;35
|
||||
.m2v 00;35 # MPEG-2 Video only
|
||||
.mkv 00;35 # Matroska (http://matroska.org/)
|
||||
.ogm 00;35 # Ogg Media File
|
||||
.mp4 00;35 # 'Offical' container for MPEG-4
|
||||
.m4v 00;35 # MPEG-4 Video only
|
||||
.mp4v 00;35 # MPEG-4 Video only
|
||||
.qt 00;35 # Quicktime (http://developer.apple.com/qa/qtw/qtw99.html)
|
||||
.wmv 00;35 # Windows Media Video
|
||||
.asf 00;35 # Advanced Systems Format (contains Windows Media Video)
|
||||
.rm 00;35 # Real Media
|
||||
.rmvb 00;35 # Real Media Variable Bitrate
|
||||
.flc 00;35 # AutoDesk Animator
|
||||
.flv 00;35
|
||||
.avi 00;35
|
||||
.fli 00;35
|
||||
.gl 00;35
|
||||
.dl 00;35
|
||||
.xcf 00;35
|
||||
.xwd 00;35
|
||||
|
||||
# Document files
|
||||
.pdf 00;32
|
||||
.ps 00;32
|
||||
.txt 00;32
|
||||
.patch 00;32
|
||||
.diff 00;32
|
||||
.log 00;32
|
||||
.tex 00;32
|
||||
.doc 00;32
|
||||
|
||||
# audio formats
|
||||
.flac 00;35
|
||||
.mp3 00;35
|
||||
.mpc 00;36
|
||||
.ogg 00;36
|
||||
.wav 00;36
|
||||
.mid 00;36
|
||||
.midi 00;36
|
||||
.au 00;36
|
||||
.flac 00;36
|
||||
.aac 00;36
|
@@ -1 +0,0 @@
|
||||
../../live-overlay/etc/bash
|
@@ -1 +0,0 @@
|
||||
../../live-overlay/etc/conf.d
|
@@ -1,50 +0,0 @@
|
||||
GRUB_DEFAULT="0"
|
||||
GRUB_TIMEOUT="3"
|
||||
GRUB_DISTRIBUTOR="Artix"
|
||||
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
|
||||
GRUB_CMDLINE_LINUX="net.ifnames=0 cryptkey=rootfs:/crypto_keyfile.bin"
|
||||
|
||||
# Preload both GPT and MBR modules so that they are not missed
|
||||
GRUB_PRELOAD_MODULES="part_gpt part_msdos"
|
||||
|
||||
# Uncomment to enable Hidden Menu, and optionally hide the timeout count
|
||||
#GRUB_HIDDEN_TIMEOUT="5"
|
||||
#GRUB_HIDDEN_TIMEOUT_QUIET="true"
|
||||
|
||||
# Uncomment to use basic console
|
||||
GRUB_TERMINAL_INPUT="console"
|
||||
|
||||
# Uncomment to disable graphical terminal
|
||||
#GRUB_TERMINAL_OUTPUT="console"
|
||||
|
||||
# The resolution used on graphical terminal
|
||||
# note that you can use only modes which your graphic card supports via VBE
|
||||
# you can see them in real GRUB with the command `vbeinfo'
|
||||
#GRUB_GFXMODE="1680x1050x8"
|
||||
GRUB_GFXMODE=auto
|
||||
|
||||
# Uncomment to allow the kernel use the same resolution used by grub
|
||||
GRUB_GFXPAYLOAD_LINUX="keep"
|
||||
|
||||
# Uncomment if you want GRUB to pass to the Linux kernel the old parameter
|
||||
# format "root=/dev/xxx" instead of "root=/dev/disk/by-uuid/xxx"
|
||||
GRUB_DISABLE_LINUX_UUID="true"
|
||||
|
||||
# Uncomment to disable generation of recovery mode menu entries
|
||||
GRUB_DISABLE_RECOVERY="true"
|
||||
|
||||
# Uncomment and set to the desired menu colors. Used by normal and wallpaper
|
||||
# modes only. Entries specified as foreground/background.
|
||||
export GRUB_COLOR_NORMAL="light-blue/black"
|
||||
export GRUB_COLOR_HIGHLIGHT="light-cyan/blue"
|
||||
|
||||
# Uncomment one of them for the gfx desired, a image background or a gfxtheme
|
||||
#GRUB_BACKGROUND="/path/to/wallpaper"
|
||||
GRUB_THEME="/usr/share/grub/themes/artix/theme.txt"
|
||||
|
||||
# Uncomment to get a beep at GRUB start
|
||||
#GRUB_INIT_TUNE="480 440 1"
|
||||
|
||||
GRUB_SAVEDEFAULT="true"
|
||||
|
||||
GRUB_DISABLE_LINUX_RECOVERY="true"
|
@@ -1 +0,0 @@
|
||||
../../live-overlay/etc/elogind
|
@@ -1,2 +0,0 @@
|
||||
QT_QPA_PLATFORMTHEME=gtk2
|
||||
QT_STYLE_OVERRIDE=gtk
|
@@ -1,4 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
rm -f /usr/share/xsessions/openbox*
|
||||
rm -f /etc/local.d/0-remove-openbox-sessions.start &
|
@@ -1 +0,0 @@
|
||||
../../../live-overlay/etc/local.d/README
|
@@ -1 +0,0 @@
|
||||
../../../live-overlay/etc/local.d/artix-icons.start
|
@@ -1,6 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
# machine-id can uniquely identify your machine, change it at every boot
|
||||
|
||||
dbus-uuidgen >| /var/lib/dbus/machine-id &
|
||||
dbus-uuidgen >| /etc/machine-id &
|
@@ -1 +0,0 @@
|
||||
../../../live-overlay/etc/local.d/local.start
|
@@ -1 +0,0 @@
|
||||
../../../live-overlay/etc/local.d/local.stop
|
@@ -1,13 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Force early boot consolefont at live session
|
||||
mv -f /etc/mkinitcpio.conf.mod /etc/mkinitcpio.conf
|
||||
|
||||
# Remove ecnryption-related stuff if unneeded from mkinitcpio.conf, default/grub and grub.cfg
|
||||
if [ ! -e /crypto_keyfile.bin ]; then
|
||||
sed -i 's|/crypto_keyfile.bin||' /etc/mkinitcpio.conf*
|
||||
sed -i 's|encrypt||' /etc/mkinitcpio.conf*
|
||||
sed -i 's|cryptkey=rootfs:/crypto_keyfile.bin||' /etc/default/grub /boot/grub/grub.cfg
|
||||
fi
|
||||
|
||||
rm -f /etc/local.d/mkinitcpio.start
|
@@ -1 +0,0 @@
|
||||
../../../live-overlay/etc/local.d/theme-root.start
|
@@ -1,66 +0,0 @@
|
||||
# vim:set ft=sh
|
||||
# MODULES
|
||||
# The following modules are loaded before any boot hooks are
|
||||
# run. Advanced users may wish to specify all system modules
|
||||
# in this array. For instance:
|
||||
# MODULES=(piix ide_disk reiserfs)
|
||||
MODULES=()
|
||||
|
||||
# BINARIES
|
||||
# This setting includes any additional binaries a given user may
|
||||
# wish into the CPIO image. This is run last, so it may be used to
|
||||
# override the actual binaries included by a given hook
|
||||
# BINARIES are dependency parsed, so you may safely ignore libraries
|
||||
BINARIES=()
|
||||
|
||||
# FILES
|
||||
# This setting is similar to BINARIES above, however, files are added
|
||||
# as-is and are not parsed in any way. This is useful for config files.
|
||||
FILES=(/crypto_keyfile.bin /usr/share/kbd/consolefonts/ter-v16b.psf.gz)
|
||||
|
||||
# HOOKS
|
||||
# This is the most important setting in this file. The HOOKS control the
|
||||
# modules and scripts added to the image, and what happens at boot time.
|
||||
# Order is important, and it is recommended that you do not change the
|
||||
# order in which HOOKS are added. Run 'mkinitcpio -H <hook name>' for
|
||||
# help on a given hook.
|
||||
# 'base' is _required_ unless you know precisely what you are doing.
|
||||
# 'udev' is _required_ in order to automatically load modules
|
||||
# 'filesystems' is _required_ unless you specify your fs modules in MODULES
|
||||
# Examples:
|
||||
## This setup specifies all modules in the MODULES setting above.
|
||||
## No raid, lvm2, or encrypted root is needed.
|
||||
# HOOKS=(base)
|
||||
#
|
||||
## This setup will autodetect all modules for your system and should
|
||||
## work as a sane default
|
||||
# HOOKS=(base udev autodetect block filesystems)
|
||||
#
|
||||
## This setup will generate a 'full' image which supports most systems.
|
||||
## No autodetection is done.
|
||||
# HOOKS=(base udev block filesystems)
|
||||
#
|
||||
## This setup assembles a pata mdadm array with an encrypted root FS.
|
||||
## Note: See 'mkinitcpio -H mdadm' for more information on raid devices.
|
||||
# HOOKS=(base udev block mdadm encrypt filesystems)
|
||||
#
|
||||
## This setup loads an lvm2 volume group on a usb device.
|
||||
# HOOKS=(base udev block lvm2 filesystems)
|
||||
#
|
||||
## NOTE: If you have /usr on a separate partition, you MUST include the
|
||||
# usr, fsck and shutdown hooks.
|
||||
HOOKS=(consolefont base udev autodetect modconf encrypt block filesystems keyboard fsck)
|
||||
|
||||
# COMPRESSION
|
||||
# Use this to compress the initramfs image. By default, gzip compression
|
||||
# is used. Use 'cat' to create an uncompressed image.
|
||||
#COMPRESSION="gzip"
|
||||
#COMPRESSION="bzip2"
|
||||
#COMPRESSION="lzma"
|
||||
#COMPRESSION="xz"
|
||||
#COMPRESSION="lzop"
|
||||
#COMPRESSION="lz4"
|
||||
|
||||
# COMPRESSION_OPTIONS
|
||||
# Additional options for the compressor
|
||||
#COMPRESSION_OPTIONS=()
|
@@ -1 +0,0 @@
|
||||
../../live-overlay/etc/pacman.conf
|
@@ -1,19 +0,0 @@
|
||||
##
|
||||
## Artix Linux repository mirrorlist
|
||||
## Generated on 2019-03-14
|
||||
##
|
||||
|
||||
# Artix mirrors
|
||||
|
||||
Server = https://mirrors.dotsrc.org/artix-linux/repos/$repo/os/$arch
|
||||
Server = http://ftp.ntua.gr/pub/linux/artix-linux/$repo/os/$arch
|
||||
Server = https://artix.wheaton.edu/repos/$repo/os/$arch
|
||||
Server = https://mirror.clarkson.edu/artix-linux/repos/$repo/os/$arch
|
||||
Server = https://ftp.cc.uoc.gr/mirrors/linux/artixlinux/$repo/os/$arch
|
||||
Server = https://artix.unixpeople.org/repos/$repo/os/$arch
|
||||
Server = https://artix.rw-net.de/repos/$repo/os/$arch
|
||||
Server = https://mirrors.tuna.tsinghua.edu.cn/artixlinux/$repo/os/$arch
|
||||
Server = http://www.nylxs.com/mirror/repos/$repo/os/$arch
|
||||
Server = https://ftp.sh.cvut.cz/artix-linux/$repo/os/$arch
|
||||
Server = https://mirrors.nettek.us/artix-linux/$repo/os/$arch
|
||||
Server = http://mirror1.artixlinux.org/repos/$repo/os/$arch
|
@@ -1,538 +0,0 @@
|
||||
##
|
||||
## Arch Linux repository mirrorlist
|
||||
## Generated on 2018-10-21
|
||||
##
|
||||
|
||||
## Worldwide
|
||||
#Server = http://mirrors.evowise.com/archlinux/$repo/os/$arch
|
||||
Server = http://mirror.rackspace.com/archlinux/$repo/os/$arch
|
||||
|
||||
## Australia
|
||||
#Server = https://mirror.aarnet.edu.au/pub/archlinux/$repo/os/$arch
|
||||
#Server = http://archlinux.mirror.digitalpacific.com.au/$repo/os/$arch
|
||||
#Server = http://ftp.iinet.net.au/pub/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.internode.on.net/pub/archlinux/$repo/os/$arch
|
||||
#Server = http://archlinux.melbourneitmirror.net/$repo/os/$arch
|
||||
#Server = http://ftp.swin.edu.au/archlinux/$repo/os/$arch
|
||||
|
||||
## Austria
|
||||
#Server = http://mirror.digitalnova.at/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.easyname.at/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.reisenbauer.ee/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.reisenbauer.ee/archlinux/$repo/os/$arch
|
||||
|
||||
## Bangladesh
|
||||
#Server = http://mirror.xeonbd.com/archlinux/$repo/os/$arch
|
||||
|
||||
## Belarus
|
||||
#Server = http://ftp.byfly.by/pub/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.datacenter.by/pub/archlinux/$repo/os/$arch
|
||||
|
||||
## Belgium
|
||||
#Server = http://archlinux.cu.be/$repo/os/$arch
|
||||
#Server = http://archlinux.mirror.kangaroot.net/$repo/os/$arch
|
||||
|
||||
## Bosnia and Herzegovina
|
||||
#Server = http://archlinux.mirror.ba/$repo/os/$arch
|
||||
|
||||
## Brazil
|
||||
#Server = http://br.mirror.archlinux-br.org/$repo/os/$arch
|
||||
#Server = http://archlinux.c3sl.ufpr.br/$repo/os/$arch
|
||||
#Server = http://www.caco.ic.unicamp.br/archlinux/$repo/os/$arch
|
||||
#Server = https://www.caco.ic.unicamp.br/archlinux/$repo/os/$arch
|
||||
#Server = http://linorg.usp.br/archlinux/$repo/os/$arch
|
||||
#Server = http://pet.inf.ufsc.br/mirrors/archlinux/$repo/os/$arch
|
||||
#Server = http://archlinux.pop-es.rnp.br/$repo/os/$arch
|
||||
#Server = http://mirror.ufam.edu.br/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.ufscar.br/archlinux/$repo/os/$arch
|
||||
|
||||
## Bulgaria
|
||||
#Server = http://mirror.host.ag/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.itbox.bg/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.netix.net/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.uni-plovdiv.net/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.uni-plovdiv.net/archlinux/$repo/os/$arch
|
||||
|
||||
## Canada
|
||||
#Server = http://mirror.cedille.club/archlinux/$repo/os/$arch
|
||||
#Server = http://archlinux.mirror.colo-serv.net/$repo/os/$arch
|
||||
#Server = http://mirror.csclub.uwaterloo.ca/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.csclub.uwaterloo.ca/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.its.dal.ca/archlinux/$repo/os/$arch
|
||||
#Server = http://muug.ca/mirror/archlinux/$repo/os/$arch
|
||||
#Server = https://muug.ca/mirror/archlinux/$repo/os/$arch
|
||||
#Server = http://archlinux.mirror.rafal.ca/$repo/os/$arch
|
||||
#Server = http://mirror.sergal.org/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.sergal.org/archlinux/$repo/os/$arch
|
||||
|
||||
## Chile
|
||||
#Server = http://mirror.archlinux.cl/$repo/os/$arch
|
||||
|
||||
## China
|
||||
#Server = http://mirrors.163.com/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.lzu.edu.cn/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.neusoft.edu.cn/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.neusoft.edu.cn/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.shu.edu.cn/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.shu.edu.cn/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.shu6.edu.cn/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.sjtug.sjtu.edu.cn/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.tuna.tsinghua.edu.cn/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.tuna.tsinghua.edu.cn/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.ustc.edu.cn/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.ustc.edu.cn/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.xjtu.edu.cn/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.xjtu.edu.cn/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.zju.edu.cn/archlinux/$repo/os/$arch
|
||||
|
||||
## Colombia
|
||||
#Server = http://mirror.upb.edu.co/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.venturasystems.tech/archlinux/$repo/os/$arch
|
||||
|
||||
## Croatia
|
||||
#Server = http://archlinux.iskon.hr/$repo/os/$arch
|
||||
|
||||
## Czechia
|
||||
#Server = http://mirror.dkm.cz/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.dkm.cz/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.fi.muni.cz/pub/linux/arch/$repo/os/$arch
|
||||
#Server = http://ftp.linux.cz/pub/linux/arch/$repo/os/$arch
|
||||
#Server = http://gluttony.sin.cvut.cz/arch/$repo/os/$arch
|
||||
#Server = https://gluttony.sin.cvut.cz/arch/$repo/os/$arch
|
||||
#Server = http://mirrors.nic.cz/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.sh.cvut.cz/arch/$repo/os/$arch
|
||||
#Server = https://ftp.sh.cvut.cz/arch/$repo/os/$arch
|
||||
#Server = http://mirror.vpsfree.cz/archlinux/$repo/os/$arch
|
||||
|
||||
## Denmark
|
||||
Server = http://mirrors.dotsrc.org/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.dotsrc.org/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.klid.dk/ftp/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.one.com/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.one.com/archlinux/$repo/os/$arch
|
||||
|
||||
## Ecuador
|
||||
#Server = http://mirror.cedia.org.ec/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.espoch.edu.ec/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.uta.edu.ec/archlinux/$repo/os/$arch
|
||||
|
||||
## Finland
|
||||
#Server = http://arch.mirror.far.fi/$repo/os/$arch
|
||||
#Server = https://mirror.srv.fail/archlinux/$repo/os/$arch
|
||||
|
||||
## France
|
||||
#Server = http://archlinux.de-labrusse.fr/$repo/os/$arch
|
||||
#Server = http://mirror.archlinux.ikoula.com/archlinux/$repo/os/$arch
|
||||
#Server = http://archlinux.vi-di.fr/$repo/os/$arch
|
||||
#Server = https://archlinux.vi-di.fr/$repo/os/$arch
|
||||
#Server = http://mirror.armbrust.me/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.armbrust.me/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.arnoldthebat.co.uk/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.arnoldthebat.co.uk/archlinux/$repo/os/$arch
|
||||
#Server = http://archlinux.mirrors.benatherton.com/$repo/os/$arch
|
||||
#Server = http://fooo.biz/archlinux/$repo/os/$arch
|
||||
#Server = https://fooo.biz/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.ibcp.fr/pub/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.lastmikoi.net/archlinux/$repo/os/$arch
|
||||
#Server = http://archlinux.mailtunnel.eu/$repo/os/$arch
|
||||
#Server = https://archlinux.mailtunnel.eu/$repo/os/$arch
|
||||
#Server = http://mir.archlinux.fr/$repo/os/$arch
|
||||
#Server = http://mirrors.celianvdb.fr/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.celianvdb.fr/archlinux/$repo/os/$arch
|
||||
#Server = http://archlinux.mirrors.ovh.net/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.phx.ms/arch/$repo/os/$arch
|
||||
#Server = https://mirrors.phx.ms/arch/$repo/os/$arch
|
||||
#Server = http://archlinux.mirror.pkern.at/$repo/os/$arch
|
||||
#Server = https://archlinux.mirror.pkern.at/$repo/os/$arch
|
||||
#Server = http://archlinux.polymorf.fr/$repo/os/$arch
|
||||
#Server = http://mirrors.standaloneinstaller.com/archlinux/$repo/os/$arch
|
||||
#Server = http://arch.tamcore.eu/$repo/os/$arch
|
||||
#Server = https://mirror.thekinrar.fr/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.u-strasbg.fr/linux/distributions/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.oldsql.cc/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.oldsql.cc/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.wormhole.eu/archlinux/$repo/os/$arch
|
||||
#Server = http://arch.yourlabs.org/$repo/os/$arch
|
||||
#Server = https://arch.yourlabs.org/$repo/os/$arch
|
||||
|
||||
## Germany
|
||||
#Server = http://mirror.23media.de/archlinux/$repo/os/$arch
|
||||
#Server = https://appuals.com/archlinux/$repo/os/$arch
|
||||
#Server = http://artfiles.org/archlinux.org/$repo/os/$arch
|
||||
#Server = https://mirror.bethselamin.de/$repo/os/$arch
|
||||
#Server = http://mirror.checkdomain.de/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.checkdomain.de/archlinux/$repo/os/$arch
|
||||
#Server = http://arch.eckner.net/archlinux/$repo/os/$arch
|
||||
#Server = https://arch.eckner.net/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.f4st.host/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.f4st.host/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.fau.de/archlinux/$repo/os/$arch
|
||||
#Server = https://ftp.fau.de/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.gnomus.de/$repo/os/$arch
|
||||
#Server = http://www.gutscheindrache.com/mirror/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.gwdg.de/pub/linux/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.hactar.xyz/$repo/os/$arch
|
||||
#Server = https://mirror.hactar.xyz/$repo/os/$arch
|
||||
#Server = http://archlinux.honkgong.info/$repo/os/$arch
|
||||
#Server = http://ftp.hosteurope.de/mirror/ftp.archlinux.org/$repo/os/$arch
|
||||
#Server = http://ftp-stud.hs-esslingen.de/pub/Mirrors/archlinux/$repo/os/$arch
|
||||
#Server = http://archlinux.mirror.iphh.net/$repo/os/$arch
|
||||
#Server = http://repo.itmettke.de/archlinux/$repo/os/$arch
|
||||
#Server = https://repo.itmettke.de/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.jankoppe.de/archlinux/$repo/os/$arch
|
||||
#Server = http://arch.jensgutermuth.de/$repo/os/$arch
|
||||
#Server = https://arch.jensgutermuth.de/$repo/os/$arch
|
||||
#Server = http://k42.ch/mirror/archlinux/$repo/os/$arch
|
||||
#Server = https://k42.ch/mirror/archlinux/$repo/os/$arch
|
||||
#Server = https://archlinux.layer8.fail/$repo/os/$arch
|
||||
#Server = http://mirror.fra10.de.leaseweb.net/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.fra10.de.leaseweb.net/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.metalgamer.eu/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.metalgamer.eu/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.n-ix.net/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.n-ix.net/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.netcologne.de/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.netcologne.de/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.niyawe.de/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.niyawe.de/archlinux/$repo/os/$arch
|
||||
#Server = http://archlinux.nullpointer.io/$repo/os/$arch
|
||||
#Server = https://archlinux.nullpointer.io/$repo/os/$arch
|
||||
#Server = http://mirror.orbit-os.com/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.orbit-os.com/archlinux/$repo/os/$arch
|
||||
#Server = http://packages.oth-regensburg.de/archlinux/$repo/os/$arch
|
||||
#Server = https://packages.oth-regensburg.de/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.pseudoform.org/$repo/os/$arch
|
||||
#Server = https://mirror.pseudoform.org/$repo/os/$arch
|
||||
#Server = https://www.ratenzahlung.de/mirror/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.halifax.rwth-aachen.de/archlinux/$repo/os/$arch
|
||||
#Server = https://ftp.halifax.rwth-aachen.de/archlinux/$repo/os/$arch
|
||||
#Server = http://linux.rz.rub.de/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.selfnet.de/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.spline.inf.fu-berlin.de/mirrors/archlinux/$repo/os/$arch
|
||||
#Server = https://ftp.spline.inf.fu-berlin.de/mirrors/archlinux/$repo/os/$arch
|
||||
#Server = http://archlinux.thaller.ws/$repo/os/$arch
|
||||
#Server = https://archlinux.thaller.ws/$repo/os/$arch
|
||||
#Server = http://archlinux.thelinuxnetworx.rocks/$repo/os/$arch
|
||||
#Server = https://archlinux.thelinuxnetworx.rocks/$repo/os/$arch
|
||||
#Server = http://mirror.thomaskilian.net/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.thomaskilian.net/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.tu-chemnitz.de/pub/linux/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.ubrco.de/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.ubrco.de/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.uni-bayreuth.de/linux/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.uni-hannover.de/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.uni-kl.de/pub/linux/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.united-gameserver.de/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.wrz.de/pub/archlinux/$repo/os/$arch
|
||||
#Server = https://ftp.wrz.de/pub/archlinux/$repo/os/$arch
|
||||
|
||||
## Greece
|
||||
#Server = http://ftp.cc.uoc.gr/mirrors/linux/archlinux/$repo/os/$arch
|
||||
#Server = http://foss.aueb.gr/mirrors/linux/archlinux/$repo/os/$arch
|
||||
#Server = https://foss.aueb.gr/mirrors/linux/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.myaegean.gr/linux/archlinux/$repo/os/$arch
|
||||
Server = http://ftp.ntua.gr/pub/linux/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.otenet.gr/linux/archlinux/$repo/os/$arch
|
||||
|
||||
## Hong Kong
|
||||
#Server = http://mirror-hk.koddos.net/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror-hk.koddos.net/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.kurnode.com/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.kurnode.com/archlinux/$repo/os/$arch
|
||||
#Server = https://arch-mirror.wtako.net/$repo/os/$arch
|
||||
#Server = http://mirror.xtom.com.hk/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.xtom.com.hk/archlinux/$repo/os/$arch
|
||||
|
||||
## Hungary
|
||||
#Server = http://ftp.energia.mta.hu/pub/mirrors/ftp.archlinux.org/$repo/os/$arch
|
||||
#Server = http://archmirror.hbit.sztaki.hu/archlinux/$repo/os/$arch
|
||||
|
||||
## Iceland
|
||||
#Server = http://mirror.system.is/arch/$repo/os/$arch
|
||||
#Server = https://mirror.system.is/arch/$repo/os/$arch
|
||||
|
||||
## India
|
||||
#Server = http://mirror.cse.iitk.ac.in/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.iitm.ac.in/archlinux/$repo/os/$arch
|
||||
#Server = https://ind.mirror.pkgbuild.com/$repo/os/$arch
|
||||
|
||||
## Indonesia
|
||||
#Server = http://mirror.poliwangi.ac.id/archlinux/$repo/os/$arch
|
||||
#Server = http://suro.ubaya.ac.id/archlinux/$repo/os/$arch
|
||||
|
||||
## Iran
|
||||
#Server = http://repo.iut.ac.ir/repo/archlinux/$repo/os/$arch
|
||||
#Server = http://linuxmirrors.ir/pub/archlinux/$repo/os/$arch
|
||||
#Server = https://linuxmirrors.ir/pub/archlinux/$repo/os/$arch
|
||||
#Server = http://repo.sadjad.ac.ir/arch/$repo/os/$arch
|
||||
#Server = https://repo.sadjad.ac.ir/arch/$repo/os/$arch
|
||||
|
||||
## Ireland
|
||||
#Server = http://ftp.heanet.ie/mirrors/ftp.archlinux.org/$repo/os/$arch
|
||||
#Server = https://ftp.heanet.ie/mirrors/ftp.archlinux.org/$repo/os/$arch
|
||||
|
||||
## Israel
|
||||
#Server = http://mirror.isoc.org.il/pub/archlinux/$repo/os/$arch
|
||||
#Server = https://archlinux.mivzakim.net/$repo/os/$arch
|
||||
|
||||
## Italy
|
||||
#Server = https://archlinux.beccacervello.it/archlinux/$repo/os/$arch
|
||||
#Server = http://mi.mirror.garr.it/mirrors/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.prometeus.net/archlinux/$repo/os/$arch
|
||||
|
||||
## Japan
|
||||
#Server = http://mirrors.cat.net/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.cat.net/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.tsukuba.wide.ad.jp/Linux/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.jaist.ac.jp/pub/Linux/ArchLinux/$repo/os/$arch
|
||||
#Server = https://ftp.jaist.ac.jp/pub/Linux/ArchLinux/$repo/os/$arch
|
||||
#Server = https://jpn.mirror.pkgbuild.com/$repo/os/$arch
|
||||
|
||||
## Kazakhstan
|
||||
#Server = http://mirror.ps.kz/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.ps.kz/archlinux/$repo/os/$arch
|
||||
|
||||
## Latvia
|
||||
#Server = http://archlinux.koyanet.lv/archlinux/$repo/os/$arch
|
||||
|
||||
## Lithuania
|
||||
#Server = http://mirrors.atviras.lt/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.atviras.lt/archlinux/$repo/os/$arch
|
||||
|
||||
## Luxembourg
|
||||
#Server = http://archlinux.mirror.root.lu/$repo/os/$arch
|
||||
|
||||
## Macedonia
|
||||
#Server = http://arch.softver.org.mk/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.t-home.mk/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.t-home.mk/archlinux/$repo/os/$arch
|
||||
|
||||
## Mexico
|
||||
#Server = https://mex.mirror.pkgbuild.com/$repo/os/$arch
|
||||
|
||||
## Netherlands
|
||||
#Server = http://mirror.i3d.net/pub/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.i3d.net/pub/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.koddos.net/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.koddos.net/archlinux/$repo/os/$arch
|
||||
#Server = http://archmirror.lavatech.top/$repo/os/$arch
|
||||
#Server = https://archmirror.lavatech.top/$repo/os/$arch
|
||||
#Server = http://mirror.ams1.nl.leaseweb.net/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.ams1.nl.leaseweb.net/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.neostrada.nl/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.neostrada.nl/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.netrouting.net/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.nluug.nl/os/Linux/distr/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.snt.utwente.nl/pub/os/linux/archlinux/$repo/os/$arch
|
||||
#Server = http://archlinux.mirror.wearetriple.com/$repo/os/$arch
|
||||
#Server = https://archlinux.mirror.wearetriple.com/$repo/os/$arch
|
||||
|
||||
## New Caledonia
|
||||
#Server = http://mirror.lagoon.nc/pub/archlinux/$repo/os/$arch
|
||||
#Server = http://archlinux.nautile.nc/archlinux/$repo/os/$arch
|
||||
#Server = https://archlinux.nautile.nc/archlinux/$repo/os/$arch
|
||||
|
||||
## New Zealand
|
||||
#Server = http://mirror.smith.geek.nz/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.smith.geek.nz/archlinux/$repo/os/$arch
|
||||
#Server = https://arch.mirrors.theom.nz/$repo/os/$arch
|
||||
|
||||
## Norway
|
||||
#Server = http://mirror.archlinux.no/$repo/os/$arch
|
||||
#Server = http://archlinux.uib.no/$repo/os/$arch
|
||||
#Server = http://mirror.homelab.no/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.homelab.no/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.neuf.no/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.neuf.no/archlinux/$repo/os/$arch
|
||||
|
||||
## Philippines
|
||||
#Server = http://mirror.rise.ph/archlinux/$repo/os/$arch
|
||||
|
||||
## Poland
|
||||
#Server = http://arch.midov.pl/arch/$repo/os/$arch
|
||||
#Server = http://mirror.onet.pl/pub/mirrors/archlinux/$repo/os/$arch
|
||||
#Server = http://piotrkosoft.net/pub/mirrors/ftp.archlinux.org/$repo/os/$arch
|
||||
#Server = http://ftp.vectranet.pl/archlinux/$repo/os/$arch
|
||||
|
||||
## Portugal
|
||||
#Server = http://glua.ua.pt/pub/archlinux/$repo/os/$arch
|
||||
#Server = https://glua.ua.pt/pub/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.rnl.tecnico.ulisboa.pt/pub/archlinux/$repo/os/$arch
|
||||
#Server = https://ftp.rnl.tecnico.ulisboa.pt/pub/archlinux/$repo/os/$arch
|
||||
|
||||
## Qatar
|
||||
#Server = http://mirror.qnren.qa/archlinux/$repo/os/$arch
|
||||
|
||||
## Romania
|
||||
#Server = http://archlinux.mirrors.linux.ro/$repo/os/$arch
|
||||
#Server = http://mirrors.m247.ro/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.nav.ro/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.nxthost.com/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.nxthost.com/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.pidginhost.com/arch/$repo/os/$arch
|
||||
#Server = https://mirrors.pidginhost.com/arch/$repo/os/$arch
|
||||
|
||||
## Russia
|
||||
#Server = http://mirror.aur.rocks/$repo/os/$arch
|
||||
#Server = https://mirror.aur.rocks/$repo/os/$arch
|
||||
#Server = http://mirror.rol.ru/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.rol.ru/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.truenetwork.ru/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.yandex.ru/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.yandex.ru/archlinux/$repo/os/$arch
|
||||
#Server = http://archlinux.zepto.cloud/$repo/os/$arch
|
||||
|
||||
## Serbia
|
||||
#Server = http://arch.petarmaric.com/$repo/os/$arch
|
||||
#Server = http://mirror.pmf.kg.ac.rs/archlinux/$repo/os/$arch
|
||||
|
||||
## Singapore
|
||||
#Server = http://mirror.0x.sg/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.0x.sg/archlinux/$repo/os/$arch
|
||||
#Server = https://sgp.mirror.pkgbuild.com/$repo/os/$arch
|
||||
#Server = http://mirror.nus.edu.sg/archlinux/$repo/os/$arch
|
||||
|
||||
## Slovakia
|
||||
#Server = http://mirror.lnx.sk/pub/linux/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.lnx.sk/pub/linux/archlinux/$repo/os/$arch
|
||||
#Server = http://tux.rainside.sk/archlinux/$repo/os/$arch
|
||||
|
||||
## Slovenia
|
||||
#Server = http://archimonde.ts.si/archlinux/$repo/os/$arch
|
||||
#Server = https://archimonde.ts.si/archlinux/$repo/os/$arch
|
||||
|
||||
## South Africa
|
||||
#Server = http://za.mirror.archlinux-br.org/$repo/os/$arch
|
||||
#Server = http://mirror.is.co.za/mirror/archlinux.org/$repo/os/$arch
|
||||
#Server = http://mirror.wbs.co.za/archlinux/$repo/os/$arch
|
||||
|
||||
## South Korea
|
||||
#Server = http://ftp.kaist.ac.kr/ArchLinux/$repo/os/$arch
|
||||
#Server = http://ftp.lanet.kr/pub/archlinux/$repo/os/$arch
|
||||
#Server = https://ftp.lanet.kr/pub/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.premi.st/archlinux/$repo/os/$arch
|
||||
|
||||
## Spain
|
||||
#Server = http://osl.ugr.es/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.rediris.es/mirror/archlinux/$repo/os/$arch
|
||||
|
||||
## Sweden
|
||||
#Server = http://ftp.acc.umu.se/mirror/archlinux/$repo/os/$arch
|
||||
#Server = https://ftp.acc.umu.se/mirror/archlinux/$repo/os/$arch
|
||||
#Server = http://archlinux.dynamict.se/$repo/os/$arch
|
||||
#Server = https://archlinux.dynamict.se/$repo/os/$arch
|
||||
#Server = http://ftp.lysator.liu.se/pub/archlinux/$repo/os/$arch
|
||||
#Server = https://ftp.lysator.liu.se/pub/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.myrveln.se/pub/linux/archlinux/$repo/os/$arch
|
||||
#Server = https://ftp.myrveln.se/pub/linux/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.osbeck.com/archlinux/$repo/os/$arch
|
||||
|
||||
## Switzerland
|
||||
#Server = http://pkg.adfinis-sygroup.ch/archlinux/$repo/os/$arch
|
||||
#Server = https://pkg.adfinis-sygroup.ch/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.datacenterlight.ch/mirror/packages/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.puzzle.ch/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.puzzle.ch/archlinux/$repo/os/$arch
|
||||
|
||||
## Taiwan
|
||||
#Server = http://archlinux.cs.nctu.edu.tw/$repo/os/$arch
|
||||
#Server = http://shadow.ind.ntou.edu.tw/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.tku.edu.tw/Linux/ArchLinux/$repo/os/$arch
|
||||
#Server = http://ftp.yzu.edu.tw/Linux/archlinux/$repo/os/$arch
|
||||
|
||||
## Thailand
|
||||
#Server = http://mirror.kku.ac.th/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.kku.ac.th/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror2.totbb.net/archlinux/$repo/os/$arch
|
||||
|
||||
## Turkey
|
||||
#Server = http://ftp.linux.org.tr/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.veriteknik.net.tr/archlinux/$repo/os/$arch
|
||||
|
||||
## Ukraine
|
||||
#Server = http://archlinux.ip-connect.vn.ua/$repo/os/$arch
|
||||
#Server = https://archlinux.ip-connect.vn.ua/$repo/os/$arch
|
||||
#Server = http://mirrors.nix.org.ua/linux/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.nix.org.ua/linux/archlinux/$repo/os/$arch
|
||||
|
||||
## United Kingdom
|
||||
#Server = http://mirror.bytemark.co.uk/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.bytemark.co.uk/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.manchester.m247.com/arch-linux/$repo/os/$arch
|
||||
#Server = http://www.mirrorservice.org/sites/ftp.archlinux.org/$repo/os/$arch
|
||||
#Server = https://www.mirrorservice.org/sites/ftp.archlinux.org/$repo/os/$arch
|
||||
#Server = http://arch.serverspace.co.uk/arch/$repo/os/$arch
|
||||
#Server = http://archlinux.mirrors.uk2.net/$repo/os/$arch
|
||||
#Server = http://mirrors.ukfast.co.uk/sites/archlinux.org/$repo/os/$arch
|
||||
#Server = https://mirrors.ukfast.co.uk/sites/archlinux.org/$repo/os/$arch
|
||||
|
||||
## United States
|
||||
#Server = http://mirrors.acm.wpi.edu/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.advancedhosters.com/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.aggregate.org/archlinux/$repo/os/$arch
|
||||
#Server = http://ca.us.mirror.archlinux-br.org/$repo/os/$arch
|
||||
#Server = http://il.us.mirror.archlinux-br.org/$repo/os/$arch
|
||||
#Server = http://archlinux.surlyjake.com/archlinux/$repo/os/$arch
|
||||
#Server = https://archlinux.surlyjake.com/archlinux/$repo/os/$arch
|
||||
#Server = http://arlm.tyzoid.com/$repo/os/$arch
|
||||
#Server = https://arlm.tyzoid.com/$repo/os/$arch
|
||||
#Server = http://mirror.as65535.net/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.cat.pdx.edu/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.cc.columbia.edu/pub/linux/archlinux/$repo/os/$arch
|
||||
#Server = http://centos.mbni.med.umich.edu/archlinux/$repo/os/$arch
|
||||
#Server = http://arch.mirror.constant.com/$repo/os/$arch
|
||||
#Server = https://arch.mirror.constant.com/$repo/os/$arch
|
||||
#Server = http://mirror.cs.pitt.edu/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.cs.vt.edu/pub/ArchLinux/$repo/os/$arch
|
||||
#Server = http://distro.ibiblio.org/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.epiphyte.network/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.epiphyte.network/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.es.its.nyu.edu/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.gigenet.com/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.grig.io/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.grig.io/archlinux/$repo/os/$arch
|
||||
#Server = http://www.gtlib.gatech.edu/pub/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.hackingand.coffee/arch/$repo/os/$arch
|
||||
#Server = https://mirror.hackingand.coffee/arch/$repo/os/$arch
|
||||
#Server = http://mirrors.kernel.org/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.kernel.org/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.dal10.us.leaseweb.net/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.sfo12.us.leaseweb.net/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.wdc1.us.leaseweb.net/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.dal10.us.leaseweb.net/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.sfo12.us.leaseweb.net/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.wdc1.us.leaseweb.net/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.liquidweb.com/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.lty.me/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.lty.me/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.lug.mtu.edu/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.lug.mtu.edu/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.math.princeton.edu/pub/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.metrocast.net/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.kaminski.io/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.kaminski.io/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.ocf.berkeley.edu/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.ocf.berkeley.edu/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.osuosl.org/pub/archlinux/$repo/os/$arch
|
||||
#Server = http://arch.mirrors.pair.com/$repo/os/$arch
|
||||
#Server = http://mirrors.rit.edu/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.rit.edu/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.rutgers.edu/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.rutgers.edu/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.sonic.net/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.sonic.net/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.sorengard.com/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.sorengard.com/archlinux/$repo/os/$arch
|
||||
#Server = http://arch.mirror.square-r00t.net/$repo/os/$arch
|
||||
#Server = https://arch.mirror.square-r00t.net/$repo/os/$arch
|
||||
#Server = http://mirror.stephen304.com/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.stephen304.com/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.umd.edu/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.vtti.vt.edu/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.xmission.com/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.xtom.com/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.xtom.com/archlinux/$repo/os/$arch
|
||||
|
||||
## Vietnam
|
||||
#Server = http://f.archlinuxvn.org/archlinux/$repo/os/$arch
|
||||
|
@@ -1,8 +0,0 @@
|
||||
# to force a certain look'n feel
|
||||
|
||||
#setenv SAL_USE_VCLPLUGIN gen
|
||||
#setenv SAL_USE_VCLPLUGIN gtk3_kde5
|
||||
#setenv SAL_USE_VCLPLUGIN kde5
|
||||
#setenv SAL_USE_VCLPLUGIN qt5
|
||||
setenv SAL_USE_VCLPLUGIN gtk
|
||||
#setenv SAL_USE_VCLPLUGIN gtk3
|
@@ -1,8 +0,0 @@
|
||||
# to force a certain look'n feel
|
||||
|
||||
#export SAL_USE_VCLPLUGIN=gen
|
||||
#export SAL_USE_VCLPLUGIN=gtk3_kde5
|
||||
#export SAL_USE_VCLPLUGIN=kde5
|
||||
#export SAL_USE_VCLPLUGIN=qt5
|
||||
export SAL_USE_VCLPLUGIN=gtk
|
||||
#export SAL_USE_VCLPLUGIN=gtk3
|
@@ -1 +0,0 @@
|
||||
../../live-overlay/etc/rc.conf
|
@@ -1,9 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
neofetch >| /etc/issue
|
||||
|
||||
# Enable kernel's Magic SysRq
|
||||
sysctl -q kernel.sysrq=1 &
|
||||
|
||||
# Remove possible stale lockfile
|
||||
rm -f /var/lib/pacman/db.lck &
|
@@ -1 +0,0 @@
|
||||
../../live-overlay/etc/runlevels
|
@@ -1,250 +0,0 @@
|
||||
PrefsVersion=1.1.1r1
|
||||
SelectionFormat=hh:mm:ss + milliseconds
|
||||
FrequencySelectionFormatName=Hz
|
||||
BandwidthSelectionFormatName=octaves
|
||||
[Version]
|
||||
Major=2
|
||||
Minor=3
|
||||
Micro=1
|
||||
[Directories]
|
||||
[AudioIO]
|
||||
RecordingDevice=default
|
||||
Host=ALSA
|
||||
PlaybackDevice=default
|
||||
RecordingSourceIndex=0
|
||||
RecordingSource=Line:0
|
||||
RecordChannels=2
|
||||
Duplex=1
|
||||
SWPlaythrough=0
|
||||
SoundActivatedRecord=0
|
||||
SilenceLevel=-50
|
||||
PreRoll=5
|
||||
Crossfade=10
|
||||
EffectsPreviewLen=6
|
||||
CutPreviewBeforeLen=2
|
||||
CutPreviewAfterLen=1
|
||||
SeekShortPeriod=1
|
||||
SeekLongPeriod=15
|
||||
VariSpeedPlay=1
|
||||
Microfades=0
|
||||
UnpinnedScrubbing=1
|
||||
LatencyDuration=100
|
||||
LatencyCorrection=-130
|
||||
[SamplingRate]
|
||||
DefaultProjectSampleRate=44100
|
||||
DefaultProjectSampleFormatChoice=Format32BitFloat
|
||||
[FFmpeg]
|
||||
Enabled=1
|
||||
[Window]
|
||||
X=86
|
||||
Y=0
|
||||
Width=940
|
||||
Height=679
|
||||
Maximized=0
|
||||
Normal_X=86
|
||||
Normal_Y=0
|
||||
Normal_Width=940
|
||||
Normal_Height=679
|
||||
Iconized=0
|
||||
[GUI]
|
||||
EmptyCanBeDirty=1
|
||||
SelectAllOnNone=0
|
||||
EnableCutLines=0
|
||||
AdjustSelectionEdges=1
|
||||
EditClipCanMove=1
|
||||
CircularTrackNavigation=0
|
||||
TypeToCreateLabel=1
|
||||
DialogForNameNewLabel=0
|
||||
ScrollBeyondZero=0
|
||||
VerticalZooming=0
|
||||
Solo=Simple
|
||||
TracksFitVerticallyZoomed=0
|
||||
ShowTrackNameInWaveform=0
|
||||
CollapseToHalfWave=0
|
||||
AutoScroll=1
|
||||
DefaultViewModeChoice=Waveform
|
||||
SampleViewChoice=StemPlot
|
||||
ZoomPreset1Choice=ZoomDefault
|
||||
ZoomPreset2Choice=FourPixelsPerSample
|
||||
Help=Local
|
||||
Theme=dark
|
||||
EnvdBRange=60
|
||||
ShowSplashScreen=1
|
||||
ShowExtraMenus=0
|
||||
BeepOnCompletion=0
|
||||
RetainLabels=0
|
||||
BlendThemes=1
|
||||
RtlWorkaround=1
|
||||
PreferNewTrackRecord=0
|
||||
[GUI/ToolBars]
|
||||
[GUI/ToolBars/Control]
|
||||
DockV2=1
|
||||
Dock=1
|
||||
Path=0
|
||||
Show=1
|
||||
X=-1
|
||||
Y=-1
|
||||
W=327
|
||||
H=55
|
||||
[GUI/ToolBars/Tools]
|
||||
DockV2=1
|
||||
Dock=1
|
||||
Path=0,0
|
||||
Show=1
|
||||
X=-1
|
||||
Y=-1
|
||||
W=94
|
||||
H=55
|
||||
[GUI/ToolBars/CombinedMeter]
|
||||
DockV2=1
|
||||
Dock=0
|
||||
Show=0
|
||||
X=-1
|
||||
Y=-1
|
||||
W=338
|
||||
H=27
|
||||
[GUI/ToolBars/RecordMeter]
|
||||
DockV2=1
|
||||
Dock=1
|
||||
Path=0,0,0
|
||||
Show=1
|
||||
X=-1
|
||||
Y=-1
|
||||
W=460
|
||||
H=27
|
||||
[GUI/ToolBars/PlayMeter]
|
||||
DockV2=1
|
||||
Dock=1
|
||||
Path=0,0,0,0
|
||||
Show=1
|
||||
X=-1
|
||||
Y=-1
|
||||
W=460
|
||||
H=27
|
||||
[GUI/ToolBars/Mixer]
|
||||
DockV2=1
|
||||
Dock=1
|
||||
Path=0,0,0,0,0
|
||||
Show=1
|
||||
X=-1
|
||||
Y=-1
|
||||
W=327
|
||||
H=27
|
||||
[GUI/ToolBars/Edit]
|
||||
DockV2=1
|
||||
Dock=1
|
||||
Path=0,0,0,0,0,0
|
||||
Show=1
|
||||
X=-1
|
||||
Y=-1
|
||||
W=363
|
||||
H=27
|
||||
[GUI/ToolBars/Transcription]
|
||||
DockV2=1
|
||||
Dock=1
|
||||
Path=0,0,0,0,0,0,0
|
||||
Show=1
|
||||
X=-1
|
||||
Y=-1
|
||||
W=191
|
||||
H=27
|
||||
[GUI/ToolBars/Scrub]
|
||||
DockV2=1
|
||||
Dock=0
|
||||
Show=0
|
||||
X=-1
|
||||
Y=-1
|
||||
W=92
|
||||
H=27
|
||||
[GUI/ToolBars/Device]
|
||||
DockV2=1
|
||||
Dock=1
|
||||
Path=1
|
||||
Show=1
|
||||
X=-1
|
||||
Y=-1
|
||||
W=883
|
||||
H=27
|
||||
[GUI/ToolBars/Selection]
|
||||
DockV2=2
|
||||
Dock=2
|
||||
Path=0
|
||||
Show=1
|
||||
X=-1
|
||||
Y=-1
|
||||
W=708
|
||||
H=55
|
||||
[GUI/ToolBars/SpectralSelection]
|
||||
DockV2=2
|
||||
Dock=0
|
||||
Show=0
|
||||
X=-1
|
||||
Y=-1
|
||||
W=241
|
||||
H=55
|
||||
[GUI/TrackNames]
|
||||
RecordingNameCustom=0
|
||||
RecodingTrackName=Recorded_Audio
|
||||
TrackNumber=0
|
||||
DateStamp=0
|
||||
TimeStamp=0
|
||||
[Prefs]
|
||||
Width=781
|
||||
Height=480
|
||||
PrefsCategory=5
|
||||
[Prefs/KeyConfig]
|
||||
ViewBy=tree
|
||||
[Ladspa]
|
||||
Enable=1
|
||||
[LV2]
|
||||
Enable=1
|
||||
[Nyquist]
|
||||
Enable=1
|
||||
[VAMP]
|
||||
Enable=1
|
||||
[VST]
|
||||
Enable=1
|
||||
[Effects]
|
||||
GroupBy=sortby:name
|
||||
MaxPerGroup=15
|
||||
[Warnings]
|
||||
FirstProjectSave=1
|
||||
DiskSpaceWarning=1
|
||||
MixMono=1
|
||||
MixStereo=1
|
||||
MixUnknownChannels=1
|
||||
CopyOrEditUncompressedDataAsk=1
|
||||
DropoutDetected=1
|
||||
[FileFormats]
|
||||
SaveProjectWithDependencies=ask
|
||||
CopyOrEditUncompressedData=copy
|
||||
ExportDownMix=1
|
||||
AllegroStyle=1
|
||||
[ExtendedImport]
|
||||
OverrideExtendedImportByOpenFileDialogChoice=1
|
||||
[AudioFiles]
|
||||
NormalizeOnLoad=0
|
||||
ShowId3Dialog=1
|
||||
[Spectrum]
|
||||
MinFreq=0
|
||||
MaxFreq=8000
|
||||
Range=80
|
||||
Gain=20
|
||||
FrequencyGain=0
|
||||
FFTSize=1024
|
||||
ZeroPaddingFactor=1
|
||||
WindowType=3
|
||||
Grayscale=0
|
||||
ScaleType=0
|
||||
EnableSpectralSelection=1
|
||||
Algorithm=0
|
||||
[Locale]
|
||||
Language=
|
||||
[Quality]
|
||||
LibsoxrSampleRateConverterChoice=MediumQuality
|
||||
DitherAlgorithmChoice=None
|
||||
LibsoxrHQSampleRateConverterChoice=BestQuality
|
||||
HQDitherAlgorithmChoice=Shaped
|
||||
[MidiIO]
|
||||
Host=
|
||||
SynthLatency=5
|
@@ -1,59 +0,0 @@
|
||||
# created by KDE Plasma, Fri Apr 12 10:22:06 2019
|
||||
#
|
||||
# If you do not want Plasma to override your GTK settings, select
|
||||
# Colors in the System Settings and disable the checkbox
|
||||
# "Apply colors to non-Qt applications"
|
||||
#
|
||||
#
|
||||
|
||||
gtk-alternative-button-order = 1
|
||||
|
||||
style "default"
|
||||
{
|
||||
bg[NORMAL] = { 0.102, 0.102, 0.102 }
|
||||
bg[SELECTED] = { 0.082, 0.325, 0.620 }
|
||||
bg[INSENSITIVE] = { 0.102, 0.102, 0.102 }
|
||||
bg[ACTIVE] = { 0.090, 0.090, 0.090 }
|
||||
bg[PRELIGHT] = { 0.102, 0.102, 0.102 }
|
||||
|
||||
base[NORMAL] = { 0.169, 0.169, 0.169 }
|
||||
base[SELECTED] = { 0.082, 0.325, 0.620 }
|
||||
base[INSENSITIVE] = { 0.102, 0.102, 0.102 }
|
||||
base[ACTIVE] = { 0.082, 0.325, 0.620 }
|
||||
base[PRELIGHT] = { 0.082, 0.325, 0.620 }
|
||||
|
||||
text[NORMAL] = { 1.000, 1.000, 1.000 }
|
||||
text[SELECTED] = { 1.000, 1.000, 1.000 }
|
||||
text[INSENSITIVE] = { 0.090, 0.090, 0.090 }
|
||||
text[ACTIVE] = { 1.000, 1.000, 1.000 }
|
||||
text[PRELIGHT] = { 1.000, 1.000, 1.000 }
|
||||
|
||||
fg[NORMAL] = { 1.000, 1.000, 1.000 }
|
||||
fg[SELECTED] = { 1.000, 1.000, 1.000 }
|
||||
fg[INSENSITIVE] = { 0.090, 0.090, 0.090 }
|
||||
fg[ACTIVE] = { 1.000, 1.000, 1.000 }
|
||||
fg[PRELIGHT] = { 1.000, 1.000, 1.000 }
|
||||
}
|
||||
|
||||
class "*" style "default"
|
||||
|
||||
style "ToolTip"
|
||||
{
|
||||
bg[NORMAL] = { 0.000, 0.000, 0.000 }
|
||||
base[NORMAL] = { 0.000, 0.000, 0.000 }
|
||||
text[NORMAL] = { 1.000, 1.000, 1.000 }
|
||||
fg[NORMAL] = { 1.000, 1.000, 1.000 }
|
||||
}
|
||||
|
||||
widget "gtk-tooltip" style "ToolTip"
|
||||
widget "gtk-tooltips" style "ToolTip"
|
||||
widget "gtk-tooltip*" style "ToolTip"
|
||||
|
||||
style "MenuItem"
|
||||
{
|
||||
bg[PRELIGHT] = { 0.082, 0.325, 0.620 }
|
||||
fg[PRELIGHT] = { 1.000, 1.000, 1.000 }
|
||||
}
|
||||
|
||||
class "*MenuItem" style "MenuItem"
|
||||
|
@@ -1,46 +0,0 @@
|
||||
[Qt]
|
||||
GUIEffects=none
|
||||
KDE\contrast=4
|
||||
KWinPalette\activeBackground=#2d2d2d
|
||||
KWinPalette\activeBlend=#2d2d2d
|
||||
KWinPalette\activeForeground=#ffffff
|
||||
KWinPalette\activeTitleBtnBg=#1a1a1a
|
||||
KWinPalette\frame=#1a1a1a
|
||||
KWinPalette\inactiveBackground=#353535
|
||||
KWinPalette\inactiveBlend=#353535
|
||||
KWinPalette\inactiveForeground=#9b9b9b
|
||||
KWinPalette\inactiveFrame=#1c1c1c
|
||||
KWinPalette\inactiveTitleBtnBg=#1c1c1c
|
||||
Palette\active=#ffffff, #353535, #3d3d3d, #cbc7c4, #2c2d2e, #b8b5b2, #ffffff, #ffffff, #ffffff, #2b2b2b, #1a1a1a, #28292b, #15539e, #ffffff, #2eb8e6, #ff6666, #323232, #000000, #ffffdc, #f3f3f5
|
||||
Palette\disabled=#ffffff, #353535, #3d3d3d, #cbc7c4, #2c2d2e, #b8b5b2, #ffffff, #ffffff, #ffffff, #2b2b2b, #1a1a1a, #28292b, #15539e, #ffffff, #2eb8e6, #ff6666, #323232, #000000, #ffffdc, #f3f3f5
|
||||
Palette\inactive=#ffffff, #353535, #3d3d3d, #cbc7c4, #2c2d2e, #b8b5b2, #ffffff, #ffffff, #ffffff, #2b2b2b, #1a1a1a, #28292b, #15539e, #ffffff, #2eb8e6, #ff6666, #323232, #000000, #ffffdc, #f3f3f5
|
||||
cursorFlashTime=1000
|
||||
doubleClickInterval=400
|
||||
embedFonts=true
|
||||
font="Fira Sans,11,-1,5,25,0,0,0,0,0"
|
||||
globalStrut\height=0
|
||||
globalStrut\width=0
|
||||
resolveSymlinks=false
|
||||
style=GTK+
|
||||
useRtlExtensions=false
|
||||
videomode=Auto
|
||||
wheelScrollLines=3
|
||||
|
||||
[qt]
|
||||
5.12\libraryPath=
|
||||
GUIEffects=none
|
||||
KDE\contrast=0
|
||||
KWinPalette\activeBackground=#2d2d2d
|
||||
KWinPalette\activeBlend=#2d2d2d
|
||||
KWinPalette\activeForeground=#ffffff
|
||||
KWinPalette\activeTitleBtnBg=#212121
|
||||
KWinPalette\frame=#212121
|
||||
KWinPalette\inactiveBackground=#353535
|
||||
KWinPalette\inactiveBlend=#353535
|
||||
KWinPalette\inactiveForeground=#9b9b9b
|
||||
KWinPalette\inactiveFrame=#232323
|
||||
KWinPalette\inactiveTitleBtnBg=#232323
|
||||
Palette\active=#dadada, #353535, #303030, #292929, #171717, #1e1e1e, #dadada, #ffffff, #dadada, #252525, #212121, #101010, #0c3867, #dadada, #2596bc, #b64949, #2a2a2a, #000000, #1a1a1a, #dadada, #dadada
|
||||
Palette\disabled=#626262, #353535, #303030, #292929, #171717, #1e1e1e, #646464, #ffffff, #6f6f6f, #252525, #212121, #101010, #212121, #626262, #254c5a, #583131, #2a2a2a, #000000, #1a1a1a, #dadada, #dadada
|
||||
Palette\inactive=#d6d6d6, #363636, #313131, #2a2a2a, #181818, #1f1f1f, #d6d6d6, #ffffff, #d7d7d7, #272726, #232323, #111111, #0f2d4d, #d3d7db, #3194b6, #ae4e4e, #2b2b2b, #000000, #1a1a1a, #dadada, #dadada
|
||||
font="Fira Sans,11,-1,5,50,0,0,0,0,0,Regular"
|
@@ -1,39 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<VeraCrypt>
|
||||
<configuration>
|
||||
<config key="BackgroundTaskEnabled">1</config>
|
||||
<config key="BackgroundTaskMenuDismountItemsEnabled">1</config>
|
||||
<config key="BackgroundTaskMenuMountItemsEnabled">1</config>
|
||||
<config key="BackgroundTaskMenuOpenItemsEnabled">1</config>
|
||||
<config key="BeepAfterHotkeyMountDismount">0</config>
|
||||
<config key="CachePasswords">0</config>
|
||||
<config key="CloseBackgroundTaskOnNoVolumes">1</config>
|
||||
<config key="CloseExplorerWindowsOnDismount">1</config>
|
||||
<config key="CloseSecurityTokenSessionsAfterMount">0</config>
|
||||
<config key="DisableKernelEncryptionModeWarning">0</config>
|
||||
<config key="DismountOnInactivity">0</config>
|
||||
<config key="DismountOnLogOff">1</config>
|
||||
<config key="DismountOnPowerSaving">0</config>
|
||||
<config key="DismountOnScreenSaver">0</config>
|
||||
<config key="DisplayMessageAfterHotkeyDismount">0</config>
|
||||
<config key="BackgroundTaskEnabled">1</config>
|
||||
<config key="ForceAutoDismount">1</config>
|
||||
<config key="LastSelectedSlotNumber">0</config>
|
||||
<config key="MaxVolumeIdleTime">60</config>
|
||||
<config key="MountDevicesOnLogon">0</config>
|
||||
<config key="MountFavoritesOnLogon">0</config>
|
||||
<config key="MountVolumesReadOnly">0</config>
|
||||
<config key="MountVolumesRemovable">0</config>
|
||||
<config key="NoHardwareCrypto">0</config>
|
||||
<config key="NoKernelCrypto">0</config>
|
||||
<config key="OpenExplorerWindowAfterMount">0</config>
|
||||
<config key="PreserveTimestamps">1</config>
|
||||
<config key="SaveHistory">0</config>
|
||||
<config key="StartOnLogon">0</config>
|
||||
<config key="UseKeyfiles">0</config>
|
||||
<config key="WipeCacheOnAutoDismount">1</config>
|
||||
<config key="WipeCacheOnClose">0</config>
|
||||
<config key="DefaultTrueCryptMode">0</config>
|
||||
<config key="DefaultPRF">autodetection</config>
|
||||
</configuration>
|
||||
</VeraCrypt>
|
@@ -1,25 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<toolbars version="1.0">
|
||||
<toolbar name="DefaultToolBar" hidden="false" editable="true">
|
||||
<toolitem name="ViewSidebar"/>
|
||||
<toolitem name="GoPreviousPage"/>
|
||||
<toolitem name="GoNextPage"/>
|
||||
<toolitem name="GoFirstPage"/>
|
||||
<toolitem name="GoLastPage"/>
|
||||
<separator/>
|
||||
<toolitem name="PageSelector"/>
|
||||
<toolitem name="Navigation"/>
|
||||
<toolitem name="ViewContinuous"/>
|
||||
<toolitem name="ViewDual"/>
|
||||
<toolitem name="ViewFitWidth"/>
|
||||
<toolitem name="ViewFitPage"/>
|
||||
<toolitem name="ViewInvertedColors"/>
|
||||
<separator/>
|
||||
<toolitem name="ViewZoom"/>
|
||||
<toolitem name="ViewZoomIn"/>
|
||||
<toolitem name="ViewZoomOut"/>
|
||||
<toolitem name="EditRotateLeft"/>
|
||||
<toolitem name="EditRotateRight"/>
|
||||
<toolitem name="ViewFullscreen"/>
|
||||
</toolbar>
|
||||
</toolbars>
|
@@ -1,8 +0,0 @@
|
||||
[Desktop Entry]
|
||||
Encoding=UTF-8
|
||||
Version=1.0
|
||||
Name=Ctrl Alt Backspace
|
||||
Exec=setxkbmap -option terminate:ctrl_alt_bksp
|
||||
Terminal=false
|
||||
Type=Application
|
||||
StartupNotify=false
|
@@ -1,6 +0,0 @@
|
||||
[Desktop Entry]
|
||||
Exec=sh -c "~/.config/autostart/hide-other-icons.sh"
|
||||
Name=Hide desktop icons of other DEs
|
||||
StartupNotify=false
|
||||
Terminal=false
|
||||
Type=Application
|
@@ -1,34 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
# Create localized well-known user dirs before trying to hide irrelevant icons.
|
||||
# Not a separate script, to avoid running into race conditions.
|
||||
|
||||
desktop="$HOME/Desktop"
|
||||
i18n_desktop=$(xdg-user-dir DESKTOP)
|
||||
cd "${i18n_desktop}"
|
||||
|
||||
if [ -f $HOME/.first-login ]; then
|
||||
xdg-user-dirs-update --force
|
||||
rm -f $HOME/.first-login &
|
||||
|
||||
# Move stuff out of standard C locale Desktop and delete it
|
||||
if [ "${i18n_desktop}" != "$desktop" ]; then
|
||||
mv -f $desktop/.hidden* .
|
||||
mv -f $desktop/* .
|
||||
rmdir "$desktop" &
|
||||
fi
|
||||
fi
|
||||
|
||||
# Currently LXDE (i.e. pcmanfm) doesn't seem to support .hidden
|
||||
case $XDG_CURRENT_DESKTOP in
|
||||
KDE) [[ -f .hidden-kde ]] && ln -sf .hidden-kde .hidden
|
||||
;;
|
||||
MATE) [[ -f .hidden-mate ]] && ln -sf .hidden-mate .hidden
|
||||
;;
|
||||
LXDE) [[ -f .hidden-lxde ]] && ln -sf .hidden-lxde .hidden
|
||||
;;
|
||||
LXQt) [[ -f .hidden-lxqt ]] && ln -sf .hidden-lxqt .hidden
|
||||
;;
|
||||
*) false
|
||||
;;
|
||||
esac
|
@@ -1,6 +0,0 @@
|
||||
[Desktop Entry]
|
||||
Exec=sh -c "~/.config/autostart/homesymlinks.sh"
|
||||
Name=Fix installer symlinks
|
||||
StartupNotify=false
|
||||
Terminal=false
|
||||
Type=Application
|
@@ -1,6 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
cd $HOME
|
||||
ln -sf .face .face.icon &
|
||||
ln -sf .gtkrc-2.0 .gtkrc-2.0-kde4 &
|
||||
rm -f .config/autostart/homesymlinks.* &
|
@@ -1,8 +0,0 @@
|
||||
[Basic Settings]
|
||||
Indexing-Enabled=false
|
||||
|
||||
[General]
|
||||
dbVersion=2
|
||||
exclude filters=.svn,cmake_install.cmake,CVS,CTestTestfile.cmake,*.init,*.csproj,*.faa,*.omf,*.swap,*.m4,*.class,*.map,.npm,*.pyo,.obj,*.fasta,*.ini,.yarn,*.orig,*.part,*.lo,*.fq,core-dumps,*.gmo,*.fna,*.rej,*.nvram,_darcs,.moc,ui_*.h,*.rcore,*.gbff,.yarn-cache,node_modules,.uic,*.gb,lost+found,qrc_*.cpp,lzo,*.qmlc,CMakeFiles,*.o,*.pc,*.pyc,conftest,*.db,.git,*~,*.qrc,.bzr,CMakeTmp,*.a,*.po,__pycache__,autom4te,*.so,*.loT,*.fastq,CMakeTmpQmake,node_packages,Makefile.am,po,.pch,moc_*.cpp,litmain.sh,*.moc,config.status,.hg,.histfile.*,libtool,*.vm*,confstat,confdefs.h,.xsession-errors*,*.jsc,nbproject,CMakeCache.txt,*.la,*.tmp,*.aux,*.elc
|
||||
exclude filters version=4
|
||||
first run=false
|
@@ -1,134 +0,0 @@
|
||||
; caja GtkAccelMap rc-file -*- scheme -*-
|
||||
; this file is an automated accelerator map dump
|
||||
;
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/New Empty File" "")
|
||||
; (gtk_accel_path "<Actions>/SpatialActions/Close All Folders" "<Primary>q")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/File" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Self Format Volume" "")
|
||||
; (gtk_accel_path "<Actions>/SpatialActions/Go to Location" "<Primary>l")
|
||||
; (gtk_accel_path "<Actions>/IconViewActions/Sort by Size" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/OpenAlternate" "<Primary><Shift>w")
|
||||
; (gtk_accel_path "<Actions>/DesktopViewActions/Empty Trash Conditional" "")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/Zoom In" "<Primary>plus")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Cut" "<Primary>x")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/Go to Computer" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/RenameSelectAll" "<Shift>F2")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Redo" "<Primary>y")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Create Link" "<Primary>m")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/Preferences" "")
|
||||
; (gtk_accel_path "<Actions>/IconViewActions/Reversed Order" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/OpenAccel" "<Alt>Down")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Delete" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/No Templates" "")
|
||||
; (gtk_accel_path "<Actions>/IconViewActions/Unstretch" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/LocationDelete" "")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/Stop" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/New Documents" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/LocationCopy" "")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/Close" "<Primary>w")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Connect To Server Link" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Location Eject Volume" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Stop Volume" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/LocationRestoreFromTrash" "")
|
||||
; (gtk_accel_path "<Actions>/DesktopViewActions/New Launcher Desktop" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Poll" "")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/Edit" "")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/Zoom Out" "<Primary>minus")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/OtherApplication2" "")
|
||||
; (gtk_accel_path "<Actions>/IconViewActions/Keep Aligned" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/New Launcher" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Open With" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Move to next pane" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Location Unmount Volume" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/OpenInNewTab" "<Primary><Shift>o")
|
||||
; (gtk_accel_path "<Actions>/IconViewActions/Sort by Name" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Select Pattern" "<Primary>s")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/Go to Network" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/OtherApplication1" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Format Volume" "")
|
||||
; (gtk_accel_path "<Actions>/SpatialActions/Search" "<Primary>f")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Location Start Volume" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Properties" "<Alt>Return")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/Home" "<Alt>Home")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/Go to Trash" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Location Poll" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Location Stop Volume" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Open Scripts Folder" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Mount Volume" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Copy to Home" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Move to Desktop" "")
|
||||
; (gtk_accel_path "<Actions>/SpatialActions/Close Parent Folders" "<Primary><Shift>w")
|
||||
; (gtk_accel_path "<Actions>/ExtensionsMenuGroup/CajaOpenTerminal::open_terminal" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Reset to Defaults" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/LocationOpenInNewTab" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/CopyToMenu" "")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/Backgrounds and Emblems" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Open" "<Primary>o")
|
||||
; (gtk_accel_path "<Actions>/IconViewActions/Clean Up" "")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/View" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Save Search" "")
|
||||
; (gtk_accel_path "<Actions>/IconViewActions/Sort by Modification Date" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Select All" "<Primary>a")
|
||||
; (gtk_accel_path "<Actions>/IconViewActions/Sort by Emblems" "")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/Caja Manual" "F1")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/LocationPasteFilesInto" "")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/About Caja" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Eject Volume" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Unmount Volume" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Duplicate" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/LocationTrash" "")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/Help" "")
|
||||
; (gtk_accel_path "<Actions>/IconViewActions/Stretch" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Copy to Desktop" "")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/Connect to Server" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/LocationProperties" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Rename" "F2")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Empty Trash" "")
|
||||
; (gtk_accel_path "<Actions>/SpatialActions/Places" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Self Eject Volume" "")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/Go to Templates" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Save Search As" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Location Format Volume" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/LocationOpenFolderWindow" "")
|
||||
; (gtk_accel_path "<Actions>/SpatialActions/Edit Bookmarks" "<Primary>b")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/ZoomOutAccel" "<Primary>KP_Subtract")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/ZoomInAccel2" "<Primary>KP_Add")
|
||||
; (gtk_accel_path "<Actions>/IconViewActions/Manual Layout" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Start Volume" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Undo" "<Primary>z")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Self Start Volume" "")
|
||||
; (gtk_accel_path "<Actions>/IconViewActions/Arrange Items" "")
|
||||
; (gtk_accel_path "<Caja-Window>/view_as_3" "<Primary>3")
|
||||
; (gtk_accel_path "<Actions>/IconViewActions/Sort by Trash Time" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/New Folder" "<Primary><Shift>n")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Self Poll" "")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/Reload" "<Primary>r")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Restore From Trash" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/MoveToMenu" "")
|
||||
; (gtk_accel_path "<Caja-Window>/view_as_4" "<Primary>4")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/Zoom Normal" "<Primary>0")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/OpenCloseParent" "<Shift><Alt>Down")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/Up" "<Alt>Up")
|
||||
; (gtk_accel_path "<Actions>/IconViewActions/Tighter Layout" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/OpenFolderWindow" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Copy to next pane" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Self Stop Volume" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Move to Home" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Paste Files Into" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Self Unmount Volume" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Self Mount Volume" "")
|
||||
; (gtk_accel_path "<Actions>/SpatialActions/Add Bookmark" "<Primary>d")
|
||||
; (gtk_accel_path "<Actions>/DesktopViewActions/Change Background" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/PropertiesAccel" "<Primary>i")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Paste" "<Primary>v")
|
||||
; (gtk_accel_path "<Caja-Window>/view_as_2" "<Primary>2")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/Show Hidden Files" "<Primary>h")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Location Mount Volume" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/LocationCut" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Copy" "<Primary>c")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/LocationOpenAlternate" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Trash" "")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/ZoomInAccel" "<Primary>equal")
|
||||
; (gtk_accel_path "<Actions>/IconViewActions/Sort by Type" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Invert Selection" "<Primary><Shift>i")
|
||||
; (gtk_accel_path "<Caja-Window>/view_as_1" "<Primary>1")
|
@@ -1,18 +0,0 @@
|
||||
[directory]
|
||||
caja-icon-view-keep-aligned=true
|
||||
caja-icon-view-layout-timestamp=1556792677
|
||||
|
||||
[trash]
|
||||
caja-icon-position=220,222
|
||||
icon-scale=1
|
||||
caja-icon-position-timestamp=1556792677
|
||||
|
||||
[computer]
|
||||
caja-icon-position=64,22
|
||||
icon-scale=1
|
||||
caja-icon-position-timestamp=1556792677
|
||||
|
||||
[home]
|
||||
caja-icon-position=64,102
|
||||
icon-scale=1
|
||||
caja-icon-position-timestamp=1554494174
|
@@ -1,48 +0,0 @@
|
||||
[CheckBoxes]
|
||||
advanced=false
|
||||
devices_off=false
|
||||
enable_daemon_notifications=false
|
||||
enable_interface_tooltips=true
|
||||
enable_systemtray_notications=true
|
||||
enable_systemtray_tooltips=true
|
||||
hide_tray_icon=false
|
||||
reset_counters=false
|
||||
retain_settings=true
|
||||
retain_state=false
|
||||
retry_failed=true
|
||||
run_on_startup=true
|
||||
services_less=false
|
||||
technologies_less=false
|
||||
|
||||
[ExternalPrograms]
|
||||
run_after_connect=
|
||||
|
||||
[IconManager]
|
||||
last_installed_icon_def_file=1ec7823d299e7b8c5703a6d75e40695b
|
||||
|
||||
[LineEdits]
|
||||
colorize_icons=
|
||||
|
||||
[MainWindow]
|
||||
current_page=0
|
||||
pos=@Point(611 155)
|
||||
size=@Size(698 653)
|
||||
splitter_01=@ByteArray(\0\0\0\xff\0\0\0\x1\0\0\0\x2\0\0\x1\x14\0\0\x1\x14\x1\0\0\0\x5\x1\0\0\0\x2\0)
|
||||
|
||||
[StartOptions]
|
||||
counter_update_rate=5
|
||||
desktop_mate=false
|
||||
desktop_none=true
|
||||
desktop_xfce=false
|
||||
disable_minimized=false
|
||||
disable_tray_icon=false
|
||||
disable_vpn=false
|
||||
enable_counters=true
|
||||
fake_transparency_color=0
|
||||
icon_theme=
|
||||
start_minimized=true
|
||||
use_counter_update_rate=false
|
||||
use_fake_transparency=false
|
||||
use_icon_theme=false
|
||||
use_wait_time=false
|
||||
wait_time=1
|
@@ -1,218 +0,0 @@
|
||||
# cmst.icon
|
||||
#
|
||||
# This icon definition file, located in the user's home directory, can be
|
||||
# edited. The purpose of this file is to facilitate the use of theme icons
|
||||
# that are not part of the official Freedesktop.org naming specification.
|
||||
#
|
||||
# QT provides very good icon selection with a fallback mechanism. In order
|
||||
# to use it one must know the name of the theme icon you want. This is
|
||||
# not a problem with the official named icons, but is if you want to support
|
||||
# any icon theme since the name of any icon not part of the official
|
||||
# Freedesktop.org specification is up to the theme author.
|
||||
#
|
||||
# This file basically describes the pictures to use for each icon. Format
|
||||
# of the file is as follows:
|
||||
#
|
||||
# Comments are the # sign. Any text on a line after the first # is treated
|
||||
# as a comment.
|
||||
#
|
||||
# Each icon definition starts with the [icon] token and is terminated by a
|
||||
# blank line. Inside each icon block are various sections, each contained
|
||||
# on one line. Each section contains a key and value pair separated by an
|
||||
# equal (=) sign.
|
||||
#
|
||||
# icon_name = is the descriptive name of what the icon is to show. This
|
||||
# entry is read and used by the program and should not be edited.
|
||||
#
|
||||
# resource = is the location of the default picture which is hard coded
|
||||
# into the program in a QResource file. This can be edited provided you
|
||||
# select another valid resource which must already exist. You cannot add
|
||||
# resources using this file. This key/value pair is mandatory.
|
||||
#
|
||||
# colorize = (no/yes, 0/1, or a color in the format RRGGBB) if yes or 1
|
||||
# the internal icons will be colorized according to the value specified
|
||||
# from preferences. If a color number is provided the icon will be colorized
|
||||
# to the specified color. If no or 0 then the icon is not colorized.
|
||||
# Colorizing is only available for internal icons defined in the resource line.
|
||||
#
|
||||
# fdo_name = is the name of one of the official Freedesktop.org named icons.
|
||||
# This key/value pair is optional.
|
||||
#
|
||||
# theme_names = is a comma (,) separated list of theme icon names which
|
||||
# are not part of the Freedesktop.org specification. The list will be
|
||||
# searched in order looking for each icon name in the current theme.
|
||||
# This key/value pair is also optional.
|
||||
#
|
||||
# The text in a value field may contain the vertical delimiter (|) symbol.
|
||||
# If it does the text on each side should be a complete resource path or
|
||||
# theme icon name. Text to the left is the ON state of the icon, to the right
|
||||
# is the OFF state. This is used for icons which show a different picture
|
||||
# depending on state. Play/Pause in a media player would be a classic example.
|
||||
#
|
||||
# The text in a resource value field may also contain whitespace. If
|
||||
# it does the text on each side should be a complete resource path. Left
|
||||
# of the whitespace is the base picture in raw_art, to the right is the
|
||||
# overlay file to place over the raw_art icon. This is only for
|
||||
# internal icons from the resource file.
|
||||
#
|
||||
# If this file becomes corrupted by editing or by other means is can be
|
||||
# regenerated simply by deleting it, then stopping and starting CMST.
|
||||
#
|
||||
# Icon selections at runtime are as follows:
|
||||
# If the -i (--icon-theme) command line switch or preferences setting is not
|
||||
# used then the resource name specified here is used if found, if not found
|
||||
# the hard coded internal icon will be used.
|
||||
#
|
||||
# If the -i (--icon-theme) command line switch or preferences settings is used
|
||||
# then icons are searched in the following order until one is found:
|
||||
# theme_names from left to right (match will only occur if one of the names
|
||||
# can be found in the current or specified theme.)
|
||||
# fdo_name
|
||||
# resource location as specified in this file
|
||||
# hard coded internal icon
|
||||
#
|
||||
#
|
||||
#
|
||||
#
|
||||
# interface icons
|
||||
[icon]
|
||||
icon_name = state_error
|
||||
resource = :/icons/images/raw_art/application-exit1.png
|
||||
colorize = no
|
||||
fdo_name = network_error
|
||||
|
||||
[icon]
|
||||
icon_name = state_ready
|
||||
resource = :/icons/images/raw_art/network-idle.png
|
||||
colorize = yes
|
||||
fdo_name = network-idle
|
||||
theme_names = network-idle, network-connect
|
||||
|
||||
[icon]
|
||||
icon_name = state_online
|
||||
resource = :/icons/images/raw_art/network-transmit-receive.png
|
||||
colorize = yes
|
||||
fdo_name = network-transmit-receive
|
||||
theme_names = network-transmit-receive, network-connect
|
||||
|
||||
[icon]
|
||||
icon_name = state_not_ready
|
||||
resource = :/icons/images/raw_art/network-offline.png :/icons/images/overlay/overlay-warningnet9.png
|
||||
colorize = yes
|
||||
fdo_name = network-offline
|
||||
theme_names = network-offline, network-disconnect
|
||||
|
||||
[icon]
|
||||
# This icon is only used in the wifi tab, not elsewhere. Default is to same as state_not_ready
|
||||
# If you would prefer not to see any icon in the connected column uncomment the resource blank.png
|
||||
# line and remove the as shipped resource, colorize, fdo_name, and theme_names lines
|
||||
icon_name = wifi_tab_state_not_ready
|
||||
#resource = :/icons/images/raw_art/blank.png
|
||||
resource = :/icons/images/raw_art/network-offline.png :/icons/images/overlay/overlay-warningnet9.png
|
||||
colorize = yes
|
||||
fdo_name = network-offline
|
||||
theme_names = network-offline, network-disconnect
|
||||
|
||||
[icon]
|
||||
icon_name = state_vpn_connected
|
||||
resource = :/icons/images/raw_art/stock_lock.png
|
||||
colorize = yes
|
||||
theme-names = network-vpn.png, emblem-locked.png
|
||||
|
||||
[icon]
|
||||
icon_name = favorite
|
||||
resource = :/icons/images/raw_art/nm-signal-100.png
|
||||
colorize = yes
|
||||
fdo_name = emblem-favorite
|
||||
|
||||
[icon]
|
||||
icon_name = offline_mode_engaged
|
||||
resource = :/icons/images/interface/basic-plane.png
|
||||
colorize = yes
|
||||
|
||||
[icon]
|
||||
icon_name = offline_mode_disengaged
|
||||
resource = :/icons/images/interface/radio.png
|
||||
colorize = yes
|
||||
|
||||
[icon]
|
||||
icon_name = whats_this
|
||||
resource = :/icons/images/raw_art/info2.png
|
||||
colorize = 1361D9
|
||||
fdo_name = system-help
|
||||
|
||||
#
|
||||
# systemtray icons
|
||||
[icon]
|
||||
icon_name = connection_failure
|
||||
resource = :/icons/images/raw_art/application-exit1.png
|
||||
colorize = no
|
||||
fdo_name = network-error
|
||||
|
||||
[icon]
|
||||
icon_name = connection_ready
|
||||
resource = :/icons/images/raw_art/network-idle.png
|
||||
colorize = yes
|
||||
fdo_name = network-idle
|
||||
theme_names = network-idle, network-connect
|
||||
|
||||
[icon]
|
||||
icon_name = connection_not_ready
|
||||
resource = :/icons/images/raw_art/network-offline.png :/icons/images/overlay/overlay-warningnet9.png
|
||||
colorize = yes
|
||||
fdo_name = network-offline
|
||||
theme_names = network-offline, network-disconnect
|
||||
|
||||
[icon]
|
||||
icon_name = connection_wired
|
||||
resource = :/icons/images/raw_art/network-transmit-receive.png
|
||||
colorize = yes
|
||||
fdo_name = network-wired
|
||||
|
||||
[icon]
|
||||
icon_name = connection_wireless
|
||||
resource = :/icons/images/raw_art/nm-signal-100.png
|
||||
colorize = yes
|
||||
fdo_name = network-wireless
|
||||
|
||||
[icon]
|
||||
icon_name = connection_wifi_000
|
||||
resource = :/icons/images/raw_art/nm-signal-00.png
|
||||
colorize = yes
|
||||
theme_names = network-wireless-signal-none-symbolic, network-wireless-connected-00
|
||||
|
||||
[icon]
|
||||
icon_name = connection_wifi_025
|
||||
resource = :/icons/images/raw_art/nm-signal-25.png
|
||||
colorize = yes
|
||||
theme_names = network-wireless-signal-weak-symbolic, network-wireless-connected-25
|
||||
|
||||
[icon]
|
||||
icon_name = connection_wifi_050
|
||||
resource = :/icons/images/raw_art/nm-signal-50.png
|
||||
colorize = yes
|
||||
theme_names = network-wireless-signal-ok-symbolic, network-wireless-connected-50
|
||||
|
||||
[icon]
|
||||
icon_name = connection_wifi_075
|
||||
resource = :/icons/images/raw_art/nm-signal-75.png
|
||||
colorize = yes
|
||||
theme_names = network-wireless-signal-good-symbolic, network-wireless-connected-75
|
||||
|
||||
[icon]
|
||||
icon_name = connection_wifi_100
|
||||
resource = :/icons/images/raw_art/nm-signal-100.png
|
||||
colorize = yes
|
||||
theme_names = network-wireless-signal-excellent-symbolic, network-wireless-connected-100
|
||||
|
||||
[icon]
|
||||
icon_name = connection_vpn
|
||||
resource = :/icons/images/raw_art/stock_lock.png
|
||||
colorize = yes
|
||||
theme-names = network-vpn.png, emblem-locked.png
|
||||
|
||||
[icon]
|
||||
icon_name = connection_vpn_acquiring
|
||||
resource = :/icons/images/raw_art/network-vpn-acquiring.png
|
||||
colorize = yes
|
||||
|
@@ -1,53 +0,0 @@
|
||||
shadow = true;
|
||||
no-dnd-shadow = true;
|
||||
no-dock-shadow = true;
|
||||
clear-shadow = true;
|
||||
shadow-radius = 7;
|
||||
shadow-offset-x = -7;
|
||||
shadow-offset-y = -7;
|
||||
shadow-opacity = 0.7;
|
||||
shadow-red = 0.0;
|
||||
shadow-green = 0.0;
|
||||
shadow-blue = 0.0;
|
||||
shadow-exclude = [ "name = 'Notification'", "class_g = 'Conky'", "class_g ?= 'Notify-osd'", "class_g = 'Cairo-clock'" ];
|
||||
shadow-ignore-shaped = false;
|
||||
xinerama-shadow-crop = false;
|
||||
menu-opacity = 1.0;
|
||||
inactive-opacity = 1.0;
|
||||
active-opacity = 1.0;
|
||||
frame-opacity = 1.0;
|
||||
inactive-opacity-override = false;
|
||||
alpha-step = 0.06;
|
||||
inactive-dim = 0.0;
|
||||
blur-kern = "3x3box";
|
||||
blur-background-exclude = [ "window_type = 'dock'", "window_type = 'desktop'" ];
|
||||
fading = true;
|
||||
fade-in-step = 0.03;
|
||||
fade-out-step = 0.03;
|
||||
fade-exclude = [ ];
|
||||
backend = "xrender";
|
||||
mark-wmwin-focused = true;
|
||||
mark-ovredir-focused = true;
|
||||
detect-rounded-corners = true;
|
||||
detect-client-opacity = true;
|
||||
refresh-rate = 0;
|
||||
vsync = "none";
|
||||
dbe = false;
|
||||
paint-on-overlay = true;
|
||||
focus-exclude = [ "class_g = 'Cairo-clock'" ];
|
||||
detect-transient = true;
|
||||
detect-client-leader = true;
|
||||
invert-color-include = [ ];
|
||||
glx-copy-from-front = false;
|
||||
glx-swap-method = "undefined";
|
||||
wintypes :
|
||||
{
|
||||
tooltip :
|
||||
{
|
||||
fade = true;
|
||||
shadow = false;
|
||||
opacity = 0.75;
|
||||
focus = true;
|
||||
};
|
||||
};
|
||||
blur-background = false;
|
Binary file not shown.
@@ -1,41 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
|
||||
<!-- created by lxqt-config-appearance (DO NOT EDIT!) -->
|
||||
<fontconfig>
|
||||
<include ignore_missing="yes">conf.d</include>
|
||||
<match target="font">
|
||||
<edit name="lcdfilter" mode="assign">
|
||||
<const>lcddefault</const>
|
||||
</edit>
|
||||
</match>
|
||||
<match target="font">
|
||||
<edit name="autohint" mode="assign">
|
||||
<bool>false</bool>
|
||||
</edit>
|
||||
</match>
|
||||
<match target="pattern">
|
||||
<edit name="dpi" mode="assign">
|
||||
<double>96</double>
|
||||
</edit>
|
||||
</match>
|
||||
<match target="font">
|
||||
<edit name="hinting" mode="assign">
|
||||
<bool>true</bool>
|
||||
</edit>
|
||||
</match>
|
||||
<match target="font">
|
||||
<edit name="hintstyle" mode="assign">
|
||||
<const>hintfull</const>
|
||||
</edit>
|
||||
</match>
|
||||
<match target="font">
|
||||
<edit name="rgba" mode="assign">
|
||||
<const>rgb</const>
|
||||
</edit>
|
||||
</match>
|
||||
<match target="font">
|
||||
<edit name="antialias" mode="assign">
|
||||
<bool>true</bool>
|
||||
</edit>
|
||||
</match>
|
||||
</fontconfig>
|
@@ -1,121 +0,0 @@
|
||||
#
|
||||
# This file was generated from a textmate theme named Bespin
|
||||
# with tm2gtksw2 tool. (Alexandre da Silva)
|
||||
|
||||
# This library is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU Library General Public
|
||||
# License as published by the Free Software Foundation; either
|
||||
# version 2 of the License, or (at your option) any later version.
|
||||
|
||||
# This library 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
|
||||
# Library General Public License for more details.
|
||||
|
||||
# You should have received a copy of the GNU Library General Public
|
||||
# License along with this library; if not, write to the
|
||||
# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
||||
# Boston, MA 02111-1307, USA.
|
||||
#
|
||||
# Ported to Geany by Matthew Brush <matt(at)geany(dot)org>
|
||||
#
|
||||
|
||||
[theme_info]
|
||||
name=Bespin
|
||||
description=A port of the Bespin theme.
|
||||
# incremented automatically, do not change manually
|
||||
version=1225
|
||||
author=Alexandre da Silva (tm2gtksw2)
|
||||
url=https://github.com/gmate/gmate/blob/master/styles/Bespin.xml
|
||||
# list of each compatible Geany release version
|
||||
compat=1.22;1.23;1.23.1;1.24
|
||||
|
||||
[named_styles]
|
||||
|
||||
default=#baae9e;#010101;false;false
|
||||
error=#f8f8f8;#4a2947
|
||||
|
||||
# Editor styles
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
selection=#baae9e;#4c4a49;true;true
|
||||
current_line=#000;#101010;true
|
||||
brace_good=#00f;#2e2e2e;true;false
|
||||
brace_bad=#df4545;#2e2e2e;true;false
|
||||
margin_line_number=#baae9e;#2e2e2e
|
||||
margin_folding=#baae9e;#2e2e2e
|
||||
fold_symbol_highlight=#2e2e2e
|
||||
indent_guide=#40342c
|
||||
white_space=#40342c;#fff;true;false
|
||||
caret=#a7a7a7;#000;false
|
||||
marker_line=#000;#ff0;
|
||||
marker_search=#000;#0000f0;
|
||||
marker_mark=#000;#223f22;
|
||||
call_tips=#c0c0c0;#fff;false;false
|
||||
|
||||
# Programming languages
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
comment=#666;;;true
|
||||
comment_doc=comment
|
||||
comment_line=comment
|
||||
comment_line_doc=comment_doc
|
||||
comment_doc_keyword=comment_doc,bold
|
||||
comment_doc_keyword_error=comment_doc,italic
|
||||
|
||||
number=#cf6a4c
|
||||
number_1=number
|
||||
number_2=number_1
|
||||
|
||||
type=#9b859d;;true
|
||||
class=type
|
||||
function=#937121
|
||||
parameter=function
|
||||
|
||||
keyword=#5ea6ea;;true
|
||||
keyword_1=keyword
|
||||
keyword_2=type
|
||||
keyword_3=keyword_1
|
||||
keyword_4=keyword_1
|
||||
|
||||
identifier=default
|
||||
identifier_1=identifier
|
||||
identifier_2=identifier_1
|
||||
identifier_3=identifier_1
|
||||
identifier_4=identifier_1
|
||||
|
||||
string=#54be0d
|
||||
string_1=string
|
||||
string_2=string_1
|
||||
string_3=default
|
||||
string_4=default
|
||||
string_eol=string_1,italic
|
||||
character=string_1
|
||||
backticks=string_2
|
||||
here_doc=string_2
|
||||
|
||||
scalar=string_2
|
||||
label=default,bold
|
||||
preprocessor=#cf6a4c
|
||||
regex=#e9c062
|
||||
operator=#5ea6ea
|
||||
decorator=string_1,bold
|
||||
other=#ddf2a4
|
||||
|
||||
# Markup-type languages
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
tag=#ac885b
|
||||
tag_unknown=#ac885b
|
||||
tag_end=#ac885b
|
||||
attribute=#937121
|
||||
attribute_unknown=#937121
|
||||
value=string_1
|
||||
entity=default
|
||||
|
||||
# Diff
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
line_added=#f8f8f8;#253b22
|
||||
line_removed=#f8f8f8;#420e09
|
||||
line_changed=#f8f8f8;#4a410d
|
@@ -1,121 +0,0 @@
|
||||
#
|
||||
# Copyright 2011 John Gabriele <jmg3000(at)gmail(dot)com>
|
||||
#
|
||||
# This program 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 2 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program 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 this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
||||
# MA 02110-1301, USA.
|
||||
#
|
||||
# Ported from old theme by Matthew Brush <matt(at)geany(dot)org>
|
||||
# Note: was part of `set_geany_colors` utility
|
||||
#
|
||||
|
||||
[theme_info]
|
||||
name=Dark Fruit Salad
|
||||
description=Low contrast theme ported from the set_geany_colors utility
|
||||
# incremented automatically, do not change manually
|
||||
version=1226
|
||||
author=John Gabriele <jmg3000(at)gmail(dot)com>
|
||||
url=https://github.com/codebrainz/geany-themes
|
||||
# list of each compatible Geany release version
|
||||
compat=1.22;1.23;1.23.1;1.24
|
||||
|
||||
[named_styles]
|
||||
|
||||
default=#222222;#0c0c0c;false;false
|
||||
error=#ebbf71;#e1e17a
|
||||
|
||||
# Editor styles
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
selection=#000;#202020;false;true
|
||||
current_line=#000;#565656;true
|
||||
brace_good=#f0f0f0;#587941;false;false
|
||||
brace_bad=#f00;#fff;false;false
|
||||
margin_line_number=#5f5f5f;#f0f0f0
|
||||
margin_folding=#d69cd6;#202020
|
||||
fold_symbol_highlight=#202020
|
||||
indent_guide=#d69cd6
|
||||
caret=#000;#000;false
|
||||
marker_line=#000;#ff0
|
||||
marker_search=#000;#0000f0
|
||||
marker_mark=#000;#b8f4b8
|
||||
call_tips=#c0c0c0;#fff;false;false
|
||||
white_space=#a7a7a7;;true
|
||||
|
||||
# Programming languages
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
comment=#a3d97d
|
||||
comment_doc=#99e4de;;true
|
||||
comment_line=comment
|
||||
comment_line_doc=comment_doc
|
||||
comment_doc_keyword=comment_doc,bold
|
||||
comment_doc_keyword_error=comment_doc,italic
|
||||
|
||||
number=#ff939c
|
||||
number_1=number
|
||||
number_2=number_1
|
||||
|
||||
type=#e1e17a;;true
|
||||
class=type
|
||||
function=#92bde8;;true
|
||||
parameter=function
|
||||
|
||||
keyword=#92bde8;;true
|
||||
keyword_1=keyword
|
||||
keyword_2=#d69cd6;;true
|
||||
keyword_3=keyword_1
|
||||
keyword_4=keyword_1
|
||||
|
||||
identifier=#f0f0f0
|
||||
identifier_1=identifier
|
||||
identifier_2=#99e4de;;true
|
||||
identifier_3=#ff939c;;true
|
||||
identifier_4=identifier_1
|
||||
|
||||
string=#ebbf71
|
||||
string_1=string
|
||||
string_2=#e1e17a
|
||||
string_3=default
|
||||
string_4=default
|
||||
string_eol=string_1,italic
|
||||
character=#e1e17a;;true
|
||||
backticks=string_2
|
||||
here_doc=string_2
|
||||
|
||||
scalar=string_2
|
||||
label=default,bold
|
||||
preprocessor=#ff939c
|
||||
regex=number_1
|
||||
operator=default
|
||||
decorator=string_1,bold
|
||||
other=default
|
||||
|
||||
# Markup-type languages
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
tag=keyword
|
||||
tag_unknown=tag,bold
|
||||
tag_end=tag,bold
|
||||
attribute=#99e4de
|
||||
attribute_unknown=attribute,bold
|
||||
value=string_1
|
||||
entity=default
|
||||
|
||||
# Diff
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
line_added=#8ae234
|
||||
line_removed=#e1e17a
|
||||
line_changed=preprocessor
|
@@ -1,120 +0,0 @@
|
||||
#
|
||||
# Copyright 2011 Duncan Lock <duncan.lock(at)gmail(dot)com>
|
||||
#
|
||||
# This program 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 2 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program 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 this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
||||
# MA 02110-1301, USA.
|
||||
#
|
||||
# Ported from old theme by Matthew Brush <matt(at)geany(dot)org>
|
||||
#
|
||||
|
||||
[theme_info]
|
||||
name=Dark
|
||||
description=Dark syntax colouring theme
|
||||
# incremented automatically, do not change manually
|
||||
version=1225
|
||||
author=Duncan Lock <duncan.lock(at)gmail(dot)com>
|
||||
url=http://code.google.com/p/geany-dark-scheme/
|
||||
# list of each compatible Geany release version
|
||||
compat=1.22;1.23;1.23.1;1.24
|
||||
|
||||
[named_styles]
|
||||
|
||||
default=#fff;#1e1e1e;false;false
|
||||
error=#f00;#1e1e1e;false;false
|
||||
|
||||
# Editor styles
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
selection=#fff;#333964;false;true
|
||||
current_line=#000;#2f2f2f;true;false
|
||||
brace_good=#fff;#50aa15;true;false
|
||||
brace_bad=#fff;#aa1515;true;false
|
||||
margin_line_number=#000;#d0d0d0;false;false
|
||||
margin_folding=#000;#dfdfdf;false;false
|
||||
fold_symbol_highlight=#fff
|
||||
indent_guide=#393939;#1e1e1e;false;false
|
||||
caret=#fff;#000;true;false
|
||||
marker_line=#000;#ff0;false;false
|
||||
marker_search=#000;#b8f4b8;false;false
|
||||
marker_mark=#000;#b8f4b8;
|
||||
call_tips=#c0c0c0;#fff;false;false
|
||||
white_space=#424242;;true
|
||||
|
||||
# Programming languages
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
comment=#747474;#1e1e1e;false;false
|
||||
comment_doc=comment
|
||||
comment_line=comment
|
||||
comment_line_doc=comment_doc
|
||||
comment_doc_keyword=comment_doc,bold
|
||||
comment_doc_keyword_error=comment_doc,italic
|
||||
|
||||
number=#aaff57;#1e1e1e;false;false
|
||||
number_1=number
|
||||
number_2=number_1
|
||||
|
||||
type=#2e8b57;;true
|
||||
class=type
|
||||
function=default
|
||||
parameter=function
|
||||
|
||||
keyword=#ffcb4f;#1e1e1e;true;false
|
||||
keyword_1=keyword
|
||||
keyword_2=#aaff57;#1e1e1e;false;true
|
||||
keyword_3=keyword_1
|
||||
keyword_4=keyword_1
|
||||
|
||||
identifier=#fff;#1e1e1e;false;false
|
||||
identifier_1=identifier
|
||||
identifier_2=identifier_1
|
||||
identifier_3=identifier_1
|
||||
identifier_4=identifier_1
|
||||
|
||||
string=#aaff57;#1e1e1e;false;false
|
||||
string_1=string
|
||||
string_2=#a18651;#1e1e1e;false;false
|
||||
string_3=default
|
||||
string_4=default
|
||||
string_eol=string_1,italic
|
||||
character=string_1
|
||||
backticks=string_2
|
||||
here_doc=string_2
|
||||
|
||||
scalar=string_2
|
||||
label=default,bold
|
||||
preprocessor=#5abefd;#1e1e1e;false;false
|
||||
regex=number_1
|
||||
operator=#98bac5;#1e1e1e;true;false
|
||||
decorator=#808000;#1e1e1e;false;false
|
||||
other=#fff;#1e1e1e;false;false
|
||||
|
||||
# Markup-type languages
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
tag=#7392cf;#1e1e1e;false;false
|
||||
tag_unknown=#fff;#8c0101;true;false
|
||||
tag_end=#7392cf;#1e1e1e;true;false
|
||||
attribute=#cda0d5;#1e1e1e;false;false
|
||||
attribute_unknown=#fff;#8c0101;false;false
|
||||
value=#4575b6;#1e1e1e;false;false
|
||||
entity=#ffa95c;#2c2821;false;false
|
||||
|
||||
# Diff
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
line_added=#008b8b
|
||||
line_removed=#6a5acd
|
||||
line_changed=preprocessor
|
@@ -1,135 +0,0 @@
|
||||
#
|
||||
# This library is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU Library General Public
|
||||
# License as published by the Free Software Foundation; either
|
||||
# version 2 of the License, or (at your option) any later version.
|
||||
#
|
||||
# This library 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
|
||||
# Library General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Library General Public
|
||||
# License along with this library; if not, write to the
|
||||
# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
||||
# Boston, MA 02111-1307, USA.
|
||||
#
|
||||
|
||||
[theme_info]
|
||||
name=Himbeere
|
||||
description=A dark theme with raspberry colors.
|
||||
# incremented automatically, do not change manually
|
||||
version=1226
|
||||
author=commenthol
|
||||
url=https://github.com/codebrainz/geany-themes
|
||||
# list of each compatible Geany release version
|
||||
compat=1.22;1.23;1.23.1;1.24
|
||||
|
||||
[named_colors]
|
||||
base0=#ccc
|
||||
base1=#0c0c0c
|
||||
base2=#3f3f3f
|
||||
base3=#808080
|
||||
base4=#303030
|
||||
berry=#e12d66
|
||||
cyan=#25d0f0
|
||||
bluegrey=#747e9e
|
||||
orange=#ff8000
|
||||
lime=#65ff00
|
||||
grey=#777
|
||||
red=#f00
|
||||
redbg=#751212
|
||||
green=#859900
|
||||
blue=#268bd2
|
||||
|
||||
[named_styles]
|
||||
default=base0;base1
|
||||
error=red
|
||||
|
||||
|
||||
# Editor styles
|
||||
#-------------------------------------------------------------------------------
|
||||
selection=;#083840;;true
|
||||
current_line=;#000;true
|
||||
brace_good=cyan;berry;true
|
||||
brace_bad=red;;true
|
||||
margin_line_number=base3;base4
|
||||
margin_folding=base3;#212121
|
||||
fold_symbol_highlight=base2
|
||||
indent_guide=base2;;true
|
||||
caret=cyan
|
||||
marker_line=#fff;#00f;
|
||||
marker_search=#fff;#d791a8;
|
||||
marker_mark=;
|
||||
call_tips=base0;base1
|
||||
white_space=base2;;true
|
||||
|
||||
|
||||
# Programming languages
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
comment=grey
|
||||
comment_doc=comment
|
||||
comment_line=comment
|
||||
comment_line_doc=comment_doc
|
||||
comment_doc_keyword=comment_doc,bold
|
||||
comment_doc_keyword_error=comment_doc,italic
|
||||
|
||||
number=orange
|
||||
number_1=number
|
||||
number_2=number_1
|
||||
|
||||
type=berry;;true
|
||||
class=cyan
|
||||
function=berry
|
||||
parameter=function
|
||||
|
||||
keyword=berry;;true
|
||||
keyword_1=keyword
|
||||
keyword_2=cyan;;true
|
||||
keyword_3=bluegrey
|
||||
keyword_4=keyword_3
|
||||
|
||||
identifier=default
|
||||
identifier_1=identifier
|
||||
identifier_2=identifier_1
|
||||
identifier_3=identifier_1
|
||||
identifier_4=identifier_1
|
||||
|
||||
string=lime
|
||||
string_1=string
|
||||
string_2=string_1
|
||||
string_3=default
|
||||
string_4=default
|
||||
string_eol=red
|
||||
character=string_1
|
||||
backticks=string_2
|
||||
here_doc=string_2
|
||||
|
||||
scalar=string_2
|
||||
label=keyword,bold
|
||||
preprocessor=cyan
|
||||
regex=number_1
|
||||
operator=bluegrey
|
||||
decorator=string_1,bold
|
||||
other=cyan
|
||||
|
||||
|
||||
# Markup-type languages
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
tag=berry
|
||||
tag_unknown=tag,bold
|
||||
tag_end=tag,bold
|
||||
attribute=cyan
|
||||
attribute_unknown=attribute,bold
|
||||
value=string_1
|
||||
entity=default
|
||||
|
||||
|
||||
# Diff
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
line_added=green
|
||||
line_removed=red
|
||||
line_changed=blue
|
@@ -1,147 +0,0 @@
|
||||
#
|
||||
# Copyright 2011 Ethan Schoonover <es(at)ethanschoonover(dot)com>
|
||||
#
|
||||
# Permission is hereby granted, free of charge, to any person obtaining
|
||||
# a copy of this software and associated documentation files (the
|
||||
# "Software"), to deal in the Software without restriction, including
|
||||
# without limitation the rights to use, copy, modify, merge, publish,
|
||||
# distribute, sublicense, and/or sell copies of the Software, and to
|
||||
# permit persons to whom the Software is furnished to do so, subject to
|
||||
# the following conditions:
|
||||
#
|
||||
# The above copyright notice and this permission notice shall be
|
||||
# included in all copies or substantial portions of the Software.
|
||||
#
|
||||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
||||
# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
||||
# CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
||||
# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
||||
# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
#
|
||||
# Ported to Geany by Joshua Hoff <https://github.com/joshuarh> and
|
||||
# Matthew Brush <matt(at)geany(dot)org>
|
||||
#
|
||||
|
||||
[theme_info]
|
||||
name=Solarized (dark)
|
||||
description=Dark Solarized theme for Geany
|
||||
# incremented automatically, do not change manually
|
||||
version=1225
|
||||
author=Ethan Schoonover
|
||||
url=http://ethanschoonover.com/solarized
|
||||
# list of each compatible Geany release version
|
||||
compat=1.22;1.23;1.23.1;1.24
|
||||
|
||||
[named_colors]
|
||||
# See: http://ethanschoonover.com/solarized#the-values
|
||||
base03=#0c0c0c
|
||||
base02=#073642
|
||||
base01=#586e75
|
||||
base00=#657b83
|
||||
base0=#839496
|
||||
base1=#93a1a1
|
||||
base2=#eee8d5
|
||||
base3=#fdf6e3
|
||||
yellow=#b58900
|
||||
orange=#cb4b16
|
||||
red=#dc322f
|
||||
magenta=#d33682
|
||||
violet=#6c71c4
|
||||
blue=#268bd2
|
||||
cyan=#2aa198
|
||||
green=#859900
|
||||
|
||||
[named_styles]
|
||||
|
||||
default=base0;base03
|
||||
error=red
|
||||
|
||||
|
||||
# Editor styles
|
||||
#-------------------------------------------------------------------------------
|
||||
selection=;#0f4d5c;;true
|
||||
current_line=;base02;true
|
||||
brace_good=base1;;true
|
||||
brace_bad=red;;true
|
||||
margin_line_number=base00;base03
|
||||
margin_folding=base00;base02
|
||||
fold_symbol_highlight=base02
|
||||
indent_guide=base01
|
||||
caret=base3
|
||||
marker_line=;
|
||||
marker_search=;base2
|
||||
marker_mark=;
|
||||
call_tips=base0;base03
|
||||
white_space=indent_guide
|
||||
|
||||
|
||||
# Programming languages
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
comment=base01
|
||||
comment_doc=comment
|
||||
comment_line=comment
|
||||
comment_line_doc=comment_doc
|
||||
comment_doc_keyword=comment_doc,bold
|
||||
comment_doc_keyword_error=comment_doc,italic
|
||||
|
||||
number=cyan
|
||||
number_1=number
|
||||
number_2=number_1
|
||||
|
||||
type=yellow;;true
|
||||
class=type
|
||||
function=blue
|
||||
parameter=function
|
||||
|
||||
keyword=green;;true
|
||||
keyword_1=keyword
|
||||
keyword_2=blue;;true
|
||||
keyword_3=keyword_1
|
||||
keyword_4=keyword_1
|
||||
|
||||
identifier=default
|
||||
identifier_1=identifier
|
||||
identifier_2=identifier_1
|
||||
identifier_3=identifier_1
|
||||
identifier_4=identifier_1
|
||||
|
||||
string=magenta
|
||||
string_1=string
|
||||
string_2=string_1
|
||||
string_3=default
|
||||
string_4=default
|
||||
string_eol=red
|
||||
character=string_1
|
||||
backticks=string_2
|
||||
here_doc=string_2
|
||||
|
||||
scalar=string_2
|
||||
label=default,bold
|
||||
preprocessor=orange
|
||||
regex=violet
|
||||
operator=default
|
||||
decorator=string_1,bold
|
||||
other=default
|
||||
|
||||
|
||||
# Markup-type languages
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
tag=type
|
||||
tag_unknown=tag,bold
|
||||
tag_end=tag,bold
|
||||
attribute=keyword_1
|
||||
attribute_unknown=attribute,bold
|
||||
value=string_1
|
||||
entity=default
|
||||
|
||||
|
||||
# Diff
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
line_added=green
|
||||
line_removed=red
|
||||
line_changed=blue
|
@@ -1,216 +0,0 @@
|
||||
[geany]
|
||||
default_open_path=
|
||||
cmdline_new_files=true
|
||||
notebook_double_click_hides_widgets=false
|
||||
tab_close_switch_to_mru=false
|
||||
tab_pos_sidebar=2
|
||||
sidebar_pos=0
|
||||
symbols_sort_mode=0
|
||||
msgwin_orientation=1
|
||||
highlighting_invert_all=false
|
||||
pref_main_search_use_current_word=true
|
||||
check_detect_indent=false
|
||||
detect_indent_width=false
|
||||
use_tab_to_indent=true
|
||||
pref_editor_tab_width=4
|
||||
indent_mode=2
|
||||
indent_type=1
|
||||
virtualspace=1
|
||||
autocomplete_doc_words=false
|
||||
completion_drops_rest_of_word=false
|
||||
autocompletion_max_entries=30
|
||||
autocompletion_update_freq=250
|
||||
color_scheme=bespin.conf
|
||||
scroll_lines_around_cursor=0
|
||||
mru_length=10
|
||||
disk_check_timeout=30
|
||||
show_editor_scrollbars=true
|
||||
brace_match_ltgt=false
|
||||
use_gtk_word_boundaries=true
|
||||
complete_snippets_whilst_editing=false
|
||||
use_atomic_file_saving=false
|
||||
gio_unsafe_save_backup=false
|
||||
use_gio_unsafe_file_saving=true
|
||||
keep_edit_history_on_reload=true
|
||||
show_keep_edit_history_on_reload_msg=true
|
||||
reload_clean_doc_on_file_change=false
|
||||
indent_hard_tab_width=8
|
||||
find_selection_type=0
|
||||
extract_filetype_regex=-\\*-\\s*([^\\s]+)\\s*-\\*-
|
||||
replace_and_find_by_default=true
|
||||
editor_ime_interaction=0
|
||||
show_symbol_list_expanders=true
|
||||
compiler_tab_autoscroll=true
|
||||
allow_always_save=false
|
||||
statusbar_template=line: %l / %L col: %c sel: %s %w %t %mmode: %M encoding: %e filetype: %f scope: %S
|
||||
new_document_after_close=false
|
||||
msgwin_status_visible=true
|
||||
msgwin_compiler_visible=true
|
||||
msgwin_messages_visible=true
|
||||
msgwin_scribble_visible=true
|
||||
documents_show_paths=true
|
||||
sidebar_page=0
|
||||
pref_main_load_session=true
|
||||
pref_main_project_session=true
|
||||
pref_main_project_file_in_basedir=false
|
||||
pref_main_save_winpos=true
|
||||
pref_main_save_wingeom=true
|
||||
pref_main_confirm_exit=false
|
||||
pref_main_suppress_status_messages=false
|
||||
switch_msgwin_pages=false
|
||||
beep_on_errors=true
|
||||
auto_focus=false
|
||||
sidebar_symbol_visible=true
|
||||
sidebar_openfiles_visible=true
|
||||
editor_font=Monospace 10
|
||||
tagbar_font=Sans 9
|
||||
msgwin_font=Monospace 9
|
||||
show_notebook_tabs=true
|
||||
show_tab_cross=true
|
||||
tab_order_ltr=true
|
||||
tab_order_beside=false
|
||||
tab_pos_editor=2
|
||||
tab_pos_msgwin=0
|
||||
use_native_windows_dialogs=false
|
||||
show_indent_guide=false
|
||||
show_white_space=false
|
||||
show_line_endings=false
|
||||
show_markers_margin=true
|
||||
show_linenumber_margin=true
|
||||
long_line_enabled=true
|
||||
long_line_type=0
|
||||
long_line_column=78
|
||||
long_line_color=#2E3436
|
||||
symbolcompletion_max_height=10
|
||||
symbolcompletion_min_chars=4
|
||||
use_folding=true
|
||||
unfold_all_children=false
|
||||
use_indicators=true
|
||||
line_wrapping=false
|
||||
auto_close_xml_tags=true
|
||||
complete_snippets=true
|
||||
auto_complete_symbols=true
|
||||
pref_editor_disable_dnd=false
|
||||
pref_editor_smart_home_key=false
|
||||
pref_editor_newline_strip=true
|
||||
line_break_column=72
|
||||
auto_continue_multiline=true
|
||||
comment_toggle_mark=~
|
||||
scroll_stop_at_last_line=true
|
||||
autoclose_chars=0
|
||||
pref_editor_default_new_encoding=UTF-8
|
||||
pref_editor_default_open_encoding=None
|
||||
default_eol_character=2
|
||||
pref_editor_new_line=true
|
||||
pref_editor_ensure_convert_line_endings=false
|
||||
pref_editor_replace_tabs=false
|
||||
pref_editor_trail_space=false
|
||||
pref_toolbar_show=true
|
||||
pref_toolbar_append_to_menu=false
|
||||
pref_toolbar_use_gtk_default_style=true
|
||||
pref_toolbar_use_gtk_default_icon=true
|
||||
pref_toolbar_icon_style=0
|
||||
pref_toolbar_icon_size=0
|
||||
pref_template_developer=Unknown
|
||||
pref_template_company=
|
||||
pref_template_mail=artix@localhost
|
||||
pref_template_initial=U
|
||||
pref_template_version=1.0
|
||||
pref_template_year=%Y
|
||||
pref_template_date=%Y-%m-%d
|
||||
pref_template_datetime=%d.%m.%Y %H:%M:%S %Z
|
||||
context_action_cmd=
|
||||
sidebar_visible=true
|
||||
statusbar_visible=true
|
||||
msgwindow_visible=true
|
||||
fullscreen=false
|
||||
scribble_text=Type here what you want, use it as a notice/scratch board
|
||||
scribble_pos=57
|
||||
treeview_position=156
|
||||
custom_date_format=
|
||||
|
||||
[build-menu]
|
||||
number_ft_menu_items=0
|
||||
number_non_ft_menu_items=0
|
||||
number_exec_menu_items=0
|
||||
|
||||
[search]
|
||||
pref_search_hide_find_dialog=false
|
||||
pref_search_always_wrap=false
|
||||
pref_search_current_file_dir=true
|
||||
find_all_expanded=false
|
||||
replace_all_expanded=false
|
||||
position_find_x=-1
|
||||
position_find_y=-1
|
||||
position_replace_x=-1
|
||||
position_replace_y=-1
|
||||
position_fif_x=-1
|
||||
position_fif_y=-1
|
||||
fif_regexp=false
|
||||
fif_case_sensitive=true
|
||||
fif_match_whole_word=false
|
||||
fif_invert_results=false
|
||||
fif_recursive=false
|
||||
fif_extra_options=
|
||||
fif_use_extra_options=false
|
||||
fif_files=
|
||||
fif_files_mode=0
|
||||
find_regexp=false
|
||||
find_regexp_multiline=false
|
||||
find_case_sensitive=false
|
||||
find_escape_sequences=false
|
||||
find_match_whole_word=false
|
||||
find_match_word_start=false
|
||||
find_close_dialog=true
|
||||
replace_regexp=false
|
||||
replace_regexp_multiline=false
|
||||
replace_case_sensitive=false
|
||||
replace_escape_sequences=false
|
||||
replace_match_whole_word=false
|
||||
replace_match_word_start=false
|
||||
replace_search_backwards=false
|
||||
replace_close_dialog=true
|
||||
|
||||
[plugins]
|
||||
load_plugins=true
|
||||
custom_plugin_path=
|
||||
active_plugins=;
|
||||
|
||||
[VTE]
|
||||
send_cmd_prefix=
|
||||
send_selection_unsafe=false
|
||||
load_vte=true
|
||||
font=Monospace 10
|
||||
scroll_on_key=true
|
||||
scroll_on_out=true
|
||||
enable_bash_keys=true
|
||||
ignore_menu_bar_accel=false
|
||||
follow_path=false
|
||||
run_in_vte=false
|
||||
skip_run_script=false
|
||||
cursor_blinks=false
|
||||
scrollback_lines=500
|
||||
shell=/bin/bash
|
||||
colour_fore=#FFFFFF
|
||||
colour_back=#000000
|
||||
|
||||
[tools]
|
||||
terminal_cmd=xterm -e "/bin/sh %c"
|
||||
browser_cmd=firefox
|
||||
grep_cmd=grep
|
||||
|
||||
[printing]
|
||||
print_cmd=
|
||||
use_gtk_printing=true
|
||||
print_line_numbers=true
|
||||
print_page_numbers=true
|
||||
print_page_header=true
|
||||
page_header_basename=false
|
||||
page_header_datefmt=%c
|
||||
|
||||
[project]
|
||||
session_file=
|
||||
|
||||
[files]
|
||||
recent_projects=
|
||||
current_page=0
|
@@ -1,11 +0,0 @@
|
||||
[Filechooser Settings]
|
||||
LocationMode=path-bar
|
||||
ShowHidden=false
|
||||
ShowSizeColumn=true
|
||||
GeometryX=249
|
||||
GeometryY=127
|
||||
GeometryWidth=942
|
||||
GeometryHeight=643
|
||||
SortColumn=name
|
||||
SortOrder=ascending
|
||||
StartupMode=recent
|
@@ -1,12 +0,0 @@
|
||||
.mate-panel-menu-bar button {
|
||||
color: transparent;
|
||||
}
|
||||
panel-toplevel.background.horizontal,
|
||||
.mate-panel-menu-bar,
|
||||
#clock-applet-button,
|
||||
#clock-applet-button:hover {
|
||||
color: white;
|
||||
}
|
||||
#tasklist-button {
|
||||
color: white;
|
||||
}
|
@@ -1,19 +0,0 @@
|
||||
[Settings]
|
||||
gtk-application-prefer-dark-theme=true
|
||||
gtk-button-images=1
|
||||
gtk-cursor-theme-name=Premium
|
||||
gtk-cursor-theme-size=18
|
||||
gtk-enable-event-sounds=1
|
||||
gtk-enable-input-feedback-sounds=1
|
||||
gtk-fallback-icon-theme=breeze-dark
|
||||
gtk-font-name=Fira Sans 11
|
||||
gtk-icon-theme-name=nuoveXT2
|
||||
gtk-menu-images=1
|
||||
gtk-primary-button-warps-slider=0
|
||||
gtk-theme-name=Artix-dark
|
||||
gtk-toolbar-icon-size=GTK_ICON_SIZE_BUTTON
|
||||
gtk-toolbar-style=GTK_TOOLBAR_ICONS
|
||||
gtk-xft-antialias=1
|
||||
gtk-xft-hinting=1
|
||||
gtk-xft-hintstyle=hintfull
|
||||
gtk-xft-rgba=rgb
|
@@ -1,56 +0,0 @@
|
||||
# created by KDE Plasma, Sun Apr 28 21:20:01 2019
|
||||
#
|
||||
# If you do not want Plasma to override your GTK settings, select
|
||||
# Colors in the System Settings and disable the checkbox
|
||||
# "Apply colors to non-Qt applications"
|
||||
#
|
||||
#
|
||||
style "default"
|
||||
{
|
||||
bg[NORMAL] = { 0.165, 0.165, 0.165 }
|
||||
bg[SELECTED] = { 0.035, 0.153, 0.282 }
|
||||
bg[INSENSITIVE] = { 0.165, 0.165, 0.165 }
|
||||
bg[ACTIVE] = { 0.149, 0.149, 0.149 }
|
||||
bg[PRELIGHT] = { 0.165, 0.165, 0.165 }
|
||||
|
||||
base[NORMAL] = { 0.145, 0.145, 0.145 }
|
||||
base[SELECTED] = { 0.035, 0.153, 0.282 }
|
||||
base[INSENSITIVE] = { 0.165, 0.165, 0.165 }
|
||||
base[ACTIVE] = { 0.035, 0.153, 0.282 }
|
||||
base[PRELIGHT] = { 0.035, 0.153, 0.282 }
|
||||
|
||||
text[NORMAL] = { 0.855, 0.855, 0.855 }
|
||||
text[SELECTED] = { 0.855, 0.855, 0.855 }
|
||||
text[INSENSITIVE] = { 0.149, 0.149, 0.149 }
|
||||
text[ACTIVE] = { 0.855, 0.855, 0.855 }
|
||||
text[PRELIGHT] = { 0.855, 0.855, 0.855 }
|
||||
|
||||
fg[NORMAL] = { 0.855, 0.855, 0.855 }
|
||||
fg[SELECTED] = { 0.855, 0.855, 0.855 }
|
||||
fg[INSENSITIVE] = { 0.149, 0.149, 0.149 }
|
||||
fg[ACTIVE] = { 0.855, 0.855, 0.855 }
|
||||
fg[PRELIGHT] = { 0.855, 0.855, 0.855 }
|
||||
}
|
||||
|
||||
class "*" style "default"
|
||||
|
||||
style "ToolTip"
|
||||
{
|
||||
bg[NORMAL] = { 0.102, 0.102, 0.102 }
|
||||
base[NORMAL] = { 0.102, 0.102, 0.102 }
|
||||
text[NORMAL] = { 0.855, 0.855, 0.855 }
|
||||
fg[NORMAL] = { 0.855, 0.855, 0.855 }
|
||||
}
|
||||
|
||||
widget "gtk-tooltip" style "ToolTip"
|
||||
widget "gtk-tooltips" style "ToolTip"
|
||||
widget "gtk-tooltip*" style "ToolTip"
|
||||
|
||||
style "MenuItem"
|
||||
{
|
||||
bg[PRELIGHT] = { 0.035, 0.153, 0.282 }
|
||||
fg[PRELIGHT] = { 0.855, 0.855, 0.855 }
|
||||
}
|
||||
|
||||
class "*MenuItem" style "MenuItem"
|
||||
|
@@ -1,59 +0,0 @@
|
||||
# created by KDE Plasma, Sat May 25 19:47:18 2019
|
||||
#
|
||||
# If you do not want Plasma to override your GTK settings, select
|
||||
# Colors in the System Settings and disable the checkbox
|
||||
# "Apply colors to non-Qt applications"
|
||||
#
|
||||
#
|
||||
|
||||
gtk-alternative-button-order = 1
|
||||
|
||||
style "default"
|
||||
{
|
||||
bg[NORMAL] = { 0.165, 0.165, 0.165 }
|
||||
bg[SELECTED] = { 0.035, 0.153, 0.282 }
|
||||
bg[INSENSITIVE] = { 0.165, 0.165, 0.165 }
|
||||
bg[ACTIVE] = { 0.149, 0.149, 0.149 }
|
||||
bg[PRELIGHT] = { 0.165, 0.165, 0.165 }
|
||||
|
||||
base[NORMAL] = { 0.145, 0.145, 0.145 }
|
||||
base[SELECTED] = { 0.035, 0.153, 0.282 }
|
||||
base[INSENSITIVE] = { 0.165, 0.165, 0.165 }
|
||||
base[ACTIVE] = { 0.035, 0.153, 0.282 }
|
||||
base[PRELIGHT] = { 0.035, 0.153, 0.282 }
|
||||
|
||||
text[NORMAL] = { 0.855, 0.855, 0.855 }
|
||||
text[SELECTED] = { 0.855, 0.855, 0.855 }
|
||||
text[INSENSITIVE] = { 0.149, 0.149, 0.149 }
|
||||
text[ACTIVE] = { 0.855, 0.855, 0.855 }
|
||||
text[PRELIGHT] = { 0.855, 0.855, 0.855 }
|
||||
|
||||
fg[NORMAL] = { 0.855, 0.855, 0.855 }
|
||||
fg[SELECTED] = { 0.855, 0.855, 0.855 }
|
||||
fg[INSENSITIVE] = { 0.149, 0.149, 0.149 }
|
||||
fg[ACTIVE] = { 0.855, 0.855, 0.855 }
|
||||
fg[PRELIGHT] = { 0.855, 0.855, 0.855 }
|
||||
}
|
||||
|
||||
class "*" style "default"
|
||||
|
||||
style "ToolTip"
|
||||
{
|
||||
bg[NORMAL] = { 0.102, 0.102, 0.102 }
|
||||
base[NORMAL] = { 0.102, 0.102, 0.102 }
|
||||
text[NORMAL] = { 0.855, 0.855, 0.855 }
|
||||
fg[NORMAL] = { 0.855, 0.855, 0.855 }
|
||||
}
|
||||
|
||||
widget "gtk-tooltip" style "ToolTip"
|
||||
widget "gtk-tooltips" style "ToolTip"
|
||||
widget "gtk-tooltip*" style "ToolTip"
|
||||
|
||||
style "MenuItem"
|
||||
{
|
||||
bg[PRELIGHT] = { 0.035, 0.153, 0.282 }
|
||||
fg[PRELIGHT] = { 0.855, 0.855, 0.855 }
|
||||
}
|
||||
|
||||
class "*MenuItem" style "MenuItem"
|
||||
|
@@ -1,2 +0,0 @@
|
||||
[General]
|
||||
ViewBackgroundValue=46
|
@@ -1,56 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="210mm"
|
||||
height="297mm"
|
||||
viewBox="0 0 210 297"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="0.92.4 5da689c313, 2019-01-14"
|
||||
sodipodi:docname="default.svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#1a1a1a"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.83921569"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.35"
|
||||
inkscape:cx="402.85714"
|
||||
inkscape:cy="557.14286"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:pagecheckerboard="true"
|
||||
inkscape:window-width="1440"
|
||||
inkscape:window-height="839"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1" />
|
||||
</svg>
|
Before Width: | Height: | Size: 1.6 KiB |
@@ -1,36 +0,0 @@
|
||||
[External Programs]
|
||||
search path[$e]=/usr/bin/,/usr/local/bin/,/usr/sbin/,/usr/local/sbin/,/sbin
|
||||
|
||||
[General Options]
|
||||
Allow overburning=false
|
||||
Fifo buffer=4
|
||||
Force unsafe operations=false
|
||||
Last system check version=19.4.1
|
||||
Manual buffer size=false
|
||||
Navigator breadcrumb mode=true
|
||||
No cd eject=false
|
||||
Show Document Header=true
|
||||
Show advanced GUI=false
|
||||
Show progress OSD=false
|
||||
Show splash=true
|
||||
action dialog startup settings=2
|
||||
ask_for_saving_changes_on_exit=true
|
||||
auto rewritable erasing=false
|
||||
burnfree=true
|
||||
check system config=true
|
||||
config version=19.4.1
|
||||
current theme=K3b Dark
|
||||
hide main window while writing=false
|
||||
keep action dialogs open=false
|
||||
|
||||
[file view]
|
||||
Decoration position=0
|
||||
Show Inline Previews=true
|
||||
Show Preview=false
|
||||
Show hidden files=false
|
||||
Sort by=Name
|
||||
Sort directories first=true
|
||||
Sort reversed=false
|
||||
View Style=DetailTree
|
||||
detailedViewIconSize=0
|
||||
show bookmarks=false
|
@@ -1,5 +0,0 @@
|
||||
[activities]
|
||||
78b09966-59e0-4506-ad9a-140cae783f24=Default
|
||||
|
||||
[main]
|
||||
currentActivity=78b09966-59e0-4506-ad9a-140cae783f24
|
@@ -1,120 +0,0 @@
|
||||
[General]
|
||||
Close After Last=false
|
||||
Config Revision=10
|
||||
Days Meta Infos=30
|
||||
Last Session=
|
||||
Modified Notification=false
|
||||
Recent File List Entry Count=10
|
||||
Restore Window Configuration=true
|
||||
Save Meta Infos=true
|
||||
Show Full Path in Title=false
|
||||
Show Menu Bar=true
|
||||
Show Status Bar=true
|
||||
Show Tab Bar=true
|
||||
Startup Session=manual
|
||||
|
||||
[KTextEditor Document]
|
||||
Allow End of Line Detection=true
|
||||
BOM=false
|
||||
Backup Flags=0
|
||||
Backup Prefix=
|
||||
Backup Suffix=~
|
||||
Encoding=UTF-8
|
||||
End of Line=0
|
||||
Indent On Backspace=true
|
||||
Indent On Tab=true
|
||||
Indent On Text Paste=false
|
||||
Indentation Mode=normal
|
||||
Indentation Width=4
|
||||
Keep Extra Spaces=false
|
||||
Line Length Limit=4096
|
||||
Newline at End of File=true
|
||||
On-The-Fly Spellcheck=false
|
||||
Overwrite Mode=false
|
||||
PageUp/PageDown Moves Cursor=false
|
||||
Remove Spaces=0
|
||||
ReplaceTabsDyn=true
|
||||
Show Spaces=0
|
||||
Show Tabs=true
|
||||
Smart Home=true
|
||||
Swap Directory=
|
||||
Swap File Mode=1
|
||||
Swap Sync Interval=15
|
||||
Tab Handling=2
|
||||
Tab Width=4
|
||||
Trailing Marker Size=1
|
||||
Word Wrap=false
|
||||
Word Wrap Column=80
|
||||
|
||||
[KTextEditor Editor]
|
||||
Encoding Prober Type=1
|
||||
Fallback Encoding=ISO-8859-15
|
||||
|
||||
[KTextEditor Renderer]
|
||||
Animate Bracket Matching=false
|
||||
Schema=KDE
|
||||
Show Indentation Lines=false
|
||||
Show Whole Bracket Expression=false
|
||||
Word Wrap Marker=false
|
||||
|
||||
[KTextEditor View]
|
||||
Allow Mark Menu=true
|
||||
Auto Brackets=false
|
||||
Auto Center Lines=0
|
||||
Auto Completion=true
|
||||
Backspace Remove Composed Characters=false
|
||||
Bookmark Menu Sorting=0
|
||||
Default Mark Type=1
|
||||
Dynamic Word Wrap=true
|
||||
Dynamic Word Wrap Align Indent=80
|
||||
Dynamic Word Wrap At Static Marker=false
|
||||
Dynamic Word Wrap Indicators=1
|
||||
Fold First Line=false
|
||||
Folding Bar=true
|
||||
Folding Preview=true
|
||||
Icon Bar=false
|
||||
Input Mode=0
|
||||
Keyword Completion=true
|
||||
Line Modification=true
|
||||
Line Numbers=true
|
||||
Maximum Search History Size=100
|
||||
Mouse Paste At Cursor Position=false
|
||||
Persistent Selection=false
|
||||
Scroll Bar Marks=false
|
||||
Scroll Bar Mini Map All=false
|
||||
Scroll Bar Mini Map Width=60
|
||||
Scroll Bar MiniMap=true
|
||||
Scroll Bar Preview=true
|
||||
Scroll Past End=false
|
||||
Search/Replace Flags=140
|
||||
Show Line Count=false
|
||||
Show Scrollbars=0
|
||||
Show Word Count=false
|
||||
Smart Copy Cut=false
|
||||
Vi Input Mode Steal Keys=false
|
||||
Vi Relative Line Numbers=false
|
||||
Word Completion=true
|
||||
Word Completion Minimal Word Length=3
|
||||
Word Completion Remove Tail=true
|
||||
|
||||
[MainWindow]
|
||||
Height 600=535
|
||||
Height 790=731
|
||||
Height 902=759
|
||||
State=AAAA/wAAAAD9AAAAAAAAA9wAAALbAAAABAAAAAQAAAAIAAAACPwAAAABAAAAAgAAAAEAAAAWAG0AYQBpAG4AVABvAG8AbABCAGEAcgAAAAAA/////wAAAAAAAAAA
|
||||
ToolBarsMovable=Disabled
|
||||
Width 1464=1269
|
||||
Width 1528=988
|
||||
Width 1672=988
|
||||
Width 800=1269
|
||||
|
||||
[UiSettings]
|
||||
ColorScheme=Artix-dark
|
||||
|
||||
[filetree]
|
||||
editShade=68,85,106
|
||||
listMode=false
|
||||
shadingEnabled=true
|
||||
showFullPathOnRoots=false
|
||||
sortRole=0
|
||||
viewShade=72,62,83
|
@@ -1,46 +0,0 @@
|
||||
[$Version]
|
||||
update_info=fonts_kate.upd:Plasma_Fonts_Kate
|
||||
|
||||
[Breeze Dark]
|
||||
Color Background[$d]
|
||||
Color Code Folding[$d]
|
||||
Color Current Line Number[$d]
|
||||
Color Highlighted Bracket[$d]
|
||||
Color Highlighted Line[$d]
|
||||
Color Icon Bar[$d]
|
||||
Color Indentation Line[$d]
|
||||
Color Line Number[$d]
|
||||
Color MarkType 1[$d]
|
||||
Color MarkType 2[$d]
|
||||
Color MarkType 3[$d]
|
||||
Color MarkType 4[$d]
|
||||
Color MarkType 5[$d]
|
||||
Color MarkType 6[$d]
|
||||
Color MarkType 7[$d]
|
||||
Color Modified Lines[$d]
|
||||
Color Replace Highlight[$d]
|
||||
Color Saved Lines[$d]
|
||||
Color Search Highlight[$d]
|
||||
Color Selection[$d]
|
||||
Color Separator[$d]
|
||||
Color Spelling Mistake Line[$d]
|
||||
Color Tab Marker[$d]
|
||||
Color Template Background[$d]
|
||||
Color Template Editable Placeholder[$d]
|
||||
Color Template Focused Editable Placeholder[$d]
|
||||
Color Template Not Editable Placeholder[$d]
|
||||
Color Word Wrap Marker[$d]
|
||||
dummy=prevent-empty-group
|
||||
|
||||
[KDE]
|
||||
Color Background=26,26,26
|
||||
Color Highlighted Line=33,33,33
|
||||
Color Icon Bar=35,35,35
|
||||
Font=Fira Mono,11,-1,5,50,0,0,0,0,0,Regular
|
||||
dummy=prevent-empty-group
|
||||
|
||||
[Normal]
|
||||
dummy=prevent-empty-group
|
||||
|
||||
[Vim (dark)]
|
||||
dummy=prevent-empty-group
|
@@ -1,2 +0,0 @@
|
||||
[X11]
|
||||
exportKDEColors=true
|
@@ -1,3 +0,0 @@
|
||||
[General]
|
||||
dontChangeAASettings=false
|
||||
forceFontDPI=0
|
@@ -1,3 +0,0 @@
|
||||
[Mouse]
|
||||
cursorSize=0
|
||||
cursorTheme=Premium
|
@@ -1,71 +0,0 @@
|
||||
[Module-accounts]
|
||||
autoload=true
|
||||
|
||||
[Module-appmenu]
|
||||
autoload=true
|
||||
|
||||
[Module-baloosearchmodule]
|
||||
autoload=false
|
||||
|
||||
[Module-bluedevil]
|
||||
autoload=true
|
||||
|
||||
[Module-browserintegrationreminder]
|
||||
autoload=true
|
||||
|
||||
[Module-colorcorrectlocationupdater]
|
||||
autoload=true
|
||||
|
||||
[Module-device_automounter]
|
||||
autoload=true
|
||||
|
||||
[Module-freespacenotifier]
|
||||
autoload=true
|
||||
|
||||
[Module-kded_dnssdwatcher]
|
||||
autoload=true
|
||||
|
||||
[Module-kded_printmanager]
|
||||
autoload=true
|
||||
|
||||
[Module-keyboard]
|
||||
autoload=true
|
||||
|
||||
[Module-khotkeys]
|
||||
autoload=true
|
||||
|
||||
[Module-kmixd]
|
||||
autoload=true
|
||||
|
||||
[Module-kscreen]
|
||||
autoload=true
|
||||
|
||||
[Module-ksysguard]
|
||||
autoload=true
|
||||
|
||||
[Module-ktimezoned]
|
||||
autoload=true
|
||||
|
||||
[Module-kwrited]
|
||||
autoload=true
|
||||
|
||||
[Module-networkmanagement]
|
||||
autoload=false
|
||||
|
||||
[Module-networkstatus]
|
||||
autoload=true
|
||||
|
||||
[Module-plasmavault]
|
||||
autoload=true
|
||||
|
||||
[Module-proxyscout]
|
||||
autoload=true
|
||||
|
||||
[Module-remotenotifier]
|
||||
autoload=true
|
||||
|
||||
[Module-statusnotifierwatcher]
|
||||
autoload=true
|
||||
|
||||
[Module-touchpad]
|
||||
autoload=true
|
@@ -1,2 +0,0 @@
|
||||
[General]
|
||||
AutomountEnabled=true
|
@@ -1,142 +0,0 @@
|
||||
[ColorEffects:Disabled]
|
||||
Color=112,111,110
|
||||
ColorAmount=0
|
||||
ColorEffect=0
|
||||
ContrastAmount=0.65
|
||||
ContrastEffect=1
|
||||
IntensityAmount=0.1
|
||||
IntensityEffect=0
|
||||
|
||||
[ColorEffects:Inactive]
|
||||
ChangeSelectionColor=true
|
||||
Color=112,111,110
|
||||
ColorAmount=0.025
|
||||
ColorEffect=2
|
||||
ContrastAmount=0.1
|
||||
ContrastEffect=2
|
||||
Enable=true
|
||||
IntensityAmount=0
|
||||
IntensityEffect=0
|
||||
|
||||
[Colors:Button]
|
||||
BackgroundAlternate=66,66,66
|
||||
BackgroundNormal=53,53,53
|
||||
DecorationFocus=76,76,76
|
||||
DecorationHover=63,63,63
|
||||
ForegroundActive=189,95,167
|
||||
ForegroundInactive=160,160,160
|
||||
ForegroundLink=38,155,193
|
||||
ForegroundNegative=182,0,0
|
||||
ForegroundNeutral=255,221,0
|
||||
ForegroundNormal=218,218,218
|
||||
ForegroundPositive=88,175,88
|
||||
ForegroundVisited=199,79,79
|
||||
|
||||
[Colors:Complementary]
|
||||
BackgroundAlternate=50,50,50
|
||||
BackgroundNormal=35,35,35
|
||||
DecorationFocus=22,108,189
|
||||
DecorationHover=38,113,147
|
||||
ForegroundActive=246,116,0
|
||||
ForegroundInactive=175,176,179
|
||||
ForegroundLink=61,174,230
|
||||
ForegroundNegative=237,21,21
|
||||
ForegroundNeutral=201,206,59
|
||||
ForegroundNormal=218,218,218
|
||||
ForegroundPositive=17,209,22
|
||||
ForegroundVisited=61,174,230
|
||||
|
||||
[Colors:Selection]
|
||||
BackgroundAlternate=10,46,86
|
||||
BackgroundNormal=9,39,72
|
||||
DecorationFocus=76,76,76
|
||||
DecorationHover=63,63,63
|
||||
ForegroundActive=189,95,167
|
||||
ForegroundInactive=160,160,160
|
||||
ForegroundLink=38,155,193
|
||||
ForegroundNegative=182,0,0
|
||||
ForegroundNeutral=181,157,0
|
||||
ForegroundNormal=218,218,218
|
||||
ForegroundPositive=91,181,91
|
||||
ForegroundVisited=199,79,79
|
||||
|
||||
[Colors:Tooltip]
|
||||
BackgroundAlternate=42,42,42
|
||||
BackgroundNormal=26,26,26
|
||||
DecorationFocus=76,76,76
|
||||
DecorationHover=63,63,63
|
||||
ForegroundActive=185,93,164
|
||||
ForegroundInactive=170,170,170
|
||||
ForegroundLink=35,146,180
|
||||
ForegroundNegative=171,0,0
|
||||
ForegroundNeutral=162,140,0
|
||||
ForegroundNormal=218,218,218
|
||||
ForegroundPositive=83,165,83
|
||||
ForegroundVisited=199,79,79
|
||||
|
||||
[Colors:View]
|
||||
BackgroundAlternate=42,42,42
|
||||
BackgroundNormal=37,37,37
|
||||
DecorationFocus=76,76,76
|
||||
DecorationHover=63,63,63
|
||||
ForegroundActive=198,99,175
|
||||
ForegroundInactive=160,160,160
|
||||
ForegroundLink=37,150,188
|
||||
ForegroundNegative=163,0,0
|
||||
ForegroundNeutral=166,144,0
|
||||
ForegroundNormal=218,218,218
|
||||
ForegroundPositive=75,149,75
|
||||
ForegroundVisited=182,73,73
|
||||
|
||||
[Colors:Window]
|
||||
BackgroundAlternate=42,42,42
|
||||
BackgroundNormal=42,42,42
|
||||
DecorationFocus=76,76,76
|
||||
DecorationHover=63,63,63
|
||||
ForegroundActive=189,95,167
|
||||
ForegroundInactive=160,160,160
|
||||
ForegroundLink=35,145,179
|
||||
ForegroundNegative=185,0,0
|
||||
ForegroundNeutral=181,157,0
|
||||
ForegroundNormal=218,218,218
|
||||
ForegroundPositive=86,171,86
|
||||
ForegroundVisited=199,79,79
|
||||
|
||||
[General]
|
||||
ColorScheme=Artix-dark
|
||||
Name=Artix-dark
|
||||
XftAntialias=true
|
||||
XftHintStyle=hintfull
|
||||
XftSubPixel=rgb
|
||||
fixed=Fira Mono,11,-1,5,50,0,0,0,0,0,Regular
|
||||
font=Fira Sans,11,-1,5,50,0,0,0,0,0,Regular
|
||||
menuFont=Fira Sans,11,-1,5,50,0,0,0,0,0,Regular
|
||||
shadeSortColumn=true
|
||||
smallestReadableFont=Fira Sans,11,-1,5,50,0,0,0,0,0,Regular
|
||||
toolBarFont=Fira Sans,11,-1,5,50,0,0,0,0,0,Regular
|
||||
widgetStyle=gtk2
|
||||
|
||||
[Icons]
|
||||
Theme=breeze-dark
|
||||
|
||||
[KDE]
|
||||
ColorScheme=Artix-dark
|
||||
LookAndFeelPackage=artix.dark
|
||||
ShowIconsInMenuItems=true
|
||||
ShowIconsOnPushButtons=true
|
||||
contrast=0
|
||||
widgetStyle=gtk2
|
||||
|
||||
[Toolbar style]
|
||||
Highlighting=true
|
||||
IconText=IconOnly
|
||||
TransparentMoving=false
|
||||
|
||||
[WM]
|
||||
activeBackground=45,45,45
|
||||
activeBlend=45,45,45
|
||||
activeFont=Fira Sans,11,-1,5,50,0,0,0,0,0,Regular
|
||||
activeForeground=255,255,255
|
||||
inactiveBackground=53,53,53
|
||||
inactiveBlend=53,53,53
|
||||
inactiveForeground=155,155,155
|
@@ -1,96 +0,0 @@
|
||||
[MainWindow]
|
||||
Height 790=731
|
||||
Height 900=840
|
||||
State=AAAA/wAAAAD9AAAAAQAAAAIAAAeAAAABUPwBAAAADfsAAAAYAG4AbwB0AGUAcwBfAHcAaQBkAGcAZQB0AAAAAAD/////AAAAUgD////7AAAADgBsAGkAYgByAGEAcgB5AAAAAAD/////AAAAYwD////7AAAAGgBhAHUAZABpAG8AcwBwAGUAYwB0AHIAdQBtAAAAAAD/////AAAAagD////7AAAAFgBwAHIAbwBqAGUAYwB0AF8AYgBpAG4BAAAAAAAAAPsAAABSAP////wAAAEBAAAA+gAAAFIA////+gAAAAABAAAAAvsAAAAYAGUAZgBmAGUAYwB0AF8AcwB0AGEAYwBrAQAAAAD/////AAAAUgD////7AAAAHgBjAGwAaQBwAF8AcAByAG8AcABlAHIAdABpAGUAcwAAAAAA/////wAAAFIA/////AAAAgEAAAGmAAAAewD////6AAAAAQEAAAAC+wAAAB4AdAByAGEAbgBzAGkAdABpAG8AbgBfAGwAaQBzAHQBAAAAAP////8AAAAAAP////sAAAAWAGUAZgBmAGUAYwB0AF8AbABpAHMAdAEAAAAA/////wAAAAAA/////AAAA60AAAPTAAABQAD////6AAAAAQEAAAAC+wAAABgAYwBsAGkAcABfAG0AbwBuAGkAdABvAHIBAAAAAP////8AAAFAAP////sAAAAeAHAAcgBvAGoAZQBjAHQAXwBtAG8AbgBpAHQAbwByAQAAAAD/////AAABQAD////7AAAAGAB1AG4AZABvAF8AaABpAHMAdABvAHIAeQAAAAAA/////wAAAFIA////+wAAABYAdgBlAGMAdABvAHIAcwBjAG8AcABlAAAAAAD/////AAABRQD////7AAAAEAB3AGEAdgBlAGYAbwByAG0AAAAAAP////8AAACuAP////sAAAAUAHIAZwBiAF8AcABhAHIAYQBkAGUAAAAAAP////8AAAClAP////sAAAASAGgAaQBzAHQAbwBnAHIAYQBtAAAAAAD/////AAABWQD////7AAAAFABzAGMAcgBlAGUAbgBnAHIAYQBiAAAAAAD/////AAAAUgD///8AAAeAAAAB1AAAAAQAAAAEAAAACAAAAAj8AAAAAQAAAAIAAAACAAAAFgBtAGEAaQBuAFQAbwBvAGwAQgBhAHIBAAAAAP////8AAAAAAAAAAAAAABgAZQB4AHQAcgBhAFQAbwBvAGwAQgBhAHIBAAACMf////8AAAAAAAAAAA==
|
||||
ToolBarsMovable=Disabled
|
||||
Width 1440=1432
|
||||
Width 1464=1464
|
||||
Window-Maximized 790x1464=true
|
||||
Window-Maximized 963x1920=true
|
||||
|
||||
[Scope_Histogram]
|
||||
autoRefresh=true
|
||||
bEnabled=true
|
||||
gEnabled=true
|
||||
rEnabled=true
|
||||
realtime=false
|
||||
rec601=false
|
||||
sEnabled=false
|
||||
yEnabled=true
|
||||
|
||||
[Scope_RGB Parade]
|
||||
autoRefresh=true
|
||||
axis=false
|
||||
gradref=false
|
||||
paintmode=0
|
||||
realtime=false
|
||||
|
||||
[Scope_Vectorscope]
|
||||
75PBox=false
|
||||
autoRefresh=true
|
||||
axis=false
|
||||
backgroundmode=0
|
||||
colorspace_ypbpr=false
|
||||
gain=1
|
||||
iqlines=false
|
||||
paintmode=0
|
||||
realtime=false
|
||||
|
||||
[Scope_Waveform]
|
||||
autoRefresh=true
|
||||
paintmode=0
|
||||
realtime=false
|
||||
rec601=false
|
||||
|
||||
[bin]
|
||||
treeviewheaders=AAAA/wAAAAAAAAABAAAAAQAAAAABAAAAAAAAAAAAAAADBgAAAAIAAAACAAAAZAAAAAEAAAA3AAAAUAAAAAMBAQABAAAAAAAAAAAAAAAAZP////8AAACBAAAAAAAAAAMAAABQAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAPoAAAAAD0=
|
||||
|
||||
[capture]
|
||||
decklink_capturedevice=4294967295
|
||||
decklink_device_found=false
|
||||
decklink_extension=mov
|
||||
decklink_parameters=vcodec=dnxhd vb=145000k acodec=pcm_s16le threads=%threads
|
||||
detectedv4ldevices=4294967295
|
||||
grab_extension=mov
|
||||
grab_parameters=-crf 25 -vcodec libx264 -preset veryfast -threads 0
|
||||
v4l_extension=mpg
|
||||
v4l_format=4294967295
|
||||
v4l_parameters=qscale=4 ab=192k vcodec=mpeg2video acodec=mp2 threads=%threads
|
||||
|
||||
[env]
|
||||
defaultaudioapp=/usr/bin/audacity
|
||||
defaultimageapp=/usr/bin/gimp
|
||||
defaultprojectfolder[$e]=$HOME/Documents
|
||||
ffmpegpath[$e]=/usr/bin/ffmpeg
|
||||
ffplaypath[$e]=/usr/bin/ffplay
|
||||
ffprobepath[$e]=/usr/bin/ffprobe
|
||||
mltpath[$e]=/usr/share/mlt/profiles
|
||||
rendererpath[$e]=/usr/bin/melt
|
||||
|
||||
[project]
|
||||
proxyextension=mkv
|
||||
proxyparams=-vf yadif,scale=960:-2 -qscale 3 -vcodec mjpeg -acodec pcm_s16le
|
||||
|
||||
[sdl]
|
||||
audiobackend=sdl2_audio
|
||||
blackmagic_output_device=-1
|
||||
sdlAudioBackend=sdl2_audio
|
||||
|
||||
[shuttle]
|
||||
shuttlebuttons=button0=monitor_pause
|
||||
|
||||
[timeline]
|
||||
trackheight=40
|
||||
|
||||
[unmanaged]
|
||||
colortheme=/usr/share/color-schemes/Artix-dark.colors
|
||||
current_profile=atsc_1080p_25
|
||||
default_profile=atsc_1080p_25
|
||||
force_breeze=true
|
||||
monitor_audio=false
|
||||
producerslist=avformat,avformat-novalidate,abnormal,color,colour,consumer,hold,loader,melt,melt_file,noise,timewarp,tone,decklink,frei0r.ising0r,frei0r.lissajous0r,frei0r.nois0r,frei0r.onecol0r,frei0r.partik0l,frei0r.plasma,frei0r.test_pat_B,frei0r.test_pat_C,frei0r.test_pat_G,frei0r.test_pat_I,frei0r.test_pat_L,frei0r.test_pat_R,pango,pixbuf,ladspa.1047,ladspa.1050,framebuffer,slowmotion,blipflash,count,qimage,qtext,kdenlivetitle,pgm,xml,xml-string,xml-nogl
|
||||
project_display_ratio=1.7777777777777777
|
||||
widgetstyle=gtk2
|
||||
|
||||
[version]
|
||||
version=19.04.0
|
@@ -1,12 +0,0 @@
|
||||
[ActivityManager]
|
||||
_k_friendly_name=Activity Manager
|
||||
switch-to-activity-78b09966-59e0-4506-ad9a-140cae783f24=none,none,Switch to activity "Default"
|
||||
|
||||
[ksmserver]
|
||||
Lock Session=Ctrl+Alt+L\tScreensaver,none,Lock Session
|
||||
_k_friendly_name=System Settings
|
||||
|
||||
[plasmashell]
|
||||
_k_friendly_name=Activity switching
|
||||
next activity=Meta+Tab,none,Walk through activities
|
||||
previous activity=Meta+Shift+Tab,none,Walk through activities (Reverse)
|
@@ -1,6 +0,0 @@
|
||||
[Confirmations]
|
||||
ConfirmDelete=true
|
||||
ConfirmTrash=false
|
||||
|
||||
[Executable scripts]
|
||||
behaviourOnLaunch=alwaysAsk
|
@@ -1,6 +0,0 @@
|
||||
[Desktop Entry]
|
||||
DefaultProfile=Profile 1.profile
|
||||
|
||||
[MainWindow]
|
||||
Height 956=484
|
||||
Width 1920=732
|
@@ -1,168 +0,0 @@
|
||||
[Aliases]
|
||||
AliasList=sayclip /exec sayclip,bug /exec bug,fortune /exec fortune,mail /exec mail,gauge /exec gauge,video /exec media video,audio /exec media audio,media /exec media,uptime /exec uptime,tinyurl /exec tinyurl,sysinfo /exec sysinfo,cmd /exec cmd
|
||||
|
||||
[Appearance]
|
||||
BacklogLines=99
|
||||
ChannelSplitterSizes=836,156
|
||||
CloseButtons=true
|
||||
CustomTabFont=true
|
||||
CustomTextFont=true
|
||||
IrcColorCode1=90,90,90
|
||||
ListFont=Fira Mono,10,-1,5,50,0,0,0,0,0,Regular
|
||||
NickColor8=0,122,4
|
||||
TabFont=Fira Sans,10,-1,5,50,0,0,0,0,0,Regular
|
||||
TextFont=Fira Mono,10,-1,5,50,0,0,0,0,0,Regular
|
||||
TopicSplitterSizes=28,535
|
||||
TreeSplitterSizes=145,773
|
||||
|
||||
[Autoreplace List]
|
||||
Direction0=o
|
||||
Direction1=o
|
||||
Pattern0=\\[\\[([^\\s]+)\\]\\]#
|
||||
Pattern1=(BUG:|bug:)([0-9]+)#
|
||||
Regex0=1
|
||||
Regex1=1
|
||||
Replace0=http://en.wikipedia.org/wiki/Special:Search?go=Go&search=%1#
|
||||
Replace1=https://bugs.kde.org/show_bug.cgi?id=%2#
|
||||
|
||||
[BanList ViewSettings]
|
||||
ColumnSortDescending=false
|
||||
ColumnSorted=0
|
||||
ColumnWidths=100,100,100
|
||||
|
||||
[Button List]
|
||||
Button0=Op,/OP %u%n
|
||||
Button1=DeOp,/DEOP %u%n
|
||||
Button2=WhoIs,/WHOIS %s,%%u%n
|
||||
Button3=Version,/CTCP %s,%%u VERSION%n
|
||||
Button4=Kick,/KICK %u%n
|
||||
Button5=Ban,/BAN %u%n
|
||||
Button6=Part,/PART %c Leaving...%n
|
||||
Button7=Quit,/QUIT Leaving...%n
|
||||
|
||||
[Channel 0]
|
||||
Name=#artix
|
||||
Password=
|
||||
|
||||
[Channel 1]
|
||||
EnableNotifications=true
|
||||
Name=#artix-unregistered
|
||||
Password=
|
||||
|
||||
[ChannelOptionsDialog]
|
||||
Size=724,536
|
||||
SplitterSizes=230,192
|
||||
|
||||
[DCC Settings]
|
||||
ColumnWidths=49,90,103,173,70,87,157,87,96,165
|
||||
IPv4FallbackIface=0
|
||||
PanelSplitter=AAAA/wAAAAEAAAACAAAAVAAAAQUB/////wEAAAACAA==
|
||||
|
||||
[Flags]
|
||||
EncryptionType=1
|
||||
InputFieldsBackgroundColor=true
|
||||
TabPlacement=Top
|
||||
|
||||
[General Options]
|
||||
AutomaticRememberLine=true
|
||||
RedirectServerAndAppMsgToStatusPane=true
|
||||
ShowTrayIcon=true
|
||||
TrayNotify=true
|
||||
|
||||
[Highlight List]
|
||||
HighlightSoundsEnabled=true
|
||||
|
||||
[Identity 0]
|
||||
AuthType=nickserv
|
||||
AutomaticAway=false
|
||||
AutomaticUnaway=false
|
||||
AwayInactivity=10
|
||||
AwayMessage=
|
||||
AwayNick=
|
||||
AwayReason=Gone away for now
|
||||
Bot=nickserv
|
||||
Codec=UTF-8
|
||||
Ident=artix-live
|
||||
InsertRememberLineOnAway=false
|
||||
KickReason=User terminated!
|
||||
Name=
|
||||
Nicknames=artix-live-01,artix-live-02,artix-live-03,artix-live-04,artix-live-05,artix-live-06,artix-live-07,artix-live-08,artix-live-09,artix-live-10,artix-live-11,artix-live-12,artix-live-13,artix-live-14,artix-live-15,artix-live-16,artix-live-17,artix-live-18,artix-live-19,artix-live-20,artix-live-21,artix-live-22,artix-live-23,artix-live-24,artix-live-25,artix-live-26,artix-live-27,artix-live-28,artix-live-29,artix-live-30,artix-live-31,artix-live-32,artix-live-33,artix-live-34,artix-live-35,artix-live-36,artix-live-37,artix-live-38,artix-live-39,artix-live-40,artix-live-41,artix-live-42,artix-live-43,artix-live-44,artix-live-45,artix-live-46,artix-live-47,artix-live-48,artix-live-49,artix-live-50
|
||||
NickservCommand=identify
|
||||
PartReason=Konversation terminated!
|
||||
Password=
|
||||
PemClientCertFile=
|
||||
PreShellCommand=
|
||||
QuitReason=Konversation terminated!
|
||||
Realname=artix-live
|
||||
ReturnMessage=
|
||||
SaslAccount=
|
||||
ShowAwayMessage=false
|
||||
|
||||
[MainWindow]
|
||||
Height 768=705
|
||||
Height 828=693
|
||||
State=AAAA/wAAAAD9AAAAAAAAA+MAAAJ+AAAABAAAAAQAAAAIAAAACPwAAAABAAAAAgAAAAEAAAAWAG0AYQBpAG4AVABvAG8AbABCAGEAcgAAAAAA/////wAAAAAAAAAA
|
||||
ToolBarsMovable=Disabled
|
||||
Width 1366=679
|
||||
Width 1472=995
|
||||
|
||||
[Message Text Colors]
|
||||
ActionMessage=0,101,209
|
||||
AlternateBackground=20,20,20
|
||||
BacklogMessage=127,127,127
|
||||
ChannelMessage=230,230,230
|
||||
CommandMessage=196,0,196
|
||||
Hyperlink=0,221,255
|
||||
QueryMessage=195,195,195
|
||||
ServerMessage=200,138,13
|
||||
TextViewBackground=0,0,0
|
||||
|
||||
[Notification Messages]
|
||||
ChannelListNoServerSelected=1
|
||||
ChannelListWarning=1
|
||||
ClearLogfileQuestion=1
|
||||
CloseQueryAfterIgnore=1
|
||||
HideMenuBarWarning=1
|
||||
HideOnCloseInfo=0
|
||||
IgnoreNick=1
|
||||
Invitation=0
|
||||
QuitChannelTab=1
|
||||
QuitDCCChatTab=1
|
||||
QuitQueryTab=1
|
||||
QuitServerTab=1
|
||||
QuitWithActiveDccTransfers=1
|
||||
ReconnectWithDifferentServer=1
|
||||
ReuseExistingConnection=1
|
||||
SaveLogfileNote=1
|
||||
UnignoreNick=1
|
||||
WarnEncodingConflict=1
|
||||
systemtrayquitKonversation=1
|
||||
|
||||
[Server 0]
|
||||
BypassProxy=true
|
||||
Password=
|
||||
Port=7000
|
||||
SSLEnabled=true
|
||||
Server=chat.freenode.net
|
||||
|
||||
[ServerGroup 0]
|
||||
AutoConnect=true
|
||||
AutoJoinChannels=Channel 0
|
||||
ChannelHistory=Channel 1
|
||||
ConnectCommands=
|
||||
EnableNotifications=true
|
||||
Expanded=true
|
||||
Identity=
|
||||
Name=freenode
|
||||
NotifyList=
|
||||
ServerList=Server 0
|
||||
|
||||
[ServerListDialog]
|
||||
ServerListHeaderState=\x00\x00\x00\xff\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\xf4\x00\x00\x00\x03\x00\x01\x00\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc8\xff\xff\xff\xff\x00\x00\x00\x81\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00d\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\xc8\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\xc8\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x03\xe8\x01\x00\x00\x00\xc8
|
||||
Size=533,274
|
||||
|
||||
[Tab Notifications]
|
||||
TabNotificationsLeds=true
|
||||
|
||||
[Themes]
|
||||
IconTheme=square
|
@@ -1,8 +0,0 @@
|
||||
[$Version]
|
||||
update_info=kscreenlocker.upd:0.1-autolock
|
||||
|
||||
[Greeter]
|
||||
Theme=artix.dark
|
||||
|
||||
[Greeter][Wallpaper][org.kde.image][General]
|
||||
Image=file:///usr/share/backgrounds/Artix_dna_spiral_dark.jpg
|
@@ -1,7 +0,0 @@
|
||||
[General]
|
||||
confirmLogout=true
|
||||
excludeApps=cmst,konversation
|
||||
loginMode=default
|
||||
offerShutdown=true
|
||||
screenCount=1
|
||||
shutdownType=0
|
@@ -1,3 +0,0 @@
|
||||
[KSplash]
|
||||
Engine=KSplashQML
|
||||
Theme=artix.dark
|
@@ -1,22 +0,0 @@
|
||||
[$Version]
|
||||
update_info=kwin.upd:replace-scalein-with-scale,kwin.upd:port-minimizeanimation-effect-to-js,kwin.upd:port-scale-effect-to-js,kwin.upd:port-dimscreen-effect-to-js
|
||||
|
||||
[Compositing]
|
||||
OpenGLIsUnsafe=false
|
||||
|
||||
[Desktops]
|
||||
Number=1
|
||||
Rows=1
|
||||
|
||||
[TabBox]
|
||||
DesktopLayout=org.kde.breeze.desktop
|
||||
DesktopListLayout=org.kde.breeze.desktop
|
||||
LayoutName=org.kde.breeze.desktop
|
||||
|
||||
[org.kde.kdecoration2]
|
||||
BorderSize=Normal
|
||||
ButtonsOnLeft=MS
|
||||
ButtonsOnRight=HIAX
|
||||
CloseOnDoubleClickOnMenu=false
|
||||
library=org.kde.oxygen
|
||||
theme=
|
@@ -1,2 +0,0 @@
|
||||
[General]
|
||||
count=0
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user