Initial commit

This commit is contained in:
kirbara 2025-12-01 13:23:24 +07:00
commit cfcc57a8bd
Signed by: exp
GPG key ID: D7E63AD0019E75D9
353 changed files with 18756 additions and 0 deletions

View file

@ -0,0 +1,26 @@
# Example environment file for Xfce
# See also example config files shipped with labwc
##
## Use the XKB_DEFAULT_LAYOUT variable to set the keyboard layout. For example
## to start with Swedish keyboard layout set it to 'se'. If you are unsure what
## your country code is, refer to the layout section of:
## /usr/share/X11/xkb/rules/evdev.lst
##
## Multiple keyboard layouts can be set by comma-separating the country codes.
## If a variant layout is needed, the syntax is layout(variant)
## If multiple layouts are used, specify the toggle-keybind using
## XKB_DEFAULT_OPTIONS as show below.
##
## For further details, see xkeyboard-config(7)
##
XKB_DEFAULT_LAYOUT=/nix/store/6iy6cgmxr0yvdamffp9h85ja71lw9ra7(xkb-console-keymap)
XKB_DEFAULT_MODEL=pc104
##
## Set cursor theme and size. Find system icons themes with:
## `find /usr/share/icons/ -type d -name "cursors"`
##
XCURSOR_THEME=Adwaita

View file

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="UTF-8"?>
<openbox_menu>
<menu id="root-menu" label="root-menu">
<menu id="client-list-combined-menu" />
<separator />
<item label="Launcher"><action name="Execute" command="rofi -show drun" /></item>
<separator />
<menu id="Browser" label="Browser">
<item label="Brave (Chromium)"><action name="Execute" command="brave" /></item>
<item label="Librewolf (Firefox)"><action name="Execute" command="librewolf" /></item>
</menu>
<item label="Terminal"><action name="Execute" command="konsole" /></item>
<item label="Text Editor"><action name="Execute" command="codium" /></item>
<item label="File Manager"><action name="Execute" command="dolphin" /></item>
<separator />
<separator />
<menu id="Exit" label="Exit">
<item label="Reconfigure"><action name="Reconfigure" /></item>
<item label="Logout"><action name="Execute" command="xfce4-session-logout" /></item>
</menu>
</menu>
</openbox_menu>

View file

@ -0,0 +1,294 @@
<?xml version="1.0"?>
<labwc_config>
<theme>
<name>Lean</name>
<titlebar>
<layout>menu,desk:iconify,max,close</layout>
</titlebar>
<dropShadows>yes</dropShadows>
<keepBorder>yes</keepBorder>
<animateIconify>yes</animateIconify>
<cornerRadius>4</cornerRadius>
<font place="ActiveWindow">
<name>JetBrainsMono Nerd Font</name>
<size>8</size>
<weight>Bold</weight>
<slant>Normal</slant>
</font>
<font place="InactiveWindow">
<name>JetBrainsMono Nerd Font</name>
<size>8</size>
<weight>Normal</weight>
<slant>Normal</slant>
</font>
<font place="MenuHeader">
<name>JetBrainsMono Nerd Font</name>
<size>9</size>
<weight>Normal</weight>
<slant>Normal</slant>
</font>
<font place="MenuItem">
<name>JetBrainsMono Nerd Font</name>
<size>9</size>
<weight>Normal</weight>
<slant>Normal</slant>
</font>
<font place="ActiveOnScreenDisplay">
<name>JetBrainsMono Nerd Font</name>
<size>9</size>
<weight>Normal</weight>
<slant>Normal</slant>
</font>
<font place="InactiveOnScreenDisplay">
<name>JetBrainsMono Nerd Font</name>
<size>9</size>
<weight>Normal</weight>
<slant>Normal</slant>
</font>
</theme>
<margin>
<top>16</top>
<bottom>16</bottom>
<left>16</left>
<right>16</right>
</margin>
<placement>
<policy>automatic</policy>
</placement>
<desktops number="4" />
<keyboard>
<default/>
<!-- Use a different terminal emulator -->
<keybind key="W-Return">
<action name="Execute" command="konsole"/>
</keybind>
<!--
Remove a previously defined keybind
A shorter alternative is <keybind key="W-F4" />
-->
<keybind key="W-F4">
<action name="None"/>
</keybind>
<numlock>on</numlock>
<!-- launcher -->
<keybind key="W-Space">
<action name="Execute" command="rofi -show drun"/>
</keybind>
<!-- xfce key bindings -->
<keybind key="XF86_AudioLowerVolume">
<action name="Execute" command="amixer -D pulse sset Master 5%-" />
</keybind>
<keybind key="XF86_AudioRaiseVolume">
<action name="Execute" command="amixer -D pulse sset Master 5%+" />
</keybind>
<keybind key="XF86_AudioMute">
<action name="Execute" command="amixer -D pulse sset Master toggle" />
</keybind>
<keybind key="W-q">
<action name="Close" />6
</keybind>
<keybind key="A-Tab">
<action name="NextWindow" />
</keybind>
<keybind key="W-Tab">
<action name="ToggleMaximize" />
</keybind>
<keybind key="W-1">
<action name="GoToDesktop" to="1" />
</keybind>
<keybind key="W-2">
<action name="GoToDesktop" to="2" />
</keybind>
<keybind key="W-3">
<action name="GoToDesktop" to="3" />
</keybind>
<keybind key="W-4">
<action name="GoToDesktop" to="4" />
</keybind>
<!-- screenshot -->
<keybind key="Print">
<action name="Execute">
<command>~/.config/xfce4/labwc/screenshot-full.sh</command>
</action>
</keybind>
<keybind key="W-Print">
<action name="Execute">
<command>~/.config/xfce4/labwc/screenshot-part.sh</command>
</action>
</keybind>
</keyboard>
<mouse>
<!-- time is in ms -->
<doubleClickTime>500</doubleClickTime>
<scrollFactor>1.0</scrollFactor>
<context name="Frame">
<mousebind button="A-Left" action="Press">
<action name="Focus" />
<action name="Raise" />
</mousebind>
<mousebind button="A-Left" action="Drag">
<action name="Move" />
</mousebind>
<mousebind button="A-Right" action="Press">
<action name="Focus" />
<action name="Raise" />
</mousebind>
<mousebind button="A-Right" action="Drag">
<action name="Resize" />
</mousebind>
</context>
<context name="Top">
<mousebind button="Left" action="Drag">
<action name="Resize" />
</mousebind>
</context>
<context name="Left">
<mousebind button="Left" action="Drag">
<action name="Resize" />
</mousebind>
</context>
<context name="Right">
<mousebind button="Left" action="Drag">
<action name="Resize" />
</mousebind>
</context>
<context name="Bottom">
<mousebind button="Left" action="Drag">
<action name="Resize" />
</mousebind>
</context>
<context name="TRCorner">
<mousebind button="Left" action="Drag">
<action name="Resize" />
</mousebind>
</context>
<context name="BRCorner">
<mousebind button="Left" action="Drag">
<action name="Resize" />
</mousebind>
</context>
<context name="TLCorner">
<mousebind button="Left" action="Drag">
<action name="Resize" />
</mousebind>
</context>
<context name="BLCorner">
<mousebind button="Left" action="Drag">
<action name="Resize" />
</mousebind>
</context>
<context name="TitleBar">
<mousebind button="Left" action="Press">
<action name="Focus" />
<action name="Raise" />
</mousebind>
<mousebind button="Right" action="Click">
<action name="Focus" />
<action name="Raise" />
</mousebind>
<mousebind direction="Up" action="Scroll">
<action name="Unshade" />
<action name="Focus" />
</mousebind>
<mousebind direction="Down" action="Scroll">
<action name="Unfocus" />
<action name="Shade" />
</mousebind>
</context>
<context name="Title">
<mousebind button="Left" action="Drag">
<action name="Move" />
</mousebind>
<mousebind button="Left" action="DoubleClick">
<action name="ToggleMaximize" />
</mousebind>
<mousebind button="Right" action="Click">
<action name="ShowMenu" menu="client-menu" />
</mousebind>
</context>
<context name="Maximize">
<mousebind button="Left" action="Click">
<action name="ToggleMaximize" />
</mousebind>
<mousebind button="Right" action="Click">
<action name="ToggleMaximize" direction="horizontal" />
</mousebind>
<mousebind button="Middle" action="Click">
<action name="ToggleMaximize" direction="vertical" />
</mousebind>
</context>
<context name="WindowMenu">
<mousebind button="Left" action="Click">
<action name="ShowMenu" menu="client-menu" />
</mousebind>
<mousebind button="Right" action="Click">
<action name="ShowMenu" menu="client-menu" />
</mousebind>
</context>
<context name="Iconify">
<mousebind button="Left" action="Click">
<action name="Iconify" />
</mousebind>
</context>
<context name="Close">
<mousebind button="Left" action="Click">
<action name="Close" />
</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="Root">
<mousebind button="Left" action="Press">
<action name="ShowMenu" menu="root-menu" />
</mousebind>
<mousebind button="Right" action="Press">
<action name="ShowMenu" menu="root-menu" />
</mousebind>
<mousebind button="Middle" action="Press">
<action name="ShowMenu" menu="root-menu" />
</mousebind>
<mousebind direction="W-Up" action="Scroll">
<action name="GoToDesktop" to="left" wrap="yes" />
</mousebind>
<mousebind direction="W-Down" action="Scroll">
<action name="GoToDesktop" to="right" wrap="yes" />
</mousebind>
</context>
</mouse>
<snapping>
<range>10</range>
</snapping>
</labwc_config>

View file

@ -0,0 +1,16 @@
#!/bin/sh
mkdir -p ~/resource/screenshot
TIMESTAMP=$(date '+%Y-%m-%d_%H-%M-%S')
FILENAME="$HOME/resource/screenshot/screenshot_${TIMESTAMP}.png"
grim "$FILENAME"
if [ -f "$FILENAME" ]; then
wl-copy < "$FILENAME"
notify-send "Screenshot" \
"Saved & copied:\n$(basename "$FILENAME")\nGoshujin-sama!" \
-i "$FILENAME"
else
notify-send "Screenshot" "Not saved!" -u critical
fi

View file

@ -0,0 +1,22 @@
#!/bin/sh
mkdir -p ~/resource/screenshot
TIMESTAMP=$(date '+%Y-%m-%d_%H-%M-%S')
FILENAME="$HOME/resource/screenshot/screenshot_${TIMESTAMP}.png"
grim -g "$(slurp -o -r -c '#ff0000ff')" -t ppm - | \
satty --filename - \
--fullscreen \
--initial-tool crop \
--output-filename "$FILENAME" \
--disable-notifications \
--early-exit
if [ -f "$FILENAME" ]; then
wl-copy < "$FILENAME"
notify-send "Screenshot" \
"Saved & copied:\n$(basename "$FILENAME")\nGoshujin-sama!" \
-i "$FILENAME"
else
notify-send "Screenshot" "Not saved!" -u critical
fi

View file

@ -0,0 +1,67 @@
<?xml version="1.1" encoding="UTF-8"?>
<channel name="displays" version="1.0">
<property name="ActiveProfile" type="string" value="Default"/>
<property name="Notify" type="int" value="3"/>
<property name="AutoEnableProfiles" type="int" value="0"/>
<property name="7dfa848c-06b9-44b7-a471-e2cab379fb6d" type="string" value="normal">
<property name="DP-2" type="string" value="Acer Technologies VG240Y M3 3403011883W01 (DP-2)">
<property name="EDID" type="string" value="8005022eb795ca171bc32b1f75df24d866db71aa"/>
<property name="Active" type="bool" value="true"/>
<property name="Resolution" type="string" value="1920x1080"/>
<property name="RefreshRate" type="double" value="120"/>
<property name="Rotation" type="int" value="0"/>
<property name="Reflection" type="string" value="0"/>
<property name="Scale" type="double" value="1"/>
<property name="Position" type="empty">
<property name="X" type="int" value="0"/>
<property name="Y" type="int" value="0"/>
</property>
</property>
<property name="HDMI-A-3" type="string" value="HAT Kamvas 13 0x01010101 (HDMI-A-3)">
<property name="EDID" type="string" value="8b72023a7172d1ebe01af23ea0538b692959ff0f"/>
<property name="Active" type="bool" value="true"/>
<property name="Resolution" type="string" value="1920x1080"/>
<property name="RefreshRate" type="double" value="60"/>
<property name="Rotation" type="int" value="0"/>
<property name="Reflection" type="string" value="0"/>
<property name="Scale" type="double" value="1"/>
<property name="Position" type="empty">
<property name="X" type="int" value="0"/>
<property name="Y" type="int" value="1080"/>
</property>
</property>
</property>
<property name="Default" type="empty">
<property name="HDMI-3" type="string" value="HAT 13&quot;">
<property name="Active" type="bool" value="true"/>
<property name="EDID" type="string" value="5bc06f52130f7186d6b5df32bd65e26813f4cd8a"/>
<property name="Resolution" type="string" value="1920x1080"/>
<property name="RefreshRate" type="double" value="60"/>
<property name="ModeFlags" type="uint64" value="5"/>
<property name="Rotation" type="int" value="0"/>
<property name="Reflection" type="string" value="0"/>
<property name="Primary" type="bool" value="false"/>
<property name="Scale" type="double" value="1"/>
<property name="Position" type="empty">
<property name="X" type="int" value="0"/>
<property name="Y" type="int" value="1080"/>
</property>
</property>
<property name="DP-1-2" type="string" value="Acer 24&quot;">
<property name="Active" type="bool" value="true"/>
<property name="EDID" type="string" value="08844670f589eb9df2eed53862fabcab803abee6"/>
<property name="Resolution" type="string" value="1920x1080"/>
<property name="RefreshRate" type="double" value="120"/>
<property name="ModeFlags" type="uint64" value="5"/>
<property name="Rotation" type="int" value="0"/>
<property name="Reflection" type="string" value="0"/>
<property name="Primary" type="bool" value="false"/>
<property name="Scale" type="double" value="1"/>
<property name="Position" type="empty">
<property name="X" type="int" value="0"/>
<property name="Y" type="int" value="0"/>
</property>
</property>
</property>
</channel>

View file

@ -0,0 +1,7 @@
<?xml version="1.1" encoding="UTF-8"?>
<channel name="keyboards" version="1.0">
<property name="Default" type="empty">
<property name="Numlock" type="bool" value="false"/>
</property>
</channel>

View file

@ -0,0 +1,67 @@
<?xml version="1.1" encoding="UTF-8"?>
<channel name="xfce4-desktop" version="1.0">
<property name="last-settings-migration-version" type="uint" value="1"/>
<property name="last" type="empty">
<property name="window-width" type="int" value="653"/>
<property name="window-height" type="int" value="571"/>
</property>
<property name="backdrop" type="empty">
<property name="screen0" type="empty">
<property name="monitorDisplayPort-2" type="empty">
<property name="workspace0" type="empty">
<property name="backdrop-cycle-enable" type="bool" value="false"/>
<property name="rgba1" type="array">
<value type="double" value="0.75"/>
<value type="double" value="0.25"/>
<value type="double" value="0.25"/>
<value type="double" value="1"/>
</property>
<property name="last-image" type="string" value="/home/kirbaranixos/Pictures/wallpaper.jpg"/>
<property name="color-style" type="int" value="3"/>
<property name="image-style" type="int" value="4"/>
</property>
</property>
<property name="monitorVG240YM3" type="empty">
<property name="workspace0" type="empty">
<property name="last-image" type="string" value="/home/kirbaranixos/Pictures/wallpaper.jpg"/>
<property name="rgba1" type="array">
<value type="double" value="0"/>
<value type="double" value="0"/>
<value type="double" value="0"/>
<value type="double" value="1"/>
</property>
<property name="image-style" type="int" value="4"/>
<property name="backdrop-cycle-enable" type="bool" value="true"/>
<property name="color-style" type="int" value="1"/>
<property name="backdrop-cycle-period" type="int" value="1"/>
<property name="backdrop-cycle-timer" type="uint" value="5"/>
<property name="backdrop-cycle-random-order" type="bool" value="false"/>
</property>
</property>
<property name="monitorDisplayPort-1" type="empty">
<property name="workspace0" type="empty">
<property name="last-image" type="string" value="/home/kirbaranixos/Pictures/wallpaper.jpg"/>
<property name="rgba1" type="array">
<value type="double" value="0"/>
<value type="double" value="0"/>
<value type="double" value="0"/>
<value type="double" value="1"/>
</property>
<property name="image-style" type="int" value="4"/>
</property>
</property>
</property>
<property name="single-workspace-mode" type="bool" value="true"/>
<property name="single-workspace-number" type="int" value="0"/>
</property>
<property name="desktop-icons" type="empty">
<property name="style" type="int" value="0"/>
</property>
<property name="desktop-menu" type="empty">
<property name="show" type="bool" value="true"/>
</property>
<property name="windowlist-menu" type="empty">
<property name="show" type="bool" value="true"/>
</property>
</channel>

View file

@ -0,0 +1,196 @@
<?xml version="1.1" encoding="UTF-8"?>
<channel name="xfce4-keyboard-shortcuts" version="1.0">
<property name="commands" type="empty">
<property name="default" type="empty">
<property name="&lt;Alt&gt;F1" type="empty"/>
<property name="&lt;Alt&gt;F2" type="empty">
<property name="startup-notify" type="empty"/>
</property>
<property name="&lt;Alt&gt;F3" type="empty">
<property name="startup-notify" type="empty"/>
</property>
<property name="&lt;Primary&gt;&lt;Alt&gt;Delete" type="empty"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;l" type="empty"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;t" type="empty"/>
<property name="XF86Display" type="empty"/>
<property name="&lt;Super&gt;p" type="empty"/>
<property name="&lt;Primary&gt;Escape" type="empty"/>
<property name="XF86WWW" type="empty"/>
<property name="HomePage" type="empty"/>
<property name="XF86Mail" type="empty"/>
<property name="Print" type="empty"/>
<property name="&lt;Alt&gt;Print" type="empty"/>
<property name="&lt;Shift&gt;Print" type="empty"/>
<property name="&lt;Super&gt;e" type="empty"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;f" type="empty"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;Escape" type="empty"/>
<property name="&lt;Primary&gt;&lt;Shift&gt;Escape" type="empty"/>
<property name="&lt;Super&gt;r" type="empty">
<property name="startup-notify" type="empty"/>
</property>
<property name="&lt;Alt&gt;&lt;Super&gt;s" type="empty"/>
</property>
<property name="custom" type="empty">
<property name="&lt;Alt&gt;F2" type="string" value="xfce4-appfinder --collapsed">
<property name="startup-notify" type="bool" value="true"/>
</property>
<property name="&lt;Alt&gt;Print" type="string" value="xfce4-screenshooter -w"/>
<property name="&lt;Super&gt;r" type="string" value="xfce4-appfinder -c">
<property name="startup-notify" type="bool" value="true"/>
</property>
<property name="XF86WWW" type="string" value="exo-open --launch WebBrowser"/>
<property name="XF86Mail" type="string" value="exo-open --launch MailReader"/>
<property name="&lt;Alt&gt;F3" type="string" value="xfce4-appfinder">
<property name="startup-notify" type="bool" value="true"/>
</property>
<property name="Print" type="string" value="xfce4-screenshooter"/>
<property name="&lt;Primary&gt;Escape" type="string" value="xfdesktop --menu"/>
<property name="&lt;Shift&gt;Print" type="string" value="xfce4-screenshooter -r"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;Delete" type="string" value="xfce4-session-logout"/>
<property name="&lt;Alt&gt;&lt;Super&gt;s" type="string" value="orca"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;t" type="string" value="exo-open --launch TerminalEmulator"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;f" type="string" value="thunar"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;l" type="string" value="xflock4"/>
<property name="&lt;Alt&gt;F1" type="string" value="xfce4-popup-applicationsmenu"/>
<property name="&lt;Super&gt;p" type="string" value="xfce4-display-settings --minimal"/>
<property name="&lt;Primary&gt;&lt;Shift&gt;Escape" type="string" value="xfce4-taskmanager"/>
<property name="&lt;Super&gt;e" type="string" value="thunar"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;Escape" type="string" value="xkill"/>
<property name="HomePage" type="string" value="exo-open --launch WebBrowser"/>
<property name="XF86Display" type="string" value="xfce4-display-settings --minimal"/>
<property name="override" type="bool" value="true"/>
</property>
</property>
<property name="xfwm4" type="empty">
<property name="default" type="empty">
<property name="&lt;Alt&gt;Insert" type="empty"/>
<property name="Escape" type="empty"/>
<property name="Left" type="empty"/>
<property name="Right" type="empty"/>
<property name="Up" type="empty"/>
<property name="Down" type="empty"/>
<property name="&lt;Alt&gt;Tab" type="empty"/>
<property name="&lt;Alt&gt;&lt;Shift&gt;Tab" type="empty"/>
<property name="&lt;Alt&gt;Delete" type="empty"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;Down" type="empty"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;Left" type="empty"/>
<property name="&lt;Shift&gt;&lt;Alt&gt;Page_Down" type="empty"/>
<property name="&lt;Alt&gt;F4" type="empty"/>
<property name="&lt;Alt&gt;F6" type="empty"/>
<property name="&lt;Alt&gt;F7" type="empty"/>
<property name="&lt;Alt&gt;F8" type="empty"/>
<property name="&lt;Alt&gt;F9" type="empty"/>
<property name="&lt;Alt&gt;F10" type="empty"/>
<property name="&lt;Alt&gt;F11" type="empty"/>
<property name="&lt;Alt&gt;F12" type="empty"/>
<property name="&lt;Primary&gt;&lt;Shift&gt;&lt;Alt&gt;Left" type="empty"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;End" type="empty"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;Home" type="empty"/>
<property name="&lt;Primary&gt;&lt;Shift&gt;&lt;Alt&gt;Right" type="empty"/>
<property name="&lt;Primary&gt;&lt;Shift&gt;&lt;Alt&gt;Up" type="empty"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;KP_1" type="empty"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;KP_2" type="empty"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;KP_3" type="empty"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;KP_4" type="empty"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;KP_5" type="empty"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;KP_6" type="empty"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;KP_7" type="empty"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;KP_8" type="empty"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;KP_9" type="empty"/>
<property name="&lt;Alt&gt;space" type="empty"/>
<property name="&lt;Shift&gt;&lt;Alt&gt;Page_Up" type="empty"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;Right" type="empty"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;d" type="empty"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;Up" type="empty"/>
<property name="&lt;Super&gt;Tab" type="empty"/>
<property name="&lt;Primary&gt;F1" type="empty"/>
<property name="&lt;Primary&gt;F2" type="empty"/>
<property name="&lt;Primary&gt;F3" type="empty"/>
<property name="&lt;Primary&gt;F4" type="empty"/>
<property name="&lt;Primary&gt;F5" type="empty"/>
<property name="&lt;Primary&gt;F6" type="empty"/>
<property name="&lt;Primary&gt;F7" type="empty"/>
<property name="&lt;Primary&gt;F8" type="empty"/>
<property name="&lt;Primary&gt;F9" type="empty"/>
<property name="&lt;Primary&gt;F10" type="empty"/>
<property name="&lt;Primary&gt;F11" type="empty"/>
<property name="&lt;Primary&gt;F12" type="empty"/>
<property name="&lt;Super&gt;KP_Left" type="empty"/>
<property name="&lt;Super&gt;KP_Right" type="empty"/>
<property name="&lt;Super&gt;KP_Down" type="empty"/>
<property name="&lt;Super&gt;KP_Up" type="empty"/>
<property name="&lt;Super&gt;KP_Page_Up" type="empty"/>
<property name="&lt;Super&gt;KP_Home" type="empty"/>
<property name="&lt;Super&gt;KP_End" type="empty"/>
<property name="&lt;Super&gt;KP_Next" type="empty"/>
</property>
<property name="custom" type="empty">
<property name="&lt;Primary&gt;F12" type="string" value="workspace_12_key"/>
<property name="&lt;Super&gt;KP_Down" type="string" value="tile_down_key"/>
<property name="&lt;Alt&gt;F4" type="string" value="close_window_key"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;KP_3" type="string" value="move_window_workspace_3_key"/>
<property name="&lt;Primary&gt;F2" type="string" value="workspace_2_key"/>
<property name="&lt;Primary&gt;F6" type="string" value="workspace_6_key"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;Down" type="string" value="down_workspace_key"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;KP_9" type="string" value="move_window_workspace_9_key"/>
<property name="&lt;Super&gt;KP_Up" type="string" value="tile_up_key"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;End" type="string" value="move_window_next_workspace_key"/>
<property name="&lt;Primary&gt;F8" type="string" value="workspace_8_key"/>
<property name="&lt;Primary&gt;&lt;Shift&gt;&lt;Alt&gt;Left" type="string" value="move_window_left_key"/>
<property name="&lt;Super&gt;KP_Right" type="string" value="tile_right_key"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;KP_4" type="string" value="move_window_workspace_4_key"/>
<property name="Right" type="string" value="right_key"/>
<property name="Down" type="string" value="down_key"/>
<property name="&lt;Primary&gt;F3" type="string" value="workspace_3_key"/>
<property name="&lt;Shift&gt;&lt;Alt&gt;Page_Down" type="string" value="lower_window_key"/>
<property name="&lt;Primary&gt;F9" type="string" value="workspace_9_key"/>
<property name="&lt;Alt&gt;Tab" type="string" value="cycle_windows_key"/>
<property name="&lt;Primary&gt;&lt;Shift&gt;&lt;Alt&gt;Right" type="string" value="move_window_right_key"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;Right" type="string" value="right_workspace_key"/>
<property name="&lt;Alt&gt;F6" type="string" value="stick_window_key"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;KP_5" type="string" value="move_window_workspace_5_key"/>
<property name="&lt;Primary&gt;F11" type="string" value="workspace_11_key"/>
<property name="&lt;Alt&gt;F10" type="string" value="maximize_window_key"/>
<property name="&lt;Alt&gt;Delete" type="string" value="del_workspace_key"/>
<property name="&lt;Super&gt;Tab" type="string" value="switch_window_key"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;d" type="string" value="show_desktop_key"/>
<property name="&lt;Primary&gt;F4" type="string" value="workspace_4_key"/>
<property name="&lt;Super&gt;KP_Page_Up" type="string" value="tile_up_right_key"/>
<property name="&lt;Alt&gt;F7" type="string" value="move_window_key"/>
<property name="Up" type="string" value="up_key"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;KP_6" type="string" value="move_window_workspace_6_key"/>
<property name="&lt;Alt&gt;F11" type="string" value="fullscreen_key"/>
<property name="&lt;Alt&gt;space" type="string" value="popup_menu_key"/>
<property name="&lt;Super&gt;KP_Home" type="string" value="tile_up_left_key"/>
<property name="Escape" type="string" value="cancel_key"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;KP_1" type="string" value="move_window_workspace_1_key"/>
<property name="&lt;Super&gt;KP_Next" type="string" value="tile_down_right_key"/>
<property name="&lt;Super&gt;KP_Left" type="string" value="tile_left_key"/>
<property name="&lt;Shift&gt;&lt;Alt&gt;Page_Up" type="string" value="raise_window_key"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;Home" type="string" value="move_window_prev_workspace_key"/>
<property name="&lt;Alt&gt;&lt;Shift&gt;Tab" type="string" value="cycle_reverse_windows_key"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;Left" type="string" value="left_workspace_key"/>
<property name="&lt;Alt&gt;F12" type="string" value="above_key"/>
<property name="&lt;Primary&gt;&lt;Shift&gt;&lt;Alt&gt;Up" type="string" value="move_window_up_key"/>
<property name="&lt;Primary&gt;F5" type="string" value="workspace_5_key"/>
<property name="&lt;Alt&gt;F8" type="string" value="resize_window_key"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;KP_7" type="string" value="move_window_workspace_7_key"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;KP_2" type="string" value="move_window_workspace_2_key"/>
<property name="&lt;Super&gt;KP_End" type="string" value="tile_down_left_key"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;Up" type="string" value="up_workspace_key"/>
<property name="&lt;Alt&gt;F9" type="string" value="hide_window_key"/>
<property name="&lt;Primary&gt;F7" type="string" value="workspace_7_key"/>
<property name="&lt;Primary&gt;F10" type="string" value="workspace_10_key"/>
<property name="Left" type="string" value="left_key"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;KP_8" type="string" value="move_window_workspace_8_key"/>
<property name="&lt;Alt&gt;Insert" type="string" value="add_workspace_key"/>
<property name="&lt;Primary&gt;F1" type="string" value="workspace_1_key"/>
<property name="override" type="bool" value="true"/>
</property>
</property>
<property name="providers" type="array">
<value type="string" value="commands"/>
<value type="string" value="xfwm4"/>
</property>
</channel>

View file

@ -0,0 +1,11 @@
<?xml version="1.1" encoding="UTF-8"?>
<channel name="xfce4-mime-settings" version="1.0">
<property name="last" type="empty">
<property name="window-width" type="int" value="600"/>
<property name="window-height" type="int" value="450"/>
<property name="mime-width" type="int" value="300"/>
<property name="status-width" type="int" value="75"/>
<property name="default-width" type="int" value="181"/>
</property>
</channel>

View file

@ -0,0 +1,21 @@
<?xml version="1.1" encoding="UTF-8"?>
<channel name="xfce4-notifyd" version="1.0">
<property name="log-max-size-enabled" type="bool" value="true"/>
<property name="applications" type="empty">
<property name="known_applications" type="array">
<value type="string" value="blueman"/>
<value type="string" value="com.github.hluk.copyq"/>
<value type="string" value="com.usebottles.bottles"/>
<value type="string" value="flameshot"/>
<value type="string" value="it.mijorus.smile"/>
<value type="string" value="obsidian"/>
<value type="string" value="org.freedesktop.network-manager-applet"/>
<value type="string" value="org.xfce.Thunar"/>
<value type="string" value="Xfce volume control"/>
<value type="string" value="Xfce volume daemon"/>
<value type="string" value="xfce4-settings-helper"/>
</property>
</property>
<property name="date-time-custom-format" type="string" value="%a %H:%M:%S"/>
</channel>

View file

@ -0,0 +1,111 @@
<?xml version="1.1" encoding="UTF-8"?>
<channel name="xfce4-panel" version="1.0">
<property name="configver" type="int" value="2"/>
<property name="panels" type="array">
<value type="int" value="1"/>
<value type="int" value="2"/>
<property name="dark-mode" type="bool" value="false"/>
<property name="panel-1" type="empty">
<property name="background-rgba" type="array">
<value type="double" value="0.15128888888888892"/>
<value type="double" value="0.3066666666666667"/>
<value type="double" value="0.23107747747747753"/>
<value type="double" value="1"/>
</property>
<property name="background-style" type="uint" value="0"/>
<property name="plugin-ids" type="array">
<value type="int" value="13"/>
<value type="int" value="3"/>
<value type="int" value="1"/>
<value type="int" value="4"/>
<value type="int" value="11"/>
<value type="int" value="6"/>
</property>
<property name="position" type="string" value="p=12;x=3712;y=1071"/>
<property name="position-locked" type="bool" value="false"/>
<property name="size" type="uint" value="16"/>
<property name="length" type="double" value="1.3541666666666667"/>
<property name="length-adjust" type="bool" value="true"/>
<property name="output-name" type="string" value="VG240Y M3"/>
<property name="enable-struts" type="bool" value="false"/>
<property name="span-monitors" type="bool" value="true"/>
<property name="enter-opacity" type="uint" value="100"/>
<property name="leave-opacity" type="uint" value="100"/>
</property>
<property name="panel-2" type="empty">
<property name="position" type="string" value="p=12;x=2256;y=1072"/>
<property name="size" type="uint" value="16"/>
<property name="enable-struts" type="bool" value="false"/>
<property name="plugin-ids" type="array">
<value type="int" value="2"/>
</property>
<property name="leave-opacity" type="uint" value="0"/>
<property name="background-style" type="uint" value="1"/>
<property name="background-rgba" type="array">
<value type="double" value="0.12156862745098039"/>
<value type="double" value="0.12156862745098039"/>
<value type="double" value="0.12156862745098039"/>
<value type="double" value="0.80000000000000004"/>
</property>
<property name="icon-size" type="uint" value="0"/>
<property name="enter-opacity" type="uint" value="100"/>
<property name="length" type="double" value="33.385416666666657"/>
<property name="length-adjust" type="bool" value="false"/>
</property>
</property>
<property name="plugins" type="empty">
<property name="plugin-1" type="string" value="pulseaudio">
<property name="enable-keyboard-shortcuts" type="bool" value="true"/>
<property name="known-players" type="string" value="Brave;mpc-qt;obsidian;org.kde.haruna;rage;zen"/>
</property>
<property name="plugin-3" type="string" value="systray">
<property name="known-items" type="array">
<value type="string" value="proton-vpn-app"/>
<value type="string" value="flameshot"/>
<value type="string" value="steam"/>
<value type="string" value="albert"/>
<value type="string" value="CopyQ_copyq"/>
<value type="string" value="blueman"/>
<value type="string" value="nm-applet"/>
</property>
<property name="known-legacy-items" type="array">
<value type="string" value="javaembeddedframe"/>
<value type="string" value="wi-fi network connection “all stay kost lt 2” active: all stay kost lt 2 (54%)"/>
<value type="string" value="wi-fi network connection “all stay kost lt 2” active: all stay kost lt 2 (59%)"/>
<value type="string" value="albert"/>
<value type="string" value="blueman"/>
<value type="string" value="wi-fi network connection “all stay kost lt 2” active: all stay kost lt 2 (63%)"/>
<value type="string" value="networkmanager applet"/>
</property>
<property name="hidden-items" type="array">
</property>
<property name="square-icons" type="bool" value="false"/>
<property name="hide-new-items" type="bool" value="false"/>
<property name="single-row" type="bool" value="false"/>
<property name="menu-is-primary" type="bool" value="true"/>
<property name="icon-size" type="int" value="0"/>
</property>
<property name="plugin-11" type="string" value="clock">
<property name="digital-layout" type="uint" value="3"/>
<property name="digital-date-format" type="string" value="%A, %B %d, %Y"/>
<property name="digital-time-format" type="string" value="%T %A %d"/>
</property>
<property name="plugin-13" type="string" value="separator">
<property name="style" type="uint" value="0"/>
</property>
<property name="plugin-4" type="string" value="separator">
<property name="style" type="uint" value="0"/>
</property>
<property name="plugin-6" type="string" value="separator">
<property name="style" type="uint" value="0"/>
</property>
<property name="plugin-2" type="string" value="tasklist">
<property name="show-labels" type="bool" value="true"/>
<property name="sort-order" type="uint" value="4"/>
<property name="show-only-minimized" type="bool" value="false"/>
<property name="show-tooltips" type="bool" value="true"/>
<property name="show-handle" type="bool" value="true"/>
</property>
</property>
</channel>

View file

@ -0,0 +1,15 @@
<?xml version="1.1" encoding="UTF-8"?>
<channel name="xfce4-screensaver" version="1.0">
<property name="saver" type="empty">
<property name="mode" type="int" value="2"/>
<property name="themes" type="empty">
<property name="list" type="array">
<value type="string" value="screensavers-xfce-floaters"/>
</property>
</property>
</property>
<property name="lock" type="empty">
<property name="enabled" type="bool" value="false"/>
</property>
</channel>

View file

@ -0,0 +1,50 @@
<?xml version="1.1" encoding="UTF-8"?>
<channel name="xfce4-session" version="1.0">
<property name="general" type="empty">
<property name="FailsafeSessionName" type="empty"/>
<property name="LockCommand" type="empty"/>
<property name="SessionName" type="string" value="Default"/>
</property>
<property name="sessions" type="empty">
<property name="Failsafe" type="empty">
<property name="IsFailsafe" type="empty"/>
<property name="Count" type="empty"/>
<property name="Client0_Command" type="array">
<value type="string" value="compiz"/>
</property>
<property name="Client0_Priority" type="empty"/>
<property name="Client0_PerScreen" type="empty"/>
<property name="Client1_Command" type="array">
<value type="string" value="xfsettingsd"/>
</property>
<property name="Client1_Priority" type="empty"/>
<property name="Client1_PerScreen" type="empty"/>
<property name="Client2_Command" type="empty"/>
<property name="Client2_Priority" type="empty"/>
<property name="Client2_PerScreen" type="empty"/>
<property name="Client3_Command" type="empty"/>
<property name="Client3_Priority" type="empty"/>
<property name="Client3_PerScreen" type="empty"/>
<property name="Client4_Command" type="empty"/>
<property name="Client4_Priority" type="empty"/>
<property name="Client4_PerScreen" type="empty"/>
</property>
<property name="FailsafeWayland" type="empty">
<property name="IsFailsafe" type="empty"/>
<property name="Count" type="empty"/>
<property name="Client0_Command" type="empty"/>
<property name="Client0_Priority" type="empty"/>
<property name="Client0_PerScreen" type="empty"/>
<property name="Client1_Command" type="empty"/>
<property name="Client1_Priority" type="empty"/>
<property name="Client1_PerScreen" type="empty"/>
<property name="Client2_Command" type="empty"/>
<property name="Client2_Priority" type="empty"/>
<property name="Client2_PerScreen" type="empty"/>
<property name="Client3_Command" type="empty"/>
<property name="Client3_Priority" type="empty"/>
<property name="Client3_PerScreen" type="empty"/>
</property>
</property>
</channel>

View file

@ -0,0 +1,9 @@
<?xml version="1.1" encoding="UTF-8"?>
<channel name="xfce4-settings-editor" version="1.0">
<property name="last" type="empty">
<property name="window-width" type="int" value="1320"/>
<property name="window-height" type="int" value="848"/>
<property name="paned-position" type="int" value="180"/>
</property>
</channel>

View file

@ -0,0 +1,8 @@
<?xml version="1.1" encoding="UTF-8"?>
<channel name="xfce4-settings-manager" version="1.0">
<property name="last" type="empty">
<property name="window-width" type="int" value="718"/>
<property name="window-height" type="int" value="596"/>
</property>
</channel>

View file

@ -0,0 +1,16 @@
<?xml version="1.1" encoding="UTF-8"?>
<channel name="xfce4-taskmanager" version="1.0">
<property name="interface" type="empty">
<property name="show-all-processes" type="bool" value="true"/>
</property>
<property name="columns" type="empty">
<property name="column-priority" type="bool" value="true"/>
<property name="column-vsz" type="bool" value="true"/>
<property name="sort-type" type="uint" value="1"/>
<property name="sort-id" type="uint" value="7"/>
</property>
<property name="window-maximized" type="bool" value="false"/>
<property name="window-width" type="int" value="781"/>
<property name="window-height" type="int" value="600"/>
</channel>

View file

@ -0,0 +1,6 @@
<?xml version="1.1" encoding="UTF-8"?>
<channel name="xfce4-volumed-pulse" version="1.0">
<property name="icon-style" type="uint" value="0"/>
<property name="volume-step-size" type="uint" value="5"/>
</channel>

View file

@ -0,0 +1,45 @@
<?xml version="1.1" encoding="UTF-8"?>
<channel name="xsettings" version="1.0">
<property name="Net" type="empty">
<property name="ThemeName" type="string" value="Fluent-Dark-compact"/>
<property name="IconThemeName" type="string" value="Fluent-dark"/>
<property name="DoubleClickTime" type="empty"/>
<property name="DoubleClickDistance" type="empty"/>
<property name="DndDragThreshold" type="empty"/>
<property name="CursorBlink" type="empty"/>
<property name="CursorBlinkTime" type="empty"/>
<property name="SoundThemeName" type="empty"/>
<property name="EnableEventSounds" type="empty"/>
<property name="EnableInputFeedbackSounds" type="empty"/>
</property>
<property name="Xft" type="empty">
<property name="DPI" type="empty"/>
<property name="Antialias" type="empty"/>
<property name="Hinting" type="empty"/>
<property name="HintStyle" type="empty"/>
<property name="RGBA" type="empty"/>
</property>
<property name="Gtk" type="empty">
<property name="CanChangeAccels" type="empty"/>
<property name="ColorPalette" type="empty"/>
<property name="FontName" type="string" value="JetBrainsMono Nerd Font Light 9"/>
<property name="MonospaceFontName" type="empty"/>
<property name="IconSizes" type="empty"/>
<property name="KeyThemeName" type="empty"/>
<property name="MenuImages" type="empty"/>
<property name="ButtonImages" type="empty"/>
<property name="MenuBarAccel" type="empty"/>
<property name="CursorThemeName" type="string" value="Adwaita"/>
<property name="CursorThemeSize" type="int" value="16"/>
<property name="DecorationLayout" type="string" value="icon,menu:minimize,maximize,close"/>
<property name="DialogsUseHeader" type="empty"/>
<property name="TitlebarMiddleClick" type="empty"/>
</property>
<property name="Gdk" type="empty">
<property name="WindowScalingFactor" type="empty"/>
</property>
<property name="Xfce" type="empty">
<property name="SyncThemes" type="bool" value="false"/>
</property>
</channel>