Compare commits
42 Commits
Author | SHA1 | Date | |
---|---|---|---|
921e5570d2 | |||
4573639aad | |||
01116064d8 | |||
1b6a01059e | |||
50047b34d1
|
|||
beba22b7de
|
|||
5d9c34ecbc
|
|||
543d187410
|
|||
eb68ee0f4c
|
|||
75732c0535
|
|||
b91b031f61
|
|||
615b0b5c8b
|
|||
789d275a9e
|
|||
6fddae07f9
|
|||
ab8c7e8dd1
|
|||
b6d1a9ea66
|
|||
d72ea894ee
|
|||
dce341da7a
|
|||
d296314c53
|
|||
205fa6a0aa
|
|||
e96364749a
|
|||
8165a2dec9
|
|||
906788ebad
|
|||
fde1fcda05
|
|||
6457902a00
|
|||
dc7e3d4935
|
|||
fa7ad804fa
|
|||
583fc0d69d
|
|||
449a27ca10
|
|||
375e6d4dd3
|
|||
9ba1b12ee4
|
|||
9f07561ecc | |||
ef361e63b8 | |||
eef9b2d4e1 | |||
cb9bb25be6
|
|||
e80c0019b9
|
|||
3d0d883e58
|
|||
3647eb381b
|
|||
9d4dec2c55
|
|||
4337427a44
|
|||
c117b8bec9
|
|||
43fd240ebe
|
@@ -37,6 +37,7 @@ TERM screen
|
||||
TERM screen-bce
|
||||
TERM screen-w
|
||||
TERM screen.linux
|
||||
TERM screen.xterm-256color
|
||||
TERM vt100
|
||||
TERM xterm
|
||||
TERM xterm-256color
|
||||
@@ -110,7 +111,7 @@ EXEC 01;32
|
||||
.cpio 00;31 # cpio
|
||||
.7z 00;31 # p7zip
|
||||
.rz 00;31 # rzip
|
||||
.zst 00;31
|
||||
.zst 00;31 # zst
|
||||
|
||||
# image formats
|
||||
.jpg 00;35
|
||||
|
@@ -1,14 +0,0 @@
|
||||
#!/bin/sh
|
||||
# local.d execution in runit/s6
|
||||
|
||||
init=$(ls -l /sbin/init | sed 's/.*->\ \(.*\)-init/\1/')
|
||||
|
||||
case $init in
|
||||
runit|s6) for script in /etc/local.d/*.start; do
|
||||
[[ $script =~ local.start ]] && continue
|
||||
[[ $script =~ $0 ]] && continue
|
||||
[[ -x $script ]] && $script
|
||||
done
|
||||
;;
|
||||
*) ;;
|
||||
esac
|
27
artix-branding-base/etc/local.d/branding.start
Executable file
27
artix-branding-base/etc/local.d/branding.start
Executable file
@@ -0,0 +1,27 @@
|
||||
#!/bin/sh
|
||||
|
||||
# Uncomment next line to get a rich TTY prompt, edit to your liking
|
||||
fastfetch --pipe false --structure OS:Host:Kernel:Uptime:Packages:Shell:Display:DE:WM:WMTheme:Theme:Icons:Font:Cursor:Terminal:TerminalFont:CPU:GPU:Memory:Swap:Disk:LocalIp:Battery:PowerAdapter:Locale >| /etc/issue
|
||||
|
||||
# Give login info in live environment
|
||||
live='/etc/issue.live'
|
||||
[ -f $live ] && cat $live >> /etc/issue
|
||||
rm -f $live
|
||||
sed -i '/live/d' $0 2>/dev/null
|
||||
|
||||
# Override the default XFCE wallpaper
|
||||
xfcebg=/usr/share/backgrounds/xfce/xfce-stripes.png
|
||||
artixbg=/usr/share/backgrounds/Artix_dna_spiral_dark_bw.jpg
|
||||
[[ -f $xfcebg ]] && { mv -f $xfcebg $xfcebg-default.png; ln -sf $artixbg $xfcebg; }
|
||||
sed -i '/xfce/Id;/artixbg/d' $0 2>/dev/null
|
||||
|
||||
buildinfo='/etc/buildinfo'
|
||||
[[ -f $buildinfo ]] && {
|
||||
cat $buildinfo | tee -a /usr/lib/os-release >/dev/null
|
||||
sed -i ';' /etc/os-release # replace symlink with linked file or buildinfo lost forever
|
||||
versionid=$(grep -m1 VERSION_ID $buildinfo | sed 's/VERSION_ID=//')
|
||||
variant=$(grep -m1 VARIANT $buildinfo | sed 's/VARIANT=//')
|
||||
echo "DISTRIB_CODENAME=${variant}-${versionid}" >>/etc/lsb-release && cp /etc/lsb-release /etc/lsb-release-full
|
||||
rm -f $buildinfo
|
||||
} # end buildinfo marking (for sed)
|
||||
sed -i '/buildinfo/d;/release/d' $0 2>/dev/null
|
4
artix-branding-base/etc/local.d/cleanup.start
Executable file
4
artix-branding-base/etc/local.d/cleanup.start
Executable file
@@ -0,0 +1,4 @@
|
||||
#!/bin/sh
|
||||
|
||||
# Remove possible stale lockfile
|
||||
rm -f /var/lib/pacman/db.lck &
|
@@ -1,3 +1,3 @@
|
||||
#!/bin/bash
|
||||
#!/bin/sh
|
||||
|
||||
[ -x /etc/rc.local ] && /etc/rc.local
|
||||
|
@@ -1,3 +1,3 @@
|
||||
#!/bin/bash
|
||||
#!/bin/sh
|
||||
|
||||
[ -x /etc/rc.local.stop ] && /etc/rc.local.stop
|
||||
|
@@ -1,10 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
# 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 $0
|
5
artix-branding-base/etc/local.d/ps1.start
Executable file
5
artix-branding-base/etc/local.d/ps1.start
Executable file
@@ -0,0 +1,5 @@
|
||||
#!/bin/sh
|
||||
|
||||
sed -i 's/^PS1/#PS1/' /etc/skel/.bashrc /etc/bash/bashrc
|
||||
|
||||
chmod -x $0
|
@@ -1,15 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
neofetch >| /etc/issue
|
||||
# Give login info in live environment
|
||||
live='/etc/issue.live'
|
||||
[[ -f $live ]] && { cat $live >> /etc/issue; sed -i '/live/d' /etc/rc.local; }
|
||||
rm -f $live &
|
||||
# /etc/local.d script execution in runit/s6
|
||||
[ -x /etc/local.d/0-process_local.d.start ] && /etc/local.d/0-process_local.d.start &
|
||||
# Don't use the dna_spiral wallpaper in Plasma
|
||||
sed -i 's/Artix_dna_spiral_dark/GradientGlowBlue/' /usr/share/plasma/look-and-feel/artix.dark/contents/layouts/org.kde.plasma.desktop-layout.js 2>/dev/null
|
||||
sed -i '/dna_spiral/d' /etc/rc.local
|
||||
|
||||
# Remove possible stale lockfile
|
||||
rm -f /var/lib/pacman/db.lck &
|
@@ -1,2 +0,0 @@
|
||||
[General]
|
||||
LogoPath=/usr/share/icons/artix/logo.svg
|
@@ -1,3 +0,0 @@
|
||||
# artix-branding-community
|
||||
|
||||
Files and settings used in Artix community ISOs.
|
@@ -1,173 +0,0 @@
|
||||
# Configuration file for dircolors, a utility to help you set the
|
||||
# LS_COLORS environment variable used by GNU ls with the --color option.
|
||||
#
|
||||
# You can copy this file to .dir_colors in your $HOME directory to override
|
||||
# the system defaults.
|
||||
|
||||
# Below, there should be one TERM entry for each termtype that is colorizable
|
||||
TERM ansi
|
||||
TERM color-xterm
|
||||
TERM con132x25
|
||||
TERM con132x30
|
||||
TERM con132x43
|
||||
TERM con132x60
|
||||
TERM con80x25
|
||||
TERM con80x28
|
||||
TERM con80x30
|
||||
TERM con80x43
|
||||
TERM con80x50
|
||||
TERM con80x60
|
||||
TERM cons25
|
||||
TERM console
|
||||
TERM cygwin
|
||||
TERM dtterm
|
||||
TERM Eterm
|
||||
TERM gnome
|
||||
TERM konsole
|
||||
TERM kterm
|
||||
TERM linux
|
||||
TERM linux-c
|
||||
TERM mach-color
|
||||
TERM putty
|
||||
TERM rxvt
|
||||
TERM rxvt-cygwin
|
||||
TERM rxvt-cygwin-native
|
||||
TERM rxvt-unicode
|
||||
TERM screen
|
||||
TERM screen-bce
|
||||
TERM screen-w
|
||||
TERM screen.linux
|
||||
TERM vt100
|
||||
TERM xterm
|
||||
TERM xterm-256color
|
||||
TERM xterm-color
|
||||
TERM xterm-debian
|
||||
|
||||
# Below are the color init strings for the basic file types. A color init
|
||||
# string consists of one or more of the following numeric codes:
|
||||
# Attribute codes:
|
||||
# 00=none 01=bold 04=underscore 05=blink 07=reverse 08=concealed
|
||||
# Text color codes:
|
||||
# 30=black 31=red 32=green 33=yellow 34=blue 35=magenta 36=cyan 37=white
|
||||
# Background color codes:
|
||||
# 40=black 41=red 42=green 43=yellow 44=blue 45=magenta 46=cyan 47=white
|
||||
NORMAL 00 # global default, although everything should be something.
|
||||
FILE 00 # normal file
|
||||
DIR 01;34 # directory
|
||||
LINK 01;36 # symbolic link. (If you set this to 'target' instead of a
|
||||
# numerical value, the color is as for the file pointed to.)
|
||||
FIFO 40;33 # pipe
|
||||
SOCK 01;35 # socket
|
||||
DOOR 01;35 # door
|
||||
BLK 40;33;01 # block device driver
|
||||
CHR 40;33;01 # character device driver
|
||||
ORPHAN 01;05;37;41 # orphaned syminks
|
||||
MISSING 01;05;37;41 # ... and the files they point to
|
||||
SETUID 37;41 # file that is setuid (u+s)
|
||||
SETGID 30;43 # file that is setgid (g+s)
|
||||
STICKY_OTHER_WRITABLE 30;42 # dir that is sticky and other-writable (+t,o+w)
|
||||
OTHER_WRITABLE 34;42 # dir that is other-writable (o+w) and not sticky
|
||||
STICKY 37;44 # dir with the sticky bit set (+t) and not other-writable
|
||||
|
||||
# This is for files with execute permission:
|
||||
EXEC 01;32
|
||||
|
||||
# List any file extensions like '.gz' or '.tar' that you would like ls
|
||||
# to colorize below. Put the extension, a space, and the color init string.
|
||||
# (and any comments you want to add after a '#')
|
||||
|
||||
# If you use DOS-style suffixes, you may want to uncomment the following:
|
||||
#.cmd 01;32 # executables (bright green)
|
||||
#.exe 01;32
|
||||
#.com 01;32
|
||||
#.btm 01;32
|
||||
#.bat 01;32
|
||||
.sh 01;32
|
||||
.pl 01;32
|
||||
.py 01;32
|
||||
#.csh 01;32
|
||||
|
||||
.tar 00;31 # archives or compressed (bright red)
|
||||
.tgz 00;31
|
||||
.arj 00;31
|
||||
.taz 00;31
|
||||
.lzh 00;31
|
||||
.zip 00;31
|
||||
.z 00;31
|
||||
.Z 00;31
|
||||
.gz 00;31
|
||||
.bz2 00;31
|
||||
.bz 00;31
|
||||
.tbz2 00;31
|
||||
.xz 00;31
|
||||
.tz 00;31
|
||||
.deb 00;31
|
||||
.rpm 00;31
|
||||
.jar 00;31
|
||||
.rar 00;31 # rar
|
||||
.ace 00;31 # unace
|
||||
.zoo 00;31 # zoo
|
||||
.cpio 00;31 # cpio
|
||||
.7z 00;31 # p7zip
|
||||
.rz 00;31 # rzip
|
||||
|
||||
# image formats
|
||||
.jpg 00;35
|
||||
.jpeg 00;35
|
||||
.gif 00;35
|
||||
.bmp 00;35
|
||||
.pbm 00;35
|
||||
.pgm 00;35
|
||||
.ppm 00;35
|
||||
.tga 00;35
|
||||
.xbm 00;35
|
||||
.xpm 00;35
|
||||
.tif 00;35
|
||||
.tiff 00;35
|
||||
.png 00;35
|
||||
.mng 00;35
|
||||
.pcx 00;35
|
||||
.mov 00;35
|
||||
.mpg 00;35
|
||||
.mpeg 00;35
|
||||
.m2v 00;35 # MPEG-2 Video only
|
||||
.mkv 00;35 # Matroska (http://matroska.org/)
|
||||
.ogm 00;35 # Ogg Media File
|
||||
.mp4 00;35 # 'Offical' container for MPEG-4
|
||||
.m4v 00;35 # MPEG-4 Video only
|
||||
.mp4v 00;35 # MPEG-4 Video only
|
||||
.qt 00;35 # Quicktime (http://developer.apple.com/qa/qtw/qtw99.html)
|
||||
.wmv 00;35 # Windows Media Video
|
||||
.asf 00;35 # Advanced Systems Format (contains Windows Media Video)
|
||||
.rm 00;35 # Real Media
|
||||
.rmvb 00;35 # Real Media Variable Bitrate
|
||||
.flc 00;35 # AutoDesk Animator
|
||||
.flv 00;35
|
||||
.avi 00;35
|
||||
.fli 00;35
|
||||
.gl 00;35
|
||||
.dl 00;35
|
||||
.xcf 00;35
|
||||
.xwd 00;35
|
||||
|
||||
# Document files
|
||||
.pdf 00;32
|
||||
.ps 00;32
|
||||
.txt 00;32
|
||||
.patch 00;32
|
||||
.diff 00;32
|
||||
.log 00;32
|
||||
.tex 00;32
|
||||
.doc 00;32
|
||||
|
||||
# audio formats
|
||||
.flac 00;35
|
||||
.mp3 00;35
|
||||
.mpc 00;36
|
||||
.ogg 00;36
|
||||
.wav 00;36
|
||||
.mid 00;36
|
||||
.midi 00;36
|
||||
.au 00;36
|
||||
.flac 00;36
|
||||
.aac 00;36
|
@@ -1,2 +0,0 @@
|
||||
[GUI]
|
||||
Theme=dark
|
@@ -1,59 +0,0 @@
|
||||
# created by KDE Plasma, Fri Apr 12 10:22:06 2019
|
||||
#
|
||||
# If you do not want Plasma to override your GTK settings, select
|
||||
# Colors in the System Settings and disable the checkbox
|
||||
# "Apply colors to non-Qt applications"
|
||||
#
|
||||
#
|
||||
|
||||
gtk-alternative-button-order = 1
|
||||
|
||||
style "default"
|
||||
{
|
||||
bg[NORMAL] = { 0.102, 0.102, 0.102 }
|
||||
bg[SELECTED] = { 0.082, 0.325, 0.620 }
|
||||
bg[INSENSITIVE] = { 0.102, 0.102, 0.102 }
|
||||
bg[ACTIVE] = { 0.090, 0.090, 0.090 }
|
||||
bg[PRELIGHT] = { 0.102, 0.102, 0.102 }
|
||||
|
||||
base[NORMAL] = { 0.169, 0.169, 0.169 }
|
||||
base[SELECTED] = { 0.082, 0.325, 0.620 }
|
||||
base[INSENSITIVE] = { 0.102, 0.102, 0.102 }
|
||||
base[ACTIVE] = { 0.082, 0.325, 0.620 }
|
||||
base[PRELIGHT] = { 0.082, 0.325, 0.620 }
|
||||
|
||||
text[NORMAL] = { 1.000, 1.000, 1.000 }
|
||||
text[SELECTED] = { 1.000, 1.000, 1.000 }
|
||||
text[INSENSITIVE] = { 0.090, 0.090, 0.090 }
|
||||
text[ACTIVE] = { 1.000, 1.000, 1.000 }
|
||||
text[PRELIGHT] = { 1.000, 1.000, 1.000 }
|
||||
|
||||
fg[NORMAL] = { 1.000, 1.000, 1.000 }
|
||||
fg[SELECTED] = { 1.000, 1.000, 1.000 }
|
||||
fg[INSENSITIVE] = { 0.090, 0.090, 0.090 }
|
||||
fg[ACTIVE] = { 1.000, 1.000, 1.000 }
|
||||
fg[PRELIGHT] = { 1.000, 1.000, 1.000 }
|
||||
}
|
||||
|
||||
class "*" style "default"
|
||||
|
||||
style "ToolTip"
|
||||
{
|
||||
bg[NORMAL] = { 0.000, 0.000, 0.000 }
|
||||
base[NORMAL] = { 0.000, 0.000, 0.000 }
|
||||
text[NORMAL] = { 1.000, 1.000, 1.000 }
|
||||
fg[NORMAL] = { 1.000, 1.000, 1.000 }
|
||||
}
|
||||
|
||||
widget "gtk-tooltip" style "ToolTip"
|
||||
widget "gtk-tooltips" style "ToolTip"
|
||||
widget "gtk-tooltip*" style "ToolTip"
|
||||
|
||||
style "MenuItem"
|
||||
{
|
||||
bg[PRELIGHT] = { 0.082, 0.325, 0.620 }
|
||||
fg[PRELIGHT] = { 1.000, 1.000, 1.000 }
|
||||
}
|
||||
|
||||
class "*MenuItem" style "MenuItem"
|
||||
|
@@ -1,46 +0,0 @@
|
||||
[Qt]
|
||||
GUIEffects=none
|
||||
KDE\contrast=4
|
||||
KWinPalette\activeBackground=#2d2d2d
|
||||
KWinPalette\activeBlend=#2d2d2d
|
||||
KWinPalette\activeForeground=#ffffff
|
||||
KWinPalette\activeTitleBtnBg=#1a1a1a
|
||||
KWinPalette\frame=#1a1a1a
|
||||
KWinPalette\inactiveBackground=#353535
|
||||
KWinPalette\inactiveBlend=#353535
|
||||
KWinPalette\inactiveForeground=#9b9b9b
|
||||
KWinPalette\inactiveFrame=#1c1c1c
|
||||
KWinPalette\inactiveTitleBtnBg=#1c1c1c
|
||||
Palette\active=#ffffff, #353535, #3d3d3d, #cbc7c4, #2c2d2e, #b8b5b2, #ffffff, #ffffff, #ffffff, #2b2b2b, #1a1a1a, #28292b, #15539e, #ffffff, #2eb8e6, #ff6666, #323232, #000000, #ffffdc, #f3f3f5
|
||||
Palette\disabled=#ffffff, #353535, #3d3d3d, #cbc7c4, #2c2d2e, #b8b5b2, #ffffff, #ffffff, #ffffff, #2b2b2b, #1a1a1a, #28292b, #15539e, #ffffff, #2eb8e6, #ff6666, #323232, #000000, #ffffdc, #f3f3f5
|
||||
Palette\inactive=#ffffff, #353535, #3d3d3d, #cbc7c4, #2c2d2e, #b8b5b2, #ffffff, #ffffff, #ffffff, #2b2b2b, #1a1a1a, #28292b, #15539e, #ffffff, #2eb8e6, #ff6666, #323232, #000000, #ffffdc, #f3f3f5
|
||||
cursorFlashTime=1000
|
||||
doubleClickInterval=400
|
||||
embedFonts=true
|
||||
font="Fira Sans,11,-1,5,25,0,0,0,0,0"
|
||||
globalStrut\height=0
|
||||
globalStrut\width=0
|
||||
resolveSymlinks=false
|
||||
style=GTK+
|
||||
useRtlExtensions=false
|
||||
videomode=Auto
|
||||
wheelScrollLines=3
|
||||
|
||||
[qt]
|
||||
5.12\libraryPath=
|
||||
GUIEffects=none
|
||||
KDE\contrast=0
|
||||
KWinPalette\activeBackground=#2d2d2d
|
||||
KWinPalette\activeBlend=#2d2d2d
|
||||
KWinPalette\activeForeground=#ffffff
|
||||
KWinPalette\activeTitleBtnBg=#212121
|
||||
KWinPalette\frame=#212121
|
||||
KWinPalette\inactiveBackground=#353535
|
||||
KWinPalette\inactiveBlend=#353535
|
||||
KWinPalette\inactiveForeground=#9b9b9b
|
||||
KWinPalette\inactiveFrame=#232323
|
||||
KWinPalette\inactiveTitleBtnBg=#232323
|
||||
Palette\active=#dadada, #353535, #303030, #292929, #171717, #1e1e1e, #dadada, #ffffff, #dadada, #252525, #212121, #101010, #0c3867, #dadada, #2596bc, #b64949, #2a2a2a, #000000, #1a1a1a, #dadada, #dadada
|
||||
Palette\disabled=#626262, #353535, #303030, #292929, #171717, #1e1e1e, #646464, #ffffff, #6f6f6f, #252525, #212121, #101010, #212121, #626262, #254c5a, #583131, #2a2a2a, #000000, #1a1a1a, #dadada, #dadada
|
||||
Palette\inactive=#d6d6d6, #363636, #313131, #2a2a2a, #181818, #1f1f1f, #d6d6d6, #ffffff, #d7d7d7, #272726, #232323, #111111, #0f2d4d, #d3d7db, #3194b6, #ae4e4e, #2b2b2b, #000000, #1a1a1a, #dadada, #dadada
|
||||
font="Fira Sans,11,-1,5,50,0,0,0,0,0,Regular"
|
@@ -1,39 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<VeraCrypt>
|
||||
<configuration>
|
||||
<config key="BackgroundTaskEnabled">1</config>
|
||||
<config key="BackgroundTaskMenuDismountItemsEnabled">1</config>
|
||||
<config key="BackgroundTaskMenuMountItemsEnabled">1</config>
|
||||
<config key="BackgroundTaskMenuOpenItemsEnabled">1</config>
|
||||
<config key="BeepAfterHotkeyMountDismount">0</config>
|
||||
<config key="CachePasswords">0</config>
|
||||
<config key="CloseBackgroundTaskOnNoVolumes">1</config>
|
||||
<config key="CloseExplorerWindowsOnDismount">1</config>
|
||||
<config key="CloseSecurityTokenSessionsAfterMount">0</config>
|
||||
<config key="DisableKernelEncryptionModeWarning">0</config>
|
||||
<config key="DismountOnInactivity">0</config>
|
||||
<config key="DismountOnLogOff">1</config>
|
||||
<config key="DismountOnPowerSaving">0</config>
|
||||
<config key="DismountOnScreenSaver">0</config>
|
||||
<config key="DisplayMessageAfterHotkeyDismount">0</config>
|
||||
<config key="BackgroundTaskEnabled">1</config>
|
||||
<config key="ForceAutoDismount">1</config>
|
||||
<config key="LastSelectedSlotNumber">0</config>
|
||||
<config key="MaxVolumeIdleTime">60</config>
|
||||
<config key="MountDevicesOnLogon">0</config>
|
||||
<config key="MountFavoritesOnLogon">0</config>
|
||||
<config key="MountVolumesReadOnly">0</config>
|
||||
<config key="MountVolumesRemovable">0</config>
|
||||
<config key="NoHardwareCrypto">0</config>
|
||||
<config key="NoKernelCrypto">0</config>
|
||||
<config key="OpenExplorerWindowAfterMount">0</config>
|
||||
<config key="PreserveTimestamps">1</config>
|
||||
<config key="SaveHistory">0</config>
|
||||
<config key="StartOnLogon">0</config>
|
||||
<config key="UseKeyfiles">0</config>
|
||||
<config key="WipeCacheOnAutoDismount">1</config>
|
||||
<config key="WipeCacheOnClose">0</config>
|
||||
<config key="DefaultTrueCryptMode">0</config>
|
||||
<config key="DefaultPRF">autodetection</config>
|
||||
</configuration>
|
||||
</VeraCrypt>
|
@@ -1,25 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<toolbars version="1.0">
|
||||
<toolbar name="DefaultToolBar" hidden="false" editable="true">
|
||||
<toolitem name="ViewSidebar"/>
|
||||
<toolitem name="GoPreviousPage"/>
|
||||
<toolitem name="GoNextPage"/>
|
||||
<toolitem name="GoFirstPage"/>
|
||||
<toolitem name="GoLastPage"/>
|
||||
<separator/>
|
||||
<toolitem name="PageSelector"/>
|
||||
<toolitem name="Navigation"/>
|
||||
<toolitem name="ViewContinuous"/>
|
||||
<toolitem name="ViewDual"/>
|
||||
<toolitem name="ViewFitWidth"/>
|
||||
<toolitem name="ViewFitPage"/>
|
||||
<toolitem name="ViewInvertedColors"/>
|
||||
<separator/>
|
||||
<toolitem name="ViewZoom"/>
|
||||
<toolitem name="ViewZoomIn"/>
|
||||
<toolitem name="ViewZoomOut"/>
|
||||
<toolitem name="EditRotateLeft"/>
|
||||
<toolitem name="EditRotateRight"/>
|
||||
<toolitem name="ViewFullscreen"/>
|
||||
</toolbar>
|
||||
</toolbars>
|
@@ -1,8 +0,0 @@
|
||||
[Desktop Entry]
|
||||
Encoding=UTF-8
|
||||
Version=1.0
|
||||
Name=Ctrl Alt Backspace
|
||||
Exec=setxkbmap -option terminate:ctrl_alt_bksp
|
||||
Terminal=false
|
||||
Type=Application
|
||||
StartupNotify=false
|
@@ -1,6 +0,0 @@
|
||||
[Desktop Entry]
|
||||
Exec=sh -c "~/.config/autostart/hide-other-icons.sh"
|
||||
Name=Hide desktop icons of other DEs
|
||||
StartupNotify=false
|
||||
Terminal=false
|
||||
Type=Application
|
@@ -1,34 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
# Create localized well-known user dirs before trying to hide irrelevant icons.
|
||||
# Not a separate script, to avoid running into race conditions.
|
||||
|
||||
desktop="$HOME/Desktop"
|
||||
i18n_desktop=$(xdg-user-dir DESKTOP)
|
||||
cd "${i18n_desktop}"
|
||||
|
||||
if [ -f $HOME/.first-login ]; then
|
||||
xdg-user-dirs-update --force
|
||||
rm -f $HOME/.first-login &
|
||||
|
||||
# Move stuff out of standard C locale Desktop and delete it
|
||||
if [ "${i18n_desktop}" != "$desktop" ]; then
|
||||
mv -f $desktop/.hidden* .
|
||||
mv -f $desktop/* .
|
||||
rmdir "$desktop" &
|
||||
fi
|
||||
fi
|
||||
|
||||
# Currently LXDE (i.e. pcmanfm) doesn't seem to support .hidden
|
||||
case $XDG_CURRENT_DESKTOP in
|
||||
KDE) [[ -f .hidden-kde ]] && ln -sf .hidden-kde .hidden
|
||||
;;
|
||||
MATE) [[ -f .hidden-mate ]] && ln -sf .hidden-mate .hidden
|
||||
;;
|
||||
LXDE) [[ -f .hidden-lxde ]] && ln -sf .hidden-lxde .hidden
|
||||
;;
|
||||
LXQt) [[ -f .hidden-lxqt ]] && ln -sf .hidden-lxqt .hidden
|
||||
;;
|
||||
*) false
|
||||
;;
|
||||
esac
|
@@ -1,6 +0,0 @@
|
||||
[Desktop Entry]
|
||||
Exec=sh -c "~/.config/autostart/homesymlinks.sh"
|
||||
Name=Fix installer symlinks
|
||||
StartupNotify=false
|
||||
Terminal=false
|
||||
Type=Application
|
@@ -1,6 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
cd $HOME
|
||||
ln -sf .face .face.icon &
|
||||
ln -sf .gtkrc-2.0 .gtkrc-2.0-kde4 &
|
||||
rm -f .config/autostart/homesymlinks.* &
|
@@ -1,8 +0,0 @@
|
||||
[Basic Settings]
|
||||
Indexing-Enabled=false
|
||||
|
||||
[General]
|
||||
dbVersion=2
|
||||
exclude filters=.svn,cmake_install.cmake,CVS,CTestTestfile.cmake,*.init,*.csproj,*.faa,*.omf,*.swap,*.m4,*.class,*.map,.npm,*.pyo,.obj,*.fasta,*.ini,.yarn,*.orig,*.part,*.lo,*.fq,core-dumps,*.gmo,*.fna,*.rej,*.nvram,_darcs,.moc,ui_*.h,*.rcore,*.gbff,.yarn-cache,node_modules,.uic,*.gb,lost+found,qrc_*.cpp,lzo,*.qmlc,CMakeFiles,*.o,*.pc,*.pyc,conftest,*.db,.git,*~,*.qrc,.bzr,CMakeTmp,*.a,*.po,__pycache__,autom4te,*.so,*.loT,*.fastq,CMakeTmpQmake,node_packages,Makefile.am,po,.pch,moc_*.cpp,litmain.sh,*.moc,config.status,.hg,.histfile.*,libtool,*.vm*,confstat,confdefs.h,.xsession-errors*,*.jsc,nbproject,CMakeCache.txt,*.la,*.tmp,*.aux,*.elc
|
||||
exclude filters version=4
|
||||
first run=false
|
@@ -1,134 +0,0 @@
|
||||
; caja GtkAccelMap rc-file -*- scheme -*-
|
||||
; this file is an automated accelerator map dump
|
||||
;
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/New Empty File" "")
|
||||
; (gtk_accel_path "<Actions>/SpatialActions/Close All Folders" "<Primary>q")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/File" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Self Format Volume" "")
|
||||
; (gtk_accel_path "<Actions>/SpatialActions/Go to Location" "<Primary>l")
|
||||
; (gtk_accel_path "<Actions>/IconViewActions/Sort by Size" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/OpenAlternate" "<Primary><Shift>w")
|
||||
; (gtk_accel_path "<Actions>/DesktopViewActions/Empty Trash Conditional" "")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/Zoom In" "<Primary>plus")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Cut" "<Primary>x")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/Go to Computer" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/RenameSelectAll" "<Shift>F2")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Redo" "<Primary>y")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Create Link" "<Primary>m")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/Preferences" "")
|
||||
; (gtk_accel_path "<Actions>/IconViewActions/Reversed Order" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/OpenAccel" "<Alt>Down")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Delete" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/No Templates" "")
|
||||
; (gtk_accel_path "<Actions>/IconViewActions/Unstretch" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/LocationDelete" "")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/Stop" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/New Documents" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/LocationCopy" "")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/Close" "<Primary>w")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Connect To Server Link" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Location Eject Volume" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Stop Volume" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/LocationRestoreFromTrash" "")
|
||||
; (gtk_accel_path "<Actions>/DesktopViewActions/New Launcher Desktop" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Poll" "")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/Edit" "")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/Zoom Out" "<Primary>minus")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/OtherApplication2" "")
|
||||
; (gtk_accel_path "<Actions>/IconViewActions/Keep Aligned" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/New Launcher" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Open With" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Move to next pane" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Location Unmount Volume" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/OpenInNewTab" "<Primary><Shift>o")
|
||||
; (gtk_accel_path "<Actions>/IconViewActions/Sort by Name" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Select Pattern" "<Primary>s")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/Go to Network" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/OtherApplication1" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Format Volume" "")
|
||||
; (gtk_accel_path "<Actions>/SpatialActions/Search" "<Primary>f")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Location Start Volume" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Properties" "<Alt>Return")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/Home" "<Alt>Home")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/Go to Trash" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Location Poll" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Location Stop Volume" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Open Scripts Folder" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Mount Volume" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Copy to Home" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Move to Desktop" "")
|
||||
; (gtk_accel_path "<Actions>/SpatialActions/Close Parent Folders" "<Primary><Shift>w")
|
||||
; (gtk_accel_path "<Actions>/ExtensionsMenuGroup/CajaOpenTerminal::open_terminal" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Reset to Defaults" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/LocationOpenInNewTab" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/CopyToMenu" "")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/Backgrounds and Emblems" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Open" "<Primary>o")
|
||||
; (gtk_accel_path "<Actions>/IconViewActions/Clean Up" "")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/View" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Save Search" "")
|
||||
; (gtk_accel_path "<Actions>/IconViewActions/Sort by Modification Date" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Select All" "<Primary>a")
|
||||
; (gtk_accel_path "<Actions>/IconViewActions/Sort by Emblems" "")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/Caja Manual" "F1")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/LocationPasteFilesInto" "")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/About Caja" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Eject Volume" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Unmount Volume" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Duplicate" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/LocationTrash" "")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/Help" "")
|
||||
; (gtk_accel_path "<Actions>/IconViewActions/Stretch" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Copy to Desktop" "")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/Connect to Server" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/LocationProperties" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Rename" "F2")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Empty Trash" "")
|
||||
; (gtk_accel_path "<Actions>/SpatialActions/Places" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Self Eject Volume" "")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/Go to Templates" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Save Search As" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Location Format Volume" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/LocationOpenFolderWindow" "")
|
||||
; (gtk_accel_path "<Actions>/SpatialActions/Edit Bookmarks" "<Primary>b")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/ZoomOutAccel" "<Primary>KP_Subtract")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/ZoomInAccel2" "<Primary>KP_Add")
|
||||
; (gtk_accel_path "<Actions>/IconViewActions/Manual Layout" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Start Volume" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Undo" "<Primary>z")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Self Start Volume" "")
|
||||
; (gtk_accel_path "<Actions>/IconViewActions/Arrange Items" "")
|
||||
; (gtk_accel_path "<Caja-Window>/view_as_3" "<Primary>3")
|
||||
; (gtk_accel_path "<Actions>/IconViewActions/Sort by Trash Time" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/New Folder" "<Primary><Shift>n")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Self Poll" "")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/Reload" "<Primary>r")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Restore From Trash" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/MoveToMenu" "")
|
||||
; (gtk_accel_path "<Caja-Window>/view_as_4" "<Primary>4")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/Zoom Normal" "<Primary>0")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/OpenCloseParent" "<Shift><Alt>Down")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/Up" "<Alt>Up")
|
||||
; (gtk_accel_path "<Actions>/IconViewActions/Tighter Layout" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/OpenFolderWindow" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Copy to next pane" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Self Stop Volume" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Move to Home" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Paste Files Into" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Self Unmount Volume" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Self Mount Volume" "")
|
||||
; (gtk_accel_path "<Actions>/SpatialActions/Add Bookmark" "<Primary>d")
|
||||
; (gtk_accel_path "<Actions>/DesktopViewActions/Change Background" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/PropertiesAccel" "<Primary>i")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Paste" "<Primary>v")
|
||||
; (gtk_accel_path "<Caja-Window>/view_as_2" "<Primary>2")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/Show Hidden Files" "<Primary>h")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Location Mount Volume" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/LocationCut" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Copy" "<Primary>c")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/LocationOpenAlternate" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Trash" "")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/ZoomInAccel" "<Primary>equal")
|
||||
; (gtk_accel_path "<Actions>/IconViewActions/Sort by Type" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Invert Selection" "<Primary><Shift>i")
|
||||
; (gtk_accel_path "<Caja-Window>/view_as_1" "<Primary>1")
|
@@ -1,18 +0,0 @@
|
||||
[directory]
|
||||
caja-icon-view-keep-aligned=true
|
||||
caja-icon-view-layout-timestamp=1556792677
|
||||
|
||||
[trash]
|
||||
caja-icon-position=220,222
|
||||
icon-scale=1
|
||||
caja-icon-position-timestamp=1556792677
|
||||
|
||||
[computer]
|
||||
caja-icon-position=64,22
|
||||
icon-scale=1
|
||||
caja-icon-position-timestamp=1556792677
|
||||
|
||||
[home]
|
||||
caja-icon-position=64,102
|
||||
icon-scale=1
|
||||
caja-icon-position-timestamp=1554494174
|
@@ -1,48 +0,0 @@
|
||||
[CheckBoxes]
|
||||
advanced=false
|
||||
devices_off=false
|
||||
enable_daemon_notifications=false
|
||||
enable_interface_tooltips=true
|
||||
enable_systemtray_notications=true
|
||||
enable_systemtray_tooltips=true
|
||||
hide_tray_icon=false
|
||||
reset_counters=false
|
||||
retain_settings=true
|
||||
retain_state=false
|
||||
retry_failed=true
|
||||
run_on_startup=true
|
||||
services_less=false
|
||||
technologies_less=false
|
||||
|
||||
[ExternalPrograms]
|
||||
run_after_connect=
|
||||
|
||||
[IconManager]
|
||||
last_installed_icon_def_file=1ec7823d299e7b8c5703a6d75e40695b
|
||||
|
||||
[LineEdits]
|
||||
colorize_icons=
|
||||
|
||||
[MainWindow]
|
||||
current_page=0
|
||||
pos=@Point(611 155)
|
||||
size=@Size(698 653)
|
||||
splitter_01=@ByteArray(\0\0\0\xff\0\0\0\x1\0\0\0\x2\0\0\x1\x14\0\0\x1\x14\x1\0\0\0\x5\x1\0\0\0\x2\0)
|
||||
|
||||
[StartOptions]
|
||||
counter_update_rate=5
|
||||
desktop_mate=false
|
||||
desktop_none=true
|
||||
desktop_xfce=false
|
||||
disable_minimized=false
|
||||
disable_tray_icon=false
|
||||
disable_vpn=false
|
||||
enable_counters=true
|
||||
fake_transparency_color=0
|
||||
icon_theme=
|
||||
start_minimized=true
|
||||
use_counter_update_rate=false
|
||||
use_fake_transparency=false
|
||||
use_icon_theme=false
|
||||
use_wait_time=false
|
||||
wait_time=1
|
@@ -1,218 +0,0 @@
|
||||
# cmst.icon
|
||||
#
|
||||
# This icon definition file, located in the user's home directory, can be
|
||||
# edited. The purpose of this file is to facilitate the use of theme icons
|
||||
# that are not part of the official Freedesktop.org naming specification.
|
||||
#
|
||||
# QT provides very good icon selection with a fallback mechanism. In order
|
||||
# to use it one must know the name of the theme icon you want. This is
|
||||
# not a problem with the official named icons, but is if you want to support
|
||||
# any icon theme since the name of any icon not part of the official
|
||||
# Freedesktop.org specification is up to the theme author.
|
||||
#
|
||||
# This file basically describes the pictures to use for each icon. Format
|
||||
# of the file is as follows:
|
||||
#
|
||||
# Comments are the # sign. Any text on a line after the first # is treated
|
||||
# as a comment.
|
||||
#
|
||||
# Each icon definition starts with the [icon] token and is terminated by a
|
||||
# blank line. Inside each icon block are various sections, each contained
|
||||
# on one line. Each section contains a key and value pair separated by an
|
||||
# equal (=) sign.
|
||||
#
|
||||
# icon_name = is the descriptive name of what the icon is to show. This
|
||||
# entry is read and used by the program and should not be edited.
|
||||
#
|
||||
# resource = is the location of the default picture which is hard coded
|
||||
# into the program in a QResource file. This can be edited provided you
|
||||
# select another valid resource which must already exist. You cannot add
|
||||
# resources using this file. This key/value pair is mandatory.
|
||||
#
|
||||
# colorize = (no/yes, 0/1, or a color in the format RRGGBB) if yes or 1
|
||||
# the internal icons will be colorized according to the value specified
|
||||
# from preferences. If a color number is provided the icon will be colorized
|
||||
# to the specified color. If no or 0 then the icon is not colorized.
|
||||
# Colorizing is only available for internal icons defined in the resource line.
|
||||
#
|
||||
# fdo_name = is the name of one of the official Freedesktop.org named icons.
|
||||
# This key/value pair is optional.
|
||||
#
|
||||
# theme_names = is a comma (,) separated list of theme icon names which
|
||||
# are not part of the Freedesktop.org specification. The list will be
|
||||
# searched in order looking for each icon name in the current theme.
|
||||
# This key/value pair is also optional.
|
||||
#
|
||||
# The text in a value field may contain the vertical delimiter (|) symbol.
|
||||
# If it does the text on each side should be a complete resource path or
|
||||
# theme icon name. Text to the left is the ON state of the icon, to the right
|
||||
# is the OFF state. This is used for icons which show a different picture
|
||||
# depending on state. Play/Pause in a media player would be a classic example.
|
||||
#
|
||||
# The text in a resource value field may also contain whitespace. If
|
||||
# it does the text on each side should be a complete resource path. Left
|
||||
# of the whitespace is the base picture in raw_art, to the right is the
|
||||
# overlay file to place over the raw_art icon. This is only for
|
||||
# internal icons from the resource file.
|
||||
#
|
||||
# If this file becomes corrupted by editing or by other means is can be
|
||||
# regenerated simply by deleting it, then stopping and starting CMST.
|
||||
#
|
||||
# Icon selections at runtime are as follows:
|
||||
# If the -i (--icon-theme) command line switch or preferences setting is not
|
||||
# used then the resource name specified here is used if found, if not found
|
||||
# the hard coded internal icon will be used.
|
||||
#
|
||||
# If the -i (--icon-theme) command line switch or preferences settings is used
|
||||
# then icons are searched in the following order until one is found:
|
||||
# theme_names from left to right (match will only occur if one of the names
|
||||
# can be found in the current or specified theme.)
|
||||
# fdo_name
|
||||
# resource location as specified in this file
|
||||
# hard coded internal icon
|
||||
#
|
||||
#
|
||||
#
|
||||
#
|
||||
# interface icons
|
||||
[icon]
|
||||
icon_name = state_error
|
||||
resource = :/icons/images/raw_art/application-exit1.png
|
||||
colorize = no
|
||||
fdo_name = network_error
|
||||
|
||||
[icon]
|
||||
icon_name = state_ready
|
||||
resource = :/icons/images/raw_art/network-idle.png
|
||||
colorize = yes
|
||||
fdo_name = network-idle
|
||||
theme_names = network-idle, network-connect
|
||||
|
||||
[icon]
|
||||
icon_name = state_online
|
||||
resource = :/icons/images/raw_art/network-transmit-receive.png
|
||||
colorize = yes
|
||||
fdo_name = network-transmit-receive
|
||||
theme_names = network-transmit-receive, network-connect
|
||||
|
||||
[icon]
|
||||
icon_name = state_not_ready
|
||||
resource = :/icons/images/raw_art/network-offline.png :/icons/images/overlay/overlay-warningnet9.png
|
||||
colorize = yes
|
||||
fdo_name = network-offline
|
||||
theme_names = network-offline, network-disconnect
|
||||
|
||||
[icon]
|
||||
# This icon is only used in the wifi tab, not elsewhere. Default is to same as state_not_ready
|
||||
# If you would prefer not to see any icon in the connected column uncomment the resource blank.png
|
||||
# line and remove the as shipped resource, colorize, fdo_name, and theme_names lines
|
||||
icon_name = wifi_tab_state_not_ready
|
||||
#resource = :/icons/images/raw_art/blank.png
|
||||
resource = :/icons/images/raw_art/network-offline.png :/icons/images/overlay/overlay-warningnet9.png
|
||||
colorize = yes
|
||||
fdo_name = network-offline
|
||||
theme_names = network-offline, network-disconnect
|
||||
|
||||
[icon]
|
||||
icon_name = state_vpn_connected
|
||||
resource = :/icons/images/raw_art/stock_lock.png
|
||||
colorize = yes
|
||||
theme-names = network-vpn.png, emblem-locked.png
|
||||
|
||||
[icon]
|
||||
icon_name = favorite
|
||||
resource = :/icons/images/raw_art/nm-signal-100.png
|
||||
colorize = yes
|
||||
fdo_name = emblem-favorite
|
||||
|
||||
[icon]
|
||||
icon_name = offline_mode_engaged
|
||||
resource = :/icons/images/interface/basic-plane.png
|
||||
colorize = yes
|
||||
|
||||
[icon]
|
||||
icon_name = offline_mode_disengaged
|
||||
resource = :/icons/images/interface/radio.png
|
||||
colorize = yes
|
||||
|
||||
[icon]
|
||||
icon_name = whats_this
|
||||
resource = :/icons/images/raw_art/info2.png
|
||||
colorize = 1361D9
|
||||
fdo_name = system-help
|
||||
|
||||
#
|
||||
# systemtray icons
|
||||
[icon]
|
||||
icon_name = connection_failure
|
||||
resource = :/icons/images/raw_art/application-exit1.png
|
||||
colorize = no
|
||||
fdo_name = network-error
|
||||
|
||||
[icon]
|
||||
icon_name = connection_ready
|
||||
resource = :/icons/images/raw_art/network-idle.png
|
||||
colorize = yes
|
||||
fdo_name = network-idle
|
||||
theme_names = network-idle, network-connect
|
||||
|
||||
[icon]
|
||||
icon_name = connection_not_ready
|
||||
resource = :/icons/images/raw_art/network-offline.png :/icons/images/overlay/overlay-warningnet9.png
|
||||
colorize = yes
|
||||
fdo_name = network-offline
|
||||
theme_names = network-offline, network-disconnect
|
||||
|
||||
[icon]
|
||||
icon_name = connection_wired
|
||||
resource = :/icons/images/raw_art/network-transmit-receive.png
|
||||
colorize = yes
|
||||
fdo_name = network-wired
|
||||
|
||||
[icon]
|
||||
icon_name = connection_wireless
|
||||
resource = :/icons/images/raw_art/nm-signal-100.png
|
||||
colorize = yes
|
||||
fdo_name = network-wireless
|
||||
|
||||
[icon]
|
||||
icon_name = connection_wifi_000
|
||||
resource = :/icons/images/raw_art/nm-signal-00.png
|
||||
colorize = yes
|
||||
theme_names = network-wireless-signal-none-symbolic, network-wireless-connected-00
|
||||
|
||||
[icon]
|
||||
icon_name = connection_wifi_025
|
||||
resource = :/icons/images/raw_art/nm-signal-25.png
|
||||
colorize = yes
|
||||
theme_names = network-wireless-signal-weak-symbolic, network-wireless-connected-25
|
||||
|
||||
[icon]
|
||||
icon_name = connection_wifi_050
|
||||
resource = :/icons/images/raw_art/nm-signal-50.png
|
||||
colorize = yes
|
||||
theme_names = network-wireless-signal-ok-symbolic, network-wireless-connected-50
|
||||
|
||||
[icon]
|
||||
icon_name = connection_wifi_075
|
||||
resource = :/icons/images/raw_art/nm-signal-75.png
|
||||
colorize = yes
|
||||
theme_names = network-wireless-signal-good-symbolic, network-wireless-connected-75
|
||||
|
||||
[icon]
|
||||
icon_name = connection_wifi_100
|
||||
resource = :/icons/images/raw_art/nm-signal-100.png
|
||||
colorize = yes
|
||||
theme_names = network-wireless-signal-excellent-symbolic, network-wireless-connected-100
|
||||
|
||||
[icon]
|
||||
icon_name = connection_vpn
|
||||
resource = :/icons/images/raw_art/stock_lock.png
|
||||
colorize = yes
|
||||
theme-names = network-vpn.png, emblem-locked.png
|
||||
|
||||
[icon]
|
||||
icon_name = connection_vpn_acquiring
|
||||
resource = :/icons/images/raw_art/network-vpn-acquiring.png
|
||||
colorize = yes
|
||||
|
@@ -1,53 +0,0 @@
|
||||
shadow = true;
|
||||
no-dnd-shadow = true;
|
||||
no-dock-shadow = true;
|
||||
clear-shadow = true;
|
||||
shadow-radius = 7;
|
||||
shadow-offset-x = -7;
|
||||
shadow-offset-y = -7;
|
||||
shadow-opacity = 0.7;
|
||||
shadow-red = 0.0;
|
||||
shadow-green = 0.0;
|
||||
shadow-blue = 0.0;
|
||||
shadow-exclude = [ "name = 'Notification'", "class_g = 'Conky'", "class_g ?= 'Notify-osd'", "class_g = 'Cairo-clock'" ];
|
||||
shadow-ignore-shaped = false;
|
||||
xinerama-shadow-crop = false;
|
||||
menu-opacity = 1.0;
|
||||
inactive-opacity = 1.0;
|
||||
active-opacity = 1.0;
|
||||
frame-opacity = 1.0;
|
||||
inactive-opacity-override = false;
|
||||
alpha-step = 0.06;
|
||||
inactive-dim = 0.0;
|
||||
blur-kern = "3x3box";
|
||||
blur-background-exclude = [ "window_type = 'dock'", "window_type = 'desktop'" ];
|
||||
fading = true;
|
||||
fade-in-step = 0.03;
|
||||
fade-out-step = 0.03;
|
||||
fade-exclude = [ ];
|
||||
backend = "xrender";
|
||||
mark-wmwin-focused = true;
|
||||
mark-ovredir-focused = true;
|
||||
detect-rounded-corners = true;
|
||||
detect-client-opacity = true;
|
||||
refresh-rate = 0;
|
||||
vsync = "none";
|
||||
dbe = false;
|
||||
paint-on-overlay = true;
|
||||
focus-exclude = [ "class_g = 'Cairo-clock'" ];
|
||||
detect-transient = true;
|
||||
detect-client-leader = true;
|
||||
invert-color-include = [ ];
|
||||
glx-copy-from-front = false;
|
||||
glx-swap-method = "undefined";
|
||||
wintypes :
|
||||
{
|
||||
tooltip :
|
||||
{
|
||||
fade = true;
|
||||
shadow = false;
|
||||
opacity = 0.75;
|
||||
focus = true;
|
||||
};
|
||||
};
|
||||
blur-background = false;
|
Binary file not shown.
Binary file not shown.
@@ -1,157 +0,0 @@
|
||||
[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)
|
@@ -1,2 +0,0 @@
|
||||
[Profiles]
|
||||
startProfile="default"
|
@@ -1,41 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
|
||||
<!-- created by lxqt-config-appearance (DO NOT EDIT!) -->
|
||||
<fontconfig>
|
||||
<include ignore_missing="yes">conf.d</include>
|
||||
<match target="font">
|
||||
<edit name="lcdfilter" mode="assign">
|
||||
<const>lcddefault</const>
|
||||
</edit>
|
||||
</match>
|
||||
<match target="font">
|
||||
<edit name="autohint" mode="assign">
|
||||
<bool>false</bool>
|
||||
</edit>
|
||||
</match>
|
||||
<match target="pattern">
|
||||
<edit name="dpi" mode="assign">
|
||||
<double>96</double>
|
||||
</edit>
|
||||
</match>
|
||||
<match target="font">
|
||||
<edit name="hinting" mode="assign">
|
||||
<bool>true</bool>
|
||||
</edit>
|
||||
</match>
|
||||
<match target="font">
|
||||
<edit name="hintstyle" mode="assign">
|
||||
<const>hintfull</const>
|
||||
</edit>
|
||||
</match>
|
||||
<match target="font">
|
||||
<edit name="rgba" mode="assign">
|
||||
<const>rgb</const>
|
||||
</edit>
|
||||
</match>
|
||||
<match target="font">
|
||||
<edit name="antialias" mode="assign">
|
||||
<bool>true</bool>
|
||||
</edit>
|
||||
</match>
|
||||
</fontconfig>
|
@@ -1,121 +0,0 @@
|
||||
#
|
||||
# This file was generated from a textmate theme named Bespin
|
||||
# with tm2gtksw2 tool. (Alexandre da Silva)
|
||||
|
||||
# This library is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU Library General Public
|
||||
# License as published by the Free Software Foundation; either
|
||||
# version 2 of the License, or (at your option) any later version.
|
||||
|
||||
# This library is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
# Library General Public License for more details.
|
||||
|
||||
# You should have received a copy of the GNU Library General Public
|
||||
# License along with this library; if not, write to the
|
||||
# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
||||
# Boston, MA 02111-1307, USA.
|
||||
#
|
||||
# Ported to Geany by Matthew Brush <matt(at)geany(dot)org>
|
||||
#
|
||||
|
||||
[theme_info]
|
||||
name=Bespin
|
||||
description=A port of the Bespin theme.
|
||||
# incremented automatically, do not change manually
|
||||
version=1225
|
||||
author=Alexandre da Silva (tm2gtksw2)
|
||||
url=https://github.com/gmate/gmate/blob/master/styles/Bespin.xml
|
||||
# list of each compatible Geany release version
|
||||
compat=1.22;1.23;1.23.1;1.24
|
||||
|
||||
[named_styles]
|
||||
|
||||
default=#baae9e;#010101;false;false
|
||||
error=#f8f8f8;#4a2947
|
||||
|
||||
# Editor styles
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
selection=#baae9e;#4c4a49;true;true
|
||||
current_line=#000;#101010;true
|
||||
brace_good=#00f;#2e2e2e;true;false
|
||||
brace_bad=#df4545;#2e2e2e;true;false
|
||||
margin_line_number=#baae9e;#2e2e2e
|
||||
margin_folding=#baae9e;#2e2e2e
|
||||
fold_symbol_highlight=#2e2e2e
|
||||
indent_guide=#40342c
|
||||
white_space=#40342c;#fff;true;false
|
||||
caret=#a7a7a7;#000;false
|
||||
marker_line=#000;#ff0;
|
||||
marker_search=#000;#0000f0;
|
||||
marker_mark=#000;#223f22;
|
||||
call_tips=#c0c0c0;#fff;false;false
|
||||
|
||||
# Programming languages
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
comment=#666;;;true
|
||||
comment_doc=comment
|
||||
comment_line=comment
|
||||
comment_line_doc=comment_doc
|
||||
comment_doc_keyword=comment_doc,bold
|
||||
comment_doc_keyword_error=comment_doc,italic
|
||||
|
||||
number=#cf6a4c
|
||||
number_1=number
|
||||
number_2=number_1
|
||||
|
||||
type=#9b859d;;true
|
||||
class=type
|
||||
function=#937121
|
||||
parameter=function
|
||||
|
||||
keyword=#5ea6ea;;true
|
||||
keyword_1=keyword
|
||||
keyword_2=type
|
||||
keyword_3=keyword_1
|
||||
keyword_4=keyword_1
|
||||
|
||||
identifier=default
|
||||
identifier_1=identifier
|
||||
identifier_2=identifier_1
|
||||
identifier_3=identifier_1
|
||||
identifier_4=identifier_1
|
||||
|
||||
string=#54be0d
|
||||
string_1=string
|
||||
string_2=string_1
|
||||
string_3=default
|
||||
string_4=default
|
||||
string_eol=string_1,italic
|
||||
character=string_1
|
||||
backticks=string_2
|
||||
here_doc=string_2
|
||||
|
||||
scalar=string_2
|
||||
label=default,bold
|
||||
preprocessor=#cf6a4c
|
||||
regex=#e9c062
|
||||
operator=#5ea6ea
|
||||
decorator=string_1,bold
|
||||
other=#ddf2a4
|
||||
|
||||
# Markup-type languages
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
tag=#ac885b
|
||||
tag_unknown=#ac885b
|
||||
tag_end=#ac885b
|
||||
attribute=#937121
|
||||
attribute_unknown=#937121
|
||||
value=string_1
|
||||
entity=default
|
||||
|
||||
# Diff
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
line_added=#f8f8f8;#253b22
|
||||
line_removed=#f8f8f8;#420e09
|
||||
line_changed=#f8f8f8;#4a410d
|
@@ -1,121 +0,0 @@
|
||||
#
|
||||
# Copyright 2011 John Gabriele <jmg3000(at)gmail(dot)com>
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation; either version 2 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
||||
# MA 02110-1301, USA.
|
||||
#
|
||||
# Ported from old theme by Matthew Brush <matt(at)geany(dot)org>
|
||||
# Note: was part of `set_geany_colors` utility
|
||||
#
|
||||
|
||||
[theme_info]
|
||||
name=Dark Fruit Salad
|
||||
description=Low contrast theme ported from the set_geany_colors utility
|
||||
# incremented automatically, do not change manually
|
||||
version=1226
|
||||
author=John Gabriele <jmg3000(at)gmail(dot)com>
|
||||
url=https://github.com/codebrainz/geany-themes
|
||||
# list of each compatible Geany release version
|
||||
compat=1.22;1.23;1.23.1;1.24
|
||||
|
||||
[named_styles]
|
||||
|
||||
default=#222222;#0c0c0c;false;false
|
||||
error=#ebbf71;#e1e17a
|
||||
|
||||
# Editor styles
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
selection=#000;#202020;false;true
|
||||
current_line=#000;#565656;true
|
||||
brace_good=#f0f0f0;#587941;false;false
|
||||
brace_bad=#f00;#fff;false;false
|
||||
margin_line_number=#5f5f5f;#f0f0f0
|
||||
margin_folding=#d69cd6;#202020
|
||||
fold_symbol_highlight=#202020
|
||||
indent_guide=#d69cd6
|
||||
caret=#000;#000;false
|
||||
marker_line=#000;#ff0
|
||||
marker_search=#000;#0000f0
|
||||
marker_mark=#000;#b8f4b8
|
||||
call_tips=#c0c0c0;#fff;false;false
|
||||
white_space=#a7a7a7;;true
|
||||
|
||||
# Programming languages
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
comment=#a3d97d
|
||||
comment_doc=#99e4de;;true
|
||||
comment_line=comment
|
||||
comment_line_doc=comment_doc
|
||||
comment_doc_keyword=comment_doc,bold
|
||||
comment_doc_keyword_error=comment_doc,italic
|
||||
|
||||
number=#ff939c
|
||||
number_1=number
|
||||
number_2=number_1
|
||||
|
||||
type=#e1e17a;;true
|
||||
class=type
|
||||
function=#92bde8;;true
|
||||
parameter=function
|
||||
|
||||
keyword=#92bde8;;true
|
||||
keyword_1=keyword
|
||||
keyword_2=#d69cd6;;true
|
||||
keyword_3=keyword_1
|
||||
keyword_4=keyword_1
|
||||
|
||||
identifier=#f0f0f0
|
||||
identifier_1=identifier
|
||||
identifier_2=#99e4de;;true
|
||||
identifier_3=#ff939c;;true
|
||||
identifier_4=identifier_1
|
||||
|
||||
string=#ebbf71
|
||||
string_1=string
|
||||
string_2=#e1e17a
|
||||
string_3=default
|
||||
string_4=default
|
||||
string_eol=string_1,italic
|
||||
character=#e1e17a;;true
|
||||
backticks=string_2
|
||||
here_doc=string_2
|
||||
|
||||
scalar=string_2
|
||||
label=default,bold
|
||||
preprocessor=#ff939c
|
||||
regex=number_1
|
||||
operator=default
|
||||
decorator=string_1,bold
|
||||
other=default
|
||||
|
||||
# Markup-type languages
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
tag=keyword
|
||||
tag_unknown=tag,bold
|
||||
tag_end=tag,bold
|
||||
attribute=#99e4de
|
||||
attribute_unknown=attribute,bold
|
||||
value=string_1
|
||||
entity=default
|
||||
|
||||
# Diff
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
line_added=#8ae234
|
||||
line_removed=#e1e17a
|
||||
line_changed=preprocessor
|
@@ -1,120 +0,0 @@
|
||||
#
|
||||
# Copyright 2011 Duncan Lock <duncan.lock(at)gmail(dot)com>
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation; either version 2 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
||||
# MA 02110-1301, USA.
|
||||
#
|
||||
# Ported from old theme by Matthew Brush <matt(at)geany(dot)org>
|
||||
#
|
||||
|
||||
[theme_info]
|
||||
name=Dark
|
||||
description=Dark syntax colouring theme
|
||||
# incremented automatically, do not change manually
|
||||
version=1225
|
||||
author=Duncan Lock <duncan.lock(at)gmail(dot)com>
|
||||
url=http://code.google.com/p/geany-dark-scheme/
|
||||
# list of each compatible Geany release version
|
||||
compat=1.22;1.23;1.23.1;1.24
|
||||
|
||||
[named_styles]
|
||||
|
||||
default=#fff;#1e1e1e;false;false
|
||||
error=#f00;#1e1e1e;false;false
|
||||
|
||||
# Editor styles
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
selection=#fff;#333964;false;true
|
||||
current_line=#000;#2f2f2f;true;false
|
||||
brace_good=#fff;#50aa15;true;false
|
||||
brace_bad=#fff;#aa1515;true;false
|
||||
margin_line_number=#000;#d0d0d0;false;false
|
||||
margin_folding=#000;#dfdfdf;false;false
|
||||
fold_symbol_highlight=#fff
|
||||
indent_guide=#393939;#1e1e1e;false;false
|
||||
caret=#fff;#000;true;false
|
||||
marker_line=#000;#ff0;false;false
|
||||
marker_search=#000;#b8f4b8;false;false
|
||||
marker_mark=#000;#b8f4b8;
|
||||
call_tips=#c0c0c0;#fff;false;false
|
||||
white_space=#424242;;true
|
||||
|
||||
# Programming languages
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
comment=#747474;#1e1e1e;false;false
|
||||
comment_doc=comment
|
||||
comment_line=comment
|
||||
comment_line_doc=comment_doc
|
||||
comment_doc_keyword=comment_doc,bold
|
||||
comment_doc_keyword_error=comment_doc,italic
|
||||
|
||||
number=#aaff57;#1e1e1e;false;false
|
||||
number_1=number
|
||||
number_2=number_1
|
||||
|
||||
type=#2e8b57;;true
|
||||
class=type
|
||||
function=default
|
||||
parameter=function
|
||||
|
||||
keyword=#ffcb4f;#1e1e1e;true;false
|
||||
keyword_1=keyword
|
||||
keyword_2=#aaff57;#1e1e1e;false;true
|
||||
keyword_3=keyword_1
|
||||
keyword_4=keyword_1
|
||||
|
||||
identifier=#fff;#1e1e1e;false;false
|
||||
identifier_1=identifier
|
||||
identifier_2=identifier_1
|
||||
identifier_3=identifier_1
|
||||
identifier_4=identifier_1
|
||||
|
||||
string=#aaff57;#1e1e1e;false;false
|
||||
string_1=string
|
||||
string_2=#a18651;#1e1e1e;false;false
|
||||
string_3=default
|
||||
string_4=default
|
||||
string_eol=string_1,italic
|
||||
character=string_1
|
||||
backticks=string_2
|
||||
here_doc=string_2
|
||||
|
||||
scalar=string_2
|
||||
label=default,bold
|
||||
preprocessor=#5abefd;#1e1e1e;false;false
|
||||
regex=number_1
|
||||
operator=#98bac5;#1e1e1e;true;false
|
||||
decorator=#808000;#1e1e1e;false;false
|
||||
other=#fff;#1e1e1e;false;false
|
||||
|
||||
# Markup-type languages
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
tag=#7392cf;#1e1e1e;false;false
|
||||
tag_unknown=#fff;#8c0101;true;false
|
||||
tag_end=#7392cf;#1e1e1e;true;false
|
||||
attribute=#cda0d5;#1e1e1e;false;false
|
||||
attribute_unknown=#fff;#8c0101;false;false
|
||||
value=#4575b6;#1e1e1e;false;false
|
||||
entity=#ffa95c;#2c2821;false;false
|
||||
|
||||
# Diff
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
line_added=#008b8b
|
||||
line_removed=#6a5acd
|
||||
line_changed=preprocessor
|
@@ -1,135 +0,0 @@
|
||||
#
|
||||
# This library is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU Library General Public
|
||||
# License as published by the Free Software Foundation; either
|
||||
# version 2 of the License, or (at your option) any later version.
|
||||
#
|
||||
# This library is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
# Library General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Library General Public
|
||||
# License along with this library; if not, write to the
|
||||
# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
||||
# Boston, MA 02111-1307, USA.
|
||||
#
|
||||
|
||||
[theme_info]
|
||||
name=Himbeere
|
||||
description=A dark theme with raspberry colors.
|
||||
# incremented automatically, do not change manually
|
||||
version=1226
|
||||
author=commenthol
|
||||
url=https://github.com/codebrainz/geany-themes
|
||||
# list of each compatible Geany release version
|
||||
compat=1.22;1.23;1.23.1;1.24
|
||||
|
||||
[named_colors]
|
||||
base0=#ccc
|
||||
base1=#0c0c0c
|
||||
base2=#3f3f3f
|
||||
base3=#808080
|
||||
base4=#303030
|
||||
berry=#e12d66
|
||||
cyan=#25d0f0
|
||||
bluegrey=#747e9e
|
||||
orange=#ff8000
|
||||
lime=#65ff00
|
||||
grey=#777
|
||||
red=#f00
|
||||
redbg=#751212
|
||||
green=#859900
|
||||
blue=#268bd2
|
||||
|
||||
[named_styles]
|
||||
default=base0;base1
|
||||
error=red
|
||||
|
||||
|
||||
# Editor styles
|
||||
#-------------------------------------------------------------------------------
|
||||
selection=;#083840;;true
|
||||
current_line=;#000;true
|
||||
brace_good=cyan;berry;true
|
||||
brace_bad=red;;true
|
||||
margin_line_number=base3;base4
|
||||
margin_folding=base3;#212121
|
||||
fold_symbol_highlight=base2
|
||||
indent_guide=base2;;true
|
||||
caret=cyan
|
||||
marker_line=#fff;#00f;
|
||||
marker_search=#fff;#d791a8;
|
||||
marker_mark=;
|
||||
call_tips=base0;base1
|
||||
white_space=base2;;true
|
||||
|
||||
|
||||
# Programming languages
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
comment=grey
|
||||
comment_doc=comment
|
||||
comment_line=comment
|
||||
comment_line_doc=comment_doc
|
||||
comment_doc_keyword=comment_doc,bold
|
||||
comment_doc_keyword_error=comment_doc,italic
|
||||
|
||||
number=orange
|
||||
number_1=number
|
||||
number_2=number_1
|
||||
|
||||
type=berry;;true
|
||||
class=cyan
|
||||
function=berry
|
||||
parameter=function
|
||||
|
||||
keyword=berry;;true
|
||||
keyword_1=keyword
|
||||
keyword_2=cyan;;true
|
||||
keyword_3=bluegrey
|
||||
keyword_4=keyword_3
|
||||
|
||||
identifier=default
|
||||
identifier_1=identifier
|
||||
identifier_2=identifier_1
|
||||
identifier_3=identifier_1
|
||||
identifier_4=identifier_1
|
||||
|
||||
string=lime
|
||||
string_1=string
|
||||
string_2=string_1
|
||||
string_3=default
|
||||
string_4=default
|
||||
string_eol=red
|
||||
character=string_1
|
||||
backticks=string_2
|
||||
here_doc=string_2
|
||||
|
||||
scalar=string_2
|
||||
label=keyword,bold
|
||||
preprocessor=cyan
|
||||
regex=number_1
|
||||
operator=bluegrey
|
||||
decorator=string_1,bold
|
||||
other=cyan
|
||||
|
||||
|
||||
# Markup-type languages
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
tag=berry
|
||||
tag_unknown=tag,bold
|
||||
tag_end=tag,bold
|
||||
attribute=cyan
|
||||
attribute_unknown=attribute,bold
|
||||
value=string_1
|
||||
entity=default
|
||||
|
||||
|
||||
# Diff
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
line_added=green
|
||||
line_removed=red
|
||||
line_changed=blue
|
@@ -1,147 +0,0 @@
|
||||
#
|
||||
# Copyright 2011 Ethan Schoonover <es(at)ethanschoonover(dot)com>
|
||||
#
|
||||
# Permission is hereby granted, free of charge, to any person obtaining
|
||||
# a copy of this software and associated documentation files (the
|
||||
# "Software"), to deal in the Software without restriction, including
|
||||
# without limitation the rights to use, copy, modify, merge, publish,
|
||||
# distribute, sublicense, and/or sell copies of the Software, and to
|
||||
# permit persons to whom the Software is furnished to do so, subject to
|
||||
# the following conditions:
|
||||
#
|
||||
# The above copyright notice and this permission notice shall be
|
||||
# included in all copies or substantial portions of the Software.
|
||||
#
|
||||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
||||
# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
||||
# CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
||||
# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
||||
# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
#
|
||||
# Ported to Geany by Joshua Hoff <https://github.com/joshuarh> and
|
||||
# Matthew Brush <matt(at)geany(dot)org>
|
||||
#
|
||||
|
||||
[theme_info]
|
||||
name=Solarized (dark)
|
||||
description=Dark Solarized theme for Geany
|
||||
# incremented automatically, do not change manually
|
||||
version=1225
|
||||
author=Ethan Schoonover
|
||||
url=http://ethanschoonover.com/solarized
|
||||
# list of each compatible Geany release version
|
||||
compat=1.22;1.23;1.23.1;1.24
|
||||
|
||||
[named_colors]
|
||||
# See: http://ethanschoonover.com/solarized#the-values
|
||||
base03=#0c0c0c
|
||||
base02=#073642
|
||||
base01=#586e75
|
||||
base00=#657b83
|
||||
base0=#839496
|
||||
base1=#93a1a1
|
||||
base2=#eee8d5
|
||||
base3=#fdf6e3
|
||||
yellow=#b58900
|
||||
orange=#cb4b16
|
||||
red=#dc322f
|
||||
magenta=#d33682
|
||||
violet=#6c71c4
|
||||
blue=#268bd2
|
||||
cyan=#2aa198
|
||||
green=#859900
|
||||
|
||||
[named_styles]
|
||||
|
||||
default=base0;base03
|
||||
error=red
|
||||
|
||||
|
||||
# Editor styles
|
||||
#-------------------------------------------------------------------------------
|
||||
selection=;#0f4d5c;;true
|
||||
current_line=;base02;true
|
||||
brace_good=base1;;true
|
||||
brace_bad=red;;true
|
||||
margin_line_number=base00;base03
|
||||
margin_folding=base00;base02
|
||||
fold_symbol_highlight=base02
|
||||
indent_guide=base01
|
||||
caret=base3
|
||||
marker_line=;
|
||||
marker_search=;base2
|
||||
marker_mark=;
|
||||
call_tips=base0;base03
|
||||
white_space=indent_guide
|
||||
|
||||
|
||||
# Programming languages
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
comment=base01
|
||||
comment_doc=comment
|
||||
comment_line=comment
|
||||
comment_line_doc=comment_doc
|
||||
comment_doc_keyword=comment_doc,bold
|
||||
comment_doc_keyword_error=comment_doc,italic
|
||||
|
||||
number=cyan
|
||||
number_1=number
|
||||
number_2=number_1
|
||||
|
||||
type=yellow;;true
|
||||
class=type
|
||||
function=blue
|
||||
parameter=function
|
||||
|
||||
keyword=green;;true
|
||||
keyword_1=keyword
|
||||
keyword_2=blue;;true
|
||||
keyword_3=keyword_1
|
||||
keyword_4=keyword_1
|
||||
|
||||
identifier=default
|
||||
identifier_1=identifier
|
||||
identifier_2=identifier_1
|
||||
identifier_3=identifier_1
|
||||
identifier_4=identifier_1
|
||||
|
||||
string=magenta
|
||||
string_1=string
|
||||
string_2=string_1
|
||||
string_3=default
|
||||
string_4=default
|
||||
string_eol=red
|
||||
character=string_1
|
||||
backticks=string_2
|
||||
here_doc=string_2
|
||||
|
||||
scalar=string_2
|
||||
label=default,bold
|
||||
preprocessor=orange
|
||||
regex=violet
|
||||
operator=default
|
||||
decorator=string_1,bold
|
||||
other=default
|
||||
|
||||
|
||||
# Markup-type languages
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
tag=type
|
||||
tag_unknown=tag,bold
|
||||
tag_end=tag,bold
|
||||
attribute=keyword_1
|
||||
attribute_unknown=attribute,bold
|
||||
value=string_1
|
||||
entity=default
|
||||
|
||||
|
||||
# Diff
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
line_added=green
|
||||
line_removed=red
|
||||
line_changed=blue
|
@@ -1,216 +0,0 @@
|
||||
[geany]
|
||||
default_open_path=
|
||||
cmdline_new_files=true
|
||||
notebook_double_click_hides_widgets=false
|
||||
tab_close_switch_to_mru=false
|
||||
tab_pos_sidebar=2
|
||||
sidebar_pos=0
|
||||
symbols_sort_mode=0
|
||||
msgwin_orientation=1
|
||||
highlighting_invert_all=false
|
||||
pref_main_search_use_current_word=true
|
||||
check_detect_indent=false
|
||||
detect_indent_width=false
|
||||
use_tab_to_indent=true
|
||||
pref_editor_tab_width=4
|
||||
indent_mode=2
|
||||
indent_type=1
|
||||
virtualspace=1
|
||||
autocomplete_doc_words=false
|
||||
completion_drops_rest_of_word=false
|
||||
autocompletion_max_entries=30
|
||||
autocompletion_update_freq=250
|
||||
color_scheme=bespin.conf
|
||||
scroll_lines_around_cursor=0
|
||||
mru_length=10
|
||||
disk_check_timeout=30
|
||||
show_editor_scrollbars=true
|
||||
brace_match_ltgt=false
|
||||
use_gtk_word_boundaries=true
|
||||
complete_snippets_whilst_editing=false
|
||||
use_atomic_file_saving=false
|
||||
gio_unsafe_save_backup=false
|
||||
use_gio_unsafe_file_saving=true
|
||||
keep_edit_history_on_reload=true
|
||||
show_keep_edit_history_on_reload_msg=true
|
||||
reload_clean_doc_on_file_change=false
|
||||
indent_hard_tab_width=8
|
||||
find_selection_type=0
|
||||
extract_filetype_regex=-\\*-\\s*([^\\s]+)\\s*-\\*-
|
||||
replace_and_find_by_default=true
|
||||
editor_ime_interaction=0
|
||||
show_symbol_list_expanders=true
|
||||
compiler_tab_autoscroll=true
|
||||
allow_always_save=false
|
||||
statusbar_template=line: %l / %L col: %c sel: %s %w %t %mmode: %M encoding: %e filetype: %f scope: %S
|
||||
new_document_after_close=false
|
||||
msgwin_status_visible=true
|
||||
msgwin_compiler_visible=true
|
||||
msgwin_messages_visible=true
|
||||
msgwin_scribble_visible=true
|
||||
documents_show_paths=true
|
||||
sidebar_page=0
|
||||
pref_main_load_session=true
|
||||
pref_main_project_session=true
|
||||
pref_main_project_file_in_basedir=false
|
||||
pref_main_save_winpos=true
|
||||
pref_main_save_wingeom=true
|
||||
pref_main_confirm_exit=false
|
||||
pref_main_suppress_status_messages=false
|
||||
switch_msgwin_pages=false
|
||||
beep_on_errors=true
|
||||
auto_focus=false
|
||||
sidebar_symbol_visible=true
|
||||
sidebar_openfiles_visible=true
|
||||
editor_font=Monospace 10
|
||||
tagbar_font=Sans 9
|
||||
msgwin_font=Monospace 9
|
||||
show_notebook_tabs=true
|
||||
show_tab_cross=true
|
||||
tab_order_ltr=true
|
||||
tab_order_beside=false
|
||||
tab_pos_editor=2
|
||||
tab_pos_msgwin=0
|
||||
use_native_windows_dialogs=false
|
||||
show_indent_guide=false
|
||||
show_white_space=false
|
||||
show_line_endings=false
|
||||
show_markers_margin=true
|
||||
show_linenumber_margin=true
|
||||
long_line_enabled=true
|
||||
long_line_type=0
|
||||
long_line_column=78
|
||||
long_line_color=#2E3436
|
||||
symbolcompletion_max_height=10
|
||||
symbolcompletion_min_chars=4
|
||||
use_folding=true
|
||||
unfold_all_children=false
|
||||
use_indicators=true
|
||||
line_wrapping=false
|
||||
auto_close_xml_tags=true
|
||||
complete_snippets=true
|
||||
auto_complete_symbols=true
|
||||
pref_editor_disable_dnd=false
|
||||
pref_editor_smart_home_key=false
|
||||
pref_editor_newline_strip=true
|
||||
line_break_column=72
|
||||
auto_continue_multiline=true
|
||||
comment_toggle_mark=~
|
||||
scroll_stop_at_last_line=true
|
||||
autoclose_chars=0
|
||||
pref_editor_default_new_encoding=UTF-8
|
||||
pref_editor_default_open_encoding=None
|
||||
default_eol_character=2
|
||||
pref_editor_new_line=true
|
||||
pref_editor_ensure_convert_line_endings=false
|
||||
pref_editor_replace_tabs=false
|
||||
pref_editor_trail_space=false
|
||||
pref_toolbar_show=true
|
||||
pref_toolbar_append_to_menu=false
|
||||
pref_toolbar_use_gtk_default_style=true
|
||||
pref_toolbar_use_gtk_default_icon=true
|
||||
pref_toolbar_icon_style=0
|
||||
pref_toolbar_icon_size=0
|
||||
pref_template_developer=Unknown
|
||||
pref_template_company=
|
||||
pref_template_mail=artix@localhost
|
||||
pref_template_initial=U
|
||||
pref_template_version=1.0
|
||||
pref_template_year=%Y
|
||||
pref_template_date=%Y-%m-%d
|
||||
pref_template_datetime=%d.%m.%Y %H:%M:%S %Z
|
||||
context_action_cmd=
|
||||
sidebar_visible=true
|
||||
statusbar_visible=true
|
||||
msgwindow_visible=true
|
||||
fullscreen=false
|
||||
scribble_text=Type here what you want, use it as a notice/scratch board
|
||||
scribble_pos=57
|
||||
treeview_position=156
|
||||
custom_date_format=
|
||||
|
||||
[build-menu]
|
||||
number_ft_menu_items=0
|
||||
number_non_ft_menu_items=0
|
||||
number_exec_menu_items=0
|
||||
|
||||
[search]
|
||||
pref_search_hide_find_dialog=false
|
||||
pref_search_always_wrap=false
|
||||
pref_search_current_file_dir=true
|
||||
find_all_expanded=false
|
||||
replace_all_expanded=false
|
||||
position_find_x=-1
|
||||
position_find_y=-1
|
||||
position_replace_x=-1
|
||||
position_replace_y=-1
|
||||
position_fif_x=-1
|
||||
position_fif_y=-1
|
||||
fif_regexp=false
|
||||
fif_case_sensitive=true
|
||||
fif_match_whole_word=false
|
||||
fif_invert_results=false
|
||||
fif_recursive=false
|
||||
fif_extra_options=
|
||||
fif_use_extra_options=false
|
||||
fif_files=
|
||||
fif_files_mode=0
|
||||
find_regexp=false
|
||||
find_regexp_multiline=false
|
||||
find_case_sensitive=false
|
||||
find_escape_sequences=false
|
||||
find_match_whole_word=false
|
||||
find_match_word_start=false
|
||||
find_close_dialog=true
|
||||
replace_regexp=false
|
||||
replace_regexp_multiline=false
|
||||
replace_case_sensitive=false
|
||||
replace_escape_sequences=false
|
||||
replace_match_whole_word=false
|
||||
replace_match_word_start=false
|
||||
replace_search_backwards=false
|
||||
replace_close_dialog=true
|
||||
|
||||
[plugins]
|
||||
load_plugins=true
|
||||
custom_plugin_path=
|
||||
active_plugins=;
|
||||
|
||||
[VTE]
|
||||
send_cmd_prefix=
|
||||
send_selection_unsafe=false
|
||||
load_vte=true
|
||||
font=Monospace 10
|
||||
scroll_on_key=true
|
||||
scroll_on_out=true
|
||||
enable_bash_keys=true
|
||||
ignore_menu_bar_accel=false
|
||||
follow_path=false
|
||||
run_in_vte=false
|
||||
skip_run_script=false
|
||||
cursor_blinks=false
|
||||
scrollback_lines=500
|
||||
shell=/bin/bash
|
||||
colour_fore=#FFFFFF
|
||||
colour_back=#000000
|
||||
|
||||
[tools]
|
||||
terminal_cmd=xterm -e "/bin/sh %c"
|
||||
browser_cmd=firefox
|
||||
grep_cmd=grep
|
||||
|
||||
[printing]
|
||||
print_cmd=
|
||||
use_gtk_printing=true
|
||||
print_line_numbers=true
|
||||
print_page_numbers=true
|
||||
print_page_header=true
|
||||
page_header_basename=false
|
||||
page_header_datefmt=%c
|
||||
|
||||
[project]
|
||||
session_file=
|
||||
|
||||
[files]
|
||||
recent_projects=
|
||||
current_page=0
|
@@ -1,11 +0,0 @@
|
||||
[Filechooser Settings]
|
||||
LocationMode=path-bar
|
||||
ShowHidden=false
|
||||
ShowSizeColumn=true
|
||||
GeometryX=249
|
||||
GeometryY=127
|
||||
GeometryWidth=942
|
||||
GeometryHeight=643
|
||||
SortColumn=name
|
||||
SortOrder=ascending
|
||||
StartupMode=recent
|
@@ -1,12 +0,0 @@
|
||||
.mate-panel-menu-bar button {
|
||||
color: transparent;
|
||||
}
|
||||
panel-toplevel.background.horizontal,
|
||||
.mate-panel-menu-bar,
|
||||
#clock-applet-button,
|
||||
#clock-applet-button:hover {
|
||||
color: white;
|
||||
}
|
||||
#tasklist-button {
|
||||
color: white;
|
||||
}
|
@@ -1,19 +0,0 @@
|
||||
[Settings]
|
||||
gtk-application-prefer-dark-theme=true
|
||||
gtk-button-images=1
|
||||
gtk-cursor-theme-name=Premium
|
||||
gtk-cursor-theme-size=18
|
||||
gtk-enable-event-sounds=1
|
||||
gtk-enable-input-feedback-sounds=1
|
||||
gtk-fallback-icon-theme=breeze-dark
|
||||
gtk-font-name=Fira Sans 11
|
||||
gtk-icon-theme-name=nuoveXT2
|
||||
gtk-menu-images=1
|
||||
gtk-primary-button-warps-slider=0
|
||||
gtk-theme-name=Artix-dark
|
||||
gtk-toolbar-icon-size=GTK_ICON_SIZE_BUTTON
|
||||
gtk-toolbar-style=GTK_TOOLBAR_ICONS
|
||||
gtk-xft-antialias=1
|
||||
gtk-xft-hinting=1
|
||||
gtk-xft-hintstyle=hintfull
|
||||
gtk-xft-rgba=rgb
|
@@ -1,56 +0,0 @@
|
||||
# created by KDE Plasma, Sun Apr 28 21:20:01 2019
|
||||
#
|
||||
# If you do not want Plasma to override your GTK settings, select
|
||||
# Colors in the System Settings and disable the checkbox
|
||||
# "Apply colors to non-Qt applications"
|
||||
#
|
||||
#
|
||||
style "default"
|
||||
{
|
||||
bg[NORMAL] = { 0.165, 0.165, 0.165 }
|
||||
bg[SELECTED] = { 0.035, 0.153, 0.282 }
|
||||
bg[INSENSITIVE] = { 0.165, 0.165, 0.165 }
|
||||
bg[ACTIVE] = { 0.149, 0.149, 0.149 }
|
||||
bg[PRELIGHT] = { 0.165, 0.165, 0.165 }
|
||||
|
||||
base[NORMAL] = { 0.145, 0.145, 0.145 }
|
||||
base[SELECTED] = { 0.035, 0.153, 0.282 }
|
||||
base[INSENSITIVE] = { 0.165, 0.165, 0.165 }
|
||||
base[ACTIVE] = { 0.035, 0.153, 0.282 }
|
||||
base[PRELIGHT] = { 0.035, 0.153, 0.282 }
|
||||
|
||||
text[NORMAL] = { 0.855, 0.855, 0.855 }
|
||||
text[SELECTED] = { 0.855, 0.855, 0.855 }
|
||||
text[INSENSITIVE] = { 0.149, 0.149, 0.149 }
|
||||
text[ACTIVE] = { 0.855, 0.855, 0.855 }
|
||||
text[PRELIGHT] = { 0.855, 0.855, 0.855 }
|
||||
|
||||
fg[NORMAL] = { 0.855, 0.855, 0.855 }
|
||||
fg[SELECTED] = { 0.855, 0.855, 0.855 }
|
||||
fg[INSENSITIVE] = { 0.149, 0.149, 0.149 }
|
||||
fg[ACTIVE] = { 0.855, 0.855, 0.855 }
|
||||
fg[PRELIGHT] = { 0.855, 0.855, 0.855 }
|
||||
}
|
||||
|
||||
class "*" style "default"
|
||||
|
||||
style "ToolTip"
|
||||
{
|
||||
bg[NORMAL] = { 0.102, 0.102, 0.102 }
|
||||
base[NORMAL] = { 0.102, 0.102, 0.102 }
|
||||
text[NORMAL] = { 0.855, 0.855, 0.855 }
|
||||
fg[NORMAL] = { 0.855, 0.855, 0.855 }
|
||||
}
|
||||
|
||||
widget "gtk-tooltip" style "ToolTip"
|
||||
widget "gtk-tooltips" style "ToolTip"
|
||||
widget "gtk-tooltip*" style "ToolTip"
|
||||
|
||||
style "MenuItem"
|
||||
{
|
||||
bg[PRELIGHT] = { 0.035, 0.153, 0.282 }
|
||||
fg[PRELIGHT] = { 0.855, 0.855, 0.855 }
|
||||
}
|
||||
|
||||
class "*MenuItem" style "MenuItem"
|
||||
|
@@ -1,59 +0,0 @@
|
||||
# created by KDE Plasma, Sat May 25 19:47:18 2019
|
||||
#
|
||||
# If you do not want Plasma to override your GTK settings, select
|
||||
# Colors in the System Settings and disable the checkbox
|
||||
# "Apply colors to non-Qt applications"
|
||||
#
|
||||
#
|
||||
|
||||
gtk-alternative-button-order = 1
|
||||
|
||||
style "default"
|
||||
{
|
||||
bg[NORMAL] = { 0.165, 0.165, 0.165 }
|
||||
bg[SELECTED] = { 0.035, 0.153, 0.282 }
|
||||
bg[INSENSITIVE] = { 0.165, 0.165, 0.165 }
|
||||
bg[ACTIVE] = { 0.149, 0.149, 0.149 }
|
||||
bg[PRELIGHT] = { 0.165, 0.165, 0.165 }
|
||||
|
||||
base[NORMAL] = { 0.145, 0.145, 0.145 }
|
||||
base[SELECTED] = { 0.035, 0.153, 0.282 }
|
||||
base[INSENSITIVE] = { 0.165, 0.165, 0.165 }
|
||||
base[ACTIVE] = { 0.035, 0.153, 0.282 }
|
||||
base[PRELIGHT] = { 0.035, 0.153, 0.282 }
|
||||
|
||||
text[NORMAL] = { 0.855, 0.855, 0.855 }
|
||||
text[SELECTED] = { 0.855, 0.855, 0.855 }
|
||||
text[INSENSITIVE] = { 0.149, 0.149, 0.149 }
|
||||
text[ACTIVE] = { 0.855, 0.855, 0.855 }
|
||||
text[PRELIGHT] = { 0.855, 0.855, 0.855 }
|
||||
|
||||
fg[NORMAL] = { 0.855, 0.855, 0.855 }
|
||||
fg[SELECTED] = { 0.855, 0.855, 0.855 }
|
||||
fg[INSENSITIVE] = { 0.149, 0.149, 0.149 }
|
||||
fg[ACTIVE] = { 0.855, 0.855, 0.855 }
|
||||
fg[PRELIGHT] = { 0.855, 0.855, 0.855 }
|
||||
}
|
||||
|
||||
class "*" style "default"
|
||||
|
||||
style "ToolTip"
|
||||
{
|
||||
bg[NORMAL] = { 0.102, 0.102, 0.102 }
|
||||
base[NORMAL] = { 0.102, 0.102, 0.102 }
|
||||
text[NORMAL] = { 0.855, 0.855, 0.855 }
|
||||
fg[NORMAL] = { 0.855, 0.855, 0.855 }
|
||||
}
|
||||
|
||||
widget "gtk-tooltip" style "ToolTip"
|
||||
widget "gtk-tooltips" style "ToolTip"
|
||||
widget "gtk-tooltip*" style "ToolTip"
|
||||
|
||||
style "MenuItem"
|
||||
{
|
||||
bg[PRELIGHT] = { 0.035, 0.153, 0.282 }
|
||||
fg[PRELIGHT] = { 0.855, 0.855, 0.855 }
|
||||
}
|
||||
|
||||
class "*MenuItem" style "MenuItem"
|
||||
|
@@ -1 +0,0 @@
|
||||
limit = 256
|
@@ -1,42 +0,0 @@
|
||||
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
|
@@ -1,210 +0,0 @@
|
||||
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
|
@@ -1,12 +0,0 @@
|
||||
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
|
||||
|
@@ -1,56 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="210mm"
|
||||
height="297mm"
|
||||
viewBox="0 0 210 297"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="0.92.4 5da689c313, 2019-01-14"
|
||||
sodipodi:docname="default.svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#1a1a1a"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.83921569"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.35"
|
||||
inkscape:cx="402.85714"
|
||||
inkscape:cy="557.14286"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:pagecheckerboard="true"
|
||||
inkscape:window-width="1440"
|
||||
inkscape:window-height="839"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1" />
|
||||
</svg>
|
Before Width: | Height: | Size: 1.6 KiB |
@@ -1,36 +0,0 @@
|
||||
[External Programs]
|
||||
search path[$e]=/usr/bin/,/usr/local/bin/,/usr/sbin/,/usr/local/sbin/,/sbin
|
||||
|
||||
[General Options]
|
||||
Allow overburning=false
|
||||
Fifo buffer=4
|
||||
Force unsafe operations=false
|
||||
Last system check version=19.4.1
|
||||
Manual buffer size=false
|
||||
Navigator breadcrumb mode=true
|
||||
No cd eject=false
|
||||
Show Document Header=true
|
||||
Show advanced GUI=false
|
||||
Show progress OSD=false
|
||||
Show splash=true
|
||||
action dialog startup settings=2
|
||||
ask_for_saving_changes_on_exit=true
|
||||
auto rewritable erasing=false
|
||||
burnfree=true
|
||||
check system config=true
|
||||
config version=19.4.1
|
||||
current theme=K3b Dark
|
||||
hide main window while writing=false
|
||||
keep action dialogs open=false
|
||||
|
||||
[file view]
|
||||
Decoration position=0
|
||||
Show Inline Previews=true
|
||||
Show Preview=false
|
||||
Show hidden files=false
|
||||
Sort by=Name
|
||||
Sort directories first=true
|
||||
Sort reversed=false
|
||||
View Style=DetailTree
|
||||
detailedViewIconSize=0
|
||||
show bookmarks=false
|
@@ -1,5 +0,0 @@
|
||||
[activities]
|
||||
78b09966-59e0-4506-ad9a-140cae783f24=Default
|
||||
|
||||
[main]
|
||||
currentActivity=78b09966-59e0-4506-ad9a-140cae783f24
|
@@ -1,120 +0,0 @@
|
||||
[General]
|
||||
Close After Last=false
|
||||
Config Revision=10
|
||||
Days Meta Infos=30
|
||||
Last Session=
|
||||
Modified Notification=false
|
||||
Recent File List Entry Count=10
|
||||
Restore Window Configuration=true
|
||||
Save Meta Infos=true
|
||||
Show Full Path in Title=false
|
||||
Show Menu Bar=true
|
||||
Show Status Bar=true
|
||||
Show Tab Bar=true
|
||||
Startup Session=manual
|
||||
|
||||
[KTextEditor Document]
|
||||
Allow End of Line Detection=true
|
||||
BOM=false
|
||||
Backup Flags=0
|
||||
Backup Prefix=
|
||||
Backup Suffix=~
|
||||
Encoding=UTF-8
|
||||
End of Line=0
|
||||
Indent On Backspace=true
|
||||
Indent On Tab=true
|
||||
Indent On Text Paste=false
|
||||
Indentation Mode=normal
|
||||
Indentation Width=4
|
||||
Keep Extra Spaces=false
|
||||
Line Length Limit=4096
|
||||
Newline at End of File=true
|
||||
On-The-Fly Spellcheck=false
|
||||
Overwrite Mode=false
|
||||
PageUp/PageDown Moves Cursor=false
|
||||
Remove Spaces=0
|
||||
ReplaceTabsDyn=true
|
||||
Show Spaces=0
|
||||
Show Tabs=true
|
||||
Smart Home=true
|
||||
Swap Directory=
|
||||
Swap File Mode=1
|
||||
Swap Sync Interval=15
|
||||
Tab Handling=2
|
||||
Tab Width=4
|
||||
Trailing Marker Size=1
|
||||
Word Wrap=false
|
||||
Word Wrap Column=80
|
||||
|
||||
[KTextEditor Editor]
|
||||
Encoding Prober Type=1
|
||||
Fallback Encoding=ISO-8859-15
|
||||
|
||||
[KTextEditor Renderer]
|
||||
Animate Bracket Matching=false
|
||||
Schema=KDE
|
||||
Show Indentation Lines=false
|
||||
Show Whole Bracket Expression=false
|
||||
Word Wrap Marker=false
|
||||
|
||||
[KTextEditor View]
|
||||
Allow Mark Menu=true
|
||||
Auto Brackets=false
|
||||
Auto Center Lines=0
|
||||
Auto Completion=true
|
||||
Backspace Remove Composed Characters=false
|
||||
Bookmark Menu Sorting=0
|
||||
Default Mark Type=1
|
||||
Dynamic Word Wrap=true
|
||||
Dynamic Word Wrap Align Indent=80
|
||||
Dynamic Word Wrap At Static Marker=false
|
||||
Dynamic Word Wrap Indicators=1
|
||||
Fold First Line=false
|
||||
Folding Bar=true
|
||||
Folding Preview=true
|
||||
Icon Bar=false
|
||||
Input Mode=0
|
||||
Keyword Completion=true
|
||||
Line Modification=true
|
||||
Line Numbers=true
|
||||
Maximum Search History Size=100
|
||||
Mouse Paste At Cursor Position=false
|
||||
Persistent Selection=false
|
||||
Scroll Bar Marks=false
|
||||
Scroll Bar Mini Map All=false
|
||||
Scroll Bar Mini Map Width=60
|
||||
Scroll Bar MiniMap=true
|
||||
Scroll Bar Preview=true
|
||||
Scroll Past End=false
|
||||
Search/Replace Flags=140
|
||||
Show Line Count=false
|
||||
Show Scrollbars=0
|
||||
Show Word Count=false
|
||||
Smart Copy Cut=false
|
||||
Vi Input Mode Steal Keys=false
|
||||
Vi Relative Line Numbers=false
|
||||
Word Completion=true
|
||||
Word Completion Minimal Word Length=3
|
||||
Word Completion Remove Tail=true
|
||||
|
||||
[MainWindow]
|
||||
Height 600=535
|
||||
Height 790=731
|
||||
Height 902=759
|
||||
State=AAAA/wAAAAD9AAAAAAAAA9wAAALbAAAABAAAAAQAAAAIAAAACPwAAAABAAAAAgAAAAEAAAAWAG0AYQBpAG4AVABvAG8AbABCAGEAcgAAAAAA/////wAAAAAAAAAA
|
||||
ToolBarsMovable=Disabled
|
||||
Width 1464=1269
|
||||
Width 1528=988
|
||||
Width 1672=988
|
||||
Width 800=1269
|
||||
|
||||
[UiSettings]
|
||||
ColorScheme=Artix-dark
|
||||
|
||||
[filetree]
|
||||
editShade=68,85,106
|
||||
listMode=false
|
||||
shadingEnabled=true
|
||||
showFullPathOnRoots=false
|
||||
sortRole=0
|
||||
viewShade=72,62,83
|
@@ -1,46 +0,0 @@
|
||||
[$Version]
|
||||
update_info=fonts_kate.upd:Plasma_Fonts_Kate
|
||||
|
||||
[Breeze Dark]
|
||||
Color Background[$d]
|
||||
Color Code Folding[$d]
|
||||
Color Current Line Number[$d]
|
||||
Color Highlighted Bracket[$d]
|
||||
Color Highlighted Line[$d]
|
||||
Color Icon Bar[$d]
|
||||
Color Indentation Line[$d]
|
||||
Color Line Number[$d]
|
||||
Color MarkType 1[$d]
|
||||
Color MarkType 2[$d]
|
||||
Color MarkType 3[$d]
|
||||
Color MarkType 4[$d]
|
||||
Color MarkType 5[$d]
|
||||
Color MarkType 6[$d]
|
||||
Color MarkType 7[$d]
|
||||
Color Modified Lines[$d]
|
||||
Color Replace Highlight[$d]
|
||||
Color Saved Lines[$d]
|
||||
Color Search Highlight[$d]
|
||||
Color Selection[$d]
|
||||
Color Separator[$d]
|
||||
Color Spelling Mistake Line[$d]
|
||||
Color Tab Marker[$d]
|
||||
Color Template Background[$d]
|
||||
Color Template Editable Placeholder[$d]
|
||||
Color Template Focused Editable Placeholder[$d]
|
||||
Color Template Not Editable Placeholder[$d]
|
||||
Color Word Wrap Marker[$d]
|
||||
dummy=prevent-empty-group
|
||||
|
||||
[KDE]
|
||||
Color Background=26,26,26
|
||||
Color Highlighted Line=33,33,33
|
||||
Color Icon Bar=35,35,35
|
||||
Font=Fira Mono,11,-1,5,50,0,0,0,0,0,Regular
|
||||
dummy=prevent-empty-group
|
||||
|
||||
[Normal]
|
||||
dummy=prevent-empty-group
|
||||
|
||||
[Vim (dark)]
|
||||
dummy=prevent-empty-group
|
@@ -1,2 +0,0 @@
|
||||
[X11]
|
||||
exportKDEColors=true
|
@@ -1,3 +0,0 @@
|
||||
[General]
|
||||
dontChangeAASettings=false
|
||||
forceFontDPI=0
|
@@ -1,3 +0,0 @@
|
||||
[Mouse]
|
||||
cursorSize=0
|
||||
cursorTheme=Premium
|
@@ -1,71 +0,0 @@
|
||||
[Module-accounts]
|
||||
autoload=true
|
||||
|
||||
[Module-appmenu]
|
||||
autoload=true
|
||||
|
||||
[Module-baloosearchmodule]
|
||||
autoload=false
|
||||
|
||||
[Module-bluedevil]
|
||||
autoload=true
|
||||
|
||||
[Module-browserintegrationreminder]
|
||||
autoload=true
|
||||
|
||||
[Module-colorcorrectlocationupdater]
|
||||
autoload=true
|
||||
|
||||
[Module-device_automounter]
|
||||
autoload=true
|
||||
|
||||
[Module-freespacenotifier]
|
||||
autoload=true
|
||||
|
||||
[Module-kded_dnssdwatcher]
|
||||
autoload=true
|
||||
|
||||
[Module-kded_printmanager]
|
||||
autoload=true
|
||||
|
||||
[Module-keyboard]
|
||||
autoload=true
|
||||
|
||||
[Module-khotkeys]
|
||||
autoload=true
|
||||
|
||||
[Module-kmixd]
|
||||
autoload=true
|
||||
|
||||
[Module-kscreen]
|
||||
autoload=true
|
||||
|
||||
[Module-ksysguard]
|
||||
autoload=true
|
||||
|
||||
[Module-ktimezoned]
|
||||
autoload=true
|
||||
|
||||
[Module-kwrited]
|
||||
autoload=true
|
||||
|
||||
[Module-networkmanagement]
|
||||
autoload=false
|
||||
|
||||
[Module-networkstatus]
|
||||
autoload=true
|
||||
|
||||
[Module-plasmavault]
|
||||
autoload=true
|
||||
|
||||
[Module-proxyscout]
|
||||
autoload=true
|
||||
|
||||
[Module-remotenotifier]
|
||||
autoload=true
|
||||
|
||||
[Module-statusnotifierwatcher]
|
||||
autoload=true
|
||||
|
||||
[Module-touchpad]
|
||||
autoload=true
|
@@ -1,2 +0,0 @@
|
||||
[General]
|
||||
AutomountEnabled=true
|
@@ -1,142 +0,0 @@
|
||||
[ColorEffects:Disabled]
|
||||
Color=112,111,110
|
||||
ColorAmount=0
|
||||
ColorEffect=0
|
||||
ContrastAmount=0.65
|
||||
ContrastEffect=1
|
||||
IntensityAmount=0.1
|
||||
IntensityEffect=0
|
||||
|
||||
[ColorEffects:Inactive]
|
||||
ChangeSelectionColor=true
|
||||
Color=112,111,110
|
||||
ColorAmount=0.025
|
||||
ColorEffect=2
|
||||
ContrastAmount=0.1
|
||||
ContrastEffect=2
|
||||
Enable=true
|
||||
IntensityAmount=0
|
||||
IntensityEffect=0
|
||||
|
||||
[Colors:Button]
|
||||
BackgroundAlternate=66,66,66
|
||||
BackgroundNormal=53,53,53
|
||||
DecorationFocus=76,76,76
|
||||
DecorationHover=63,63,63
|
||||
ForegroundActive=189,95,167
|
||||
ForegroundInactive=160,160,160
|
||||
ForegroundLink=38,155,193
|
||||
ForegroundNegative=182,0,0
|
||||
ForegroundNeutral=255,221,0
|
||||
ForegroundNormal=218,218,218
|
||||
ForegroundPositive=88,175,88
|
||||
ForegroundVisited=199,79,79
|
||||
|
||||
[Colors:Complementary]
|
||||
BackgroundAlternate=50,50,50
|
||||
BackgroundNormal=35,35,35
|
||||
DecorationFocus=22,108,189
|
||||
DecorationHover=38,113,147
|
||||
ForegroundActive=246,116,0
|
||||
ForegroundInactive=175,176,179
|
||||
ForegroundLink=61,174,230
|
||||
ForegroundNegative=237,21,21
|
||||
ForegroundNeutral=201,206,59
|
||||
ForegroundNormal=218,218,218
|
||||
ForegroundPositive=17,209,22
|
||||
ForegroundVisited=61,174,230
|
||||
|
||||
[Colors:Selection]
|
||||
BackgroundAlternate=10,46,86
|
||||
BackgroundNormal=9,39,72
|
||||
DecorationFocus=76,76,76
|
||||
DecorationHover=63,63,63
|
||||
ForegroundActive=189,95,167
|
||||
ForegroundInactive=160,160,160
|
||||
ForegroundLink=38,155,193
|
||||
ForegroundNegative=182,0,0
|
||||
ForegroundNeutral=181,157,0
|
||||
ForegroundNormal=218,218,218
|
||||
ForegroundPositive=91,181,91
|
||||
ForegroundVisited=199,79,79
|
||||
|
||||
[Colors:Tooltip]
|
||||
BackgroundAlternate=42,42,42
|
||||
BackgroundNormal=26,26,26
|
||||
DecorationFocus=76,76,76
|
||||
DecorationHover=63,63,63
|
||||
ForegroundActive=185,93,164
|
||||
ForegroundInactive=170,170,170
|
||||
ForegroundLink=35,146,180
|
||||
ForegroundNegative=171,0,0
|
||||
ForegroundNeutral=162,140,0
|
||||
ForegroundNormal=218,218,218
|
||||
ForegroundPositive=83,165,83
|
||||
ForegroundVisited=199,79,79
|
||||
|
||||
[Colors:View]
|
||||
BackgroundAlternate=42,42,42
|
||||
BackgroundNormal=37,37,37
|
||||
DecorationFocus=76,76,76
|
||||
DecorationHover=63,63,63
|
||||
ForegroundActive=198,99,175
|
||||
ForegroundInactive=160,160,160
|
||||
ForegroundLink=37,150,188
|
||||
ForegroundNegative=163,0,0
|
||||
ForegroundNeutral=166,144,0
|
||||
ForegroundNormal=218,218,218
|
||||
ForegroundPositive=75,149,75
|
||||
ForegroundVisited=182,73,73
|
||||
|
||||
[Colors:Window]
|
||||
BackgroundAlternate=42,42,42
|
||||
BackgroundNormal=42,42,42
|
||||
DecorationFocus=76,76,76
|
||||
DecorationHover=63,63,63
|
||||
ForegroundActive=189,95,167
|
||||
ForegroundInactive=160,160,160
|
||||
ForegroundLink=35,145,179
|
||||
ForegroundNegative=185,0,0
|
||||
ForegroundNeutral=181,157,0
|
||||
ForegroundNormal=218,218,218
|
||||
ForegroundPositive=86,171,86
|
||||
ForegroundVisited=199,79,79
|
||||
|
||||
[General]
|
||||
ColorScheme=Artix-dark
|
||||
Name=Artix-dark
|
||||
XftAntialias=true
|
||||
XftHintStyle=hintfull
|
||||
XftSubPixel=rgb
|
||||
fixed=Fira Mono,11,-1,5,50,0,0,0,0,0,Regular
|
||||
font=Fira Sans,11,-1,5,50,0,0,0,0,0,Regular
|
||||
menuFont=Fira Sans,11,-1,5,50,0,0,0,0,0,Regular
|
||||
shadeSortColumn=true
|
||||
smallestReadableFont=Fira Sans,11,-1,5,50,0,0,0,0,0,Regular
|
||||
toolBarFont=Fira Sans,11,-1,5,50,0,0,0,0,0,Regular
|
||||
widgetStyle=gtk2
|
||||
|
||||
[Icons]
|
||||
Theme=breeze-dark
|
||||
|
||||
[KDE]
|
||||
ColorScheme=Artix-dark
|
||||
LookAndFeelPackage=artix.dark
|
||||
ShowIconsInMenuItems=true
|
||||
ShowIconsOnPushButtons=true
|
||||
contrast=0
|
||||
widgetStyle=gtk2
|
||||
|
||||
[Toolbar style]
|
||||
Highlighting=true
|
||||
IconText=IconOnly
|
||||
TransparentMoving=false
|
||||
|
||||
[WM]
|
||||
activeBackground=45,45,45
|
||||
activeBlend=45,45,45
|
||||
activeFont=Fira Sans,11,-1,5,50,0,0,0,0,0,Regular
|
||||
activeForeground=255,255,255
|
||||
inactiveBackground=53,53,53
|
||||
inactiveBlend=53,53,53
|
||||
inactiveForeground=155,155,155
|
@@ -1,96 +0,0 @@
|
||||
[MainWindow]
|
||||
Height 790=731
|
||||
Height 900=840
|
||||
State=AAAA/wAAAAD9AAAAAQAAAAIAAAeAAAABUPwBAAAADfsAAAAYAG4AbwB0AGUAcwBfAHcAaQBkAGcAZQB0AAAAAAD/////AAAAUgD////7AAAADgBsAGkAYgByAGEAcgB5AAAAAAD/////AAAAYwD////7AAAAGgBhAHUAZABpAG8AcwBwAGUAYwB0AHIAdQBtAAAAAAD/////AAAAagD////7AAAAFgBwAHIAbwBqAGUAYwB0AF8AYgBpAG4BAAAAAAAAAPsAAABSAP////wAAAEBAAAA+gAAAFIA////+gAAAAABAAAAAvsAAAAYAGUAZgBmAGUAYwB0AF8AcwB0AGEAYwBrAQAAAAD/////AAAAUgD////7AAAAHgBjAGwAaQBwAF8AcAByAG8AcABlAHIAdABpAGUAcwAAAAAA/////wAAAFIA/////AAAAgEAAAGmAAAAewD////6AAAAAQEAAAAC+wAAAB4AdAByAGEAbgBzAGkAdABpAG8AbgBfAGwAaQBzAHQBAAAAAP////8AAAAAAP////sAAAAWAGUAZgBmAGUAYwB0AF8AbABpAHMAdAEAAAAA/////wAAAAAA/////AAAA60AAAPTAAABQAD////6AAAAAQEAAAAC+wAAABgAYwBsAGkAcABfAG0AbwBuAGkAdABvAHIBAAAAAP////8AAAFAAP////sAAAAeAHAAcgBvAGoAZQBjAHQAXwBtAG8AbgBpAHQAbwByAQAAAAD/////AAABQAD////7AAAAGAB1AG4AZABvAF8AaABpAHMAdABvAHIAeQAAAAAA/////wAAAFIA////+wAAABYAdgBlAGMAdABvAHIAcwBjAG8AcABlAAAAAAD/////AAABRQD////7AAAAEAB3AGEAdgBlAGYAbwByAG0AAAAAAP////8AAACuAP////sAAAAUAHIAZwBiAF8AcABhAHIAYQBkAGUAAAAAAP////8AAAClAP////sAAAASAGgAaQBzAHQAbwBnAHIAYQBtAAAAAAD/////AAABWQD////7AAAAFABzAGMAcgBlAGUAbgBnAHIAYQBiAAAAAAD/////AAAAUgD///8AAAeAAAAB1AAAAAQAAAAEAAAACAAAAAj8AAAAAQAAAAIAAAACAAAAFgBtAGEAaQBuAFQAbwBvAGwAQgBhAHIBAAAAAP////8AAAAAAAAAAAAAABgAZQB4AHQAcgBhAFQAbwBvAGwAQgBhAHIBAAACMf////8AAAAAAAAAAA==
|
||||
ToolBarsMovable=Disabled
|
||||
Width 1440=1432
|
||||
Width 1464=1464
|
||||
Window-Maximized 790x1464=true
|
||||
Window-Maximized 963x1920=true
|
||||
|
||||
[Scope_Histogram]
|
||||
autoRefresh=true
|
||||
bEnabled=true
|
||||
gEnabled=true
|
||||
rEnabled=true
|
||||
realtime=false
|
||||
rec601=false
|
||||
sEnabled=false
|
||||
yEnabled=true
|
||||
|
||||
[Scope_RGB Parade]
|
||||
autoRefresh=true
|
||||
axis=false
|
||||
gradref=false
|
||||
paintmode=0
|
||||
realtime=false
|
||||
|
||||
[Scope_Vectorscope]
|
||||
75PBox=false
|
||||
autoRefresh=true
|
||||
axis=false
|
||||
backgroundmode=0
|
||||
colorspace_ypbpr=false
|
||||
gain=1
|
||||
iqlines=false
|
||||
paintmode=0
|
||||
realtime=false
|
||||
|
||||
[Scope_Waveform]
|
||||
autoRefresh=true
|
||||
paintmode=0
|
||||
realtime=false
|
||||
rec601=false
|
||||
|
||||
[bin]
|
||||
treeviewheaders=AAAA/wAAAAAAAAABAAAAAQAAAAABAAAAAAAAAAAAAAADBgAAAAIAAAACAAAAZAAAAAEAAAA3AAAAUAAAAAMBAQABAAAAAAAAAAAAAAAAZP////8AAACBAAAAAAAAAAMAAABQAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAPoAAAAAD0=
|
||||
|
||||
[capture]
|
||||
decklink_capturedevice=4294967295
|
||||
decklink_device_found=false
|
||||
decklink_extension=mov
|
||||
decklink_parameters=vcodec=dnxhd vb=145000k acodec=pcm_s16le threads=%threads
|
||||
detectedv4ldevices=4294967295
|
||||
grab_extension=mov
|
||||
grab_parameters=-crf 25 -vcodec libx264 -preset veryfast -threads 0
|
||||
v4l_extension=mpg
|
||||
v4l_format=4294967295
|
||||
v4l_parameters=qscale=4 ab=192k vcodec=mpeg2video acodec=mp2 threads=%threads
|
||||
|
||||
[env]
|
||||
defaultaudioapp=/usr/bin/audacity
|
||||
defaultimageapp=/usr/bin/gimp
|
||||
defaultprojectfolder[$e]=$HOME/Documents
|
||||
ffmpegpath[$e]=/usr/bin/ffmpeg
|
||||
ffplaypath[$e]=/usr/bin/ffplay
|
||||
ffprobepath[$e]=/usr/bin/ffprobe
|
||||
mltpath[$e]=/usr/share/mlt/profiles
|
||||
rendererpath[$e]=/usr/bin/melt
|
||||
|
||||
[project]
|
||||
proxyextension=mkv
|
||||
proxyparams=-vf yadif,scale=960:-2 -qscale 3 -vcodec mjpeg -acodec pcm_s16le
|
||||
|
||||
[sdl]
|
||||
audiobackend=sdl2_audio
|
||||
blackmagic_output_device=-1
|
||||
sdlAudioBackend=sdl2_audio
|
||||
|
||||
[shuttle]
|
||||
shuttlebuttons=button0=monitor_pause
|
||||
|
||||
[timeline]
|
||||
trackheight=40
|
||||
|
||||
[unmanaged]
|
||||
colortheme=/usr/share/color-schemes/Artix-dark.colors
|
||||
current_profile=atsc_1080p_25
|
||||
default_profile=atsc_1080p_25
|
||||
force_breeze=true
|
||||
monitor_audio=false
|
||||
producerslist=avformat,avformat-novalidate,abnormal,color,colour,consumer,hold,loader,melt,melt_file,noise,timewarp,tone,decklink,frei0r.ising0r,frei0r.lissajous0r,frei0r.nois0r,frei0r.onecol0r,frei0r.partik0l,frei0r.plasma,frei0r.test_pat_B,frei0r.test_pat_C,frei0r.test_pat_G,frei0r.test_pat_I,frei0r.test_pat_L,frei0r.test_pat_R,pango,pixbuf,ladspa.1047,ladspa.1050,framebuffer,slowmotion,blipflash,count,qimage,qtext,kdenlivetitle,pgm,xml,xml-string,xml-nogl
|
||||
project_display_ratio=1.7777777777777777
|
||||
widgetstyle=gtk2
|
||||
|
||||
[version]
|
||||
version=19.04.0
|
@@ -1,12 +0,0 @@
|
||||
[ActivityManager]
|
||||
_k_friendly_name=Activity Manager
|
||||
switch-to-activity-78b09966-59e0-4506-ad9a-140cae783f24=none,none,Switch to activity "Default"
|
||||
|
||||
[ksmserver]
|
||||
Lock Session=Ctrl+Alt+L\tScreensaver,none,Lock Session
|
||||
_k_friendly_name=System Settings
|
||||
|
||||
[plasmashell]
|
||||
_k_friendly_name=Activity switching
|
||||
next activity=Meta+Tab,none,Walk through activities
|
||||
previous activity=Meta+Shift+Tab,none,Walk through activities (Reverse)
|
@@ -1,6 +0,0 @@
|
||||
[Confirmations]
|
||||
ConfirmDelete=true
|
||||
ConfirmTrash=false
|
||||
|
||||
[Executable scripts]
|
||||
behaviourOnLaunch=alwaysAsk
|
@@ -1,6 +0,0 @@
|
||||
[Desktop Entry]
|
||||
DefaultProfile=Profile 1.profile
|
||||
|
||||
[MainWindow]
|
||||
Height 956=484
|
||||
Width 1920=732
|
@@ -1,168 +0,0 @@
|
||||
[Aliases]
|
||||
AliasList=sayclip /exec sayclip,bug /exec bug,fortune /exec fortune,mail /exec mail,gauge /exec gauge,video /exec media video,audio /exec media audio,media /exec media,uptime /exec uptime,tinyurl /exec tinyurl,sysinfo /exec sysinfo,cmd /exec cmd
|
||||
|
||||
[Appearance]
|
||||
BacklogLines=99
|
||||
ChannelSplitterSizes=836,156
|
||||
CloseButtons=true
|
||||
CustomTabFont=true
|
||||
CustomTextFont=true
|
||||
IrcColorCode1=90,90,90
|
||||
ListFont=Fira Mono,10,-1,5,50,0,0,0,0,0,Regular
|
||||
NickColor8=0,122,4
|
||||
TabFont=Fira Sans,10,-1,5,50,0,0,0,0,0,Regular
|
||||
TextFont=Fira Mono,10,-1,5,50,0,0,0,0,0,Regular
|
||||
TopicSplitterSizes=28,535
|
||||
TreeSplitterSizes=145,773
|
||||
|
||||
[Autoreplace List]
|
||||
Direction0=o
|
||||
Direction1=o
|
||||
Pattern0=\\[\\[([^\\s]+)\\]\\]#
|
||||
Pattern1=(BUG:|bug:)([0-9]+)#
|
||||
Regex0=1
|
||||
Regex1=1
|
||||
Replace0=http://en.wikipedia.org/wiki/Special:Search?go=Go&search=%1#
|
||||
Replace1=https://bugs.kde.org/show_bug.cgi?id=%2#
|
||||
|
||||
[BanList ViewSettings]
|
||||
ColumnSortDescending=false
|
||||
ColumnSorted=0
|
||||
ColumnWidths=100,100,100
|
||||
|
||||
[Button List]
|
||||
Button0=Op,/OP %u%n
|
||||
Button1=DeOp,/DEOP %u%n
|
||||
Button2=WhoIs,/WHOIS %s,%%u%n
|
||||
Button3=Version,/CTCP %s,%%u VERSION%n
|
||||
Button4=Kick,/KICK %u%n
|
||||
Button5=Ban,/BAN %u%n
|
||||
Button6=Part,/PART %c Leaving...%n
|
||||
Button7=Quit,/QUIT Leaving...%n
|
||||
|
||||
[Channel 0]
|
||||
Name=#artix
|
||||
Password=
|
||||
|
||||
[Channel 1]
|
||||
EnableNotifications=true
|
||||
Name=#artix-unregistered
|
||||
Password=
|
||||
|
||||
[ChannelOptionsDialog]
|
||||
Size=724,536
|
||||
SplitterSizes=230,192
|
||||
|
||||
[DCC Settings]
|
||||
ColumnWidths=49,90,103,173,70,87,157,87,96,165
|
||||
IPv4FallbackIface=0
|
||||
PanelSplitter=AAAA/wAAAAEAAAACAAAAVAAAAQUB/////wEAAAACAA==
|
||||
|
||||
[Flags]
|
||||
EncryptionType=1
|
||||
InputFieldsBackgroundColor=true
|
||||
TabPlacement=Top
|
||||
|
||||
[General Options]
|
||||
AutomaticRememberLine=true
|
||||
RedirectServerAndAppMsgToStatusPane=true
|
||||
ShowTrayIcon=true
|
||||
TrayNotify=true
|
||||
|
||||
[Highlight List]
|
||||
HighlightSoundsEnabled=true
|
||||
|
||||
[Identity 0]
|
||||
AuthType=nickserv
|
||||
AutomaticAway=false
|
||||
AutomaticUnaway=false
|
||||
AwayInactivity=10
|
||||
AwayMessage=
|
||||
AwayNick=
|
||||
AwayReason=Gone away for now
|
||||
Bot=nickserv
|
||||
Codec=UTF-8
|
||||
Ident=artix-live
|
||||
InsertRememberLineOnAway=false
|
||||
KickReason=User terminated!
|
||||
Name=
|
||||
Nicknames=artix-live-01,artix-live-02,artix-live-03,artix-live-04,artix-live-05,artix-live-06,artix-live-07,artix-live-08,artix-live-09,artix-live-10,artix-live-11,artix-live-12,artix-live-13,artix-live-14,artix-live-15,artix-live-16,artix-live-17,artix-live-18,artix-live-19,artix-live-20,artix-live-21,artix-live-22,artix-live-23,artix-live-24,artix-live-25,artix-live-26,artix-live-27,artix-live-28,artix-live-29,artix-live-30,artix-live-31,artix-live-32,artix-live-33,artix-live-34,artix-live-35,artix-live-36,artix-live-37,artix-live-38,artix-live-39,artix-live-40,artix-live-41,artix-live-42,artix-live-43,artix-live-44,artix-live-45,artix-live-46,artix-live-47,artix-live-48,artix-live-49,artix-live-50
|
||||
NickservCommand=identify
|
||||
PartReason=Konversation terminated!
|
||||
Password=
|
||||
PemClientCertFile=
|
||||
PreShellCommand=
|
||||
QuitReason=Konversation terminated!
|
||||
Realname=artix-live
|
||||
ReturnMessage=
|
||||
SaslAccount=
|
||||
ShowAwayMessage=false
|
||||
|
||||
[MainWindow]
|
||||
Height 768=705
|
||||
Height 828=693
|
||||
State=AAAA/wAAAAD9AAAAAAAAA+MAAAJ+AAAABAAAAAQAAAAIAAAACPwAAAABAAAAAgAAAAEAAAAWAG0AYQBpAG4AVABvAG8AbABCAGEAcgAAAAAA/////wAAAAAAAAAA
|
||||
ToolBarsMovable=Disabled
|
||||
Width 1366=679
|
||||
Width 1472=995
|
||||
|
||||
[Message Text Colors]
|
||||
ActionMessage=0,101,209
|
||||
AlternateBackground=20,20,20
|
||||
BacklogMessage=127,127,127
|
||||
ChannelMessage=230,230,230
|
||||
CommandMessage=196,0,196
|
||||
Hyperlink=0,221,255
|
||||
QueryMessage=195,195,195
|
||||
ServerMessage=200,138,13
|
||||
TextViewBackground=0,0,0
|
||||
|
||||
[Notification Messages]
|
||||
ChannelListNoServerSelected=1
|
||||
ChannelListWarning=1
|
||||
ClearLogfileQuestion=1
|
||||
CloseQueryAfterIgnore=1
|
||||
HideMenuBarWarning=1
|
||||
HideOnCloseInfo=0
|
||||
IgnoreNick=1
|
||||
Invitation=0
|
||||
QuitChannelTab=1
|
||||
QuitDCCChatTab=1
|
||||
QuitQueryTab=1
|
||||
QuitServerTab=1
|
||||
QuitWithActiveDccTransfers=1
|
||||
ReconnectWithDifferentServer=1
|
||||
ReuseExistingConnection=1
|
||||
SaveLogfileNote=1
|
||||
UnignoreNick=1
|
||||
WarnEncodingConflict=1
|
||||
systemtrayquitKonversation=1
|
||||
|
||||
[Server 0]
|
||||
BypassProxy=true
|
||||
Password=
|
||||
Port=7000
|
||||
SSLEnabled=true
|
||||
Server=chat.freenode.net
|
||||
|
||||
[ServerGroup 0]
|
||||
AutoConnect=true
|
||||
AutoJoinChannels=Channel 0
|
||||
ChannelHistory=Channel 1
|
||||
ConnectCommands=
|
||||
EnableNotifications=true
|
||||
Expanded=true
|
||||
Identity=
|
||||
Name=freenode
|
||||
NotifyList=
|
||||
ServerList=Server 0
|
||||
|
||||
[ServerListDialog]
|
||||
ServerListHeaderState=\x00\x00\x00\xff\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\xf4\x00\x00\x00\x03\x00\x01\x00\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc8\xff\xff\xff\xff\x00\x00\x00\x81\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00d\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\xc8\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\xc8\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x03\xe8\x01\x00\x00\x00\xc8
|
||||
Size=533,274
|
||||
|
||||
[Tab Notifications]
|
||||
TabNotificationsLeds=true
|
||||
|
||||
[Themes]
|
||||
IconTheme=square
|
@@ -1,8 +0,0 @@
|
||||
[$Version]
|
||||
update_info=kscreenlocker.upd:0.1-autolock
|
||||
|
||||
[Greeter]
|
||||
Theme=artix.dark
|
||||
|
||||
[Greeter][Wallpaper][org.kde.image][General]
|
||||
Image=file:///usr/share/backgrounds/Artix_dna_spiral_dark.jpg
|
@@ -1,7 +0,0 @@
|
||||
[General]
|
||||
confirmLogout=true
|
||||
excludeApps=cmst,konversation
|
||||
loginMode=default
|
||||
offerShutdown=true
|
||||
screenCount=1
|
||||
shutdownType=0
|
@@ -1,3 +0,0 @@
|
||||
[KSplash]
|
||||
Engine=KSplashQML
|
||||
Theme=artix.dark
|
@@ -1,22 +0,0 @@
|
||||
[$Version]
|
||||
update_info=kwin.upd:replace-scalein-with-scale,kwin.upd:port-minimizeanimation-effect-to-js,kwin.upd:port-scale-effect-to-js,kwin.upd:port-dimscreen-effect-to-js
|
||||
|
||||
[Compositing]
|
||||
OpenGLIsUnsafe=false
|
||||
|
||||
[Desktops]
|
||||
Number=1
|
||||
Rows=1
|
||||
|
||||
[TabBox]
|
||||
DesktopLayout=org.kde.breeze.desktop
|
||||
DesktopListLayout=org.kde.breeze.desktop
|
||||
LayoutName=org.kde.breeze.desktop
|
||||
|
||||
[org.kde.kdecoration2]
|
||||
BorderSize=Normal
|
||||
ButtonsOnLeft=MS
|
||||
ButtonsOnRight=HIAX
|
||||
CloseOnDoubleClickOnMenu=false
|
||||
library=org.kde.oxygen
|
||||
theme=
|
@@ -1,2 +0,0 @@
|
||||
[General]
|
||||
count=0
|
@@ -1,95 +0,0 @@
|
||||
[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
|
@@ -1,7 +0,0 @@
|
||||
0.8.18.1
|
||||
600
|
||||
400
|
||||
Monospace 12
|
||||
1
|
||||
0
|
||||
1
|
@@ -1,43 +0,0 @@
|
||||
# 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
@@ -1,14 +0,0 @@
|
||||
[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
|
@@ -1,2 +0,0 @@
|
||||
[Command]
|
||||
Logout=lxde-logout
|
@@ -1,135 +0,0 @@
|
||||
# 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
|
||||
}
|
||||
}
|
@@ -1,4 +0,0 @@
|
||||
[special_cases]
|
||||
synaptic=synaptic-pkexec
|
||||
soffice.bin=libreoffice
|
||||
x-terminal-emulator=lxterminal
|
@@ -1,3 +0,0 @@
|
||||
[General]
|
||||
ControlGTKThemeEnabled=true
|
||||
__userfile__=true
|
@@ -1,18 +0,0 @@
|
||||
[General]
|
||||
__userfile__=true
|
||||
enableBatteryWatcher=true
|
||||
enableExtMonLidClosedActions=false
|
||||
enableIdlenessWatcher=true
|
||||
enableLidWatcher=true
|
||||
idlenessAction=-2
|
||||
idlenessTimeSecs=900
|
||||
lidClosedAcAction=4
|
||||
lidClosedAction=4
|
||||
lidClosedExtMonAcAction=-1
|
||||
lidClosedExtMonAction=-1
|
||||
powerLowAction=-1
|
||||
powerLowLevel=5
|
||||
powerLowWarning=30
|
||||
runCheckLevel=1
|
||||
showIcon=true
|
||||
useThemeIcons=false
|
@@ -1,9 +0,0 @@
|
||||
[General]
|
||||
__userfile__=true
|
||||
icon_follow_color_scheme=true
|
||||
icon_theme=breeze-dark
|
||||
theme=system
|
||||
|
||||
[Qt]
|
||||
font="Fira Sans,11,-1,5,50,0,0,0,0,0"
|
||||
style=gtk2
|
@@ -1,3 +0,0 @@
|
||||
[General]
|
||||
__userfile__=true
|
||||
placement=bottom-right
|
@@ -1,95 +0,0 @@
|
||||
[General]
|
||||
__userfile__=true
|
||||
iconTheme=
|
||||
|
||||
[mainmenu]
|
||||
alignment=Left
|
||||
icon=/usr/share/icons/artix/logo.svg
|
||||
ownIcon=true
|
||||
type=mainmenu
|
||||
|
||||
[mount]
|
||||
alignment=Right
|
||||
type=mount
|
||||
|
||||
[panel1]
|
||||
alignment=-1
|
||||
animation-duration=0
|
||||
background-color=@Variant(\0\0\0\x43\x1\xff\xff\x36\x36\x36\x36\x36\x36\0\0)
|
||||
background-image=
|
||||
desktop=0
|
||||
font-color=@Variant(\0\0\0\x43\0\xff\xff\0\0\0\0\0\0\0\0)
|
||||
hidable=false
|
||||
iconSize=32
|
||||
lineCount=1
|
||||
lockPanel=false
|
||||
opacity=77
|
||||
panelSize=34
|
||||
plugins=mainmenu, showdesktop, quicklaunch2, taskbar2, statusnotifier, mount, volume3, worldclock
|
||||
position=Bottom
|
||||
reserve-space=true
|
||||
show-delay=0
|
||||
visible-margin=true
|
||||
width=100
|
||||
width-percent=true
|
||||
|
||||
[quicklaunch2]
|
||||
alignment=Left
|
||||
apps\1\desktop=/usr/share/applications/org.kde.falkon.desktop
|
||||
apps\2\desktop=/usr/share/applications/qterminal.desktop
|
||||
apps\3\desktop=/usr/share/applications/pcmanfm-qt.desktop
|
||||
apps\size=3
|
||||
type=quicklaunch
|
||||
|
||||
[showdesktop]
|
||||
alignment=Left
|
||||
type=showdesktop
|
||||
|
||||
[statusnotifier]
|
||||
alignment=Right
|
||||
type=statusnotifier
|
||||
|
||||
[taskbar2]
|
||||
alignment=Left
|
||||
autoRotate=true
|
||||
buttonHeight=100
|
||||
buttonStyle=IconText
|
||||
buttonWidth=256
|
||||
closeOnMiddleClick=true
|
||||
cycleOnWheelScroll=true
|
||||
groupingEnabled=false
|
||||
iconByClass=true
|
||||
raiseOnCurrentDesktop=false
|
||||
showDesktopNum=0
|
||||
showGroupOnHover=true
|
||||
showOnlyCurrentScreenTasks=false
|
||||
showOnlyMinimizedTasks=false
|
||||
showOnlyOneDesktopTasks=false
|
||||
type=taskbar
|
||||
|
||||
[volume3]
|
||||
alignment=Right
|
||||
type=volume
|
||||
|
||||
[worldclock]
|
||||
alignment=Right
|
||||
autoRotate=true
|
||||
customFormat="'<b>'HH:mm'</b><br/><font size=\"-1\">'ddd, d MMM yyyy'<br/>'TT'</font>'"
|
||||
dateFormatType=custom
|
||||
dateLongNames=false
|
||||
datePadDay=false
|
||||
datePosition=above
|
||||
dateShowDoW=true
|
||||
dateShowYear=true
|
||||
defaultTimeZone=
|
||||
formatType=custom-timeonly
|
||||
showDate=true
|
||||
showTimezone=false
|
||||
timeAMPM=false
|
||||
timePadHour=true
|
||||
timeShowSeconds=false
|
||||
timeZones\size=0
|
||||
timezoneFormatType=iana
|
||||
timezonePosition=below
|
||||
type=worldclock
|
||||
useAdvancedManualFormat=true
|
@@ -1,12 +0,0 @@
|
||||
[General]
|
||||
__userfile__=true
|
||||
window_manager=openbox
|
||||
|
||||
[Environment]
|
||||
BROWSER=falkon
|
||||
GTK_CSD=0
|
||||
GTK_OVERLAY_SCROLLING=0
|
||||
TERM=qterminal
|
||||
|
||||
[Mouse]
|
||||
cursor_theme=Premium
|
@@ -1,3 +0,0 @@
|
||||
@lxpanel --profile LXDE
|
||||
@pcmanfm --desktop --profile LXDE
|
||||
@xscreensaver -no-splash
|
@@ -1,51 +0,0 @@
|
||||
[Session]
|
||||
window_manager=openbox-lxde
|
||||
disable_autostart=no
|
||||
polkit/command=lxpolkit
|
||||
clipboard/command=lxclipboard
|
||||
xsettings_manager/command=build-in
|
||||
proxy_manager/command=build-in
|
||||
keyring/command=ssh-agent
|
||||
quit_manager/command=lxsession-logout
|
||||
lock_manager/command=lxlock
|
||||
terminal_manager/command=lxterminal
|
||||
quit_manager/image=/usr/share/lxde/images/logout-banner.png
|
||||
quit_manager/layout=top
|
||||
windows_manager/command=openbox-lxde
|
||||
|
||||
[GTK]
|
||||
sNet/ThemeName=Artix-dark
|
||||
sNet/IconThemeName=nuoveXT2
|
||||
sGtk/FontName=Fira Sans 11
|
||||
iGtk/ToolbarStyle=0
|
||||
iGtk/ButtonImages=1
|
||||
iGtk/MenuImages=1
|
||||
iGtk/CursorThemeSize=18
|
||||
iXft/Antialias=1
|
||||
iXft/Hinting=1
|
||||
sXft/HintStyle=hintfull
|
||||
sXft/RGBA=rgb
|
||||
iNet/EnableEventSounds=1
|
||||
iNet/EnableInputFeedbackSounds=1
|
||||
sGtk/ColorScheme=
|
||||
iGtk/ToolbarIconSize=4
|
||||
sGtk/CursorThemeName=Premium
|
||||
|
||||
[Mouse]
|
||||
AccFactor=20
|
||||
AccThreshold=10
|
||||
LeftHanded=0
|
||||
|
||||
[Keyboard]
|
||||
Delay=500
|
||||
Interval=30
|
||||
Beep=1
|
||||
|
||||
[State]
|
||||
guess_default=true
|
||||
|
||||
[Dbus]
|
||||
lxde=true
|
||||
|
||||
[Environment]
|
||||
menu_prefix=lxde-
|
@@ -1,53 +0,0 @@
|
||||
[general]
|
||||
fontname=Fira Mono 11
|
||||
selchars=-A-Za-z0-9,./?%&#:_
|
||||
scrollback=100000
|
||||
bgcolor=rgb(0,0,0)
|
||||
fgcolor=rgb(211,215,207)
|
||||
palette_color_0=rgb(0,0,0)
|
||||
palette_color_1=rgb(205,0,0)
|
||||
palette_color_2=rgb(78,154,6)
|
||||
palette_color_3=rgb(196,160,0)
|
||||
palette_color_4=rgb(52,101,164)
|
||||
palette_color_5=rgb(117,80,123)
|
||||
palette_color_6=rgb(6,152,154)
|
||||
palette_color_7=rgb(211,215,207)
|
||||
palette_color_8=rgb(85,87,83)
|
||||
palette_color_9=rgb(239,41,41)
|
||||
palette_color_10=rgb(138,226,52)
|
||||
palette_color_11=rgb(252,233,79)
|
||||
palette_color_12=rgb(114,159,207)
|
||||
palette_color_13=rgb(173,127,168)
|
||||
palette_color_14=rgb(52,226,226)
|
||||
palette_color_15=rgb(238,238,236)
|
||||
color_preset=Tango
|
||||
disallowbold=false
|
||||
cursorblinks=false
|
||||
cursorunderline=false
|
||||
audiblebell=false
|
||||
tabpos=top
|
||||
geometry_columns=80
|
||||
geometry_rows=24
|
||||
hidescrollbar=false
|
||||
hidemenubar=false
|
||||
hideclosebutton=false
|
||||
hidepointer=false
|
||||
disablef10=true
|
||||
disablealt=false
|
||||
disableconfirm=false
|
||||
|
||||
[shortcut]
|
||||
new_window_accel=<Primary><Shift>n
|
||||
new_tab_accel=<Primary><Shift>t
|
||||
close_tab_accel=<Primary><Shift>w
|
||||
close_window_accel=<Primary><Shift>q
|
||||
copy_accel=<Primary><Shift>c
|
||||
paste_accel=<Primary><Shift>v
|
||||
name_tab_accel=<Primary><Shift>i
|
||||
previous_tab_accel=<Primary>Page_Up
|
||||
next_tab_accel=<Primary>Page_Down
|
||||
move_tab_left_accel=<Primary><Shift>Page_Up
|
||||
move_tab_right_accel=<Primary><Shift>Page_Down
|
||||
zoom_in_accel=<Primary><Shift>plus
|
||||
zoom_out_accel=<Primary><Shift>underscore
|
||||
zoom_reset_accel=<Primary><Shift>parenright
|
@@ -1,58 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE wallpapers SYSTEM "mate-wp-list.dtd">
|
||||
<wallpapers>
|
||||
<wallpaper deleted="false">
|
||||
<name>Cosmos</name>
|
||||
<filename>/usr/share/backgrounds/cosmos/background-1.xml</filename>
|
||||
<options>zoom</options>
|
||||
<shade_type>vertical-gradient</shade_type>
|
||||
<pcolor>rgb(88,145,188)</pcolor>
|
||||
<scolor>rgb(60,143,37)</scolor>
|
||||
<artist>(none)</artist>
|
||||
</wallpaper>
|
||||
<wallpaper deleted="false">
|
||||
<name>space1080p.jpg</name>
|
||||
<filename>/usr/share/backgrounds/space1080p.jpg</filename>
|
||||
<options>zoom</options>
|
||||
<shade_type>vertical-gradient</shade_type>
|
||||
<pcolor>rgb(88,145,188)</pcolor>
|
||||
<scolor>rgb(60,143,37)</scolor>
|
||||
<artist>(none)</artist>
|
||||
</wallpaper>
|
||||
<wallpaper deleted="false">
|
||||
<name>GradientGlowBlue.jpg</name>
|
||||
<filename>/usr/share/backgrounds/GradientGlowBlue.jpg</filename>
|
||||
<options>zoom</options>
|
||||
<shade_type>vertical-gradient</shade_type>
|
||||
<pcolor>rgb(88,145,188)</pcolor>
|
||||
<scolor>rgb(60,143,37)</scolor>
|
||||
<artist>(none)</artist>
|
||||
</wallpaper>
|
||||
<wallpaper deleted="false">
|
||||
<name>No Desktop Background</name>
|
||||
<filename>(none)</filename>
|
||||
<options>zoom</options>
|
||||
<shade_type>vertical-gradient</shade_type>
|
||||
<pcolor>rgb(39,88,126)</pcolor>
|
||||
<scolor>rgb(98,127,90)</scolor>
|
||||
<artist>(none)</artist>
|
||||
</wallpaper>
|
||||
<wallpaper deleted="false">
|
||||
<name>TwoTone1080p.jpg</name>
|
||||
<filename>/usr/share/backgrounds/TwoTone1080p.jpg</filename>
|
||||
<options>zoom</options>
|
||||
<shade_type>vertical-gradient</shade_type>
|
||||
<pcolor>rgb(88,145,188)</pcolor>
|
||||
<scolor>rgb(60,143,37)</scolor>
|
||||
<artist>(none)</artist>
|
||||
</wallpaper>
|
||||
<wallpaper deleted="false">
|
||||
<name>Artix_dna_spiral_dark.jpg</name>
|
||||
<filename>/usr/share/backgrounds/Artix_dna_spiral_dark.jpg</filename>
|
||||
<options>zoom</options>
|
||||
<shade_type>vertical-gradient</shade_type>
|
||||
<pcolor>rgb(88,145,188)</pcolor>
|
||||
<scolor>rgb(60,143,37)</scolor>
|
||||
<artist>(none)</artist>
|
||||
</wallpaper>
|
||||
</wallpapers>
|
@@ -1,249 +0,0 @@
|
||||
|
||||
[Midnight-Commander]
|
||||
show_backups=1
|
||||
show_dot_files=1
|
||||
verbose=true
|
||||
mark_moves_down=1
|
||||
pause_after_run=2
|
||||
shell_patterns=true
|
||||
auto_save_setup=true
|
||||
auto_menu=false
|
||||
use_internal_view=true
|
||||
use_internal_edit=true
|
||||
clear_before_exec=true
|
||||
mix_all_files=0
|
||||
fast_reload=0
|
||||
fast_reload_msg_shown=0
|
||||
confirm_delete=true
|
||||
confirm_overwrite=true
|
||||
confirm_execute=true
|
||||
confirm_exit=false
|
||||
safe_delete=false
|
||||
mouse_repeat_rate=100
|
||||
double_click_speed=250
|
||||
eight_bit_clean=1
|
||||
full_eight_bits=1
|
||||
use_8th_bit_as_meta=false
|
||||
confirm_view_dir=false
|
||||
mouse_move_pages=1
|
||||
mouse_move_pages_viewer=true
|
||||
fast_refresh=false
|
||||
navigate_with_arrows=1
|
||||
drop_menus=true
|
||||
wrap_mode=true
|
||||
old_esc_mode=false
|
||||
cd_symlinks=true
|
||||
show_all_if_ambiguous=true
|
||||
have_fast_cpu=0
|
||||
max_dirt_limit=10
|
||||
torben_fj_mode=0
|
||||
use_file_to_guess_type=true
|
||||
alternate_plus_minus=false
|
||||
only_leading_plus_minus=true
|
||||
show_output_starts_shell=false
|
||||
panel_scroll_pages=1
|
||||
xtree_mode=false
|
||||
num_history_items_recorded=60
|
||||
file_op_compute_totals=true
|
||||
vfs_timeout=60
|
||||
ftpfs_directory_timeout=900
|
||||
use_netrc=true
|
||||
ftpfs_retry_seconds=30
|
||||
ftpfs_always_use_proxy=false
|
||||
ftpfs_use_passive_connections=true
|
||||
ftpfs_use_unix_list_options=true
|
||||
ftpfs_first_cd_then_ls=false
|
||||
editor_word_wrap_line_length=72
|
||||
editor_key_emulation=0
|
||||
editor_tab_spacing=8
|
||||
editor_fill_tabs_with_spaces=false
|
||||
editor_return_does_auto_indent=true
|
||||
editor_backspace_through_tabs=false
|
||||
editor_fake_half_tabs=true
|
||||
editor_option_save_mode=0
|
||||
editor_option_save_position=true
|
||||
editor_option_backup_ext_int=-1
|
||||
editor_option_auto_para_formatting=false
|
||||
editor_option_typewriter_wrap=false
|
||||
editor_edit_confirm_save=true
|
||||
editor_syntax_highlighting=true
|
||||
nice_rotating_dash=true
|
||||
|
||||
kilobyte_si=0
|
||||
confirm_directory_hotlist_delete=true
|
||||
mouse_close_dialog=false
|
||||
ftpfs_use_passive_connections_over_proxy=false
|
||||
fish_directory_timeout=900
|
||||
editor_persistent_selections=true
|
||||
editor_cursor_beyond_eol=false
|
||||
editor_visible_tabs=true
|
||||
editor_visible_spaces=true
|
||||
editor_line_state=false
|
||||
editor_simple_statusbar=false
|
||||
editor_check_new_line=false
|
||||
mcview_remember_file_position=false
|
||||
auto_fill_mkdir_name=true
|
||||
reverse_files_only=1
|
||||
copymove_persistent_attr=true
|
||||
select_flags=6
|
||||
editor_backup_extension=~
|
||||
keymap=mc.keymap
|
||||
filepos_max_saved_entries=1024
|
||||
auto_save_setup_panels=1
|
||||
|
||||
confirm_history_cleanup=true
|
||||
editor_show_right_margin=false
|
||||
mcview_eof=
|
||||
|
||||
quick_search_case_sensitive=2
|
||||
|
||||
old_esc_mode_timeout=1000000
|
||||
classic_progressbar=true
|
||||
scroll_pages=1
|
||||
filetype_mode=1
|
||||
permission_mode=0
|
||||
|
||||
skin=darkfar
|
||||
|
||||
preallocate_space=false
|
||||
editor_group_undo=false
|
||||
ignore_ftp_chattr_errors=true
|
||||
|
||||
editor_drop_selection_on_copy=true
|
||||
editor_cursor_after_inserted_block=false
|
||||
editor_ask_filename_before_edit=true
|
||||
editor_filesize_threshold=64M
|
||||
editor_stop_format_chars=-+*\\,.;:&>
|
||||
|
||||
editor_state_full_filename=false
|
||||
|
||||
safe_overwrite=false
|
||||
|
||||
[Layout]
|
||||
message_visible=0
|
||||
keybar_visible=0
|
||||
xterm_title=0
|
||||
output_lines=0
|
||||
command_prompt=1
|
||||
menubar_visible=0
|
||||
show_mini_info=1
|
||||
permission_mode=1
|
||||
filetype_mode=1
|
||||
|
||||
free_space=1
|
||||
|
||||
classic_progressbar=true
|
||||
|
||||
horizontal_split=0
|
||||
vertical_equal=1
|
||||
left_panel_size=58
|
||||
horizontal_equal=1
|
||||
top_panel_size=67
|
||||
|
||||
[Dirs]
|
||||
current_is_left=1
|
||||
|
||||
[New Left Panel]
|
||||
display=listing
|
||||
reverse=0
|
||||
case_sensitive=1
|
||||
sort_order=name
|
||||
list_mode=full
|
||||
user_format=half type name | size | perm
|
||||
user_status0=half type name | size | perm
|
||||
user_status1=half type name | size | perm
|
||||
user_status2=half type name | size | perm
|
||||
user_status3=half type name | size | perm
|
||||
user_mini_status=0
|
||||
|
||||
[New Right Panel]
|
||||
display=listing
|
||||
reverse=0
|
||||
case_sensitive=1
|
||||
sort_order=name
|
||||
list_mode=full
|
||||
user_format=half type name | size | perm
|
||||
user_status0=half type name | size | perm
|
||||
user_status1=half type name | size | perm
|
||||
user_status2=half type name | size | perm
|
||||
user_status3=half type name | size | perm
|
||||
user_mini_status=0
|
||||
|
||||
[Misc]
|
||||
ftpfs_password=anonymous@
|
||||
ftp_proxy_host=gate
|
||||
display_codepage=UTF-8
|
||||
|
||||
find_ignore_dirs=
|
||||
source_codepage=Other_8_bit
|
||||
|
||||
timeformat_recent=%b %e %H:%M
|
||||
timeformat_old=%b %e %Y
|
||||
autodetect_codeset=
|
||||
|
||||
clipboard_store=
|
||||
clipboard_paste=
|
||||
|
||||
xterm=
|
||||
color_terminals=
|
||||
|
||||
linux=
|
||||
|
||||
base_color=
|
||||
|
||||
[Panels]
|
||||
kilobyte_si=false
|
||||
mix_all_files=false
|
||||
show_backups=true
|
||||
show_dot_files=true
|
||||
fast_reload=false
|
||||
fast_reload_msg_shown=false
|
||||
mark_moves_down=true
|
||||
reverse_files_only=true
|
||||
auto_save_setup_panels=true
|
||||
navigate_with_arrows=true
|
||||
panel_scroll_pages=true
|
||||
mouse_move_pages=true
|
||||
filetype_mode=true
|
||||
permission_mode=true
|
||||
quick_search_mode=2
|
||||
|
||||
xterm=
|
||||
color_terminals=
|
||||
|
||||
xterm=
|
||||
color_terminals=
|
||||
|
||||
xterm=
|
||||
color_terminals=
|
||||
|
||||
xterm=
|
||||
color_terminals=
|
||||
|
||||
xterm=
|
||||
color_terminals=
|
||||
|
||||
show_mini_info=true
|
||||
torben_fj_mode=false
|
||||
|
||||
select_flags=6
|
||||
|
||||
simple_swap=false
|
||||
|
||||
panel_scroll_center=false
|
||||
|
||||
[Colors]
|
||||
base_color=lightgray,default:normal=lightgray,default:selected=black,cyan:marked=yellow,black:markselect=yellow,cyan:errors=white,red:menu=white,cyan:reverse=black,lightgray:dnormal=black,lightgray:dfocus=black,cyan:dhotnormal=yellow,lightgray:dhotfocus=yellow,cyan:viewunderline=brightred,blue:menuhot=yellow,cyan:menusel=lightgrey,black:menuhotsel=yellow,black:helpnormal=black,lightgray:helpitalic=red,lightgray:helpbold=yellow,lightgray:helplink=black,cyan:helpslink=yellow,default:gauge=white,default:input=black,cyan:directory=gray,default:executable=brightgreen,default:link=lightblue,default:stalelink=brightred,default:device=brightmagenta,default:core=red,default:special=black,blue:editnormal=lightgray,default:editbold=yellow,default:editmarked=black,cyan:errdhotnormal=yellow,red:errdhotfocus=yellow,lightgray
|
||||
xterm=
|
||||
color_terminals=
|
||||
|
||||
linux=
|
||||
|
||||
screen-256color=
|
||||
|
||||
xterm-256color=
|
||||
|
||||
[Panelize]
|
||||
Find *.orig after patching=find . -name \\*.orig -print
|
||||
Find SUID and SGID programs=find . \\( \\( -perm -04000 -a -perm +011 \\) -o \\( -perm -02000 -a -perm +01 \\) \\) -print
|
||||
Find rejects after patching=find . -name \\*.rej -print
|
@@ -1,46 +0,0 @@
|
||||
[Default Applications]
|
||||
x-content/audio-player=clementine.desktop
|
||||
x-scheme-handler/http=firefox.desktop
|
||||
x-scheme-handler/https=firefox.desktop
|
||||
text/html=firefox.desktop
|
||||
x-scheme-handler/about=firefox.desktop
|
||||
x-scheme-handler/mailto=sylpheed.desktop
|
||||
application/x-extension-eml=sylpheed.desktop
|
||||
message/rfc822=sylpheed.desktop
|
||||
inode/directory=pcmanfm.desktop
|
||||
text/plain=leafpad.desktop
|
||||
audio/mpeg=mpv.desktop
|
||||
audio/x-mpegurl=mpv.desktop
|
||||
audio/x-scpls=mpv.desktop
|
||||
audio/x-vorbis+ogg=mpv.desktop
|
||||
audio/x-wav=mpv.desktop
|
||||
video/mp4=mpv.desktop
|
||||
video/mpeg=mpv.desktop
|
||||
video/mp2t=mpv.desktop
|
||||
video/msvideo=mpv.desktop
|
||||
video/quicktime=mpv.desktop
|
||||
video/webm=mpv.desktop
|
||||
video/x-avi=mpv.desktop
|
||||
video/x-flv=mpv.desktop
|
||||
video/x-matroska=mpv.desktop
|
||||
video/x-mpeg=mpv.desktop
|
||||
video/x-ogm+ogg=mpv.desktop
|
||||
image/bmp=eom.desktop
|
||||
image/gif=eom.desktop
|
||||
image/jpeg=eom.desktop
|
||||
image/png=eom.desktop
|
||||
image/tiff=eom.desktop
|
||||
application/pdf=atril.desktop
|
||||
application/vnd.oasis.opendocument.text=libreoffice-writer.desktop
|
||||
application/rtf=libreoffice-writer.desktop
|
||||
application/msword=libreoffice-writer.desktop
|
||||
application/vnd.openxmlformats-officedocument.wordprocessingml.document=libreoffice-writer.desktop
|
||||
application/vnd.oasis.opendocument.spreadsheet=libreoffice-calc.desktop
|
||||
application/vnd.ms-excel=libreoffice-calc.desktop
|
||||
application/vnd.openxmlformats-officedocument.spreadsheetml.sheet=libreoffice-calc.desktop
|
||||
application/xhtml+xml=firefox.desktop
|
||||
|
||||
[Added Associations]
|
||||
x-content/audio-player=clementine.desktop;
|
||||
application/xhtml+xml=firefox.desktop;
|
||||
inode/directory=pcmanfm.desktop;
|
@@ -1,3 +0,0 @@
|
||||
[General]
|
||||
Backend=alpm
|
||||
SU_Tool_Name=automatic
|
@@ -1,754 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!-- Do not edit this file, it will be overwritten on install.
|
||||
Copy the file to $HOME/.config/openbox/ instead. -->
|
||||
<openbox_config xmlns="http://openbox.org/3.4/rc">
|
||||
<resistance>
|
||||
<strength>10</strength>
|
||||
<screen_edge_strength>20</screen_edge_strength>
|
||||
</resistance>
|
||||
<focus>
|
||||
<focusNew>yes</focusNew>
|
||||
<!-- always try to focus new windows when they appear. other rules do
|
||||
apply -->
|
||||
<followMouse>no</followMouse>
|
||||
<!-- move focus to a window when you move the mouse into it -->
|
||||
<focusLast>yes</focusLast>
|
||||
<!-- focus the last used window when changing desktops, instead of the one
|
||||
under the mouse pointer. when followMouse is enabled -->
|
||||
<underMouse>no</underMouse>
|
||||
<!-- move focus under the mouse, even when the mouse is not moving -->
|
||||
<focusDelay>200</focusDelay>
|
||||
<!-- when followMouse is enabled, the mouse must be inside the window for
|
||||
this many milliseconds (1000 = 1 sec) before moving focus to it -->
|
||||
<raiseOnFocus>no</raiseOnFocus>
|
||||
<!-- when followMouse is enabled, and a window is given focus by moving the
|
||||
mouse into it, also raise the window -->
|
||||
</focus>
|
||||
<placement>
|
||||
<policy>Smart</policy>
|
||||
<!-- 'Smart' or 'UnderMouse' -->
|
||||
<center>yes</center>
|
||||
<!-- whether to place windows in the center of the free area found or
|
||||
the top left corner -->
|
||||
<monitor>Any</monitor>
|
||||
<!-- with Smart placement on a multi-monitor system, try to place new windows
|
||||
on: 'Any' - any monitor, 'Mouse' - where the mouse is, 'Active' - where
|
||||
the active window is -->
|
||||
<primaryMonitor/>
|
||||
</placement>
|
||||
<theme>
|
||||
<name>Artix-dark</name>
|
||||
<titleLayout>NLIMC</titleLayout>
|
||||
<!--
|
||||
available characters are NDSLIMC, each can occur at most once.
|
||||
N: window icon
|
||||
L: window label (AKA title).
|
||||
I: iconify
|
||||
M: maximize
|
||||
C: close
|
||||
S: shade (roll up/down)
|
||||
D: omnipresent (on all desktops).
|
||||
-->
|
||||
<keepBorder>yes</keepBorder>
|
||||
<animateIconify>yes</animateIconify>
|
||||
<font place="ActiveWindow">
|
||||
<name>Fira Sans</name>
|
||||
<size>11</size>
|
||||
<!-- font size in points -->
|
||||
<weight>Bold</weight>
|
||||
<!-- 'bold' or 'normal' -->
|
||||
<slant>Normal</slant>
|
||||
<!-- 'italic' or 'normal' -->
|
||||
</font>
|
||||
<font place="InactiveWindow">
|
||||
<name>Fira Sans</name>
|
||||
<size>11</size>
|
||||
<!-- font size in points -->
|
||||
<weight>Bold</weight>
|
||||
<!-- 'bold' or 'normal' -->
|
||||
<slant>Normal</slant>
|
||||
<!-- 'italic' or 'normal' -->
|
||||
</font>
|
||||
<font place="MenuHeader">
|
||||
<name>Fira Sans</name>
|
||||
<size>11</size>
|
||||
<!-- font size in points -->
|
||||
<weight>Normal</weight>
|
||||
<!-- 'bold' or 'normal' -->
|
||||
<slant>Normal</slant>
|
||||
<!-- 'italic' or 'normal' -->
|
||||
</font>
|
||||
<font place="MenuItem">
|
||||
<name>Fira Sans</name>
|
||||
<size>11</size>
|
||||
<!-- font size in points -->
|
||||
<weight>Normal</weight>
|
||||
<!-- 'bold' or 'normal' -->
|
||||
<slant>Normal</slant>
|
||||
<!-- 'italic' or 'normal' -->
|
||||
</font>
|
||||
<font place="ActiveOnScreenDisplay">
|
||||
<name>Fira Sans</name>
|
||||
<size>11</size>
|
||||
<weight>Normal</weight>
|
||||
<slant>Normal</slant>
|
||||
</font>
|
||||
<font place="InactiveOnScreenDisplay">
|
||||
<name>Fira Sans</name>
|
||||
<size>11</size>
|
||||
<weight>Normal</weight>
|
||||
<slant>Normal</slant>
|
||||
</font>
|
||||
</theme>
|
||||
<desktops>
|
||||
<!-- this stuff is only used at startup, pagers allow you to change them
|
||||
during a session
|
||||
|
||||
these are default values to use when other ones are not already set
|
||||
by other applications, or saved in your session
|
||||
|
||||
use obconf if you want to change these without having to log out
|
||||
and back in -->
|
||||
<number>2</number>
|
||||
<firstdesk>1</firstdesk>
|
||||
<names>
|
||||
<!-- set names up here if you want to, like this:
|
||||
<name>desktop 1</name>
|
||||
<name>desktop 2</name>
|
||||
-->
|
||||
</names>
|
||||
<popupTime>875</popupTime>
|
||||
<!-- The number of milliseconds to show the popup for when switching
|
||||
desktops. Set this to 0 to disable the popup. -->
|
||||
</desktops>
|
||||
<resize>
|
||||
<drawContents>yes</drawContents>
|
||||
<popupShow>Nonpixel</popupShow>
|
||||
<!-- 'Always', 'Never', or 'Nonpixel' (xterms and such) -->
|
||||
<popupPosition>Center</popupPosition>
|
||||
<!-- 'Center', 'Top', or 'Fixed' -->
|
||||
<popupFixedPosition>
|
||||
<!-- these are used if popupPosition is set to 'Fixed' -->
|
||||
<x>10</x>
|
||||
<!-- positive number for distance from left edge, negative number for
|
||||
distance from right edge, or 'Center' -->
|
||||
<y>10</y>
|
||||
<!-- positive number for distance from top edge, negative number for
|
||||
distance from bottom edge, or 'Center' -->
|
||||
</popupFixedPosition>
|
||||
</resize>
|
||||
<!-- You can reserve a portion of your screen where windows will not cover when
|
||||
they are maximized, or when they are initially placed.
|
||||
Many programs reserve space automatically, but you can use this in other
|
||||
cases. -->
|
||||
<margins>
|
||||
<top>0</top>
|
||||
<bottom>0</bottom>
|
||||
<left>0</left>
|
||||
<right>0</right>
|
||||
</margins>
|
||||
<dock>
|
||||
<position>TopLeft</position>
|
||||
<!-- (Top|Bottom)(Left|Right|)|Top|Bottom|Left|Right|Floating -->
|
||||
<floatingX>0</floatingX>
|
||||
<floatingY>0</floatingY>
|
||||
<noStrut>no</noStrut>
|
||||
<stacking>Above</stacking>
|
||||
<!-- 'Above', 'Normal', or 'Below' -->
|
||||
<direction>Vertical</direction>
|
||||
<!-- 'Vertical' or 'Horizontal' -->
|
||||
<autoHide>no</autoHide>
|
||||
<hideDelay>300</hideDelay>
|
||||
<!-- in milliseconds (1000 = 1 second) -->
|
||||
<showDelay>300</showDelay>
|
||||
<!-- in milliseconds (1000 = 1 second) -->
|
||||
<moveButton>Middle</moveButton>
|
||||
<!-- 'Left', 'Middle', 'Right' -->
|
||||
</dock>
|
||||
<keyboard>
|
||||
<chainQuitKey>C-g</chainQuitKey>
|
||||
<!-- Keybindings for desktop switching -->
|
||||
<keybind key="C-A-Left">
|
||||
<action name="DesktopLeft">
|
||||
<dialog>no</dialog>
|
||||
<wrap>no</wrap>
|
||||
</action>
|
||||
</keybind>
|
||||
<keybind key="C-A-Right">
|
||||
<action name="DesktopRight">
|
||||
<dialog>no</dialog>
|
||||
<wrap>no</wrap>
|
||||
</action>
|
||||
</keybind>
|
||||
<keybind key="C-A-Up">
|
||||
<action name="DesktopUp">
|
||||
<dialog>no</dialog>
|
||||
<wrap>no</wrap>
|
||||
</action>
|
||||
</keybind>
|
||||
<keybind key="C-A-Down">
|
||||
<action name="DesktopDown">
|
||||
<dialog>no</dialog>
|
||||
<wrap>no</wrap>
|
||||
</action>
|
||||
</keybind>
|
||||
<keybind key="S-A-Left">
|
||||
<action name="SendToDesktopLeft">
|
||||
<dialog>no</dialog>
|
||||
<wrap>no</wrap>
|
||||
</action>
|
||||
</keybind>
|
||||
<keybind key="S-A-Right">
|
||||
<action name="SendToDesktopRight">
|
||||
<dialog>no</dialog>
|
||||
<wrap>no</wrap>
|
||||
</action>
|
||||
</keybind>
|
||||
<keybind key="S-A-Up">
|
||||
<action name="SendToDesktopUp">
|
||||
<dialog>no</dialog>
|
||||
<wrap>no</wrap>
|
||||
</action>
|
||||
</keybind>
|
||||
<keybind key="S-A-Down">
|
||||
<action name="SendToDesktopDown">
|
||||
<dialog>no</dialog>
|
||||
<wrap>no</wrap>
|
||||
</action>
|
||||
</keybind>
|
||||
<keybind key="W-F1">
|
||||
<action name="Desktop">
|
||||
<desktop>1</desktop>
|
||||
</action>
|
||||
</keybind>
|
||||
<keybind key="W-F2">
|
||||
<action name="Desktop">
|
||||
<desktop>2</desktop>
|
||||
</action>
|
||||
</keybind>
|
||||
<keybind key="W-F3">
|
||||
<action name="Desktop">
|
||||
<desktop>3</desktop>
|
||||
</action>
|
||||
</keybind>
|
||||
<keybind key="W-F4">
|
||||
<action name="Desktop">
|
||||
<desktop>4</desktop>
|
||||
</action>
|
||||
</keybind>
|
||||
<keybind key="W-d">
|
||||
<action name="ToggleShowDesktop"/>
|
||||
</keybind>
|
||||
<keybind key="C-A-d">
|
||||
<action name="ToggleShowDesktop"/>
|
||||
</keybind>
|
||||
<!-- Keybindings for windows -->
|
||||
<keybind key="A-F4">
|
||||
<action name="Close"/>
|
||||
</keybind>
|
||||
<keybind key="A-Escape">
|
||||
<action name="Lower"/>
|
||||
<action name="FocusToBottom"/>
|
||||
<action name="Unfocus"/>
|
||||
</keybind>
|
||||
<keybind key="A-space">
|
||||
<action name="ShowMenu">
|
||||
<menu>client-menu</menu>
|
||||
</action>
|
||||
</keybind>
|
||||
<!-- Keybindings for window switching -->
|
||||
<keybind key="A-Tab">
|
||||
<action name="NextWindow"/>
|
||||
</keybind>
|
||||
<keybind key="A-S-Tab">
|
||||
<action name="PreviousWindow"/>
|
||||
</keybind>
|
||||
<keybind key="C-A-Tab">
|
||||
<action name="NextWindow">
|
||||
<panels>yes</panels>
|
||||
<desktop>yes</desktop>
|
||||
</action>
|
||||
</keybind>
|
||||
<!-- Keybindings for running applications -->
|
||||
<keybind key="W-e">
|
||||
<action name="Execute">
|
||||
<startupnotify>
|
||||
<enabled>true</enabled>
|
||||
<name>PCManFM</name>
|
||||
</startupnotify>
|
||||
<command>pcmanfm</command>
|
||||
</action>
|
||||
</keybind>
|
||||
<!-- Keybindings for finding files -->
|
||||
<keybind key="W-f">
|
||||
<action name="Execute">
|
||||
<command>pcmanfm --find-files</command>
|
||||
</action>
|
||||
</keybind>
|
||||
<!--keybindings for LXPanel -->
|
||||
<keybind key="W-r">
|
||||
<action name="Execute">
|
||||
<command>lxpanelctl run</command>
|
||||
</action>
|
||||
</keybind>
|
||||
<keybind key="A-F2">
|
||||
<action name="Execute">
|
||||
<command>lxpanelctl run</command>
|
||||
</action>
|
||||
</keybind>
|
||||
<keybind key="C-Escape">
|
||||
<action name="Execute">
|
||||
<command>lxpanelctl menu</command>
|
||||
</action>
|
||||
</keybind>
|
||||
<keybind key="A-F1">
|
||||
<action name="Execute">
|
||||
<command>lxpanelctl menu</command>
|
||||
</action>
|
||||
</keybind>
|
||||
<keybind key="A-F11">
|
||||
<action name="ToggleFullscreen"/>
|
||||
</keybind>
|
||||
<!-- Launch Task Manager with Ctrl+Alt+Del -->
|
||||
<keybind key="A-C-Delete">
|
||||
<action name="Execute">
|
||||
<command>lxtask</command>
|
||||
</action>
|
||||
</keybind>
|
||||
<!-- Launch gnome-screenshot when PrintScreen is pressed -->
|
||||
<keybind key="Print">
|
||||
<action name="Execute">
|
||||
<command>gnome-screenshot -i</command>
|
||||
</action>
|
||||
</keybind>
|
||||
<!-- Launch LXRandR when Fn+Screen is pressed -->
|
||||
<keybind key="XF86Display">
|
||||
<action name="Execute">
|
||||
<command>lxrandr</command>
|
||||
</action>
|
||||
</keybind>
|
||||
</keyboard>
|
||||
<mouse>
|
||||
<dragThreshold>8</dragThreshold>
|
||||
<!-- number of pixels the mouse must move before a drag begins -->
|
||||
<doubleClickTime>200</doubleClickTime>
|
||||
<!-- in milliseconds (1000 = 1 second) -->
|
||||
<screenEdgeWarpTime>400</screenEdgeWarpTime>
|
||||
<!-- Time before changing desktops when the pointer touches the edge of the
|
||||
screen while moving a window, in milliseconds (1000 = 1 second).
|
||||
Set this to 0 to disable warping -->
|
||||
<context name="Frame">
|
||||
<mousebind button="A-Left" action="Press">
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
</mousebind>
|
||||
<mousebind button="A-Left" action="Click">
|
||||
<action name="Unshade"/>
|
||||
</mousebind>
|
||||
<mousebind button="A-Left" action="Drag">
|
||||
<action name="Move"/>
|
||||
</mousebind>
|
||||
<mousebind button="A-Right" action="Press">
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
<action name="Unshade"/>
|
||||
</mousebind>
|
||||
<mousebind button="A-Right" action="Drag">
|
||||
<action name="Resize"/>
|
||||
</mousebind>
|
||||
<mousebind button="A-Middle" action="Press">
|
||||
<action name="Lower"/>
|
||||
<action name="FocusToBottom"/>
|
||||
<action name="Unfocus"/>
|
||||
</mousebind>
|
||||
<mousebind button="A-Up" action="Click">
|
||||
<action name="DesktopPrevious"/>
|
||||
</mousebind>
|
||||
<mousebind button="A-Down" action="Click">
|
||||
<action name="DesktopNext"/>
|
||||
</mousebind>
|
||||
<mousebind button="C-A-Up" action="Click">
|
||||
<action name="DesktopPrevious"/>
|
||||
</mousebind>
|
||||
<mousebind button="C-A-Down" action="Click">
|
||||
<action name="DesktopNext"/>
|
||||
</mousebind>
|
||||
<mousebind button="A-S-Up" action="Click">
|
||||
<action name="SendToDesktopPrevious"/>
|
||||
</mousebind>
|
||||
<mousebind button="A-S-Down" action="Click">
|
||||
<action name="SendToDesktopNext"/>
|
||||
</mousebind>
|
||||
</context>
|
||||
<context name="Titlebar">
|
||||
<mousebind button="Left" action="Press">
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
</mousebind>
|
||||
<mousebind button="Left" action="Drag">
|
||||
<action name="Move"/>
|
||||
</mousebind>
|
||||
<mousebind button="Left" action="DoubleClick">
|
||||
<action name="ToggleMaximizeFull"/>
|
||||
</mousebind>
|
||||
<mousebind button="Middle" action="Press">
|
||||
<action name="Lower"/>
|
||||
<action name="FocusToBottom"/>
|
||||
<action name="Unfocus"/>
|
||||
</mousebind>
|
||||
<mousebind button="Up" action="Click">
|
||||
<action name="Shade"/>
|
||||
<action name="FocusToBottom"/>
|
||||
<action name="Unfocus"/>
|
||||
<action name="Lower"/>
|
||||
</mousebind>
|
||||
<mousebind button="Down" action="Click">
|
||||
<action name="Unshade"/>
|
||||
<action name="Raise"/>
|
||||
</mousebind>
|
||||
<mousebind button="Right" action="Press">
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
<action name="ShowMenu">
|
||||
<menu>client-menu</menu>
|
||||
</action>
|
||||
</mousebind>
|
||||
</context>
|
||||
<context name="Top">
|
||||
<mousebind button="Left" action="Press">
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
<action name="Unshade"/>
|
||||
</mousebind>
|
||||
<mousebind button="Left" action="Drag">
|
||||
<action name="Resize">
|
||||
<edge>top</edge>
|
||||
</action>
|
||||
</mousebind>
|
||||
</context>
|
||||
<context name="Left">
|
||||
<mousebind button="Left" action="Press">
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
</mousebind>
|
||||
<mousebind button="Left" action="Drag">
|
||||
<action name="Resize">
|
||||
<edge>left</edge>
|
||||
</action>
|
||||
</mousebind>
|
||||
</context>
|
||||
<context name="Right">
|
||||
<mousebind button="Left" action="Press">
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
</mousebind>
|
||||
<mousebind button="Left" action="Drag">
|
||||
<action name="Resize">
|
||||
<edge>right</edge>
|
||||
</action>
|
||||
</mousebind>
|
||||
</context>
|
||||
<context name="Bottom">
|
||||
<mousebind button="Left" action="Press">
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
</mousebind>
|
||||
<mousebind button="Left" action="Drag">
|
||||
<action name="Resize">
|
||||
<edge>bottom</edge>
|
||||
</action>
|
||||
</mousebind>
|
||||
<mousebind button="Middle" action="Press">
|
||||
<action name="Lower"/>
|
||||
<action name="FocusToBottom"/>
|
||||
<action name="Unfocus"/>
|
||||
</mousebind>
|
||||
<mousebind button="Right" action="Press">
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
<action name="ShowMenu">
|
||||
<menu>client-menu</menu>
|
||||
</action>
|
||||
</mousebind>
|
||||
</context>
|
||||
<context name="BLCorner">
|
||||
<mousebind button="Left" action="Press">
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
</mousebind>
|
||||
<mousebind button="Left" action="Drag">
|
||||
<action name="Resize"/>
|
||||
</mousebind>
|
||||
</context>
|
||||
<context name="BRCorner">
|
||||
<mousebind button="Left" action="Press">
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
</mousebind>
|
||||
<mousebind button="Left" action="Drag">
|
||||
<action name="Resize"/>
|
||||
</mousebind>
|
||||
</context>
|
||||
<context name="TLCorner">
|
||||
<mousebind button="Left" action="Press">
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
<action name="Unshade"/>
|
||||
</mousebind>
|
||||
<mousebind button="Left" action="Drag">
|
||||
<action name="Resize"/>
|
||||
</mousebind>
|
||||
</context>
|
||||
<context name="TRCorner">
|
||||
<mousebind button="Left" action="Press">
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
<action name="Unshade"/>
|
||||
</mousebind>
|
||||
<mousebind button="Left" action="Drag">
|
||||
<action name="Resize"/>
|
||||
</mousebind>
|
||||
</context>
|
||||
<context name="Client">
|
||||
<mousebind button="Left" action="Press">
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
</mousebind>
|
||||
<mousebind button="Middle" action="Press">
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
</mousebind>
|
||||
<mousebind button="Right" action="Press">
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
</mousebind>
|
||||
</context>
|
||||
<context name="Icon">
|
||||
<mousebind button="Left" action="Press">
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
<action name="Unshade"/>
|
||||
<action name="ShowMenu">
|
||||
<menu>client-menu</menu>
|
||||
</action>
|
||||
</mousebind>
|
||||
<mousebind button="Right" action="Press">
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
<action name="ShowMenu">
|
||||
<menu>client-menu</menu>
|
||||
</action>
|
||||
</mousebind>
|
||||
</context>
|
||||
<context name="AllDesktops">
|
||||
<mousebind button="Left" action="Press">
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
<action name="Unshade"/>
|
||||
</mousebind>
|
||||
<mousebind button="Left" action="Click">
|
||||
<action name="ToggleOmnipresent"/>
|
||||
</mousebind>
|
||||
</context>
|
||||
<context name="Shade">
|
||||
<mousebind button="Left" action="Press">
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
</mousebind>
|
||||
<mousebind button="Left" action="Click">
|
||||
<action name="ToggleShade"/>
|
||||
</mousebind>
|
||||
</context>
|
||||
<context name="Iconify">
|
||||
<mousebind button="Left" action="Press">
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
</mousebind>
|
||||
<mousebind button="Left" action="Click">
|
||||
<action name="Iconify"/>
|
||||
</mousebind>
|
||||
</context>
|
||||
<context name="Maximize">
|
||||
<mousebind button="Left" action="Press">
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
<action name="Unshade"/>
|
||||
</mousebind>
|
||||
<mousebind button="Middle" action="Press">
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
<action name="Unshade"/>
|
||||
</mousebind>
|
||||
<mousebind button="Right" action="Press">
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
<action name="Unshade"/>
|
||||
</mousebind>
|
||||
<mousebind button="Left" action="Click">
|
||||
<action name="ToggleMaximizeFull"/>
|
||||
</mousebind>
|
||||
<mousebind button="Middle" action="Click">
|
||||
<action name="ToggleMaximizeVert"/>
|
||||
</mousebind>
|
||||
<mousebind button="Right" action="Click">
|
||||
<action name="ToggleMaximizeHorz"/>
|
||||
</mousebind>
|
||||
</context>
|
||||
<context name="Close">
|
||||
<mousebind button="Left" action="Press">
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
<action name="Unshade"/>
|
||||
</mousebind>
|
||||
<mousebind button="Left" action="Click">
|
||||
<action name="Close"/>
|
||||
</mousebind>
|
||||
</context>
|
||||
<context name="Desktop">
|
||||
<mousebind button="Up" action="Click">
|
||||
<action name="DesktopPrevious"/>
|
||||
</mousebind>
|
||||
<mousebind button="Down" action="Click">
|
||||
<action name="DesktopNext"/>
|
||||
</mousebind>
|
||||
<mousebind button="A-Up" action="Click">
|
||||
<action name="DesktopPrevious"/>
|
||||
</mousebind>
|
||||
<mousebind button="A-Down" action="Click">
|
||||
<action name="DesktopNext"/>
|
||||
</mousebind>
|
||||
<mousebind button="C-A-Up" action="Click">
|
||||
<action name="DesktopPrevious"/>
|
||||
</mousebind>
|
||||
<mousebind button="C-A-Down" action="Click">
|
||||
<action name="DesktopNext"/>
|
||||
</mousebind>
|
||||
<mousebind button="Left" action="Press">
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
</mousebind>
|
||||
<mousebind button="Right" action="Press">
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
</mousebind>
|
||||
</context>
|
||||
<context name="Root">
|
||||
<!-- Menus -->
|
||||
<mousebind button="Middle" action="Press">
|
||||
<action name="ShowMenu">
|
||||
<menu>client-list-combined-menu</menu>
|
||||
</action>
|
||||
</mousebind>
|
||||
<mousebind button="Right" action="Press">
|
||||
<action name="ShowMenu">
|
||||
<menu>root-menu</menu>
|
||||
</action>
|
||||
</mousebind>
|
||||
</context>
|
||||
<context name="MoveResize">
|
||||
<mousebind button="Up" action="Click">
|
||||
<action name="DesktopPrevious"/>
|
||||
</mousebind>
|
||||
<mousebind button="Down" action="Click">
|
||||
<action name="DesktopNext"/>
|
||||
</mousebind>
|
||||
<mousebind button="A-Up" action="Click">
|
||||
<action name="DesktopPrevious"/>
|
||||
</mousebind>
|
||||
<mousebind button="A-Down" action="Click">
|
||||
<action name="DesktopNext"/>
|
||||
</mousebind>
|
||||
</context>
|
||||
</mouse>
|
||||
<menu>
|
||||
<!-- You can specify more than one menu file in here and they are all loaded,
|
||||
just don't make menu ids clash or, well, it'll be kind of pointless -->
|
||||
<!-- default menu file (or custom one in $HOME/.config/openbox/) -->
|
||||
<file>/usr/share/lxde/openbox/menu.xml</file>
|
||||
<hideDelay>200</hideDelay>
|
||||
<!-- if a press-release lasts longer than this setting (in milliseconds), the
|
||||
menu is hidden again -->
|
||||
<middle>no</middle>
|
||||
<!-- center submenus vertically about the parent entry -->
|
||||
<submenuShowDelay>100</submenuShowDelay>
|
||||
<!-- this one is easy, time to delay before showing a submenu after hovering
|
||||
over the parent entry -->
|
||||
<applicationIcons>yes</applicationIcons>
|
||||
<!-- controls if icons appear in the client-list-(combined-)menu -->
|
||||
<manageDesktops>yes</manageDesktops>
|
||||
<!-- show the manage desktops section in the client-list-(combined-)menu -->
|
||||
</menu>
|
||||
<applications>
|
||||
<!--
|
||||
# this is an example with comments through out. use these to make your
|
||||
# own rules, but without the comments of course.
|
||||
|
||||
<application name="first element of window's WM_CLASS property (see xprop)"
|
||||
class="second element of window's WM_CLASS property (see xprop)"
|
||||
role="the window's WM_WINDOW_ROLE property (see xprop)">
|
||||
# the name or the class can be set, or both. this is used to match
|
||||
# windows when they appear. role can optionally be set as well, to
|
||||
# further restrict your matches.
|
||||
|
||||
# the name, class, and role use simple wildcard matching such as those
|
||||
# used by a shell. you can use * to match any characters and ? to match
|
||||
# any single character.
|
||||
|
||||
# when multiple rules match a window, they will all be applied, in the
|
||||
# order that they appear in this list
|
||||
|
||||
|
||||
# each element can be left out or set to 'default' to specify to not
|
||||
# change that attribute of the window
|
||||
|
||||
<decor>yes</decor>
|
||||
# enable or disable window decorations
|
||||
|
||||
<shade>no</shade>
|
||||
# make the window shaded when it appears, or not
|
||||
|
||||
<position>
|
||||
# the position is only used if both an x and y coordinate are provided
|
||||
# (and not set to 'default')
|
||||
<x>center</x>
|
||||
# a number like 50, or 'center' to center on screen. use a negative number
|
||||
# to start from the right (or bottom for <y>), ie -50 is 50 pixels from the
|
||||
# right edge (or bottom).
|
||||
<y>200</y>
|
||||
<monitor>1</monitor>
|
||||
# specifies the monitor in a xinerama setup.
|
||||
# 1 is the first head, or 'mouse' for wherever the mouse is
|
||||
</position>
|
||||
|
||||
<focus>yes</focus>
|
||||
# if the window should try be given focus when it appears. if this is set
|
||||
# to yes it doesn't guarantee the window will be given focus. some
|
||||
# restrictions may apply, but Openbox will try to
|
||||
|
||||
<desktop>1</desktop>
|
||||
# 1 is the first desktop, 'all' for all desktops
|
||||
|
||||
<layer>normal</layer>
|
||||
# 'above', 'normal', or 'below'
|
||||
|
||||
<iconic>no</iconic>
|
||||
# make the window iconified when it appears, or not
|
||||
|
||||
<skip_pager>no</skip_pager>
|
||||
# asks to not be shown in pagers
|
||||
|
||||
<skip_taskbar>no</skip_taskbar>
|
||||
# asks to not be shown in taskbars. window cycling actions will also
|
||||
# skip past such windows
|
||||
|
||||
<fullscreen>yes</fullscreen>
|
||||
# make the window in fullscreen mode when it appears
|
||||
|
||||
<maximized>true</maximized>
|
||||
# 'Horizontal', 'Vertical' or boolean (yes/no)
|
||||
</application>
|
||||
|
||||
# end of the example
|
||||
-->
|
||||
</applications>
|
||||
</openbox_config>
|
@@ -1,785 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!-- Do not edit this file, it will be overwritten on install.
|
||||
Copy the file to $HOME/.config/openbox/lxqt-rc.xml instead. -->
|
||||
<openbox_config xmlns="http://openbox.org/3.4/rc" xmlns:xi="http://www.w3.org/2001/XInclude">
|
||||
<resistance>
|
||||
<strength>10</strength>
|
||||
<screen_edge_strength>20</screen_edge_strength>
|
||||
</resistance>
|
||||
<focus>
|
||||
<focusNew>yes</focusNew>
|
||||
<!-- always try to focus new windows when they appear. other rules do
|
||||
apply -->
|
||||
<followMouse>no</followMouse>
|
||||
<!-- move focus to a window when you move the mouse into it -->
|
||||
<focusLast>yes</focusLast>
|
||||
<!-- focus the last used window when changing desktops, instead of the one
|
||||
under the mouse pointer. when followMouse is enabled -->
|
||||
<underMouse>no</underMouse>
|
||||
<!-- move focus under the mouse, even when the mouse is not moving -->
|
||||
<focusDelay>200</focusDelay>
|
||||
<!-- when followMouse is enabled, the mouse must be inside the window for
|
||||
this many milliseconds (1000 = 1 sec) before moving focus to it -->
|
||||
<raiseOnFocus>no</raiseOnFocus>
|
||||
<!-- when followMouse is enabled, and a window is given focus by moving the
|
||||
mouse into it, also raise the window -->
|
||||
</focus>
|
||||
<placement>
|
||||
<policy>Smart</policy>
|
||||
<!-- 'Smart' or 'UnderMouse' -->
|
||||
<center>yes</center>
|
||||
<!-- whether to place windows in the center of the free area found or
|
||||
the top left corner -->
|
||||
<monitor>Primary</monitor>
|
||||
<!-- with Smart placement on a multi-monitor system, try to place new windows
|
||||
on: 'Any' - any monitor, 'Mouse' - where the mouse is, 'Active' - where
|
||||
the active window is, 'Primary' - only on the primary monitor -->
|
||||
<primaryMonitor>1</primaryMonitor>
|
||||
<!-- The monitor where Openbox should place popup dialogs such as the
|
||||
focus cycling popup, or the desktop switch popup. It can be an index
|
||||
from 1, specifying a particular monitor. Or it can be one of the
|
||||
following: 'Mouse' - where the mouse is, or
|
||||
'Active' - where the active window is -->
|
||||
</placement>
|
||||
<theme>
|
||||
<name>Artix-dark</name>
|
||||
<titleLayout>NLIMC</titleLayout>
|
||||
<!--
|
||||
available characters are NDSLIMC, each can occur at most once.
|
||||
N: window icon
|
||||
L: window label (AKA title).
|
||||
I: iconify
|
||||
M: maximize
|
||||
C: close
|
||||
S: shade (roll up/down)
|
||||
D: omnipresent (on all desktops).
|
||||
-->
|
||||
<keepBorder>yes</keepBorder>
|
||||
<animateIconify>yes</animateIconify>
|
||||
<font place="ActiveWindow">
|
||||
<name>Fira Sans</name>
|
||||
<size>11</size>
|
||||
<!-- font size in points -->
|
||||
<weight>Bold</weight>
|
||||
<!-- 'bold' or 'normal' -->
|
||||
<slant>Normal</slant>
|
||||
<!-- 'italic' or 'normal' -->
|
||||
</font>
|
||||
<font place="InactiveWindow">
|
||||
<name>Fira Sans</name>
|
||||
<size>11</size>
|
||||
<!-- font size in points -->
|
||||
<weight>Bold</weight>
|
||||
<!-- 'bold' or 'normal' -->
|
||||
<slant>Normal</slant>
|
||||
<!-- 'italic' or 'normal' -->
|
||||
</font>
|
||||
<font place="MenuHeader">
|
||||
<name>Fira Sans</name>
|
||||
<size>11</size>
|
||||
<!-- font size in points -->
|
||||
<weight>Normal</weight>
|
||||
<!-- 'bold' or 'normal' -->
|
||||
<slant>Normal</slant>
|
||||
<!-- 'italic' or 'normal' -->
|
||||
</font>
|
||||
<font place="MenuItem">
|
||||
<name>Fira Sans</name>
|
||||
<size>11</size>
|
||||
<!-- font size in points -->
|
||||
<weight>Normal</weight>
|
||||
<!-- 'bold' or 'normal' -->
|
||||
<slant>Normal</slant>
|
||||
<!-- 'italic' or 'normal' -->
|
||||
</font>
|
||||
<font place="ActiveOnScreenDisplay">
|
||||
<name>Fira Sans</name>
|
||||
<size>11</size>
|
||||
<!-- font size in points -->
|
||||
<weight>Normal</weight>
|
||||
<!-- 'bold' or 'normal' -->
|
||||
<slant>Normal</slant>
|
||||
<!-- 'italic' or 'normal' -->
|
||||
</font>
|
||||
<font place="InactiveOnScreenDisplay">
|
||||
<name>Fira Sans</name>
|
||||
<size>11</size>
|
||||
<!-- font size in points -->
|
||||
<weight>Normal</weight>
|
||||
<!-- 'bold' or 'normal' -->
|
||||
<slant>Normal</slant>
|
||||
<!-- 'italic' or 'normal' -->
|
||||
</font>
|
||||
</theme>
|
||||
<desktops>
|
||||
<!-- this stuff is only used at startup, pagers allow you to change them
|
||||
during a session
|
||||
|
||||
these are default values to use when other ones are not already set
|
||||
by other applications, or saved in your session
|
||||
|
||||
use obconf if you want to change these without having to log out
|
||||
and back in -->
|
||||
<number>2</number>
|
||||
<firstdesk>1</firstdesk>
|
||||
<names>
|
||||
<!-- set names up here if you want to, like this:
|
||||
<name>desktop 1</name>
|
||||
<name>desktop 2</name>
|
||||
-->
|
||||
</names>
|
||||
<popupTime>875</popupTime>
|
||||
<!-- The number of milliseconds to show the popup for when switching
|
||||
desktops. Set this to 0 to disable the popup. -->
|
||||
</desktops>
|
||||
<resize>
|
||||
<drawContents>yes</drawContents>
|
||||
<popupShow>Nonpixel</popupShow>
|
||||
<!-- 'Always', 'Never', or 'Nonpixel' (xterms and such) -->
|
||||
<popupPosition>Center</popupPosition>
|
||||
<!-- 'Center', 'Top', or 'Fixed' -->
|
||||
<popupFixedPosition>
|
||||
<!-- these are used if popupPosition is set to 'Fixed' -->
|
||||
<x>10</x>
|
||||
<!-- positive number for distance from left edge, negative number for
|
||||
distance from right edge, or 'Center' -->
|
||||
<y>10</y>
|
||||
<!-- positive number for distance from top edge, negative number for
|
||||
distance from bottom edge, or 'Center' -->
|
||||
</popupFixedPosition>
|
||||
</resize>
|
||||
<!-- You can reserve a portion of your screen where windows will not cover when
|
||||
they are maximized, or when they are initially placed.
|
||||
Many programs reserve space automatically, but you can use this in other
|
||||
cases. -->
|
||||
<margins>
|
||||
<top>0</top>
|
||||
<bottom>0</bottom>
|
||||
<left>0</left>
|
||||
<right>0</right>
|
||||
</margins>
|
||||
<dock>
|
||||
<position>TopLeft</position>
|
||||
<!-- (Top|Bottom)(Left|Right|)|Top|Bottom|Left|Right|Floating -->
|
||||
<floatingX>0</floatingX>
|
||||
<floatingY>0</floatingY>
|
||||
<noStrut>no</noStrut>
|
||||
<stacking>Above</stacking>
|
||||
<!-- 'Above', 'Normal', or 'Below' -->
|
||||
<direction>Vertical</direction>
|
||||
<!-- 'Vertical' or 'Horizontal' -->
|
||||
<autoHide>no</autoHide>
|
||||
<hideDelay>300</hideDelay>
|
||||
<!-- in milliseconds (1000 = 1 second) -->
|
||||
<showDelay>300</showDelay>
|
||||
<!-- in milliseconds (1000 = 1 second) -->
|
||||
<moveButton>Middle</moveButton>
|
||||
<!-- 'Left', 'Middle', 'Right' -->
|
||||
</dock>
|
||||
<keyboard>
|
||||
<chainQuitKey>C-g</chainQuitKey>
|
||||
<!-- Keybindings for desktop switching -->
|
||||
<keybind key="C-A-Left">
|
||||
<action name="GoToDesktop">
|
||||
<to>left</to>
|
||||
<wrap>no</wrap>
|
||||
</action>
|
||||
</keybind>
|
||||
<keybind key="C-A-Right">
|
||||
<action name="GoToDesktop">
|
||||
<to>right</to>
|
||||
<wrap>no</wrap>
|
||||
</action>
|
||||
</keybind>
|
||||
<keybind key="C-A-Up">
|
||||
<action name="GoToDesktop">
|
||||
<to>up</to>
|
||||
<wrap>no</wrap>
|
||||
</action>
|
||||
</keybind>
|
||||
<keybind key="C-A-Down">
|
||||
<action name="GoToDesktop">
|
||||
<to>down</to>
|
||||
<wrap>no</wrap>
|
||||
</action>
|
||||
</keybind>
|
||||
<keybind key="S-A-Left">
|
||||
<action name="SendToDesktop">
|
||||
<to>left</to>
|
||||
<wrap>no</wrap>
|
||||
</action>
|
||||
</keybind>
|
||||
<keybind key="S-A-Right">
|
||||
<action name="SendToDesktop">
|
||||
<to>right</to>
|
||||
<wrap>no</wrap>
|
||||
</action>
|
||||
</keybind>
|
||||
<keybind key="S-A-Up">
|
||||
<action name="SendToDesktop">
|
||||
<to>up</to>
|
||||
<wrap>no</wrap>
|
||||
</action>
|
||||
</keybind>
|
||||
<keybind key="S-A-Down">
|
||||
<action name="SendToDesktop">
|
||||
<to>down</to>
|
||||
<wrap>no</wrap>
|
||||
</action>
|
||||
</keybind>
|
||||
<keybind key="W-F1">
|
||||
<action name="GoToDesktop">
|
||||
<to>1</to>
|
||||
</action>
|
||||
</keybind>
|
||||
<keybind key="W-F2">
|
||||
<action name="GoToDesktop">
|
||||
<to>2</to>
|
||||
</action>
|
||||
</keybind>
|
||||
<keybind key="W-F3">
|
||||
<action name="GoToDesktop">
|
||||
<to>3</to>
|
||||
</action>
|
||||
</keybind>
|
||||
<keybind key="W-F4">
|
||||
<action name="GoToDesktop">
|
||||
<to>4</to>
|
||||
</action>
|
||||
</keybind>
|
||||
<keybind key="W-d">
|
||||
<action name="ToggleShowDesktop"/>
|
||||
</keybind>
|
||||
<!-- Keybindings for windows -->
|
||||
<keybind key="A-F4">
|
||||
<action name="Close"/>
|
||||
</keybind>
|
||||
<keybind key="A-Escape">
|
||||
<action name="Lower"/>
|
||||
<action name="FocusToBottom"/>
|
||||
<action name="Unfocus"/>
|
||||
</keybind>
|
||||
<keybind key="A-space">
|
||||
<action name="ShowMenu">
|
||||
<menu>client-menu</menu>
|
||||
</action>
|
||||
</keybind>
|
||||
<!-- Keybindings for window switching -->
|
||||
<keybind key="A-Tab">
|
||||
<action name="NextWindow">
|
||||
<finalactions>
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
<action name="Unshade"/>
|
||||
</finalactions>
|
||||
</action>
|
||||
</keybind>
|
||||
<keybind key="A-S-Tab">
|
||||
<action name="PreviousWindow">
|
||||
<finalactions>
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
<action name="Unshade"/>
|
||||
</finalactions>
|
||||
</action>
|
||||
</keybind>
|
||||
<keybind key="C-A-Tab">
|
||||
<action name="NextWindow">
|
||||
<panels>yes</panels>
|
||||
<desktop>yes</desktop>
|
||||
<finalactions>
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
<action name="Unshade"/>
|
||||
</finalactions>
|
||||
</action>
|
||||
</keybind>
|
||||
<!-- Keybindings for window switching with the arrow keys -->
|
||||
<keybind key="W-S-Right">
|
||||
<action name="DirectionalCycleWindows">
|
||||
<direction>right</direction>
|
||||
</action>
|
||||
</keybind>
|
||||
<keybind key="W-S-Left">
|
||||
<action name="DirectionalCycleWindows">
|
||||
<direction>left</direction>
|
||||
</action>
|
||||
</keybind>
|
||||
<keybind key="W-S-Up">
|
||||
<action name="DirectionalCycleWindows">
|
||||
<direction>up</direction>
|
||||
</action>
|
||||
</keybind>
|
||||
<keybind key="W-S-Down">
|
||||
<action name="DirectionalCycleWindows">
|
||||
<direction>down</direction>
|
||||
</action>
|
||||
</keybind>
|
||||
<!-- Keybindings for running applications.
|
||||
Commented out as application shortcuts should be handled by lxqt-globalkeys in LXQt sessions.
|
||||
<keybind key="W-q">
|
||||
<action name="Execute">
|
||||
<startupnotify>
|
||||
<enabled>true</enabled>
|
||||
<name>Qupzilla</name>
|
||||
</startupnotify>
|
||||
<command>qupzilla</command>
|
||||
</action>
|
||||
</keybind> -->
|
||||
</keyboard>
|
||||
<mouse>
|
||||
<dragThreshold>1</dragThreshold>
|
||||
<!-- number of pixels the mouse must move before a drag begins -->
|
||||
<doubleClickTime>500</doubleClickTime>
|
||||
<!-- in milliseconds (1000 = 1 second) -->
|
||||
<screenEdgeWarpTime>400</screenEdgeWarpTime>
|
||||
<!-- Time before changing desktops when the pointer touches the edge of the
|
||||
screen while moving a window, in milliseconds (1000 = 1 second).
|
||||
Set this to 0 to disable warping -->
|
||||
<screenEdgeWarpMouse>false</screenEdgeWarpMouse>
|
||||
<!-- Set this to TRUE to move the mouse pointer across the desktop when
|
||||
switching due to hitting the edge of the screen -->
|
||||
<context name="Frame">
|
||||
<mousebind button="A-Left" action="Press">
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
</mousebind>
|
||||
<mousebind button="A-Left" action="Click">
|
||||
<action name="Unshade"/>
|
||||
</mousebind>
|
||||
<mousebind button="A-Left" action="Drag">
|
||||
<action name="Move"/>
|
||||
</mousebind>
|
||||
<mousebind button="A-Right" action="Press">
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
<action name="Unshade"/>
|
||||
</mousebind>
|
||||
<mousebind button="A-Right" action="Drag">
|
||||
<action name="Resize"/>
|
||||
</mousebind>
|
||||
<mousebind button="A-Middle" action="Press">
|
||||
<action name="Lower"/>
|
||||
<action name="FocusToBottom"/>
|
||||
<action name="Unfocus"/>
|
||||
</mousebind>
|
||||
<mousebind button="A-Up" action="Click">
|
||||
<action name="GoToDesktop">
|
||||
<to>previous</to>
|
||||
</action>
|
||||
</mousebind>
|
||||
<mousebind button="A-Down" action="Click">
|
||||
<action name="GoToDesktop">
|
||||
<to>next</to>
|
||||
</action>
|
||||
</mousebind>
|
||||
<mousebind button="C-A-Up" action="Click">
|
||||
<action name="GoToDesktop">
|
||||
<to>previous</to>
|
||||
</action>
|
||||
</mousebind>
|
||||
<mousebind button="C-A-Down" action="Click">
|
||||
<action name="GoToDesktop">
|
||||
<to>next</to>
|
||||
</action>
|
||||
</mousebind>
|
||||
<mousebind button="A-S-Up" action="Click">
|
||||
<action name="SendToDesktop">
|
||||
<to>previous</to>
|
||||
</action>
|
||||
</mousebind>
|
||||
<mousebind button="A-S-Down" action="Click">
|
||||
<action name="SendToDesktop">
|
||||
<to>next</to>
|
||||
</action>
|
||||
</mousebind>
|
||||
</context>
|
||||
<context name="Titlebar">
|
||||
<mousebind button="Left" action="Drag">
|
||||
<action name="Move"/>
|
||||
</mousebind>
|
||||
<mousebind button="Left" action="DoubleClick">
|
||||
<action name="ToggleMaximize"/>
|
||||
</mousebind>
|
||||
<mousebind button="Up" action="Click">
|
||||
<action name="if">
|
||||
<shaded>no</shaded>
|
||||
<then>
|
||||
<action name="Shade"/>
|
||||
<action name="FocusToBottom"/>
|
||||
<action name="Unfocus"/>
|
||||
<action name="Lower"/>
|
||||
</then>
|
||||
</action>
|
||||
</mousebind>
|
||||
<mousebind button="Down" action="Click">
|
||||
<action name="if">
|
||||
<shaded>yes</shaded>
|
||||
<then>
|
||||
<action name="Unshade"/>
|
||||
<action name="Raise"/>
|
||||
</then>
|
||||
</action>
|
||||
</mousebind>
|
||||
</context>
|
||||
<context name="Titlebar Top Right Bottom Left TLCorner TRCorner BRCorner BLCorner">
|
||||
<mousebind button="Left" action="Press">
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
<action name="Unshade"/>
|
||||
</mousebind>
|
||||
<mousebind button="Middle" action="Press">
|
||||
<action name="Lower"/>
|
||||
<action name="FocusToBottom"/>
|
||||
<action name="Unfocus"/>
|
||||
</mousebind>
|
||||
<mousebind button="Right" action="Press">
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
<action name="ShowMenu">
|
||||
<menu>client-menu</menu>
|
||||
</action>
|
||||
</mousebind>
|
||||
</context>
|
||||
<context name="Top">
|
||||
<mousebind button="Left" action="Drag">
|
||||
<action name="Resize">
|
||||
<edge>top</edge>
|
||||
</action>
|
||||
</mousebind>
|
||||
</context>
|
||||
<context name="Left">
|
||||
<mousebind button="Left" action="Drag">
|
||||
<action name="Resize">
|
||||
<edge>left</edge>
|
||||
</action>
|
||||
</mousebind>
|
||||
</context>
|
||||
<context name="Right">
|
||||
<mousebind button="Left" action="Drag">
|
||||
<action name="Resize">
|
||||
<edge>right</edge>
|
||||
</action>
|
||||
</mousebind>
|
||||
</context>
|
||||
<context name="Bottom">
|
||||
<mousebind button="Left" action="Drag">
|
||||
<action name="Resize">
|
||||
<edge>bottom</edge>
|
||||
</action>
|
||||
</mousebind>
|
||||
<mousebind button="Right" action="Press">
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
<action name="ShowMenu">
|
||||
<menu>client-menu</menu>
|
||||
</action>
|
||||
</mousebind>
|
||||
</context>
|
||||
<context name="TRCorner BRCorner TLCorner BLCorner">
|
||||
<mousebind button="Left" action="Press">
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
<action name="Unshade"/>
|
||||
</mousebind>
|
||||
<mousebind button="Left" action="Drag">
|
||||
<action name="Resize"/>
|
||||
</mousebind>
|
||||
</context>
|
||||
<context name="Client">
|
||||
<mousebind button="Left" action="Press">
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
</mousebind>
|
||||
<mousebind button="Middle" action="Press">
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
</mousebind>
|
||||
<mousebind button="Right" action="Press">
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
</mousebind>
|
||||
</context>
|
||||
<context name="Icon">
|
||||
<mousebind button="Left" action="Press">
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
<action name="Unshade"/>
|
||||
<action name="ShowMenu">
|
||||
<menu>client-menu</menu>
|
||||
</action>
|
||||
</mousebind>
|
||||
<mousebind button="Right" action="Press">
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
<action name="ShowMenu">
|
||||
<menu>client-menu</menu>
|
||||
</action>
|
||||
</mousebind>
|
||||
</context>
|
||||
<context name="AllDesktops">
|
||||
<mousebind button="Left" action="Press">
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
<action name="Unshade"/>
|
||||
</mousebind>
|
||||
<mousebind button="Left" action="Click">
|
||||
<action name="ToggleOmnipresent"/>
|
||||
</mousebind>
|
||||
</context>
|
||||
<context name="Shade">
|
||||
<mousebind button="Left" action="Press">
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
</mousebind>
|
||||
<mousebind button="Left" action="Click">
|
||||
<action name="ToggleShade"/>
|
||||
</mousebind>
|
||||
</context>
|
||||
<context name="Iconify">
|
||||
<mousebind button="Left" action="Press">
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
</mousebind>
|
||||
<mousebind button="Left" action="Click">
|
||||
<action name="Iconify"/>
|
||||
</mousebind>
|
||||
</context>
|
||||
<context name="Maximize">
|
||||
<mousebind button="Left" action="Press">
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
<action name="Unshade"/>
|
||||
</mousebind>
|
||||
<mousebind button="Middle" action="Press">
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
<action name="Unshade"/>
|
||||
</mousebind>
|
||||
<mousebind button="Right" action="Press">
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
<action name="Unshade"/>
|
||||
</mousebind>
|
||||
<mousebind button="Left" action="Click">
|
||||
<action name="ToggleMaximize"/>
|
||||
</mousebind>
|
||||
<mousebind button="Middle" action="Click">
|
||||
<action name="ToggleMaximize">
|
||||
<direction>vertical</direction>
|
||||
</action>
|
||||
</mousebind>
|
||||
<mousebind button="Right" action="Click">
|
||||
<action name="ToggleMaximize">
|
||||
<direction>horizontal</direction>
|
||||
</action>
|
||||
</mousebind>
|
||||
</context>
|
||||
<context name="Close">
|
||||
<mousebind button="Left" action="Press">
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
<action name="Unshade"/>
|
||||
</mousebind>
|
||||
<mousebind button="Left" action="Click">
|
||||
<action name="Close"/>
|
||||
</mousebind>
|
||||
</context>
|
||||
<context name="Desktop">
|
||||
<mousebind button="Up" action="Click">
|
||||
<action name="GoToDesktop">
|
||||
<to>previous</to>
|
||||
</action>
|
||||
</mousebind>
|
||||
<mousebind button="Down" action="Click">
|
||||
<action name="GoToDesktop">
|
||||
<to>next</to>
|
||||
</action>
|
||||
</mousebind>
|
||||
<mousebind button="A-Up" action="Click">
|
||||
<action name="GoToDesktop">
|
||||
<to>previous</to>
|
||||
</action>
|
||||
</mousebind>
|
||||
<mousebind button="A-Down" action="Click">
|
||||
<action name="GoToDesktop">
|
||||
<to>next</to>
|
||||
</action>
|
||||
</mousebind>
|
||||
<mousebind button="C-A-Up" action="Click">
|
||||
<action name="GoToDesktop">
|
||||
<to>previous</to>
|
||||
</action>
|
||||
</mousebind>
|
||||
<mousebind button="C-A-Down" action="Click">
|
||||
<action name="GoToDesktop">
|
||||
<to>next</to>
|
||||
</action>
|
||||
</mousebind>
|
||||
<mousebind button="Left" action="Press">
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
</mousebind>
|
||||
<mousebind button="Right" action="Press">
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
</mousebind>
|
||||
</context>
|
||||
<context name="Root">
|
||||
<!-- Menus -->
|
||||
<mousebind button="Middle" action="Press">
|
||||
<action name="ShowMenu">
|
||||
<menu>client-list-combined-menu</menu>
|
||||
</action>
|
||||
</mousebind>
|
||||
<mousebind button="Right" action="Press">
|
||||
<action name="ShowMenu">
|
||||
<menu>root-menu</menu>
|
||||
</action>
|
||||
</mousebind>
|
||||
</context>
|
||||
<context name="MoveResize">
|
||||
<mousebind button="Up" action="Click">
|
||||
<action name="GoToDesktop">
|
||||
<to>previous</to>
|
||||
</action>
|
||||
</mousebind>
|
||||
<mousebind button="Down" action="Click">
|
||||
<action name="GoToDesktop">
|
||||
<to>next</to>
|
||||
</action>
|
||||
</mousebind>
|
||||
<mousebind button="A-Up" action="Click">
|
||||
<action name="GoToDesktop">
|
||||
<to>previous</to>
|
||||
</action>
|
||||
</mousebind>
|
||||
<mousebind button="A-Down" action="Click">
|
||||
<action name="GoToDesktop">
|
||||
<to>next</to>
|
||||
</action>
|
||||
</mousebind>
|
||||
</context>
|
||||
</mouse>
|
||||
<menu>
|
||||
<!-- You can specify more than one menu file in here and they are all loaded,
|
||||
just don't make menu ids clash or, well, it'll be kind of pointless -->
|
||||
<!-- default menu file (or custom one in $HOME/.config/openbox/) -->
|
||||
<file>menu.xml</file>
|
||||
<hideDelay>200</hideDelay>
|
||||
<!-- if a press-release lasts longer than this setting (in milliseconds), the
|
||||
menu is hidden again -->
|
||||
<middle>no</middle>
|
||||
<!-- center submenus vertically about the parent entry -->
|
||||
<submenuShowDelay>100</submenuShowDelay>
|
||||
<!-- time to delay before showing a submenu after hovering over the parent
|
||||
entry.
|
||||
if this is a negative value, then the delay is infinite and the
|
||||
submenu will not be shown until it is clicked on -->
|
||||
<submenuHideDelay>400</submenuHideDelay>
|
||||
<!-- time to delay before hiding a submenu when selecting another
|
||||
entry in parent menu
|
||||
if this is a negative value, then the delay is infinite and the
|
||||
submenu will not be hidden until a different submenu is opened -->
|
||||
<showIcons>yes</showIcons>
|
||||
<!-- controls if icons appear in the client-list-(combined-)menu -->
|
||||
<manageDesktops>yes</manageDesktops>
|
||||
<!-- show the manage desktops section in the client-list-(combined-)menu -->
|
||||
</menu>
|
||||
<applications>
|
||||
<!--
|
||||
# this is an example with comments through out. use these to make your
|
||||
# own rules, but without the comments of course.
|
||||
# you may use one or more of the name/class/role/title/type rules to specify
|
||||
# windows to match
|
||||
|
||||
<application name="the window's _OB_APP_NAME property (see obxprop)"
|
||||
class="the window's _OB_APP_CLASS property (see obxprop)"
|
||||
groupname="the window's _OB_APP_GROUP_NAME property (see obxprop)"
|
||||
groupclass="the window's _OB_APP_GROUP_CLASS property (see obxprop)"
|
||||
role="the window's _OB_APP_ROLE property (see obxprop)"
|
||||
title="the window's _OB_APP_TITLE property (see obxprop)"
|
||||
type="the window's _OB_APP_TYPE property (see obxprob)..
|
||||
(if unspecified, then it is 'dialog' for child windows)">
|
||||
# you may set only one of name/class/role/title/type, or you may use more
|
||||
# than one together to restrict your matches.
|
||||
|
||||
# the name, class, role, and title use simple wildcard matching such as those
|
||||
# used by a shell. you can use * to match any characters and ? to match
|
||||
# any single character.
|
||||
|
||||
# the type is one of: normal, dialog, splash, utility, menu, toolbar, dock,
|
||||
# or desktop
|
||||
|
||||
# when multiple rules match a window, they will all be applied, in the
|
||||
# order that they appear in this list
|
||||
|
||||
|
||||
# each rule element can be left out or set to 'default' to specify to not
|
||||
# change that attribute of the window
|
||||
|
||||
<decor>yes</decor>
|
||||
# enable or disable window decorations
|
||||
|
||||
<shade>no</shade>
|
||||
# make the window shaded when it appears, or not
|
||||
|
||||
<position force="no">
|
||||
# the position is only used if both an x and y coordinate are provided
|
||||
# (and not set to 'default')
|
||||
# when force is "yes", then the window will be placed here even if it
|
||||
# says you want it placed elsewhere. this is to override buggy
|
||||
# applications who refuse to behave
|
||||
<x>center</x>
|
||||
# a number like 50, or 'center' to center on screen. use a negative number
|
||||
# to start from the right (or bottom for <y>), ie -50 is 50 pixels from
|
||||
# the right edge (or bottom). use 'default' to specify using value
|
||||
# provided by the application, or chosen by openbox, instead.
|
||||
<y>200</y>
|
||||
<monitor>1</monitor>
|
||||
# specifies the monitor in a xinerama setup.
|
||||
# 1 is the first head, or 'mouse' for wherever the mouse is
|
||||
</position>
|
||||
|
||||
<size>
|
||||
# the size to make the window.
|
||||
<width>20</width>
|
||||
# a number like 20, or 'default' to use the size given by the application.
|
||||
# you can use fractions such as 1/2 or percentages such as 75% in which
|
||||
# case the value is relative to the size of the monitor that the window
|
||||
# appears on.
|
||||
<height>30%</height>
|
||||
</size>
|
||||
|
||||
<focus>yes</focus>
|
||||
# if the window should try be given focus when it appears. if this is set
|
||||
# to yes it doesn't guarantee the window will be given focus. some
|
||||
# restrictions may apply, but Openbox will try to
|
||||
|
||||
<desktop>1</desktop>
|
||||
# 1 is the first desktop, 'all' for all desktops
|
||||
|
||||
<layer>normal</layer>
|
||||
# 'above', 'normal', or 'below'
|
||||
|
||||
<iconic>no</iconic>
|
||||
# make the window iconified when it appears, or not
|
||||
|
||||
<skip_pager>no</skip_pager>
|
||||
# asks to not be shown in pagers
|
||||
|
||||
<skip_taskbar>no</skip_taskbar>
|
||||
# asks to not be shown in taskbars. window cycling actions will also
|
||||
# skip past such windows
|
||||
|
||||
<fullscreen>yes</fullscreen>
|
||||
# make the window in fullscreen mode when it appears
|
||||
|
||||
<maximized>true</maximized>
|
||||
# 'Horizontal', 'Vertical' or boolean (yes/no)
|
||||
</application>
|
||||
|
||||
# end of the example
|
||||
-->
|
||||
</applications>
|
||||
</openbox_config>
|
@@ -1,782 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!-- Do not edit this file, it will be overwritten on install.
|
||||
Copy the file to $HOME/.config/openbox/ instead. -->
|
||||
<openbox_config xmlns="http://openbox.org/3.4/rc" xmlns:xi="http://www.w3.org/2001/XInclude">
|
||||
<resistance>
|
||||
<strength>10</strength>
|
||||
<screen_edge_strength>20</screen_edge_strength>
|
||||
</resistance>
|
||||
<focus>
|
||||
<focusNew>yes</focusNew>
|
||||
<!-- always try to focus new windows when they appear. other rules do
|
||||
apply -->
|
||||
<followMouse>no</followMouse>
|
||||
<!-- move focus to a window when you move the mouse into it -->
|
||||
<focusLast>yes</focusLast>
|
||||
<!-- focus the last used window when changing desktops, instead of the one
|
||||
under the mouse pointer. when followMouse is enabled -->
|
||||
<underMouse>no</underMouse>
|
||||
<!-- move focus under the mouse, even when the mouse is not moving -->
|
||||
<focusDelay>200</focusDelay>
|
||||
<!-- when followMouse is enabled, the mouse must be inside the window for
|
||||
this many milliseconds (1000 = 1 sec) before moving focus to it -->
|
||||
<raiseOnFocus>no</raiseOnFocus>
|
||||
<!-- when followMouse is enabled, and a window is given focus by moving the
|
||||
mouse into it, also raise the window -->
|
||||
</focus>
|
||||
<placement>
|
||||
<policy>Smart</policy>
|
||||
<!-- 'Smart' or 'UnderMouse' -->
|
||||
<center>yes</center>
|
||||
<!-- whether to place windows in the center of the free area found or
|
||||
the top left corner -->
|
||||
<monitor>Primary</monitor>
|
||||
<!-- with Smart placement on a multi-monitor system, try to place new windows
|
||||
on: 'Any' - any monitor, 'Mouse' - where the mouse is, 'Active' - where
|
||||
the active window is, 'Primary' - only on the primary monitor -->
|
||||
<primaryMonitor>1</primaryMonitor>
|
||||
<!-- The monitor where Openbox should place popup dialogs such as the
|
||||
focus cycling popup, or the desktop switch popup. It can be an index
|
||||
from 1, specifying a particular monitor. Or it can be one of the
|
||||
following: 'Mouse' - where the mouse is, or
|
||||
'Active' - where the active window is -->
|
||||
</placement>
|
||||
<theme>
|
||||
<name>Artix-dark</name>
|
||||
<titleLayout>NLIMC</titleLayout>
|
||||
<!--
|
||||
available characters are NDSLIMC, each can occur at most once.
|
||||
N: window icon
|
||||
L: window label (AKA title).
|
||||
I: iconify
|
||||
M: maximize
|
||||
C: close
|
||||
S: shade (roll up/down)
|
||||
D: omnipresent (on all desktops).
|
||||
-->
|
||||
<keepBorder>yes</keepBorder>
|
||||
<animateIconify>yes</animateIconify>
|
||||
<font place="ActiveWindow">
|
||||
<name>Fira Sans</name>
|
||||
<size>11</size>
|
||||
<!-- font size in points -->
|
||||
<weight>Bold</weight>
|
||||
<!-- 'bold' or 'normal' -->
|
||||
<slant>Normal</slant>
|
||||
<!-- 'italic' or 'normal' -->
|
||||
</font>
|
||||
<font place="InactiveWindow">
|
||||
<name>Fira Sans</name>
|
||||
<size>11</size>
|
||||
<!-- font size in points -->
|
||||
<weight>Bold</weight>
|
||||
<!-- 'bold' or 'normal' -->
|
||||
<slant>Normal</slant>
|
||||
<!-- 'italic' or 'normal' -->
|
||||
</font>
|
||||
<font place="MenuHeader">
|
||||
<name>Fira Sans</name>
|
||||
<size>11</size>
|
||||
<!-- font size in points -->
|
||||
<weight>Normal</weight>
|
||||
<!-- 'bold' or 'normal' -->
|
||||
<slant>Normal</slant>
|
||||
<!-- 'italic' or 'normal' -->
|
||||
</font>
|
||||
<font place="MenuItem">
|
||||
<name>Fira Sans</name>
|
||||
<size>11</size>
|
||||
<!-- font size in points -->
|
||||
<weight>Normal</weight>
|
||||
<!-- 'bold' or 'normal' -->
|
||||
<slant>Normal</slant>
|
||||
<!-- 'italic' or 'normal' -->
|
||||
</font>
|
||||
<font place="ActiveOnScreenDisplay">
|
||||
<name>Fira Sans</name>
|
||||
<size>11</size>
|
||||
<!-- font size in points -->
|
||||
<weight>Normal</weight>
|
||||
<!-- 'bold' or 'normal' -->
|
||||
<slant>Normal</slant>
|
||||
<!-- 'italic' or 'normal' -->
|
||||
</font>
|
||||
<font place="InactiveOnScreenDisplay">
|
||||
<name>Fira Sans</name>
|
||||
<size>11</size>
|
||||
<!-- font size in points -->
|
||||
<weight>Normal</weight>
|
||||
<!-- 'bold' or 'normal' -->
|
||||
<slant>Normal</slant>
|
||||
<!-- 'italic' or 'normal' -->
|
||||
</font>
|
||||
</theme>
|
||||
<desktops>
|
||||
<!-- this stuff is only used at startup, pagers allow you to change them
|
||||
during a session
|
||||
|
||||
these are default values to use when other ones are not already set
|
||||
by other applications, or saved in your session
|
||||
|
||||
use obconf if you want to change these without having to log out
|
||||
and back in -->
|
||||
<number>2</number>
|
||||
<firstdesk>1</firstdesk>
|
||||
<names>
|
||||
<name>Desktop_1</name>
|
||||
<name>Desktop_2</name>
|
||||
</names>
|
||||
<popupTime>875</popupTime>
|
||||
<!-- The number of milliseconds to show the popup for when switching
|
||||
desktops. Set this to 0 to disable the popup. -->
|
||||
</desktops>
|
||||
<resize>
|
||||
<drawContents>yes</drawContents>
|
||||
<popupShow>Nonpixel</popupShow>
|
||||
<!-- 'Always', 'Never', or 'Nonpixel' (xterms and such) -->
|
||||
<popupPosition>Center</popupPosition>
|
||||
<!-- 'Center', 'Top', or 'Fixed' -->
|
||||
<popupFixedPosition>
|
||||
<!-- these are used if popupPosition is set to 'Fixed' -->
|
||||
<x>10</x>
|
||||
<!-- positive number for distance from left edge, negative number for
|
||||
distance from right edge, or 'Center' -->
|
||||
<y>10</y>
|
||||
<!-- positive number for distance from top edge, negative number for
|
||||
distance from bottom edge, or 'Center' -->
|
||||
</popupFixedPosition>
|
||||
</resize>
|
||||
<!-- You can reserve a portion of your screen where windows will not cover when
|
||||
they are maximized, or when they are initially placed.
|
||||
Many programs reserve space automatically, but you can use this in other
|
||||
cases. -->
|
||||
<margins>
|
||||
<top>0</top>
|
||||
<bottom>0</bottom>
|
||||
<left>0</left>
|
||||
<right>0</right>
|
||||
</margins>
|
||||
<dock>
|
||||
<position>TopLeft</position>
|
||||
<!-- (Top|Bottom)(Left|Right|)|Top|Bottom|Left|Right|Floating -->
|
||||
<floatingX>0</floatingX>
|
||||
<floatingY>0</floatingY>
|
||||
<noStrut>no</noStrut>
|
||||
<stacking>Above</stacking>
|
||||
<!-- 'Above', 'Normal', or 'Below' -->
|
||||
<direction>Vertical</direction>
|
||||
<!-- 'Vertical' or 'Horizontal' -->
|
||||
<autoHide>no</autoHide>
|
||||
<hideDelay>300</hideDelay>
|
||||
<!-- in milliseconds (1000 = 1 second) -->
|
||||
<showDelay>300</showDelay>
|
||||
<!-- in milliseconds (1000 = 1 second) -->
|
||||
<moveButton>Middle</moveButton>
|
||||
<!-- 'Left', 'Middle', 'Right' -->
|
||||
</dock>
|
||||
<keyboard>
|
||||
<chainQuitKey>C-g</chainQuitKey>
|
||||
<!-- Keybindings for desktop switching -->
|
||||
<keybind key="C-A-Left">
|
||||
<action name="GoToDesktop">
|
||||
<to>left</to>
|
||||
<wrap>no</wrap>
|
||||
</action>
|
||||
</keybind>
|
||||
<keybind key="C-A-Right">
|
||||
<action name="GoToDesktop">
|
||||
<to>right</to>
|
||||
<wrap>no</wrap>
|
||||
</action>
|
||||
</keybind>
|
||||
<keybind key="C-A-Up">
|
||||
<action name="GoToDesktop">
|
||||
<to>up</to>
|
||||
<wrap>no</wrap>
|
||||
</action>
|
||||
</keybind>
|
||||
<keybind key="C-A-Down">
|
||||
<action name="GoToDesktop">
|
||||
<to>down</to>
|
||||
<wrap>no</wrap>
|
||||
</action>
|
||||
</keybind>
|
||||
<keybind key="S-A-Left">
|
||||
<action name="SendToDesktop">
|
||||
<to>left</to>
|
||||
<wrap>no</wrap>
|
||||
</action>
|
||||
</keybind>
|
||||
<keybind key="S-A-Right">
|
||||
<action name="SendToDesktop">
|
||||
<to>right</to>
|
||||
<wrap>no</wrap>
|
||||
</action>
|
||||
</keybind>
|
||||
<keybind key="S-A-Up">
|
||||
<action name="SendToDesktop">
|
||||
<to>up</to>
|
||||
<wrap>no</wrap>
|
||||
</action>
|
||||
</keybind>
|
||||
<keybind key="S-A-Down">
|
||||
<action name="SendToDesktop">
|
||||
<to>down</to>
|
||||
<wrap>no</wrap>
|
||||
</action>
|
||||
</keybind>
|
||||
<keybind key="W-F1">
|
||||
<action name="GoToDesktop">
|
||||
<to>1</to>
|
||||
</action>
|
||||
</keybind>
|
||||
<keybind key="W-F2">
|
||||
<action name="GoToDesktop">
|
||||
<to>2</to>
|
||||
</action>
|
||||
</keybind>
|
||||
<keybind key="W-F3">
|
||||
<action name="GoToDesktop">
|
||||
<to>3</to>
|
||||
</action>
|
||||
</keybind>
|
||||
<keybind key="W-F4">
|
||||
<action name="GoToDesktop">
|
||||
<to>4</to>
|
||||
</action>
|
||||
</keybind>
|
||||
<keybind key="W-d">
|
||||
<action name="ToggleShowDesktop"/>
|
||||
</keybind>
|
||||
<!-- Keybindings for windows -->
|
||||
<keybind key="A-F4">
|
||||
<action name="Close"/>
|
||||
</keybind>
|
||||
<keybind key="A-Escape">
|
||||
<action name="Lower"/>
|
||||
<action name="FocusToBottom"/>
|
||||
<action name="Unfocus"/>
|
||||
</keybind>
|
||||
<keybind key="A-space">
|
||||
<action name="ShowMenu">
|
||||
<menu>client-menu</menu>
|
||||
</action>
|
||||
</keybind>
|
||||
<!-- Keybindings for window switching -->
|
||||
<keybind key="A-Tab">
|
||||
<action name="NextWindow">
|
||||
<finalactions>
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
<action name="Unshade"/>
|
||||
</finalactions>
|
||||
</action>
|
||||
</keybind>
|
||||
<keybind key="A-S-Tab">
|
||||
<action name="PreviousWindow">
|
||||
<finalactions>
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
<action name="Unshade"/>
|
||||
</finalactions>
|
||||
</action>
|
||||
</keybind>
|
||||
<keybind key="C-A-Tab">
|
||||
<action name="NextWindow">
|
||||
<panels>yes</panels>
|
||||
<desktop>yes</desktop>
|
||||
<finalactions>
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
<action name="Unshade"/>
|
||||
</finalactions>
|
||||
</action>
|
||||
</keybind>
|
||||
<!-- Keybindings for window switching with the arrow keys -->
|
||||
<keybind key="W-S-Right">
|
||||
<action name="DirectionalCycleWindows">
|
||||
<direction>right</direction>
|
||||
</action>
|
||||
</keybind>
|
||||
<keybind key="W-S-Left">
|
||||
<action name="DirectionalCycleWindows">
|
||||
<direction>left</direction>
|
||||
</action>
|
||||
</keybind>
|
||||
<keybind key="W-S-Up">
|
||||
<action name="DirectionalCycleWindows">
|
||||
<direction>up</direction>
|
||||
</action>
|
||||
</keybind>
|
||||
<keybind key="W-S-Down">
|
||||
<action name="DirectionalCycleWindows">
|
||||
<direction>down</direction>
|
||||
</action>
|
||||
</keybind>
|
||||
<!-- Keybindings for running applications -->
|
||||
<keybind key="W-e">
|
||||
<action name="Execute">
|
||||
<startupnotify>
|
||||
<enabled>true</enabled>
|
||||
<name>Konqueror</name>
|
||||
</startupnotify>
|
||||
<command>kfmclient openProfile filemanagement</command>
|
||||
</action>
|
||||
</keybind>
|
||||
</keyboard>
|
||||
<mouse>
|
||||
<dragThreshold>1</dragThreshold>
|
||||
<!-- number of pixels the mouse must move before a drag begins -->
|
||||
<doubleClickTime>500</doubleClickTime>
|
||||
<!-- in milliseconds (1000 = 1 second) -->
|
||||
<screenEdgeWarpTime>400</screenEdgeWarpTime>
|
||||
<!-- Time before changing desktops when the pointer touches the edge of the
|
||||
screen while moving a window, in milliseconds (1000 = 1 second).
|
||||
Set this to 0 to disable warping -->
|
||||
<screenEdgeWarpMouse>false</screenEdgeWarpMouse>
|
||||
<!-- Set this to TRUE to move the mouse pointer across the desktop when
|
||||
switching due to hitting the edge of the screen -->
|
||||
<context name="Frame">
|
||||
<mousebind button="A-Left" action="Press">
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
</mousebind>
|
||||
<mousebind button="A-Left" action="Click">
|
||||
<action name="Unshade"/>
|
||||
</mousebind>
|
||||
<mousebind button="A-Left" action="Drag">
|
||||
<action name="Move"/>
|
||||
</mousebind>
|
||||
<mousebind button="A-Right" action="Press">
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
<action name="Unshade"/>
|
||||
</mousebind>
|
||||
<mousebind button="A-Right" action="Drag">
|
||||
<action name="Resize"/>
|
||||
</mousebind>
|
||||
<mousebind button="A-Middle" action="Press">
|
||||
<action name="Lower"/>
|
||||
<action name="FocusToBottom"/>
|
||||
<action name="Unfocus"/>
|
||||
</mousebind>
|
||||
<mousebind button="A-Up" action="Click">
|
||||
<action name="GoToDesktop">
|
||||
<to>previous</to>
|
||||
</action>
|
||||
</mousebind>
|
||||
<mousebind button="A-Down" action="Click">
|
||||
<action name="GoToDesktop">
|
||||
<to>next</to>
|
||||
</action>
|
||||
</mousebind>
|
||||
<mousebind button="C-A-Up" action="Click">
|
||||
<action name="GoToDesktop">
|
||||
<to>previous</to>
|
||||
</action>
|
||||
</mousebind>
|
||||
<mousebind button="C-A-Down" action="Click">
|
||||
<action name="GoToDesktop">
|
||||
<to>next</to>
|
||||
</action>
|
||||
</mousebind>
|
||||
<mousebind button="A-S-Up" action="Click">
|
||||
<action name="SendToDesktop">
|
||||
<to>previous</to>
|
||||
</action>
|
||||
</mousebind>
|
||||
<mousebind button="A-S-Down" action="Click">
|
||||
<action name="SendToDesktop">
|
||||
<to>next</to>
|
||||
</action>
|
||||
</mousebind>
|
||||
</context>
|
||||
<context name="Titlebar">
|
||||
<mousebind button="Left" action="Drag">
|
||||
<action name="Move"/>
|
||||
</mousebind>
|
||||
<mousebind button="Left" action="DoubleClick">
|
||||
<action name="ToggleMaximize"/>
|
||||
</mousebind>
|
||||
<mousebind button="Up" action="Click">
|
||||
<action name="if">
|
||||
<shaded>no</shaded>
|
||||
<then>
|
||||
<action name="Shade"/>
|
||||
<action name="FocusToBottom"/>
|
||||
<action name="Unfocus"/>
|
||||
<action name="Lower"/>
|
||||
</then>
|
||||
</action>
|
||||
</mousebind>
|
||||
<mousebind button="Down" action="Click">
|
||||
<action name="if">
|
||||
<shaded>yes</shaded>
|
||||
<then>
|
||||
<action name="Unshade"/>
|
||||
<action name="Raise"/>
|
||||
</then>
|
||||
</action>
|
||||
</mousebind>
|
||||
</context>
|
||||
<context name="Titlebar Top Right Bottom Left TLCorner TRCorner BRCorner BLCorner">
|
||||
<mousebind button="Left" action="Press">
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
<action name="Unshade"/>
|
||||
</mousebind>
|
||||
<mousebind button="Middle" action="Press">
|
||||
<action name="Lower"/>
|
||||
<action name="FocusToBottom"/>
|
||||
<action name="Unfocus"/>
|
||||
</mousebind>
|
||||
<mousebind button="Right" action="Press">
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
<action name="ShowMenu">
|
||||
<menu>client-menu</menu>
|
||||
</action>
|
||||
</mousebind>
|
||||
</context>
|
||||
<context name="Top">
|
||||
<mousebind button="Left" action="Drag">
|
||||
<action name="Resize">
|
||||
<edge>top</edge>
|
||||
</action>
|
||||
</mousebind>
|
||||
</context>
|
||||
<context name="Left">
|
||||
<mousebind button="Left" action="Drag">
|
||||
<action name="Resize">
|
||||
<edge>left</edge>
|
||||
</action>
|
||||
</mousebind>
|
||||
</context>
|
||||
<context name="Right">
|
||||
<mousebind button="Left" action="Drag">
|
||||
<action name="Resize">
|
||||
<edge>right</edge>
|
||||
</action>
|
||||
</mousebind>
|
||||
</context>
|
||||
<context name="Bottom">
|
||||
<mousebind button="Left" action="Drag">
|
||||
<action name="Resize">
|
||||
<edge>bottom</edge>
|
||||
</action>
|
||||
</mousebind>
|
||||
<mousebind button="Right" action="Press">
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
<action name="ShowMenu">
|
||||
<menu>client-menu</menu>
|
||||
</action>
|
||||
</mousebind>
|
||||
</context>
|
||||
<context name="TRCorner BRCorner TLCorner BLCorner">
|
||||
<mousebind button="Left" action="Press">
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
<action name="Unshade"/>
|
||||
</mousebind>
|
||||
<mousebind button="Left" action="Drag">
|
||||
<action name="Resize"/>
|
||||
</mousebind>
|
||||
</context>
|
||||
<context name="Client">
|
||||
<mousebind button="Left" action="Press">
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
</mousebind>
|
||||
<mousebind button="Middle" action="Press">
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
</mousebind>
|
||||
<mousebind button="Right" action="Press">
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
</mousebind>
|
||||
</context>
|
||||
<context name="Icon">
|
||||
<mousebind button="Left" action="Press">
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
<action name="Unshade"/>
|
||||
<action name="ShowMenu">
|
||||
<menu>client-menu</menu>
|
||||
</action>
|
||||
</mousebind>
|
||||
<mousebind button="Right" action="Press">
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
<action name="ShowMenu">
|
||||
<menu>client-menu</menu>
|
||||
</action>
|
||||
</mousebind>
|
||||
</context>
|
||||
<context name="AllDesktops">
|
||||
<mousebind button="Left" action="Press">
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
<action name="Unshade"/>
|
||||
</mousebind>
|
||||
<mousebind button="Left" action="Click">
|
||||
<action name="ToggleOmnipresent"/>
|
||||
</mousebind>
|
||||
</context>
|
||||
<context name="Shade">
|
||||
<mousebind button="Left" action="Press">
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
</mousebind>
|
||||
<mousebind button="Left" action="Click">
|
||||
<action name="ToggleShade"/>
|
||||
</mousebind>
|
||||
</context>
|
||||
<context name="Iconify">
|
||||
<mousebind button="Left" action="Press">
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
</mousebind>
|
||||
<mousebind button="Left" action="Click">
|
||||
<action name="Iconify"/>
|
||||
</mousebind>
|
||||
</context>
|
||||
<context name="Maximize">
|
||||
<mousebind button="Left" action="Press">
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
<action name="Unshade"/>
|
||||
</mousebind>
|
||||
<mousebind button="Middle" action="Press">
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
<action name="Unshade"/>
|
||||
</mousebind>
|
||||
<mousebind button="Right" action="Press">
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
<action name="Unshade"/>
|
||||
</mousebind>
|
||||
<mousebind button="Left" action="Click">
|
||||
<action name="ToggleMaximize"/>
|
||||
</mousebind>
|
||||
<mousebind button="Middle" action="Click">
|
||||
<action name="ToggleMaximize">
|
||||
<direction>vertical</direction>
|
||||
</action>
|
||||
</mousebind>
|
||||
<mousebind button="Right" action="Click">
|
||||
<action name="ToggleMaximize">
|
||||
<direction>horizontal</direction>
|
||||
</action>
|
||||
</mousebind>
|
||||
</context>
|
||||
<context name="Close">
|
||||
<mousebind button="Left" action="Press">
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
<action name="Unshade"/>
|
||||
</mousebind>
|
||||
<mousebind button="Left" action="Click">
|
||||
<action name="Close"/>
|
||||
</mousebind>
|
||||
</context>
|
||||
<context name="Desktop">
|
||||
<mousebind button="Up" action="Click">
|
||||
<action name="GoToDesktop">
|
||||
<to>previous</to>
|
||||
</action>
|
||||
</mousebind>
|
||||
<mousebind button="Down" action="Click">
|
||||
<action name="GoToDesktop">
|
||||
<to>next</to>
|
||||
</action>
|
||||
</mousebind>
|
||||
<mousebind button="A-Up" action="Click">
|
||||
<action name="GoToDesktop">
|
||||
<to>previous</to>
|
||||
</action>
|
||||
</mousebind>
|
||||
<mousebind button="A-Down" action="Click">
|
||||
<action name="GoToDesktop">
|
||||
<to>next</to>
|
||||
</action>
|
||||
</mousebind>
|
||||
<mousebind button="C-A-Up" action="Click">
|
||||
<action name="GoToDesktop">
|
||||
<to>previous</to>
|
||||
</action>
|
||||
</mousebind>
|
||||
<mousebind button="C-A-Down" action="Click">
|
||||
<action name="GoToDesktop">
|
||||
<to>next</to>
|
||||
</action>
|
||||
</mousebind>
|
||||
<mousebind button="Left" action="Press">
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
</mousebind>
|
||||
<mousebind button="Right" action="Press">
|
||||
<action name="Focus"/>
|
||||
<action name="Raise"/>
|
||||
</mousebind>
|
||||
</context>
|
||||
<context name="Root">
|
||||
<!-- Menus -->
|
||||
<mousebind button="Middle" action="Press">
|
||||
<action name="ShowMenu">
|
||||
<menu>client-list-combined-menu</menu>
|
||||
</action>
|
||||
</mousebind>
|
||||
<mousebind button="Right" action="Press">
|
||||
<action name="ShowMenu">
|
||||
<menu>root-menu</menu>
|
||||
</action>
|
||||
</mousebind>
|
||||
</context>
|
||||
<context name="MoveResize">
|
||||
<mousebind button="Up" action="Click">
|
||||
<action name="GoToDesktop">
|
||||
<to>previous</to>
|
||||
</action>
|
||||
</mousebind>
|
||||
<mousebind button="Down" action="Click">
|
||||
<action name="GoToDesktop">
|
||||
<to>next</to>
|
||||
</action>
|
||||
</mousebind>
|
||||
<mousebind button="A-Up" action="Click">
|
||||
<action name="GoToDesktop">
|
||||
<to>previous</to>
|
||||
</action>
|
||||
</mousebind>
|
||||
<mousebind button="A-Down" action="Click">
|
||||
<action name="GoToDesktop">
|
||||
<to>next</to>
|
||||
</action>
|
||||
</mousebind>
|
||||
</context>
|
||||
</mouse>
|
||||
<menu>
|
||||
<!-- You can specify more than one menu file in here and they are all loaded,
|
||||
just don't make menu ids clash or, well, it'll be kind of pointless -->
|
||||
<!-- default menu file (or custom one in $HOME/.config/openbox/) -->
|
||||
<file>menu.xml</file>
|
||||
<hideDelay>200</hideDelay>
|
||||
<!-- if a press-release lasts longer than this setting (in milliseconds), the
|
||||
menu is hidden again -->
|
||||
<middle>no</middle>
|
||||
<!-- center submenus vertically about the parent entry -->
|
||||
<submenuShowDelay>100</submenuShowDelay>
|
||||
<!-- time to delay before showing a submenu after hovering over the parent
|
||||
entry.
|
||||
if this is a negative value, then the delay is infinite and the
|
||||
submenu will not be shown until it is clicked on -->
|
||||
<submenuHideDelay>400</submenuHideDelay>
|
||||
<!-- time to delay before hiding a submenu when selecting another
|
||||
entry in parent menu
|
||||
if this is a negative value, then the delay is infinite and the
|
||||
submenu will not be hidden until a different submenu is opened -->
|
||||
<showIcons>yes</showIcons>
|
||||
<!-- controls if icons appear in the client-list-(combined-)menu -->
|
||||
<manageDesktops>yes</manageDesktops>
|
||||
<!-- show the manage desktops section in the client-list-(combined-)menu -->
|
||||
</menu>
|
||||
<applications>
|
||||
<!--
|
||||
# this is an example with comments through out. use these to make your
|
||||
# own rules, but without the comments of course.
|
||||
# you may use one or more of the name/class/role/title/type rules to specify
|
||||
# windows to match
|
||||
|
||||
<application name="the window's _OB_APP_NAME property (see obxprop)"
|
||||
class="the window's _OB_APP_CLASS property (see obxprop)"
|
||||
groupname="the window's _OB_APP_GROUP_NAME property (see obxprop)"
|
||||
groupclass="the window's _OB_APP_GROUP_CLASS property (see obxprop)"
|
||||
role="the window's _OB_APP_ROLE property (see obxprop)"
|
||||
title="the window's _OB_APP_TITLE property (see obxprop)"
|
||||
type="the window's _OB_APP_TYPE property (see obxprob)..
|
||||
(if unspecified, then it is 'dialog' for child windows)">
|
||||
# you may set only one of name/class/role/title/type, or you may use more
|
||||
# than one together to restrict your matches.
|
||||
|
||||
# the name, class, role, and title use simple wildcard matching such as those
|
||||
# used by a shell. you can use * to match any characters and ? to match
|
||||
# any single character.
|
||||
|
||||
# the type is one of: normal, dialog, splash, utility, menu, toolbar, dock,
|
||||
# or desktop
|
||||
|
||||
# when multiple rules match a window, they will all be applied, in the
|
||||
# order that they appear in this list
|
||||
|
||||
|
||||
# each rule element can be left out or set to 'default' to specify to not
|
||||
# change that attribute of the window
|
||||
|
||||
<decor>yes</decor>
|
||||
# enable or disable window decorations
|
||||
|
||||
<shade>no</shade>
|
||||
# make the window shaded when it appears, or not
|
||||
|
||||
<position force="no">
|
||||
# the position is only used if both an x and y coordinate are provided
|
||||
# (and not set to 'default')
|
||||
# when force is "yes", then the window will be placed here even if it
|
||||
# says you want it placed elsewhere. this is to override buggy
|
||||
# applications who refuse to behave
|
||||
<x>center</x>
|
||||
# a number like 50, or 'center' to center on screen. use a negative number
|
||||
# to start from the right (or bottom for <y>), ie -50 is 50 pixels from
|
||||
# the right edge (or bottom). use 'default' to specify using value
|
||||
# provided by the application, or chosen by openbox, instead.
|
||||
<y>200</y>
|
||||
<monitor>1</monitor>
|
||||
# specifies the monitor in a xinerama setup.
|
||||
# 1 is the first head, or 'mouse' for wherever the mouse is
|
||||
</position>
|
||||
|
||||
<size>
|
||||
# the size to make the window.
|
||||
<width>20</width>
|
||||
# a number like 20, or 'default' to use the size given by the application.
|
||||
# you can use fractions such as 1/2 or percentages such as 75% in which
|
||||
# case the value is relative to the size of the monitor that the window
|
||||
# appears on.
|
||||
<height>30%</height>
|
||||
</size>
|
||||
|
||||
<focus>yes</focus>
|
||||
# if the window should try be given focus when it appears. if this is set
|
||||
# to yes it doesn't guarantee the window will be given focus. some
|
||||
# restrictions may apply, but Openbox will try to
|
||||
|
||||
<desktop>1</desktop>
|
||||
# 1 is the first desktop, 'all' for all desktops
|
||||
|
||||
<layer>normal</layer>
|
||||
# 'above', 'normal', or 'below'
|
||||
|
||||
<iconic>no</iconic>
|
||||
# make the window iconified when it appears, or not
|
||||
|
||||
<skip_pager>no</skip_pager>
|
||||
# asks to not be shown in pagers
|
||||
|
||||
<skip_taskbar>no</skip_taskbar>
|
||||
# asks to not be shown in taskbars. window cycling actions will also
|
||||
# skip past such windows
|
||||
|
||||
<fullscreen>yes</fullscreen>
|
||||
# make the window in fullscreen mode when it appears
|
||||
|
||||
<maximized>true</maximized>
|
||||
# 'Horizontal', 'Vertical' or boolean (yes/no)
|
||||
</application>
|
||||
|
||||
# end of the example
|
||||
-->
|
||||
</applications>
|
||||
</openbox_config>
|
@@ -1,7 +0,0 @@
|
||||
[ActiveShadow]
|
||||
InnerColor=41,89,94
|
||||
OuterColor=39,78,112
|
||||
ShadowSize=32
|
||||
|
||||
[InactiveShadow]
|
||||
ShadowSize=32
|
@@ -1,101 +0,0 @@
|
||||
[Behavior]
|
||||
AutoSelectionDelay=600
|
||||
BookmarkOpenMethod=current_tab
|
||||
ConfirmDelete=true
|
||||
ConfirmTrash=false
|
||||
NoUsbTrash=false
|
||||
QuickExec=false
|
||||
SelectNewFiles=false
|
||||
SingleClick=false
|
||||
UseTrash=true
|
||||
|
||||
[Desktop]
|
||||
BgColor=#000000
|
||||
DesktopCellMargins=@Size(3 1)
|
||||
DesktopIconSize=48
|
||||
FgColor=#ffffff
|
||||
Font="Fira Sans,11,-1,5,50,0,0,0,0,0"
|
||||
HideItems=false
|
||||
LastSlide=
|
||||
ShadowColor=#000000
|
||||
ShowHidden=false
|
||||
ShowWmMenu=false
|
||||
SlideShowInterval=0
|
||||
SortColumn=name
|
||||
SortFolderFirst=true
|
||||
SortOrder=ascending
|
||||
Wallpaper=
|
||||
WallpaperDirectory=
|
||||
WallpaperMode=none
|
||||
WallpaperRandomize=false
|
||||
|
||||
[FolderView]
|
||||
BackupAsHidden=false
|
||||
BigIconSize=48
|
||||
FolderViewCellMargins=@Size(3 3)
|
||||
Mode=icon
|
||||
ShadowHidden=false
|
||||
ShowFilter=false
|
||||
ShowFullNames=false
|
||||
ShowHidden=false
|
||||
SidePaneIconSize=24
|
||||
SmallIconSize=24
|
||||
SortCaseSensitive=false
|
||||
SortColumn=name
|
||||
SortFolderFirst=true
|
||||
SortOrder=ascending
|
||||
ThumbnailIconSize=128
|
||||
|
||||
[Places]
|
||||
PlacesApplications=true
|
||||
PlacesComputer=true
|
||||
PlacesDesktop=true
|
||||
PlacesHome=true
|
||||
PlacesNetwork=true
|
||||
PlacesRoot=true
|
||||
PlacesTrash=true
|
||||
|
||||
[Search]
|
||||
searchContentCaseInsensitive=false
|
||||
searchContentRegexp=true
|
||||
searchNameCaseInsensitive=false
|
||||
searchNameRegexp=true
|
||||
searchRecursive=false
|
||||
searchhHidden=false
|
||||
|
||||
[System]
|
||||
Archiver=file-roller
|
||||
FallbackIconThemeName=oxygen
|
||||
OnlyUserTemplates=false
|
||||
SIUnit=false
|
||||
SuCommand=lxqt-sudo %s
|
||||
TemplateRunApp=false
|
||||
TemplateTypeOnce=false
|
||||
Terminal=xterm
|
||||
|
||||
[Thumbnail]
|
||||
MaxThumbnailFileSize=4096
|
||||
ShowThumbnails=true
|
||||
ThumbnailLocalFilesOnly=true
|
||||
|
||||
[Volume]
|
||||
AutoRun=true
|
||||
CloseOnUnmount=true
|
||||
MountOnStartup=true
|
||||
MountRemovable=true
|
||||
|
||||
[Window]
|
||||
AlwaysShowTabs=true
|
||||
FixedHeight=480
|
||||
FixedWidth=640
|
||||
FullWidthTabBar=true
|
||||
LastWindowHeight=480
|
||||
LastWindowMaximized=false
|
||||
LastWindowWidth=640
|
||||
PathBarButtons=true
|
||||
RememberWindowSize=true
|
||||
ShowMenuBar=true
|
||||
ShowTabClose=true
|
||||
SidePaneMode=places
|
||||
SplitView=false
|
||||
SplitterPos=150
|
@@ -1,15 +0,0 @@
|
||||
[computer.desktop]
|
||||
pos=@Point(12 12)
|
||||
|
||||
[user-home.desktop]
|
||||
pos=@Point(12 120)
|
||||
|
||||
[Configuration.pdf]
|
||||
pos=@Point(12 444)
|
||||
|
||||
[README.txt]
|
||||
pos=@Point(12 552)
|
||||
|
||||
[calamares.desktop]
|
||||
pos=@Point(126 12)
|
||||
|
@@ -1,104 +0,0 @@
|
||||
[Behavior]
|
||||
AutoSelectionDelay=600
|
||||
BookmarkOpenMethod=current_tab
|
||||
ConfirmDelete=true
|
||||
ConfirmTrash=false
|
||||
NoUsbTrash=false
|
||||
QuickExec=true
|
||||
SelectNewFiles=false
|
||||
SingleClick=false
|
||||
UseTrash=true
|
||||
|
||||
[Desktop]
|
||||
BgColor=#000000
|
||||
DesktopCellMargins=@Size(3 1)
|
||||
DesktopIconSize=48
|
||||
DesktopShortcuts=Computer, Home, Trash
|
||||
FgColor=#ffffff
|
||||
Font="Fira Sans,11,-1,5,50,0,0,0,0,0,Regular"
|
||||
HideItems=false
|
||||
LastSlide=
|
||||
ShadowColor=#000000
|
||||
ShowHidden=false
|
||||
ShowWmMenu=false
|
||||
SlideShowInterval=0
|
||||
SortColumn=name
|
||||
SortFolderFirst=true
|
||||
SortOrder=ascending
|
||||
Wallpaper=/usr/share/backgrounds/Artix_dna_spiral_dark.jpg
|
||||
WallpaperDirectory=/usr/share/backgrounds
|
||||
WallpaperMode=zoom
|
||||
WallpaperRandomize=false
|
||||
|
||||
[FolderView]
|
||||
BackupAsHidden=false
|
||||
BigIconSize=48
|
||||
FolderViewCellMargins=@Size(3 3)
|
||||
Mode=icon
|
||||
ShadowHidden=true
|
||||
ShowFilter=false
|
||||
ShowFullNames=false
|
||||
ShowHidden=false
|
||||
SidePaneIconSize=24
|
||||
SmallIconSize=24
|
||||
SortCaseSensitive=false
|
||||
SortColumn=name
|
||||
SortFolderFirst=true
|
||||
SortOrder=ascending
|
||||
ThumbnailIconSize=128
|
||||
|
||||
[Places]
|
||||
PlacesApplications=true
|
||||
PlacesComputer=true
|
||||
PlacesDesktop=true
|
||||
PlacesHome=true
|
||||
PlacesNetwork=true
|
||||
PlacesRoot=true
|
||||
PlacesTrash=true
|
||||
|
||||
[Search]
|
||||
searchContentCaseInsensitive=false
|
||||
searchContentRegexp=true
|
||||
searchNameCaseInsensitive=false
|
||||
searchNameRegexp=true
|
||||
searchRecursive=true
|
||||
searchhHidden=true
|
||||
|
||||
[System]
|
||||
Archiver=file-roller
|
||||
FallbackIconThemeName=oxygen
|
||||
OnlyUserTemplates=false
|
||||
SIUnit=false
|
||||
SuCommand=lxqt-sudo %s
|
||||
TemplateRunApp=false
|
||||
TemplateTypeOnce=false
|
||||
Terminal=qterminal
|
||||
TerminalDirCommand=qterminal
|
||||
TerminalExecCommand=qterminal -e %s
|
||||
|
||||
[Thumbnail]
|
||||
MaxThumbnailFileSize=4096
|
||||
ShowThumbnails=true
|
||||
ThumbnailLocalFilesOnly=true
|
||||
|
||||
[Volume]
|
||||
AutoRun=true
|
||||
CloseOnUnmount=true
|
||||
MountOnStartup=true
|
||||
MountRemovable=true
|
||||
|
||||
[Window]
|
||||
AlwaysShowTabs=false
|
||||
FixedHeight=480
|
||||
FixedWidth=640
|
||||
FullWidthTabBar=true
|
||||
Height=480
|
||||
LastWindowHeight=480
|
||||
LastWindowMaximized=false
|
||||
LastWindowWidth=640
|
||||
PathBarButtons=true
|
||||
RememberWindowSize=true
|
||||
ShowMenuBar=true
|
||||
ShowTabClose=true
|
||||
SidePaneMode=places
|
||||
SplitterPos=150
|
@@ -1,42 +0,0 @@
|
||||
[*]
|
||||
wallpaper_mode=crop
|
||||
wallpaper_common=1
|
||||
wallpaper=/usr/share/backgrounds/Artix_dna_spiral_dark.jpg
|
||||
desktop_bg=#000000
|
||||
desktop_fg=#ffffff
|
||||
desktop_shadow=#000000
|
||||
desktop_font=Fira Sans 11
|
||||
show_wm_menu=0
|
||||
sort=mtime;ascending;
|
||||
show_documents=0
|
||||
show_trash=1
|
||||
show_mounts=1
|
||||
|
||||
[io.github.Hexchat.desktop]
|
||||
x=2
|
||||
y=149
|
||||
|
||||
[computer.desktop]
|
||||
x=2
|
||||
y=2
|
||||
|
||||
[user-home.desktop]
|
||||
x=2
|
||||
y=65
|
||||
|
||||
[OpenRC.pdf]
|
||||
x=2
|
||||
y=333
|
||||
|
||||
[Configuration.pdf]
|
||||
x=2
|
||||
y=230
|
||||
|
||||
[calamares.desktop]
|
||||
x=95
|
||||
y=2
|
||||
|
||||
[trash:///]
|
||||
x=93
|
||||
y=91
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user