Compare commits
52 Commits
Author | SHA1 | Date | |
---|---|---|---|
15e1c37086 | |||
f364288b2c | |||
c8cb3a0b2a | |||
07ab5a18eb | |||
238267996e | |||
9f789680da | |||
8211f31766 | |||
9b694d9f2f
|
|||
fa04e50a07
|
|||
d0b4b1687b
|
|||
f3edd56c44
|
|||
ab6ddd1960
|
|||
8815e6fb7a
|
|||
e70ecaf949
|
|||
314943491f
|
|||
4ce7ecec07
|
|||
ff9a5c68fc
|
|||
56b8f48067
|
|||
cfeec2d58b
|
|||
1b206c3889 | |||
a4523f7523 | |||
6f21e8f4f8
|
|||
f8343adb13
|
|||
9b50926eda
|
|||
035309f4bb
|
|||
![]() |
e2566d791e | ||
![]() |
19dcca75ad | ||
![]() |
bc0dfc5547 | ||
![]() |
5aaee53ef0 | ||
![]() |
7f77939dc1 | ||
939ed85cd2
|
|||
ad063f0dee
|
|||
5a7d1a45d5
|
|||
182e7de6e2
|
|||
96df7f70fb
|
|||
4978aafc37
|
|||
3b454999e5
|
|||
90746dfac0
|
|||
dd712fb52a
|
|||
074ff357a2
|
|||
ef7dbc642d
|
|||
45df092d37 | |||
167681a436 | |||
ed1b755a9c | |||
37619b95d4 | |||
d94172218e | |||
2a26281983 | |||
3b0ee9b414 | |||
09108c4f54 | |||
a1984cbc19 | |||
7119aabfbd | |||
721607cd9a |
89
Makefile
89
Makefile
@@ -1,89 +0,0 @@
|
||||
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
|
||||
|
22
Notes
Normal file
22
Notes
Normal file
@@ -0,0 +1,22 @@
|
||||
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
|
||||
|
||||
|
||||
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.
|
36
README.md
36
README.md
@@ -1,2 +1,36 @@
|
||||
# iso-profiles
|
||||
The artix 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
|
||||
|
||||
|
||||
|
@@ -2,14 +2,17 @@ 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
|
||||
@runit networkmanager-runit
|
||||
@runit ntp-runit
|
||||
@runit bluez-runit
|
||||
|
||||
intel-ucode
|
||||
amd-ucode
|
||||
|
@@ -24,6 +24,7 @@ glibc
|
||||
grep
|
||||
grub
|
||||
gzip
|
||||
htop
|
||||
inetutils
|
||||
iproute2
|
||||
iptables
|
||||
@@ -44,29 +45,30 @@ 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 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 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
|
||||
artix-sysvcompat
|
||||
os-prober
|
||||
pacman
|
||||
|
7
base/live-overlay/etc/issue.live
Normal file
7
base/live-overlay/etc/issue.live
Normal file
@@ -0,0 +1,7 @@
|
||||
Artix Live ISO (\l) - \s-\r \m
|
||||
|
||||
login for the live environment:
|
||||
user 'artix'
|
||||
password 'artix'
|
||||
|
||||
|
8
base/live-overlay/etc/polkit-1/rules.d/90-live.rules
Normal file
8
base/live-overlay/etc/polkit-1/rules.d/90-live.rules
Normal file
@@ -0,0 +1,8 @@
|
||||
/* 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;
|
||||
}
|
||||
});
|
1
base/live-overlay/etc/sudoers.d/u_root
Normal file
1
base/live-overlay/etc/sudoers.d/u_root
Normal file
@@ -0,0 +1 @@
|
||||
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
|
||||
# hostname="artix"
|
||||
# HOST_NANE="artix"
|
||||
|
||||
# default value
|
||||
# username="artix"
|
||||
# USER_NAME="artix"
|
||||
|
||||
# default value
|
||||
# password="artix"
|
||||
# PASSWORD="artix"
|
||||
|
173
community/desktop-overlay/etc/DIR_COLORS
Normal file
173
community/desktop-overlay/etc/DIR_COLORS
Normal file
@@ -0,0 +1,173 @@
|
||||
# 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
community/desktop-overlay/etc/bash
Symbolic link
1
community/desktop-overlay/etc/bash
Symbolic link
@@ -0,0 +1 @@
|
||||
../../live-overlay/etc/bash
|
1
community/desktop-overlay/etc/conf.d
Symbolic link
1
community/desktop-overlay/etc/conf.d
Symbolic link
@@ -0,0 +1 @@
|
||||
../../live-overlay/etc/conf.d
|
50
community/desktop-overlay/etc/default/grub
Normal file
50
community/desktop-overlay/etc/default/grub
Normal file
@@ -0,0 +1,50 @@
|
||||
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
community/desktop-overlay/etc/elogind
Symbolic link
1
community/desktop-overlay/etc/elogind
Symbolic link
@@ -0,0 +1 @@
|
||||
../../live-overlay/etc/elogind
|
2
community/desktop-overlay/etc/environment
Normal file
2
community/desktop-overlay/etc/environment
Normal file
@@ -0,0 +1,2 @@
|
||||
QT_QPA_PLATFORMTHEME=gtk2
|
||||
QT_STYLE_OVERRIDE=gtk
|
4
community/desktop-overlay/etc/local.d/0-remove-openbox-sessions.start
Executable file
4
community/desktop-overlay/etc/local.d/0-remove-openbox-sessions.start
Executable file
@@ -0,0 +1,4 @@
|
||||
#!/bin/bash
|
||||
|
||||
rm -f /usr/share/xsessions/openbox*
|
||||
rm -f /etc/local.d/0-remove-openbox-sessions.start &
|
1
community/desktop-overlay/etc/local.d/README
Symbolic link
1
community/desktop-overlay/etc/local.d/README
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../live-overlay/etc/local.d/README
|
1
community/desktop-overlay/etc/local.d/artix-icons.start
Symbolic link
1
community/desktop-overlay/etc/local.d/artix-icons.start
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../live-overlay/etc/local.d/artix-icons.start
|
6
community/desktop-overlay/etc/local.d/change-machine-id.start
Executable file
6
community/desktop-overlay/etc/local.d/change-machine-id.start
Executable file
@@ -0,0 +1,6 @@
|
||||
#!/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
community/desktop-overlay/etc/local.d/local.start
Symbolic link
1
community/desktop-overlay/etc/local.d/local.start
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../live-overlay/etc/local.d/local.start
|
1
community/desktop-overlay/etc/local.d/local.stop
Symbolic link
1
community/desktop-overlay/etc/local.d/local.stop
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../live-overlay/etc/local.d/local.stop
|
13
community/desktop-overlay/etc/local.d/mkinitcpio.start
Executable file
13
community/desktop-overlay/etc/local.d/mkinitcpio.start
Executable file
@@ -0,0 +1,13 @@
|
||||
#!/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
community/desktop-overlay/etc/local.d/theme-root.start
Symbolic link
1
community/desktop-overlay/etc/local.d/theme-root.start
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../live-overlay/etc/local.d/theme-root.start
|
66
community/desktop-overlay/etc/mkinitcpio.conf.mod
Normal file
66
community/desktop-overlay/etc/mkinitcpio.conf.mod
Normal file
@@ -0,0 +1,66 @@
|
||||
# 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
community/desktop-overlay/etc/pacman.conf
Symbolic link
1
community/desktop-overlay/etc/pacman.conf
Symbolic link
@@ -0,0 +1 @@
|
||||
../../live-overlay/etc/pacman.conf
|
19
community/desktop-overlay/etc/pacman.d/mirrorlist
Normal file
19
community/desktop-overlay/etc/pacman.d/mirrorlist
Normal file
@@ -0,0 +1,19 @@
|
||||
##
|
||||
## 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
|
538
community/desktop-overlay/etc/pacman.d/mirrorlist-arch
Normal file
538
community/desktop-overlay/etc/pacman.d/mirrorlist-arch
Normal file
@@ -0,0 +1,538 @@
|
||||
##
|
||||
## 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
|
||||
|
@@ -0,0 +1,8 @@
|
||||
# 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
|
@@ -0,0 +1,8 @@
|
||||
# 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
community/desktop-overlay/etc/rc.conf
Symbolic link
1
community/desktop-overlay/etc/rc.conf
Symbolic link
@@ -0,0 +1 @@
|
||||
../../live-overlay/etc/rc.conf
|
9
community/desktop-overlay/etc/rc.local
Executable file
9
community/desktop-overlay/etc/rc.local
Executable file
@@ -0,0 +1,9 @@
|
||||
#!/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
community/desktop-overlay/etc/runlevels
Symbolic link
1
community/desktop-overlay/etc/runlevels
Symbolic link
@@ -0,0 +1 @@
|
||||
../../live-overlay/etc/runlevels
|
250
community/desktop-overlay/etc/skel/.audacity-data/audacity.cfg
Normal file
250
community/desktop-overlay/etc/skel/.audacity-data/audacity.cfg
Normal file
@@ -0,0 +1,250 @@
|
||||
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
|
59
community/desktop-overlay/etc/skel/.config/.gtkrc-2.0-kde4
Normal file
59
community/desktop-overlay/etc/skel/.config/.gtkrc-2.0-kde4
Normal file
@@ -0,0 +1,59 @@
|
||||
# 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"
|
||||
|
46
community/desktop-overlay/etc/skel/.config/Trolltech.conf
Normal file
46
community/desktop-overlay/etc/skel/.config/Trolltech.conf
Normal file
@@ -0,0 +1,46 @@
|
||||
[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"
|
@@ -0,0 +1,39 @@
|
||||
<?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>
|
@@ -0,0 +1,25 @@
|
||||
<?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>
|
@@ -0,0 +1,8 @@
|
||||
[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
|
@@ -0,0 +1,6 @@
|
||||
[Desktop Entry]
|
||||
Exec=sh -c "~/.config/autostart/hide-other-icons.sh"
|
||||
Name=Hide desktop icons of other DEs
|
||||
StartupNotify=false
|
||||
Terminal=false
|
||||
Type=Application
|
34
community/desktop-overlay/etc/skel/.config/autostart/hide-other-icons.sh
Executable file
34
community/desktop-overlay/etc/skel/.config/autostart/hide-other-icons.sh
Executable file
@@ -0,0 +1,34 @@
|
||||
#!/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
|
@@ -0,0 +1,6 @@
|
||||
[Desktop Entry]
|
||||
Exec=sh -c "~/.config/autostart/homesymlinks.sh"
|
||||
Name=Fix installer symlinks
|
||||
StartupNotify=false
|
||||
Terminal=false
|
||||
Type=Application
|
6
community/desktop-overlay/etc/skel/.config/autostart/homesymlinks.sh
Executable file
6
community/desktop-overlay/etc/skel/.config/autostart/homesymlinks.sh
Executable file
@@ -0,0 +1,6 @@
|
||||
#!/bin/sh
|
||||
|
||||
cd $HOME
|
||||
ln -sf .face .face.icon &
|
||||
ln -sf .gtkrc-2.0 .gtkrc-2.0-kde4 &
|
||||
rm -f .config/autostart/homesymlinks.* &
|
8
community/desktop-overlay/etc/skel/.config/baloofilerc
Normal file
8
community/desktop-overlay/etc/skel/.config/baloofilerc
Normal file
@@ -0,0 +1,8 @@
|
||||
[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
|
134
community/desktop-overlay/etc/skel/.config/caja/accels
Normal file
134
community/desktop-overlay/etc/skel/.config/caja/accels
Normal file
@@ -0,0 +1,134 @@
|
||||
; 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")
|
@@ -0,0 +1,18 @@
|
||||
[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
|
48
community/desktop-overlay/etc/skel/.config/cmst/cmst.conf
Normal file
48
community/desktop-overlay/etc/skel/.config/cmst/cmst.conf
Normal file
@@ -0,0 +1,48 @@
|
||||
[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
|
218
community/desktop-overlay/etc/skel/.config/cmst/cmst.icon
Normal file
218
community/desktop-overlay/etc/skel/.config/cmst/cmst.icon
Normal file
@@ -0,0 +1,218 @@
|
||||
# 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
|
||||
|
53
community/desktop-overlay/etc/skel/.config/compton.conf
Normal file
53
community/desktop-overlay/etc/skel/.config/compton.conf
Normal file
@@ -0,0 +1,53 @@
|
||||
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;
|
BIN
community/desktop-overlay/etc/skel/.config/dconf/user
Normal file
BIN
community/desktop-overlay/etc/skel/.config/dconf/user
Normal file
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,157 @@
|
||||
[AdBlock]
|
||||
disabledRules=@Invalid()
|
||||
enabled=true
|
||||
lastUpdate=@DateTime(\0\0\0\x10\0\0\0\0\0\0%\x83\x1a\0\xf\x1du\0)
|
||||
|
||||
[AddressBar]
|
||||
CustomProgressColor=@Variant(\0\0\0\x43\x1\xff\xff\x30\x30\x8c\x8c\xc6\xc6\0\0)
|
||||
ProgressStyle=0
|
||||
SelectAllTextOnClick=false
|
||||
SelectAllTextOnDoubleClick=true
|
||||
ShowLoadingProgress=false
|
||||
UseCustomProgressColor=false
|
||||
alwaysShowGoIcon=true
|
||||
showSuggestions=0
|
||||
showSwitchTab=true
|
||||
useInlineCompletion=true
|
||||
|
||||
[Browser]
|
||||
RunsWithoutOptimizeDb=5
|
||||
|
||||
[Browser-Fonts]
|
||||
CursiveFont=TeX Gyre Chorus
|
||||
DefaultFontSize=15
|
||||
FantasyFont=Impact
|
||||
FixedFont=Fira Mono
|
||||
FixedFontSize=14
|
||||
MinimumFontSize=3
|
||||
MinimumLogicalFontSize=5
|
||||
SansSerifFont=Fira Sans
|
||||
SerifFont=DejaVu Serif
|
||||
StandardFont=DejaVu Serif
|
||||
|
||||
[Browser-Tabs-Settings]
|
||||
ActivateLastTabWhenClosingActual=false
|
||||
AlwaysSwitchTabsWithWheel=false
|
||||
AskOnClosing=false
|
||||
OpenNewTabsSelected=false
|
||||
OpenPopupsInTabs=true
|
||||
TabsOnTop=true
|
||||
dontCloseWithOneTab=false
|
||||
hideTabsWithOneTab=false
|
||||
newEmptyTabAfterActive=false
|
||||
newTabAfterActive=true
|
||||
showCloseOnInactiveTabs=0
|
||||
showClosedTabsButton=false
|
||||
|
||||
[Browser-View-Settings]
|
||||
LocationBarWidth=1081
|
||||
SideBar=
|
||||
SideBarWidth=250
|
||||
WebSearchBarWidth=314
|
||||
WebViewWidth=2000
|
||||
WindowGeometry=@ByteArray(\x1\xd9\xd0\xcb\0\x2\0\0\0\0\0\0\0\0\0\0\0\0\x6\x8f\0\0\x3\xf3\0\0\0\xc2\0\0\0\x82\0\0\x5\xcd\0\0\x3\x8b\0\0\0\0\x2\0\0\0\x6\x90)
|
||||
instantBookmarksToolbar=false
|
||||
settingsDialogPage=0
|
||||
showBookmarksToolbar=false
|
||||
showNavigationToolbar=true
|
||||
showStatusBar=true
|
||||
|
||||
[Cookie-Settings]
|
||||
allowCookies=true
|
||||
blacklist=@Invalid()
|
||||
deleteCookiesOnClose=false
|
||||
filterThirdPartyCookies=false
|
||||
filterTrackingCookie=false
|
||||
whitelist=@Invalid()
|
||||
|
||||
[DownloadManager]
|
||||
CloseManagerOnFinish=false
|
||||
ExternalManagerArguments=
|
||||
ExternalManagerExecutable=
|
||||
UseExternalManager=false
|
||||
defaultDownloadPath=
|
||||
|
||||
[Notifications]
|
||||
Enabled=true
|
||||
Position=@Point(10 10)
|
||||
Timeout=6000
|
||||
UseNativeDesktop=true
|
||||
|
||||
[Plugin-Settings]
|
||||
AllowedPlugins=internal:adblock, lib:StatusBarIcons.so, lib:TabManager.so
|
||||
|
||||
[Preferences]
|
||||
Geometry="@ByteArray(\x1\xd9\xd0\xcb\0\x2\0\0\0\0\x1_\0\0\0]\0\0\x5s\0\0\x3=\0\0\x1\x65\0\0\0~\0\0\x5m\0\0\x3\x37\0\0\0\0\0\0\0\0\x6\x90)"
|
||||
|
||||
[SearchEngines]
|
||||
DefaultEngine=DuckDuckGo
|
||||
SearchFromAddressBar=true
|
||||
SearchWithDefaultEngine=false
|
||||
activeEngine=DuckDuckGo
|
||||
showSearchSuggestions=true
|
||||
|
||||
[SessionRestore]
|
||||
isRestoring=false
|
||||
isRunning=true
|
||||
|
||||
[Shortcuts]
|
||||
useSingleKeyShortcuts=false
|
||||
useSpeedDialNumberShortcuts=true
|
||||
useTabNumberShortcuts=true
|
||||
|
||||
[SpeedDial]
|
||||
background=file:///usr/share/backgrounds/space1080p.jpg
|
||||
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\";"
|
||||
pagesrow=4
|
||||
sdcenter=false
|
||||
sdsize=231
|
||||
|
||||
[SpellCheck]
|
||||
Enabled=false
|
||||
Languages=@Invalid()
|
||||
|
||||
[Themes]
|
||||
activeTheme=linux
|
||||
|
||||
[Web-Browser-Settings]
|
||||
AllowLocalCache=true
|
||||
AnimateScrolling=true
|
||||
AutoCompletePasswords=true
|
||||
AutomaticallyOpenProtocols=@Invalid()
|
||||
BlockOpeningProtocols=@Invalid()
|
||||
CheckUpdates=true
|
||||
DefaultZoomLevel=6
|
||||
DoNotTrack=false
|
||||
HTML5StorageEnabled=true
|
||||
IncludeLinkInFocusChain=false
|
||||
LoadTabsOnActivation=true
|
||||
LocalCacheSize=50
|
||||
PrintElementBackground=true
|
||||
SavePasswordsOnSites=true
|
||||
SpatialNavigation=false
|
||||
UseNativeScrollbars=false
|
||||
XSSAuditing=false
|
||||
allowHistory=true
|
||||
allowJavaScript=true
|
||||
allowPlugins=true
|
||||
closeAppWithCtrlQ=true
|
||||
deleteCacheOnClose=false
|
||||
deleteHTML5StorageOnClose=false
|
||||
deleteHistoryOnClose=false
|
||||
lastActiveSessionPath=../session.dat
|
||||
userStyleSheet=
|
||||
wheelScrollLines=3
|
||||
|
||||
[Web-Proxy]
|
||||
HostName=
|
||||
Password=
|
||||
Port=8080
|
||||
ProxyType=2
|
||||
Username=
|
||||
|
||||
[Web-URL-Settings]
|
||||
afterLaunch=3
|
||||
homepage=@Variant(\0\0\0\x11\0\0\0\x16https://artixlinux.org)
|
||||
newTabUrl=@Variant(\0\0\0\x11\0\0\0\x10\x66\x61lkon:speeddial)
|
@@ -0,0 +1,2 @@
|
||||
[Profiles]
|
||||
startProfile="default"
|
@@ -0,0 +1,41 @@
|
||||
<?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>
|
@@ -0,0 +1,121 @@
|
||||
#
|
||||
# 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
|
@@ -0,0 +1,121 @@
|
||||
#
|
||||
# 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
|
@@ -0,0 +1,120 @@
|
||||
#
|
||||
# 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
|
@@ -0,0 +1,135 @@
|
||||
#
|
||||
# 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
|
@@ -0,0 +1,147 @@
|
||||
#
|
||||
# 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
|
216
community/desktop-overlay/etc/skel/.config/geany/geany.conf
Normal file
216
community/desktop-overlay/etc/skel/.config/geany/geany.conf
Normal file
@@ -0,0 +1,216 @@
|
||||
[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
|
@@ -0,0 +1,11 @@
|
||||
[Filechooser Settings]
|
||||
LocationMode=path-bar
|
||||
ShowHidden=false
|
||||
ShowSizeColumn=true
|
||||
GeometryX=249
|
||||
GeometryY=127
|
||||
GeometryWidth=942
|
||||
GeometryHeight=643
|
||||
SortColumn=name
|
||||
SortOrder=ascending
|
||||
StartupMode=recent
|
12
community/desktop-overlay/etc/skel/.config/gtk-3.0/gtk.css
Normal file
12
community/desktop-overlay/etc/skel/.config/gtk-3.0/gtk.css
Normal file
@@ -0,0 +1,12 @@
|
||||
.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;
|
||||
}
|
@@ -0,0 +1,19 @@
|
||||
[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
|
56
community/desktop-overlay/etc/skel/.config/gtkrc
Normal file
56
community/desktop-overlay/etc/skel/.config/gtkrc
Normal file
@@ -0,0 +1,56 @@
|
||||
# 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"
|
||||
|
59
community/desktop-overlay/etc/skel/.config/gtkrc-2.0
Normal file
59
community/desktop-overlay/etc/skel/.config/gtkrc-2.0
Normal file
@@ -0,0 +1,59 @@
|
||||
# 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"
|
||||
|
2
community/desktop-overlay/etc/skel/.config/gwenviewrc
Normal file
2
community/desktop-overlay/etc/skel/.config/gwenviewrc
Normal file
@@ -0,0 +1,2 @@
|
||||
[General]
|
||||
ViewBackgroundValue=46
|
@@ -0,0 +1 @@
|
||||
limit = 256
|
@@ -0,0 +1,42 @@
|
||||
color_0 = d3d3 d7d7 cfcf
|
||||
color_1 = 2e2e 3434 3636
|
||||
color_2 = 3434 6565 a4a4
|
||||
color_3 = 4e4e 9a9a 0606
|
||||
color_4 = cccc 0000 0000
|
||||
color_5 = 8f8f 3939 0202
|
||||
color_6 = 5c5c 3535 6666
|
||||
color_7 = cece 5c5c 0000
|
||||
color_8 = c4c4 a0a0 0000
|
||||
color_9 = 7373 d2d2 1616
|
||||
color_10 = 1111 a8a8 7979
|
||||
color_11 = 5858 a1a1 9d9d
|
||||
color_12 = 5757 7979 9e9e
|
||||
color_13 = a0d0 42d4 6562
|
||||
color_14 = 5555 5757 5353
|
||||
color_15 = 8888 8a8a 8585
|
||||
color_16 = d3d3 d7d7 cfcf
|
||||
color_17 = 2e2e 3434 3636
|
||||
color_18 = 3434 6565 a4a4
|
||||
color_19 = 4e4e 9a9a 0606
|
||||
color_20 = cccc 0000 0000
|
||||
color_21 = 8f8f 3939 0202
|
||||
color_22 = 5c5c 3535 6666
|
||||
color_23 = cece 5c5c 0000
|
||||
color_24 = c4c4 a0a0 0000
|
||||
color_25 = 7373 d2d2 1616
|
||||
color_26 = 1111 a8a8 7979
|
||||
color_27 = 5858 a1a1 9d9d
|
||||
color_28 = 5757 7979 9e9e
|
||||
color_29 = a0d0 42d4 6562
|
||||
color_30 = 294a 2ba9 26eb
|
||||
color_31 = 4029 4029 4029
|
||||
color_256 = d3d3 d7d7 cfcf
|
||||
color_257 = 2020 4a4a 8787
|
||||
color_258 = dae6 dae6 dae6
|
||||
color_259 = 0000 0000 0000
|
||||
color_260 = 8f8f 3939 0202
|
||||
color_261 = 3434 6565 a4a4
|
||||
color_262 = 4e4e 9a9a 0606
|
||||
color_263 = cece 5c5c 0000
|
||||
color_264 = 8888 8a8a 8585
|
||||
color_265 = a4a4 0000 0000
|
210
community/desktop-overlay/etc/skel/.config/hexchat/hexchat.conf
Normal file
210
community/desktop-overlay/etc/skel/.config/hexchat/hexchat.conf
Normal file
@@ -0,0 +1,210 @@
|
||||
version = 2.14.1
|
||||
away_auto_unmark = 0
|
||||
away_omit_alerts = 0
|
||||
away_reason = I'm busy
|
||||
away_show_once = 1
|
||||
away_size_max = 300
|
||||
away_timeout = 60
|
||||
away_track = 1
|
||||
completion_amount = 5
|
||||
completion_auto = 0
|
||||
completion_sort = 1
|
||||
completion_suffix = :
|
||||
dcc_auto_chat = 0
|
||||
dcc_auto_recv = 1
|
||||
dcc_auto_resume = 1
|
||||
dcc_blocksize = 1024
|
||||
dcc_completed_dir =
|
||||
dcc_fast_send = 1
|
||||
dcc_global_max_get_cps = 0
|
||||
dcc_global_max_send_cps = 0
|
||||
dcc_ip =
|
||||
dcc_ip_from_server = 0
|
||||
dcc_max_get_cps = 0
|
||||
dcc_max_send_cps = 0
|
||||
dcc_permissions = 384
|
||||
dcc_port_first = 0
|
||||
dcc_port_last = 0
|
||||
dcc_remove = 0
|
||||
dcc_save_nick = 0
|
||||
dcc_send_fillspaces = 0
|
||||
dcc_stall_timeout = 60
|
||||
dcc_timeout = 180
|
||||
flood_ctcp_num = 5
|
||||
flood_ctcp_time = 30
|
||||
flood_msg_num = 5
|
||||
flood_msg_time = 30
|
||||
gui_autoopen_chat = 1
|
||||
gui_autoopen_dialog = 1
|
||||
gui_autoopen_recv = 1
|
||||
gui_autoopen_send = 1
|
||||
gui_chanlist_maxusers = 9999
|
||||
gui_chanlist_minusers = 5
|
||||
gui_compact = 0
|
||||
gui_dialog_height = 256
|
||||
gui_dialog_left = 0
|
||||
gui_dialog_top = 0
|
||||
gui_dialog_width = 500
|
||||
gui_filesize_iec = 0
|
||||
gui_focus_omitalerts = 0
|
||||
gui_hide_menu = 0
|
||||
gui_input_attr = 1
|
||||
gui_input_icon = 1
|
||||
gui_input_nick = 1
|
||||
gui_input_spell = 1
|
||||
gui_input_style = 1
|
||||
gui_join_dialog = 1
|
||||
gui_lagometer = 2
|
||||
gui_lang = 15
|
||||
gui_mode_buttons = 0
|
||||
gui_pane_divider_position = 0
|
||||
gui_pane_left_size = 128
|
||||
gui_pane_right_size = 100
|
||||
gui_pane_right_size_min = 80
|
||||
gui_quit_dialog = 1
|
||||
gui_search_pos = 0
|
||||
gui_slist_fav = 0
|
||||
gui_slist_select = 0
|
||||
gui_slist_skip = 1
|
||||
gui_tab_chans = 1
|
||||
gui_tab_dialogs = 1
|
||||
gui_tab_dots = 0
|
||||
gui_tab_icons = 1
|
||||
gui_tab_layout = 0
|
||||
gui_tab_middleclose = 1
|
||||
gui_tab_newtofront = 2
|
||||
gui_tab_pos = 6
|
||||
gui_tab_scrollchans = 0
|
||||
gui_tab_server = 1
|
||||
gui_tab_small = 0
|
||||
gui_tab_sort = 1
|
||||
gui_tab_trunc = 20
|
||||
gui_tab_utils = 0
|
||||
gui_throttlemeter = 2
|
||||
gui_topicbar = 1
|
||||
gui_transparency = 255
|
||||
gui_tray = 1
|
||||
gui_tray_away = 0
|
||||
gui_tray_blink = 1
|
||||
gui_tray_close = 0
|
||||
gui_tray_minimize = 0
|
||||
gui_tray_quiet = 0
|
||||
gui_ulist_buttons = 0
|
||||
gui_ulist_color = 1
|
||||
gui_ulist_count = 1
|
||||
gui_ulist_doubleclick = QUERY %s
|
||||
gui_ulist_hide = 0
|
||||
gui_ulist_icons = 1
|
||||
gui_ulist_pos = 3
|
||||
gui_ulist_show_hosts = 0
|
||||
gui_ulist_sort = 0
|
||||
gui_ulist_style = 1
|
||||
gui_url_mod = 0
|
||||
gui_usermenu = 0
|
||||
gui_win_height = 728
|
||||
gui_win_fullscreen = 0
|
||||
gui_win_left = 282
|
||||
gui_win_modes = 1
|
||||
gui_win_save = 1
|
||||
gui_win_state = 0
|
||||
gui_win_swap = 0
|
||||
gui_win_top = 122
|
||||
gui_win_ucount = 1
|
||||
gui_win_width = 1103
|
||||
identd_server = 0
|
||||
identd_port = 0
|
||||
input_balloon_chans = 0
|
||||
input_balloon_hilight = 0
|
||||
input_balloon_priv = 0
|
||||
input_beep_chans = 0
|
||||
input_beep_hilight = 0
|
||||
input_beep_priv = 0
|
||||
input_command_char = /
|
||||
input_filter_beep = 1
|
||||
input_flash_chans = 0
|
||||
input_flash_hilight = 1
|
||||
input_flash_priv = 1
|
||||
input_perc_ascii = 0
|
||||
input_perc_color = 0
|
||||
input_tray_chans = 0
|
||||
input_tray_hilight = 1
|
||||
input_tray_priv = 1
|
||||
irc_auto_rejoin = 0
|
||||
irc_reconnect_rejoin = 1
|
||||
irc_ban_type = 1
|
||||
irc_cap_server_time = 1
|
||||
irc_conf_mode = 0
|
||||
irc_extra_hilight =
|
||||
irc_hide_nickchange = 0
|
||||
irc_hide_version = 0
|
||||
irc_hidehost = 0
|
||||
irc_id_ntext =
|
||||
irc_id_ytext =
|
||||
irc_invisible = 0
|
||||
irc_join_delay = 5
|
||||
irc_logging = 1
|
||||
irc_logmask = %n/%c.log
|
||||
irc_nick1 = artix_live_1
|
||||
irc_nick2 = artix_live_2
|
||||
irc_nick3 = artix_live_3
|
||||
irc_nick_hilight =
|
||||
irc_no_hilight = NickServ,ChanServ,InfoServ,N,Q
|
||||
irc_notice_pos = 0
|
||||
irc_part_reason = Leaving
|
||||
irc_quit_reason = Leaving
|
||||
irc_raw_modes = 0
|
||||
irc_real_name = realname
|
||||
irc_servernotice = 0
|
||||
irc_skip_motd = 0
|
||||
irc_user_name = loouom
|
||||
irc_wallops = 0
|
||||
irc_who_join = 1
|
||||
irc_whois_front = 1
|
||||
net_auto_reconnect = 1
|
||||
net_auto_reconnectonfail = 0
|
||||
net_bind_host =
|
||||
net_ping_timeout = 60
|
||||
net_proxy_auth = 0
|
||||
net_proxy_host =
|
||||
net_proxy_pass =
|
||||
net_proxy_port = 0
|
||||
net_proxy_type = 0
|
||||
net_proxy_use = 0
|
||||
net_proxy_user =
|
||||
net_reconnect_delay = 10
|
||||
net_throttle = 1
|
||||
notify_timeout = 15
|
||||
notify_whois_online = 0
|
||||
perl_warnings = 0
|
||||
stamp_log = 1
|
||||
stamp_log_format = %b %d %H:%M:%S
|
||||
stamp_text = 1
|
||||
stamp_text_format = [%H:%M:%S]
|
||||
text_autocopy_color = 0
|
||||
text_autocopy_stamp = 0
|
||||
text_autocopy_text = 1
|
||||
text_background =
|
||||
text_color_nicks = 1
|
||||
text_font = Monospace 10
|
||||
text_font_main = Monospace 9
|
||||
text_font_alternative = Arial Unicode MS,Segoe UI Emoji,Lucida Sans Unicode,Meiryo,Symbola,Unifont
|
||||
text_indent = 1
|
||||
text_max_indent = 256
|
||||
text_max_lines = 5000
|
||||
text_replay = 1
|
||||
text_search_case_match = 0
|
||||
text_search_highlight_all = 0
|
||||
text_search_follow = 1
|
||||
text_search_regexp = 0
|
||||
text_show_marker = 1
|
||||
text_show_sep = 1
|
||||
text_spell_langs = en_US
|
||||
text_stripcolor_msg = 0
|
||||
text_stripcolor_replay = 1
|
||||
text_stripcolor_topic = 1
|
||||
text_thin_sep = 1
|
||||
text_transparent = 0
|
||||
text_wordwrap = 1
|
||||
url_grabber = 1
|
||||
url_grabber_limit = 100
|
||||
url_logging = 0
|
@@ -0,0 +1,12 @@
|
||||
v=2.14.1
|
||||
|
||||
N=freenode
|
||||
L=6
|
||||
E=UTF-8 (Unicode)
|
||||
F=63
|
||||
D=1
|
||||
S=chat.freenode.net
|
||||
S=irc.freenode.net
|
||||
J=#artix
|
||||
J=#artix-unregistered
|
||||
|
@@ -0,0 +1,56 @@
|
||||
<?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>
|
After Width: | Height: | Size: 1.6 KiB |
36
community/desktop-overlay/etc/skel/.config/k3brc
Normal file
36
community/desktop-overlay/etc/skel/.config/k3brc
Normal file
@@ -0,0 +1,36 @@
|
||||
[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
|
@@ -0,0 +1,5 @@
|
||||
[activities]
|
||||
78b09966-59e0-4506-ad9a-140cae783f24=Default
|
||||
|
||||
[main]
|
||||
currentActivity=78b09966-59e0-4506-ad9a-140cae783f24
|
120
community/desktop-overlay/etc/skel/.config/katerc
Normal file
120
community/desktop-overlay/etc/skel/.config/katerc
Normal file
@@ -0,0 +1,120 @@
|
||||
[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
|
46
community/desktop-overlay/etc/skel/.config/kateschemarc
Normal file
46
community/desktop-overlay/etc/skel/.config/kateschemarc
Normal file
@@ -0,0 +1,46 @@
|
||||
[$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
|
2
community/desktop-overlay/etc/skel/.config/kcmdisplayrc
Normal file
2
community/desktop-overlay/etc/skel/.config/kcmdisplayrc
Normal file
@@ -0,0 +1,2 @@
|
||||
[X11]
|
||||
exportKDEColors=true
|
3
community/desktop-overlay/etc/skel/.config/kcmfonts
Normal file
3
community/desktop-overlay/etc/skel/.config/kcmfonts
Normal file
@@ -0,0 +1,3 @@
|
||||
[General]
|
||||
dontChangeAASettings=false
|
||||
forceFontDPI=0
|
3
community/desktop-overlay/etc/skel/.config/kcminputrc
Normal file
3
community/desktop-overlay/etc/skel/.config/kcminputrc
Normal file
@@ -0,0 +1,3 @@
|
||||
[Mouse]
|
||||
cursorSize=0
|
||||
cursorTheme=Premium
|
71
community/desktop-overlay/etc/skel/.config/kded5rc
Normal file
71
community/desktop-overlay/etc/skel/.config/kded5rc
Normal file
@@ -0,0 +1,71 @@
|
||||
[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
|
@@ -0,0 +1,2 @@
|
||||
[General]
|
||||
AutomountEnabled=true
|
142
community/desktop-overlay/etc/skel/.config/kdeglobals
Normal file
142
community/desktop-overlay/etc/skel/.config/kdeglobals
Normal file
@@ -0,0 +1,142 @@
|
||||
[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
|
96
community/desktop-overlay/etc/skel/.config/kdenliverc
Normal file
96
community/desktop-overlay/etc/skel/.config/kdenliverc
Normal file
@@ -0,0 +1,96 @@
|
||||
[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
|
@@ -0,0 +1,12 @@
|
||||
[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)
|
6
community/desktop-overlay/etc/skel/.config/kiorc
Normal file
6
community/desktop-overlay/etc/skel/.config/kiorc
Normal file
@@ -0,0 +1,6 @@
|
||||
[Confirmations]
|
||||
ConfirmDelete=true
|
||||
ConfirmTrash=false
|
||||
|
||||
[Executable scripts]
|
||||
behaviourOnLaunch=alwaysAsk
|
6
community/desktop-overlay/etc/skel/.config/konsolerc
Normal file
6
community/desktop-overlay/etc/skel/.config/konsolerc
Normal file
@@ -0,0 +1,6 @@
|
||||
[Desktop Entry]
|
||||
DefaultProfile=Profile 1.profile
|
||||
|
||||
[MainWindow]
|
||||
Height 956=484
|
||||
Width 1920=732
|
168
community/desktop-overlay/etc/skel/.config/konversationrc
Normal file
168
community/desktop-overlay/etc/skel/.config/konversationrc
Normal file
@@ -0,0 +1,168 @@
|
||||
[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
|
@@ -0,0 +1,8 @@
|
||||
[$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
|
7
community/desktop-overlay/etc/skel/.config/ksmserverrc
Normal file
7
community/desktop-overlay/etc/skel/.config/ksmserverrc
Normal file
@@ -0,0 +1,7 @@
|
||||
[General]
|
||||
confirmLogout=true
|
||||
excludeApps=cmst,konversation
|
||||
loginMode=default
|
||||
offerShutdown=true
|
||||
screenCount=1
|
||||
shutdownType=0
|
3
community/desktop-overlay/etc/skel/.config/ksplashrc
Normal file
3
community/desktop-overlay/etc/skel/.config/ksplashrc
Normal file
@@ -0,0 +1,3 @@
|
||||
[KSplash]
|
||||
Engine=KSplashQML
|
||||
Theme=artix.dark
|
22
community/desktop-overlay/etc/skel/.config/kwinrc
Normal file
22
community/desktop-overlay/etc/skel/.config/kwinrc
Normal file
@@ -0,0 +1,22 @@
|
||||
[$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=
|
2
community/desktop-overlay/etc/skel/.config/kwinrulesrc
Normal file
2
community/desktop-overlay/etc/skel/.config/kwinrulesrc
Normal file
@@ -0,0 +1,2 @@
|
||||
[General]
|
||||
count=0
|
95
community/desktop-overlay/etc/skel/.config/kwriterc
Normal file
95
community/desktop-overlay/etc/skel/.config/kwriterc
Normal file
@@ -0,0 +1,95 @@
|
||||
[General Options]
|
||||
ShowMenuBar=true
|
||||
ShowPath=false
|
||||
ShowStatusBar=true
|
||||
|
||||
[KTextEditor Document]
|
||||
Allow End of Line Detection=true
|
||||
BOM=false
|
||||
Backup Local=false
|
||||
Backup Prefix=
|
||||
Backup Remote=false
|
||||
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-1
|
||||
|
||||
[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
|
||||
Chars To Enclose Selection=
|
||||
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=false
|
||||
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=true
|
||||
Scroll Bar Mini Map All=true
|
||||
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]
|
||||
State=AAAA/wAAAAD9AAAAAAAAAoAAAAGhAAAABAAAAAQAAAAIAAAACPwAAAABAAAAAgAAAAEAAAAWAG0AYQBpAG4AVABvAG8AbABCAGEAcgEAAAAA/////wAAAAAAAAAA
|
||||
ToolBarsMovable=Disabled
|
@@ -0,0 +1,7 @@
|
||||
0.8.18.1
|
||||
600
|
||||
400
|
||||
Monospace 12
|
||||
1
|
||||
0
|
||||
1
|
43
community/desktop-overlay/etc/skel/.config/libfm/libfm.conf
Normal file
43
community/desktop-overlay/etc/skel/.config/libfm/libfm.conf
Normal file
@@ -0,0 +1,43 @@
|
||||
# Configuration file for the libfm version 1.3.1.
|
||||
# Autogenerated file, don't edit, your changes will be overwritten.
|
||||
|
||||
[config]
|
||||
single_click=0
|
||||
use_trash=1
|
||||
confirm_del=1
|
||||
confirm_trash=1
|
||||
advanced_mode=0
|
||||
si_unit=0
|
||||
force_startup_notify=1
|
||||
backup_as_hidden=1
|
||||
no_usb_trash=1
|
||||
no_child_non_expandable=0
|
||||
show_full_names=0
|
||||
only_user_templates=0
|
||||
template_run_app=0
|
||||
template_type_once=0
|
||||
auto_selection_delay=600
|
||||
drop_default_action=auto
|
||||
defer_content_test=0
|
||||
quick_exec=0
|
||||
thumbnail_local=1
|
||||
thumbnail_max=2048
|
||||
smart_desktop_autodrop=1
|
||||
|
||||
[ui]
|
||||
big_icon_size=48
|
||||
small_icon_size=24
|
||||
pane_icon_size=24
|
||||
thumbnail_size=128
|
||||
show_thumbnail=1
|
||||
shadow_hidden=0
|
||||
|
||||
[places]
|
||||
places_home=1
|
||||
places_desktop=1
|
||||
places_root=0
|
||||
places_computer=0
|
||||
places_trash=1
|
||||
places_applications=1
|
||||
places_network=0
|
||||
places_unmounted=1
|
File diff suppressed because one or more lines are too long
@@ -0,0 +1,14 @@
|
||||
[General]
|
||||
bgColor=@Variant(\0\0\0\x43\x1\xff\xff!!\x1f\x1f\x1f\x1f\0\0)
|
||||
fallbackIconTheme=oxygen
|
||||
fullScreenBgColor=@Variant(\0\0\0\x43\x1\xff\xff\0\0\0\0\0\0\0\0)
|
||||
recentlyOpenedFiles=@Invalid()
|
||||
slideShowInterval=5
|
||||
|
||||
[Window]
|
||||
FixedHeight=480
|
||||
FixedWidth=640
|
||||
LastWindowHeight=480
|
||||
LastWindowMaximized=false
|
||||
LastWindowWidth=640
|
||||
RememberWindowSize=true
|
@@ -0,0 +1,2 @@
|
||||
[Command]
|
||||
Logout=lxde-logout
|
@@ -0,0 +1,135 @@
|
||||
# lxpanel <profile> config file. Manually editing is not recommended.
|
||||
# Use preference dialog in lxpanel to adjust config when you can.
|
||||
|
||||
Global {
|
||||
edge=bottom
|
||||
align=left
|
||||
margin=0
|
||||
widthtype=percent
|
||||
width=100
|
||||
height=34
|
||||
transparent=1
|
||||
tintcolor=#dedede
|
||||
alpha=20
|
||||
setdocktype=1
|
||||
setpartialstrut=1
|
||||
autohide=0
|
||||
heightwhenhidden=0
|
||||
usefontcolor=1
|
||||
fontcolor=#ffffff
|
||||
background=0
|
||||
backgroundfile=/usr/share/lxpanel/images/background.png
|
||||
iconsize=32
|
||||
usefontsize=0
|
||||
fontsize=11
|
||||
}
|
||||
Plugin {
|
||||
type=menu
|
||||
Config {
|
||||
image=/usr/share/icons/artix/logo.svg
|
||||
system {
|
||||
}
|
||||
separator {
|
||||
}
|
||||
item {
|
||||
command=run
|
||||
}
|
||||
separator {
|
||||
}
|
||||
item {
|
||||
image=gnome-logout
|
||||
command=logout
|
||||
}
|
||||
}
|
||||
}
|
||||
Plugin {
|
||||
type=space
|
||||
Config {
|
||||
Size=2
|
||||
}
|
||||
}
|
||||
Plugin {
|
||||
type=wincmd
|
||||
Config {
|
||||
Button1=iconify
|
||||
Button2=shade
|
||||
}
|
||||
}
|
||||
Plugin {
|
||||
type=launchbar
|
||||
Config {
|
||||
Button {
|
||||
id=org.midori_browser.Midori.desktop
|
||||
}
|
||||
Button {
|
||||
id=pcmanfm.desktop
|
||||
}
|
||||
Button {
|
||||
id=lxterminal.desktop
|
||||
}
|
||||
}
|
||||
}
|
||||
Plugin {
|
||||
type=space
|
||||
Config {
|
||||
Size=8
|
||||
}
|
||||
}
|
||||
Plugin {
|
||||
type=taskbar
|
||||
expand=1
|
||||
Config {
|
||||
tooltips=1
|
||||
IconsOnly=0
|
||||
AcceptSkipPager=1
|
||||
ShowIconified=1
|
||||
ShowMapped=1
|
||||
ShowAllDesks=0
|
||||
UseMouseWheel=1
|
||||
UseUrgencyHint=1
|
||||
FlatButton=0
|
||||
MaxTaskWidth=156
|
||||
spacing=1
|
||||
}
|
||||
}
|
||||
Plugin {
|
||||
type=space
|
||||
Config {
|
||||
Size=4
|
||||
}
|
||||
}
|
||||
Plugin {
|
||||
type=tray
|
||||
Config {
|
||||
}
|
||||
}
|
||||
Plugin {
|
||||
type=xkb
|
||||
Config {
|
||||
Model=pc105
|
||||
LayoutsList=us
|
||||
VariantsList=,
|
||||
ToggleOpt=grp:shift_caps_toggle
|
||||
FlagSize=2
|
||||
}
|
||||
}
|
||||
Plugin {
|
||||
type=volume
|
||||
Config {
|
||||
}
|
||||
}
|
||||
Plugin {
|
||||
type=space
|
||||
Config {
|
||||
}
|
||||
}
|
||||
Plugin {
|
||||
type=dclock
|
||||
Config {
|
||||
ClockFmt=%R
|
||||
TooltipFmt=%A %x
|
||||
BoldFont=1
|
||||
IconOnly=0
|
||||
CenterText=1
|
||||
}
|
||||
}
|
@@ -0,0 +1,4 @@
|
||||
[special_cases]
|
||||
synaptic=synaptic-pkexec
|
||||
soffice.bin=libreoffice
|
||||
x-terminal-emulator=lxterminal
|
@@ -0,0 +1,3 @@
|
||||
[General]
|
||||
ControlGTKThemeEnabled=true
|
||||
__userfile__=true
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user