first commit

This commit is contained in:
Your Name
2026-02-07 20:22:48 +08:00
commit 1b9711d5e4
2270 changed files with 805872 additions and 0 deletions

View File

@@ -0,0 +1,258 @@
{
"layout": {
"type": "layout",
"pages": [
"panel",
"menu"
],
"panel": {
"type": "page",
"title": "Panel",
"sections": [
"panel-appear",
"panel-behave"
]
},
"menu": {
"type": "page",
"title": "Menu",
"sections": [
"menu-layout",
"menu-behave"
]
},
"panel-appear": {
"type": "section",
"title": "Appearance",
"keys": [
"menu-custom",
"menu-icon",
"menu-icon-size",
"menu-label"
]
},
"panel-behave": {
"type": "section",
"title": "Behavior",
"keys": [
"overlay-key",
"activate-on-hover",
"hover-delay",
"force-show-panel",
"enable-animation"
]
},
"menu-layout": {
"type": "section",
"title": "Layout and content",
"keys": [
"show-category-icons",
"category-icon-size",
"show-application-icons",
"application-icon-size",
"favbox-show",
"fav-icon-size",
"favbox-min-height",
"show-places",
"show-recents",
"menu-editor-button"
]
},
"menu-behave": {
"type": "section",
"title": "Behavior",
"keys": [
"enable-autoscroll",
"search-filesystem"
]
}
},
"overlay-key": {
"type": "keybinding",
"description": "Keyboard shortcut to open and close the menu",
"default": "Super_L::Super_R",
"value": "Super_L::Super_R"
},
"menu-custom": {
"type": "switch",
"default": false,
"description": "Use a custom icon and label",
"tooltip": "Check this to specify a custom icon and label",
"value": true
},
"menu-icon": {
"type": "iconfilechooser",
"default": "cinnamon-symbolic",
"description": "Icon",
"tooltip": "Select an icon to show in the panel.",
"default_icon": "cinnamon-symbolic",
"dependency": "menu-custom",
"indent": true,
"value": "/usr/share/pixmaps/orangepi/orangepi.png"
},
"menu-icon-size": {
"type": "spinbutton",
"default": 32,
"min": 16,
"max": 96,
"step": 1,
"units": "px",
"description": "Icon size",
"dependency": "menu-custom",
"indent": true,
"value": 32
},
"menu-label": {
"type": "entry",
"default": "Menu",
"description": "Text",
"tooltip": "Enter custom text to show in the panel.",
"dependency": "menu-custom",
"indent": true,
"value": "Menu"
},
"favbox-min-height": {
"type": "spinbutton",
"default": 300,
"min": 50,
"max": 1000,
"step": 10,
"units": "px",
"dependency": "favbox-show",
"description": "Minimum height of the favorites section",
"tooltip": "The minimum size allocated for the favorites section (this has an impact on the overall height of the menu).",
"value": 300
},
"show-category-icons": {
"type": "switch",
"default": true,
"description": "Show category icons",
"tooltip": "Choose whether or not to show icons on categories.",
"value": true
},
"category-icon-size": {
"type": "spinbutton",
"default": 22,
"min": 16,
"max": 48,
"step": 1,
"units": "px",
"description": "Categories icon size",
"dependency": "show-category-icons",
"indent": true,
"value": 22
},
"show-application-icons": {
"type": "switch",
"default": true,
"description": "Show application icons",
"tooltip": "Choose whether or not to show icons on applications.",
"value": true
},
"application-icon-size": {
"type": "spinbutton",
"default": 22,
"min": 16,
"max": 48,
"step": 1,
"units": "px",
"description": "Applications icon size",
"dependency": "show-application-icons",
"indent": true,
"value": 22
},
"favbox-show": {
"type": "switch",
"default": true,
"description": "Show favorites and session buttons",
"tooltip": "Choose whether or not to show the left pane of the menu.",
"value": true
},
"fav-icon-size": {
"type": "spinbutton",
"default": 32,
"min": 16,
"max": 64,
"step": 1,
"units": "px",
"description": "Favorites icon size",
"dependency": "favbox-show",
"indent": true,
"value": 32
},
"show-favorites": {
"type": "switch",
"default": true,
"description": "Show favorites",
"tooltip": "Choose whether or not to show favorite files in the menu.",
"value": true
},
"show-places": {
"type": "switch",
"default": true,
"description": "Show bookmarks and places",
"tooltip": "Choose whether or not to show bookmarks and places in the menu.",
"value": true
},
"show-recents": {
"type": "switch",
"default": true,
"description": "Show recents",
"tooltip": "Choose whether or not to show recents in the menu.",
"value": true
},
"enable-autoscroll": {
"type": "switch",
"default": true,
"description": "Enable autoscrolling in application list",
"tooltip": "Choose whether or not to enable smooth autoscrolling in the application list.",
"value": true
},
"search-filesystem": {
"type": "switch",
"default": false,
"description": "Enable filesystem path entry in search box",
"tooltip": "Allows path entry in the menu search box.",
"value": false
},
"force-show-panel": {
"type": "switch",
"default": true,
"description": "Force the panel to be visible when opening the menu",
"tooltip": "Opening the menu will also show the main panel (which may be auto-hidden).",
"value": true
},
"activate-on-hover": {
"type": "switch",
"default": false,
"description": "Open the menu when I move my mouse over it",
"tooltip": "Enable opening the menu when the mouse enters the applet",
"value": false
},
"hover-delay": {
"type": "spinbutton",
"default": 0,
"min": 0,
"max": 1000,
"step": 50,
"units": "milliseconds",
"dependency": "activate-on-hover",
"description": "Menu hover delay",
"tooltip": "Delay before the menu opens when hovered",
"value": 0
},
"enable-animation": {
"type": "switch",
"default": false,
"description": "Use menu animations",
"tooltip": "Allow the menu to animate on open and close",
"value": false
},
"menu-editor-button": {
"type": "button",
"description": "Open the menu editor",
"callback": "_launch_editor",
"tooltip": "Press this button to customize your menu entries."
},
"__md5__": "c4b27da93411965126569249b61793d7"
}

View File

@@ -0,0 +1,8 @@
[Desktop Entry]
Name=opiwiz
Exec=sudo opiwiz
Icon=org.orangepi.opiwiz
Terminal=false
Type=Application
Categories=GTK;
StartupNotify=true

View File

@@ -0,0 +1,12 @@
[Desktop Entry]
Encoding=UTF-8
Version=0.9.4
Type=Application
Name=Pulse audio pasystray
Comment=pasystray
Exec=pasystray
OnlyShowIn=XFCE;
StartupNotify=false
Terminal=false
Hidden=false

Binary file not shown.

View File

@@ -0,0 +1,19 @@
<!DOCTYPE Menu PUBLIC "-//freedesktop//DTD Menu 1.0//EN"
"http://www.freedesktop.org/standards/menu-spec/menu-1.0.dtd">
<!-- Do not edit manually - generated and managed by xdg-desktop-menu -->
<Menu>
<Name>Applications</Name>
<Menu>
<Name>xfce-accessories</Name>
<Directory>xfce-accessories.directory</Directory>
<Include>
<Filename>thunar-bulk-rename.desktop</Filename>
<Filename>dbx_preference.desktop</Filename>
<Filename>DockX.desktop</Filename>
<Filename>xfce4-appfinder.desktop</Filename>
<Filename>mc.desktop</Filename>
<Filename>mcedit.desktop</Filename>
<Filename>fcitx.desktop</Filename>
</Include>
</Menu>
</Menu>

View File

@@ -0,0 +1,17 @@
<!DOCTYPE Menu PUBLIC "-//freedesktop//DTD Menu 1.0//EN"
"http://www.freedesktop.org/standards/menu-spec/menu-1.0.dtd">
<!-- Do not edit manually - generated and managed by xdg-desktop-menu -->
<Menu>
<Name>Applications</Name>
<Menu>
<Name>xfce-multimedia</Name>
<Directory>xfce-multimedia.directory</Directory>
<Include>
<Filename>pasystray.desktop</Filename>
<Filename>pavucontrol.desktop</Filename>
<Filename>pavucontrol-qt.desktop</Filename>
<Filename>pavumeter-record.desktop</Filename>
<Filename>pavumeter.desktop</Filename>
</Include>
</Menu>
</Menu>

View File

@@ -0,0 +1,14 @@
<!DOCTYPE Menu PUBLIC "-//freedesktop//DTD Menu 1.0//EN"
"http://www.freedesktop.org/standards/menu-spec/menu-1.0.dtd">
<!-- Do not edit manually - generated and managed by xdg-desktop-menu -->
<Menu>
<Name>Applications</Name>
<Menu>
<Name>xfce-network</Name>
<Directory>xfce-network.directory</Directory>
<Include>
<Filename>xfce4-web-browser.desktop</Filename>
<Filename>xfce4-mail-reader.desktop</Filename>
</Include>
</Menu>
</Menu>

View File

@@ -0,0 +1,13 @@
<!DOCTYPE Menu PUBLIC "-//freedesktop//DTD Menu 1.0//EN"
"http://www.freedesktop.org/standards/menu-spec/menu-1.0.dtd">
<!-- Do not edit manually - generated and managed by xdg-desktop-menu -->
<Menu>
<Name>Applications</Name>
<Menu>
<Name>xfce-settings</Name>
<Directory>xfce-settings.directory</Directory>
<Include>
<Filename>software-properties-drivers.desktop</Filename>
</Include>
</Menu>
</Menu>

View File

@@ -0,0 +1,15 @@
<!DOCTYPE Menu PUBLIC "-//freedesktop//DTD Menu 1.0//EN"
"http://www.freedesktop.org/standards/menu-spec/menu-1.0.dtd">
<!-- Do not edit manually - generated and managed by xdg-desktop-menu -->
<Menu>
<Name>Applications</Name>
<Menu>
<Name>xfce-system</Name>
<Directory>xfce-system.directory</Directory>
<Include>
<Filename>debian-xterm.desktop</Filename>
<Filename>debian-uxterm.desktop</Filename>
<Filename>system-config-printer.desktop</Filename>
</Include>
</Menu>
</Menu>

View File

@@ -0,0 +1 @@
applications-merged

View File

@@ -0,0 +1,242 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE Menu
PUBLIC '-//freedesktop//DTD Menu 1.0//EN'
'http://standards.freedesktop.org/menu-spec/menu-1.0.dtd'>
<Menu>
<Name>Xfce</Name>
<DefaultAppDirs />
<DefaultDirectoryDirs />
<DefaultMergeDirs />
<Include>
<Category>X-Xfce-Toplevel</Category>
</Include>
<MergeFile type="parent">/etc/xdg/menus/xfce-applications.menu</MergeFile>
<Menu>
<Name>Settings</Name>
<Directory>xfce-settings.directory</Directory>
<Menu>
<Name>Screensavers</Name>
<Directory>xfce-screensavers.directory</Directory>
<Layout>
<Merge type="menus" />
<Merge type="files" />
</Layout>
</Menu>
<Layout>
<Merge type="menus" />
<Filename>xfce-settings-manager.desktop</Filename>
<Separator />
<Filename>xfce4-accessibility-settings.desktop</Filename>
<Filename>software-properties-drivers.desktop</Filename>
<Filename>nm-connection-editor.desktop</Filename>
<Filename>xfce-ui-settings.desktop</Filename>
<Filename>blueman-adapters.desktop</Filename>
<Filename>blueman-manager.desktop</Filename>
<Filename>xfce4-color-settings.desktop</Filename>
<Filename>xfce4-mime-settings.desktop</Filename>
<Filename>xfce-backdrop-settings.desktop</Filename>
<Filename>xfce-display-settings.desktop</Filename>
<Filename>thunar-settings.desktop</Filename>
<Filename>xfce-keyboard-settings.desktop</Filename>
<Filename>menulibre.desktop</Filename>
<Filename>xfce-mouse-settings.desktop</Filename>
<Filename>xfce4-notifyd-config.desktop</Filename>
<Filename>orangepi-config.desktop</Filename>
<Filename>panel-preferences.desktop</Filename>
<Filename>xfce4-power-manager-settings.desktop</Filename>
<Filename>system-config-printer.desktop</Filename>
<Filename>thunar-volman-settings.desktop</Filename>
<Filename>xscreensaver-properties.desktop</Filename>
<Menuname>Screensavers</Menuname>
<Filename>xfce-session-settings.desktop</Filename>
<Filename>xfce4-settings-editor.desktop</Filename>
<Filename>software-properties-gtk.desktop</Filename>
<Filename>xfce-wm-settings.desktop</Filename>
<Filename>xfce-wmtweaks-settings.desktop</Filename>
<Filename>xfce-workspaces-settings.desktop</Filename>
<Filename>xfce4-terminal-settings.desktop</Filename>
<Filename>fcitx-configtool.desktop</Filename>
<Merge type="files" />
</Layout>
</Menu>
<Menu>
<Name>Accessories</Name>
<Directory>xfce-accessories.directory</Directory>
<DirectoryDir>/home/orangepi/.local/share/desktop-directories</DirectoryDir>
<Layout>
<Merge type="menus" />
<Filename>xfce4-about.desktop</Filename>
<Filename>xfce4-appfinder.desktop</Filename>
<Filename>thunar-bulk-rename.desktop</Filename>
<Filename>dbx_preference.desktop</Filename>
<Filename>DockX.desktop</Filename>
<Filename>xfce4-file-manager.desktop</Filename>
<Filename>org.gnome.font-viewer.desktop</Filename>
<Filename>menulibre.desktop</Filename>
<Filename>mousepad.desktop</Filename>
<Filename>xfce4-run.desktop</Filename>
<Filename>xfce4-screenshooter.desktop</Filename>
<Filename>xfce4-terminal-emulator.desktop</Filename>
<Filename>thunar.desktop</Filename>
<Filename>fcitx.desktop</Filename>
<Filename>fcitx-skin-installer.desktop</Filename>
<Filename>mc.desktop</Filename>
<Filename>mcedit.desktop</Filename>
<Merge type="files" />
</Layout>
</Menu>
<Menu>
<Name>Development</Name>
<Directory>xfce-development.directory</Directory>
<Layout>
<Merge type="menus" />
<Filename>geany.desktop</Filename>
<Filename>python3.9.desktop</Filename>
<Merge type="files" />
</Layout>
</Menu>
<Menu>
<Name>Education</Name>
<Directory>xfce-education.directory</Directory>
<Layout>
<Merge type="menus" />
<Merge type="files" />
</Layout>
</Menu>
<Menu>
<Name>Games</Name>
<Directory>xfce-games.directory</Directory>
<Layout>
<Merge type="menus" />
<Merge type="files" />
</Layout>
</Menu>
<Menu>
<Name>Graphics</Name>
<Directory>xfce-graphics.directory</Directory>
<Layout>
<Merge type="menus" />
<Filename>org.gnome.Evince.desktop</Filename>
<Filename>gimp.desktop</Filename>
<Filename>libreoffice-draw.desktop</Filename>
<Filename>org.gnome.Evince-previewer.desktop</Filename>
<Filename>viewnior.desktop</Filename>
<Merge type="files" />
</Layout>
</Menu>
<Menu>
<Name>Network</Name>
<Directory>xfce-network.directory</Directory>
<Layout>
<Merge type="menus" />
<Filename>firefox-esr.desktop</Filename>
<Filename>io.github.Hexchat.desktop</Filename>
<Filename>xfce4-mail-reader.desktop</Filename>
<Filename>remmina-file.desktop</Filename>
<Filename>org.remmina.Remmina.desktop</Filename>
<Filename>xfce4-web-browser.desktop</Filename>
<Filename>transmission-gtk.desktop</Filename>
<Merge type="files" />
</Layout>
</Menu>
<Menu>
<Name>Multimedia</Name>
<Directory>xfce-multimedia.directory</Directory>
<Layout>
<Merge type="menus" />
<Filename>mpv.desktop</Filename>
<Filename>pasystray.desktop</Filename>
<Filename>pavucontrol.desktop</Filename>
<Filename>pavucontrol-qt.desktop</Filename>
<Filename>pavumeter-record.desktop</Filename>
<Filename>pavumeter.desktop</Filename>
<Merge type="files" />
</Layout>
</Menu>
<Menu>
<Name>Office</Name>
<Directory>xfce-office.directory</Directory>
<Layout>
<Merge type="menus" />
<Filename>org.gnome.Evince.desktop</Filename>
<Filename>libreoffice-base.desktop</Filename>
<Filename>libreoffice-calc.desktop</Filename>
<Filename>libreoffice-draw.desktop</Filename>
<Filename>libreoffice-impress.desktop</Filename>
<Filename>libreoffice-math.desktop</Filename>
<Filename>libreoffice-writer.desktop</Filename>
<Filename>org.gnome.Evince-previewer.desktop</Filename>
<Merge type="files" />
</Layout>
</Menu>
<Menu>
<Name>Other</Name>
<Directory>xfce-other.directory</Directory>
<Include>
<Filename>panel-desktop-handler.desktop</Filename>
</Include>
<Include>
<Filename>libreoffice-xsltfilter.desktop</Filename>
</Include>
<Include>
<Filename>nm-applet.desktop</Filename>
</Include>
<Include>
<Filename>remmina-gnome.desktop</Filename>
</Include>
<Layout>
<Merge type="menus" />
<Filename>system-config-printer.desktop</Filename>
<Filename>panel-desktop-handler.desktop</Filename>
<Filename>libreoffice-xsltfilter.desktop</Filename>
<Filename>nm-applet.desktop</Filename>
<Filename>remmina-gnome.desktop</Filename>
<Merge type="files" />
</Layout>
</Menu>
<Menu>
<Name>System</Name>
<Directory>xfce-system.directory</Directory>
<Layout>
<Merge type="menus" />
<Filename>thunar-bulk-rename.desktop</Filename>
<Filename>gdebi.desktop</Filename>
<Filename>gparted.desktop</Filename>
<Filename>xfce4-session-logout.desktop</Filename>
<Filename>system-config-printer.desktop</Filename>
<Filename>lxtask.desktop</Filename>
<Filename>thunar.desktop</Filename>
<Filename>xfce4-terminal.desktop</Filename>
<Filename>fcitx.desktop</Filename>
<Filename>htop.desktop</Filename>
<Filename>mc.desktop</Filename>
<Filename>debian-uxterm.desktop</Filename>
<Filename>debian-xterm.desktop</Filename>
<Merge type="files" />
</Layout>
</Menu>
<Layout>
<Filename>xfce4-run.desktop</Filename>
<Separator />
<Filename>xfce4-terminal-emulator.desktop</Filename>
<Filename>xfce4-file-manager.desktop</Filename>
<Filename>xfce4-mail-reader.desktop</Filename>
<Filename>xfce4-web-browser.desktop</Filename>
<Separator />
<Menuname>Settings</Menuname>
<Separator />
<Filename>xfce4-about.desktop</Filename>
<Menuname>Accessories</Menuname>
<Menuname>Development</Menuname>
<Menuname>Education</Menuname>
<Menuname>Games</Menuname>
<Menuname>Graphics</Menuname>
<Menuname>Network</Menuname>
<Menuname>Multimedia</Menuname>
<Menuname>Office</Menuname>
<Menuname>Other</Menuname>
<Menuname>System</Menuname>
<Separator />
<Filename>xfce4-session-logout.desktop</Filename>
</Layout>
</Menu>

View File

@@ -0,0 +1,24 @@
[Configuration]
BackgroundMode=TERMINAL_BACKGROUND_TRANSPARENT
MiscAlwaysShowTabs=FALSE
MiscBell=FALSE
MiscBordersDefault=TRUE
MiscCursorBlinks=FALSE
MiscCursorShape=TERMINAL_CURSOR_SHAPE_BLOCK
MiscDefaultGeometry=80x24
MiscInheritGeometry=FALSE
MiscMenubarDefault=TRUE
MiscMouseAutohide=FALSE
MiscToolbarDefault=FALSE
MiscConfirmClose=TRUE
MiscCycleTabs=TRUE
MiscTabCloseButtons=TRUE
MiscTabCloseMiddleClick=TRUE
MiscTabPosition=GTK_POS_TOP
MiscHighlightUrls=TRUE
MiscScrollAlternateScreen=TRUE
BackgroundDarkness=0.940000
FontName=Monospace 10
ColorForeground=#5f5fffff0000
TitleInitial=OrangePi
ScrollingBar=TERMINAL_SCROLLBAR_NONE

View File

@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<channel name="thunar-volman" version="1.0">
<property name="automount-media" type="empty">
<property name="enabled" type="bool" value="true"/>
</property>
<property name="automount-drives" type="empty">
<property name="enabled" type="bool" value="true"/>
</property>
<property name="autobrowse" type="empty">
<property name="enabled" type="bool" value="true"/>
</property>
<property name="autoopen" type="empty">
<property name="enabled" type="empty"/>
</property>
</channel>

View File

@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<channel name="thunar" version="1.0">
<property name="last-view" type="string" value="ThunarIconView"/>
</channel>

View File

@@ -0,0 +1,122 @@
<?xml version="1.0" encoding="UTF-8"?>
<channel name="xfce4-desktop" version="1.0">
<property name="backdrop" type="empty">
<property name="screen0" type="empty">
<property name="monitor0" type="empty">
<property name="workspace0" type="empty">
<property name="color-style" type="int" value="0"/>
<property name="image-style" type="int" value="5"/>
<property name="image-path" type="string" value="/usr/share/backgrounds/orangepi/orangepi-default.png"/>
<property name="last-image" type="string" value="/usr/share/backgrounds/orangepi/orangepi-default.png"/>
</property>
<property name="workspace1" type="empty">
<property name="color-style" type="int" value="0"/>
<property name="image-style" type="int" value="5"/>
<property name="image-path" type="string" value="/usr/share/backgrounds/orangepi/orangepi-mountain.png"/>
<property name="last-image" type="string" value="/usr/share/backgrounds/orangepi/orangepi-mountain.png"/>
</property>
</property>
<property name="monitor1" type="empty">
<property name="workspace0" type="empty">
<property name="color-style" type="int" value="0"/>
<property name="image-style" type="int" value="5"/>
<property name="image-path" type="string" value="/usr/share/backgrounds/orangepi/orangepi-default.png"/>
<property name="last-image" type="string" value="/usr/share/backgrounds/orangepi/orangepi-default.png"/>
</property>
<property name="workspace1" type="empty">
<property name="color-style" type="int" value="0"/>
<property name="image-style" type="int" value="5"/>
<property name="image-path" type="string" value="/usr/share/backgrounds/orangepi/orangepi-mountain.png"/>
<property name="last-image" type="string" value="/usr/share/backgrounds/orangepi/orangepi-mountain.png"/>
</property>
</property>
<property name="monitorHDMI-1" type="empty">
<property name="workspace0" type="empty">
<property name="color-style" type="int" value="0"/>
<property name="image-style" type="int" value="5"/>
<property name="last-image" type="string" value="/usr/share/backgrounds/orangepi/orangepi-default.png"/>
</property>
<property name="workspace1" type="empty">
<property name="color-style" type="int" value="0"/>
<property name="image-style" type="int" value="5"/>
<property name="last-image" type="string" value="/usr/share/backgrounds/orangepi/orangepi-mountain.png"/>
</property>
</property>
<property name="monitoreDP-1" type="empty">
<property name="workspace0" type="empty">
<property name="color-style" type="int" value="0"/>
<property name="image-style" type="int" value="5"/>
<property name="last-image" type="string" value="/usr/share/backgrounds/orangepi/orangepi-default.png"/>
</property>
<property name="workspace1" type="empty">
<property name="color-style" type="int" value="0"/>
<property name="image-style" type="int" value="5"/>
<property name="last-image" type="string" value="/usr/share/backgrounds/orangepi/orangepi-mountain.png"/>
</property>
</property>
<property name="monitorDP-1" type="empty">
<property name="workspace0" type="empty">
<property name="color-style" type="int" value="0"/>
<property name="image-style" type="int" value="5"/>
<property name="last-image" type="string" value="/usr/share/backgrounds/orangepi/orangepi-default.png"/>
</property>
<property name="workspace1" type="empty">
<property name="color-style" type="int" value="0"/>
<property name="image-style" type="int" value="5"/>
<property name="last-image" type="string" value="/usr/share/backgrounds/orangepi/orangepi-mountain.png"/>
</property>
</property>
<property name="monitorDSI-1" type="empty">
<property name="workspace0" type="empty">
<property name="color-style" type="int" value="0"/>
<property name="image-style" type="int" value="5"/>
<property name="last-image" type="string" value="/usr/share/backgrounds/orangepi/orangepi-default.png"/>
</property>
<property name="workspace1" type="empty">
<property name="color-style" type="int" value="0"/>
<property name="image-style" type="int" value="5"/>
<property name="last-image" type="string" value="/usr/share/backgrounds/orangepi/orangepi-mountain.png"/>
</property>
</property>
<property name="monitorDSI-2" type="empty">
<property name="workspace0" type="empty">
<property name="color-style" type="int" value="0"/>
<property name="image-style" type="int" value="5"/>
<property name="last-image" type="string" value="/usr/share/backgrounds/orangepi/orangepi-default.png"/>
</property>
<property name="workspace1" type="empty">
<property name="color-style" type="int" value="0"/>
<property name="image-style" type="int" value="5"/>
<property name="last-image" type="string" value="/usr/share/backgrounds/orangepi/orangepi-mountain.png"/>
</property>
</property>
</property>
<property name="monitorVirtual-1" type="empty">
<property name="workspace0" type="empty">
<property name="color-style" type="int" value="0"/>
<property name="image-style" type="int" value="5"/>
<property name="last-image" type="string" value="/usr/share/backgrounds/orangepi/orangepi-default.png"/>
</property>
<property name="workspace1" type="empty">
<property name="color-style" type="int" value="0"/>
<property name="image-style" type="int" value="5"/>
<property name="last-image" type="string" value="/usr/share/backgrounds/orangepi/orangepi-mountain.png"/>
</property>
</property>
<property name="single-workspace-mode" type="bool" value="false"/>
</property>
<property name="desktop-icons" type="empty">
<property name="icon-size" type="uint" value="32"/>
<property name="file-icons" type="empty">
<property name="show-home" type="bool" value="true"/>
<property name="show-filesystem" type="bool" value="true"/>
<property name="show-trash" type="bool" value="true"/>
<property name="show-removable" type="bool" value="false"/>
</property>
</property>
<property name="last" type="empty">
<property name="window-width" type="int" value="638"/>
<property name="window-height" type="int" value="508"/>
</property>
</channel>

View File

@@ -0,0 +1,148 @@
<?xml version="1.0" 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="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="XF86Mail" type="empty"/>
</property>
<property name="custom" type="empty">
<property name="&lt;Alt&gt;F1" type="string" value="xfce4-popup-applicationsmenu"/>
<property name="&lt;Alt&gt;F3" type="string" value="xfce4-appfinder"/>
<property name="&lt;Alt&gt;F2" type="string" value="xfce4-appfinder --collapsed"/>
<property name="&lt;Primary&gt;&lt;Alt&gt;Delete" type="string" value="xflock4"/>
<property name="XF86Mail" type="string" value="exo-open --launch MailReader"/>
<property name="XF86Display" type="string" value="xfce4-display-settings --minimal"/>
<property name="XF86WWW" type="string" value="exo-open --launch WebBrowser"/>
<property name="&lt;Super&gt;p" type="string" value="xfce4-display-settings --minimal"/>
<property name="&lt;Primary&gt;Escape" type="string" value="xfdesktop --menu"/>
<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;Control&gt;&lt;Alt&gt;Down" type="empty"/>
<property name="&lt;Control&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;Control&gt;&lt;Shift&gt;&lt;Alt&gt;Left" type="empty"/>
<property name="&lt;Alt&gt;&lt;Control&gt;End" type="empty"/>
<property name="&lt;Alt&gt;&lt;Control&gt;Home" type="empty"/>
<property name="&lt;Control&gt;&lt;Shift&gt;&lt;Alt&gt;Right" type="empty"/>
<property name="&lt;Control&gt;&lt;Shift&gt;&lt;Alt&gt;Up" type="empty"/>
<property name="&lt;Alt&gt;&lt;Control&gt;KP_1" type="empty"/>
<property name="&lt;Alt&gt;&lt;Control&gt;KP_2" type="empty"/>
<property name="&lt;Alt&gt;&lt;Control&gt;KP_3" type="empty"/>
<property name="&lt;Alt&gt;&lt;Control&gt;KP_4" type="empty"/>
<property name="&lt;Alt&gt;&lt;Control&gt;KP_5" type="empty"/>
<property name="&lt;Alt&gt;&lt;Control&gt;KP_6" type="empty"/>
<property name="&lt;Alt&gt;&lt;Control&gt;KP_7" type="empty"/>
<property name="&lt;Alt&gt;&lt;Control&gt;KP_8" type="empty"/>
<property name="&lt;Alt&gt;&lt;Control&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;Control&gt;&lt;Alt&gt;Right" type="empty"/>
<property name="&lt;Control&gt;&lt;Alt&gt;d" type="empty"/>
<property name="&lt;Control&gt;&lt;Alt&gt;Up" type="empty"/>
<property name="&lt;Super&gt;Tab" type="empty"/>
<property name="&lt;Control&gt;F1" type="empty"/>
<property name="&lt;Control&gt;F2" type="empty"/>
<property name="&lt;Control&gt;F3" type="empty"/>
<property name="&lt;Control&gt;F4" type="empty"/>
<property name="&lt;Control&gt;F5" type="empty"/>
<property name="&lt;Control&gt;F6" type="empty"/>
<property name="&lt;Control&gt;F7" type="empty"/>
<property name="&lt;Control&gt;F8" type="empty"/>
<property name="&lt;Control&gt;F9" type="empty"/>
<property name="&lt;Control&gt;F10" type="empty"/>
<property name="&lt;Control&gt;F11" type="empty"/>
<property name="&lt;Control&gt;F12" type="empty"/>
</property>
<property name="custom" type="empty">
<property name="&lt;Control&gt;F3" type="string" value="workspace_3_key"/>
<property name="&lt;Control&gt;F4" type="string" value="workspace_4_key"/>
<property name="&lt;Control&gt;F5" type="string" value="workspace_5_key"/>
<property name="&lt;Control&gt;F6" type="string" value="workspace_6_key"/>
<property name="&lt;Control&gt;F7" type="string" value="workspace_7_key"/>
<property name="&lt;Control&gt;F8" type="string" value="workspace_8_key"/>
<property name="&lt;Control&gt;F9" type="string" value="workspace_9_key"/>
<property name="&lt;Alt&gt;Tab" type="string" value="cycle_windows_key"/>
<property name="&lt;Control&gt;&lt;Alt&gt;Right" type="string" value="right_workspace_key"/>
<property name="Left" type="string" value="left_key"/>
<property name="&lt;Control&gt;&lt;Alt&gt;d" type="string" value="show_desktop_key"/>
<property name="&lt;Control&gt;&lt;Shift&gt;&lt;Alt&gt;Left" type="string" value="move_window_left_key"/>
<property name="&lt;Control&gt;&lt;Shift&gt;&lt;Alt&gt;Right" type="string" value="move_window_right_key"/>
<property name="Up" type="string" value="up_key"/>
<property name="&lt;Alt&gt;F4" type="string" value="close_window_key"/>
<property name="&lt;Alt&gt;F6" type="string" value="stick_window_key"/>
<property name="&lt;Control&gt;&lt;Alt&gt;Down" type="string" value="down_workspace_key"/>
<property name="&lt;Alt&gt;F7" type="string" value="move_window_key"/>
<property name="&lt;Alt&gt;F9" type="string" value="hide_window_key"/>
<property name="&lt;Alt&gt;F11" type="string" value="fullscreen_key"/>
<property name="&lt;Alt&gt;F8" type="string" value="resize_window_key"/>
<property name="&lt;Super&gt;Tab" type="string" value="switch_window_key"/>
<property name="Escape" type="string" value="cancel_key"/>
<property name="&lt;Alt&gt;&lt;Control&gt;KP_1" type="string" value="move_window_workspace_1_key"/>
<property name="&lt;Alt&gt;&lt;Control&gt;KP_2" type="string" value="move_window_workspace_2_key"/>
<property name="&lt;Alt&gt;&lt;Control&gt;KP_3" type="string" value="move_window_workspace_3_key"/>
<property name="&lt;Alt&gt;&lt;Control&gt;KP_4" type="string" value="move_window_workspace_4_key"/>
<property name="&lt;Alt&gt;&lt;Control&gt;KP_5" type="string" value="move_window_workspace_5_key"/>
<property name="&lt;Alt&gt;&lt;Control&gt;KP_6" type="string" value="move_window_workspace_6_key"/>
<property name="Down" type="string" value="down_key"/>
<property name="&lt;Control&gt;&lt;Shift&gt;&lt;Alt&gt;Up" type="string" value="move_window_up_key"/>
<property name="&lt;Shift&gt;&lt;Alt&gt;Page_Down" type="string" value="lower_window_key"/>
<property name="&lt;Alt&gt;F12" type="string" value="above_key"/>
<property name="&lt;Alt&gt;&lt;Control&gt;KP_8" type="string" value="move_window_workspace_8_key"/>
<property name="&lt;Alt&gt;&lt;Control&gt;KP_9" type="string" value="move_window_workspace_9_key"/>
<property name="Right" type="string" value="right_key"/>
<property name="&lt;Alt&gt;F10" type="string" value="maximize_window_key"/>
<property name="&lt;Control&gt;&lt;Alt&gt;Up" type="string" value="up_workspace_key"/>
<property name="&lt;Control&gt;F10" type="string" value="workspace_10_key"/>
<property name="&lt;Alt&gt;&lt;Control&gt;KP_7" type="string" value="move_window_workspace_7_key"/>
<property name="&lt;Alt&gt;&lt;Control&gt;End" type="string" value="move_window_next_workspace_key"/>
<property name="&lt;Alt&gt;Delete" type="string" value="del_workspace_key"/>
<property name="&lt;Control&gt;&lt;Alt&gt;Left" type="string" value="left_workspace_key"/>
<property name="&lt;Control&gt;F12" type="string" value="workspace_12_key"/>
<property name="&lt;Alt&gt;space" type="string" value="popup_menu_key"/>
<property name="&lt;Alt&gt;&lt;Shift&gt;Tab" type="string" value="cycle_reverse_windows_key"/>
<property name="&lt;Shift&gt;&lt;Alt&gt;Page_Up" type="string" value="raise_window_key"/>
<property name="&lt;Alt&gt;Insert" type="string" value="add_workspace_key"/>
<property name="&lt;Alt&gt;&lt;Control&gt;Home" type="string" value="move_window_prev_workspace_key"/>
<property name="&lt;Control&gt;F2" type="string" value="workspace_2_key"/>
<property name="&lt;Control&gt;F1" type="string" value="workspace_1_key"/>
<property name="&lt;Control&gt;F11" type="string" value="workspace_11_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,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<channel name="xfce4-notifyd" version="1.0">
<property name="notify-location" type="uint" value="2"/>
<property name="theme" type="string" value="Numix"/>
<property name="expire-timeout" type="int" value="5"/>
</channel>

View File

@@ -0,0 +1,74 @@
<?xml version="1.0" 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"/>
<property name="panel-1" type="empty">
<property name="position" type="string" value="p=8;x=960;y=1059"/>
<property name="length" type="uint" value="100"/>
<property name="position-locked" type="bool" value="true"/>
<property name="size" type="uint" value="40"/>
<property name="plugin-ids" type="array">
<value type="int" value="7"/>
<value type="int" value="4"/>
<value type="int" value="3"/>
<value type="int" value="15"/>
<value type="int" value="6"/>
<value type="int" value="8"/>
<value type="int" value="2"/>
<value type="int" value="1"/>
<value type="int" value="11"/>
<value type="int" value="12"/>
</property>
<property name="leave-opacity" type="uint" value="100"/>
<property name="icon-size" type="uint" value="16"/>
</property>
<property name="dark-mode" type="bool" value="false"/>
</property>
<property name="plugins" type="empty">
<property name="plugin-15" type="string" value="separator">
<property name="expand" type="bool" value="true"/>
<property name="style" type="uint" value="0"/>
</property>
<property name="plugin-7" type="string" value="zorinmenulite"/>
<property name="plugin-11" type="string" value="separator">
<property name="style" type="uint" value="0"/>
</property>
<property name="plugin-12" type="string" value="clock">
<property name="tooltip-format" type="string" value="%A %d %B %Y"/>
<property name="digital-format" type="string" value="%a %R"/>
</property>
<property name="plugin-1" type="string" value="pulseaudio">
<property name="enable-keyboard-shortcuts" type="bool" value="true"/>
</property>
<property name="plugin-2" type="string" value="power-manager-plugin"/>
<property name="plugin-4" type="string" value="separator">
<property name="style" type="uint" value="0"/>
</property>
<property name="plugin-6" type="string" value="notification-plugin"/>
<property name="plugin-8" type="string" value="systray">
<property name="known-legacy-items" type="array">
<value type="string" value="xfce4-power-manager"/>
<value type="string" value="blueman-tray"/>
<value type="string" value="pasystray"/>
<value type="string" value="networkmanager applet"/>
</property>
<property name="known-items" type="array">
<value type="string" value="blueman"/>
<value type="string" value="pasystray"/>
</property>
<property name="hidden-legacy-items" type="array">
<value type="string" value="blueman-tray"/>
<value type="string" value="pasystray"/>
</property>
<property name="hidden-items" type="array">
<value type="string" value="blueman"/>
<value type="string" value="pasystray"/>
</property>
</property>
<property name="plugin-3" type="string" value="dockbarx">
<property name="block-autohide" type="bool" value="false"/>
</property>
</property>
</channel>

View File

@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<channel name="xfce4-power-manager" version="1.0">
<property name="xfce4-power-manager" type="empty">
<property name="power-button-action" type="empty"/>
<property name="brightness-switch-restore-on-exit" type="int" value="-1"/>
<property name="brightness-switch" type="int" value="0"/>
<property name="show-tray-icon" type="int" value="1"/>
<property name="lid-action-on-battery" type="uint" value="1"/>
<property name="logind-handle-lid-switch" type="bool" value="false"/>
<property name="lid-action-on-ac" type="uint" value="0"/>
<property name="inactivity-sleep-mode-on-battery" type="uint" value="1"/>
<property name="sleep-button-action" type="uint" value="1"/>
<property name="hibernate-button-action" type="uint" value="1"/>
<property name="lock-screen-suspend-hibernate" type="bool" value="false"/>
<property name="critical-power-action" type="uint" value="4"/>
<property name="critical-power-level" type="uint" value="5"/>
</property>
</channel>

View File

@@ -0,0 +1,33 @@
<?xml version="1.0" encoding="UTF-8"?>
<channel name="xfce4-session" version="1.0">
<property name="general" type="empty">
<property name="FailsafeSessionName" type="empty"/>
<property name="SessionName" type="string" value="Default"/>
<property name="SaveOnExit" type="bool" value="false"/>
</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="empty"/>
<property name="Client0_PerScreen" type="empty"/>
<property name="Client1_Command" type="empty"/>
<property name="Client1_PerScreen" type="empty"/>
<property name="Client2_Command" type="empty"/>
<property name="Client2_PerScreen" type="empty"/>
<property name="Client3_Command" type="empty"/>
<property name="Client3_PerScreen" type="empty"/>
<property name="Client4_Command" type="empty"/>
<property name="Client4_PerScreen" type="empty"/>
</property>
</property>
<property name="splash" type="empty">
<property name="Engine" type="empty"/>
</property>
<property name="shutdown" type="empty">
<property name="ShowLogout" type="bool" value="true"/>
<property name="ShowHibernate" type="bool" value="false"/>
<property name="ShowSuspend" type="bool" value="true"/>
</property>
</channel>

View File

@@ -0,0 +1,80 @@
<?xml version="1.0" encoding="UTF-8"?>
<channel name="xfwm4" version="1.0">
<property name="general" type="empty">
<property name="activate_action" type="string" value="bring"/>
<property name="borderless_maximize" type="bool" value="true"/>
<property name="box_move" type="bool" value="true"/>
<property name="box_resize" type="bool" value="true"/>
<property name="button_layout" type="string" value="O|SHMC"/>
<property name="button_offset" type="int" value="0"/>
<property name="button_spacing" type="int" value="0"/>
<property name="click_to_focus" type="bool" value="true"/>
<property name="focus_delay" type="int" value="250"/>
<property name="cycle_apps_only" type="bool" value="false"/>
<property name="cycle_draw_frame" type="bool" value="true"/>
<property name="cycle_hidden" type="bool" value="true"/>
<property name="cycle_minimum" type="bool" value="true"/>
<property name="cycle_workspaces" type="bool" value="false"/>
<property name="double_click_time" type="int" value="250"/>
<property name="double_click_distance" type="int" value="5"/>
<property name="double_click_action" type="string" value="maximize"/>
<property name="easy_click" type="string" value="Alt"/>
<property name="focus_hint" type="bool" value="true"/>
<property name="focus_new" type="bool" value="true"/>
<property name="frame_opacity" type="int" value="100"/>
<property name="full_width_title" type="bool" value="true"/>
<property name="inactive_opacity" type="int" value="100"/>
<property name="maximized_offset" type="int" value="0"/>
<property name="move_opacity" type="int" value="100"/>
<property name="placement_ratio" type="int" value="20"/>
<property name="placement_mode" type="string" value="center"/>
<property name="popup_opacity" type="int" value="100"/>
<property name="mousewheel_rollup" type="bool" value="true"/>
<property name="prevent_focus_stealing" type="bool" value="false"/>
<property name="raise_delay" type="int" value="250"/>
<property name="raise_on_click" type="bool" value="true"/>
<property name="raise_on_focus" type="bool" value="false"/>
<property name="raise_with_any_button" type="bool" value="true"/>
<property name="repeat_urgent_blink" type="bool" value="false"/>
<property name="resize_opacity" type="int" value="100"/>
<property name="restore_on_move" type="bool" value="true"/>
<property name="scroll_workspaces" type="bool" value="true"/>
<property name="shadow_delta_height" type="int" value="0"/>
<property name="shadow_delta_width" type="int" value="0"/>
<property name="shadow_delta_x" type="int" value="0"/>
<property name="shadow_delta_y" type="int" value="-3"/>
<property name="shadow_opacity" type="int" value="50"/>
<property name="show_app_icon" type="bool" value="false"/>
<property name="show_dock_shadow" type="bool" value="true"/>
<property name="show_frame_shadow" type="bool" value="true"/>
<property name="show_popup_shadow" type="bool" value="true"/>
<property name="snap_resist" type="bool" value="false"/>
<property name="snap_to_border" type="bool" value="true"/>
<property name="snap_to_windows" type="bool" value="false"/>
<property name="snap_width" type="int" value="10"/>
<property name="theme" type="string" value="Arc-Lighter"/>
<property name="tile_on_move" type="bool" value="true"/>
<property name="title_alignment" type="string" value="center"/>
<property name="title_font" type="string" value="Sans Bold 9"/>
<property name="title_horizontal_offset" type="int" value="0"/>
<property name="title_shadow_active" type="string" value="false"/>
<property name="title_shadow_inactive" type="string" value="false"/>
<property name="title_vertical_offset_active" type="int" value="0"/>
<property name="title_vertical_offset_inactive" type="int" value="0"/>
<property name="toggle_workspaces" type="bool" value="false"/>
<property name="unredirect_overlays" type="bool" value="true"/>
<property name="urgent_blink" type="bool" value="false"/>
<property name="use_compositing" type="bool" value="true"/>
<property name="workspace_count" type="int" value="2"/>
<property name="wrap_cycle" type="bool" value="true"/>
<property name="workspace_names" type="array">
<value type="string" value="Workspace 1"/>
<value type="string" value="Workspace 2"/>
</property>
<property name="wrap_layout" type="bool" value="true"/>
<property name="wrap_resistance" type="int" value="10"/>
<property name="wrap_windows" type="bool" value="true"/>
<property name="wrap_workspaces" type="bool" value="false"/>
</property>
</channel>

View File

@@ -0,0 +1,37 @@
<?xml version="1.0" encoding="UTF-8"?>
<channel name="xsettings" version="1.0">
<property name="Net" type="empty">
<property name="ThemeName" type="string" value="Arc-Lighter"/>
<property name="IconThemeName" type="string" value="Papirus-Light"/>
<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="int" value="1"/>
<property name="Hinting" type="empty"/>
<property name="HintStyle" type="string" value="hintfull"/>
<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="empty"/>
<property name="IconSizes" type="empty"/>
<property name="KeyThemeName" type="empty"/>
<property name="ToolbarStyle" type="empty"/>
<property name="ToolbarIconSize" type="empty"/>
<property name="MenuImages" type="empty"/>
<property name="ButtonImages" type="empty"/>
<property name="MenuBarAccel" type="empty"/>
<property name="CursorThemeName" type="empty"/>
<property name="CursorThemeSize" type="empty"/>
</property>
</channel>

View File

@@ -0,0 +1,11 @@
[Desktop Entry]
Version=1.1
Type=Application
Name=DockX
GenericName=Dock for DockbarX
NoDisplay=true
Comment=Stand-alone dock for DockbarX
Icon=dockbarx
Exec=dockx
Actions=
Categories=Utility;

View File

@@ -0,0 +1,11 @@
[Desktop Entry]
Version=1.1
Type=Application
Name=DockbarX Preference
GenericName=Preference Dialog
NoDisplay=true
Comment=Preference dialog for DockbarX
Icon=dockbarx
Exec=dbx_preference
Actions=
Categories=Utility;

View File

@@ -0,0 +1,11 @@
[Desktop Entry]
Version=1.1
Type=Application
Name=UXTerm
NoDisplay=true
Comment=xterm wrapper for Unicode environments
Icon=mini.xterm
Exec=uxterm
Actions=
Categories=System;TerminalEmulator;
Keywords=shell;prompt;command;commandline;cmd;

View File

@@ -0,0 +1,11 @@
[Desktop Entry]
Version=1.1
Type=Application
Name=XTerm
NoDisplay=true
Comment=standard terminal emulator for the X window system
Icon=mini.xterm
Exec=xterm
Actions=
Categories=System;TerminalEmulator;
Keywords=shell;prompt;command;commandline;cmd;

View File

@@ -0,0 +1,11 @@
[Desktop Entry]
Version=1.1
Type=Application
Name=Fcitx
GenericName=Input Method
NoDisplay=true
Comment=Start Input Method
Icon=fcitx
Exec=fcitx
Actions=
Categories=System;Utility;

View File

@@ -0,0 +1,12 @@
[Desktop Entry]
Version=1.1
Type=Application
Name=Midnight Commander
NoDisplay=true
Comment=File manager
Icon=MidnightCommander
Exec=mc
Terminal=true
Actions=
Categories=ConsoleOnly;FileManager;FileTools;System;Utility;
Keywords=file manager;console;

View File

@@ -0,0 +1,12 @@
[Desktop Entry]
Version=1.1
Type=Application
Name=Midnight Commander editor
NoDisplay=true
Comment=Edit text files
Icon=MidnightCommander
Exec=mcedit
Terminal=true
Actions=
Categories=TextEditor;Utility;
Keywords=editor;console;text;

View File

@@ -0,0 +1,11 @@
[Desktop Entry]
Version=1.0
Type=Application
Name=orangepi-config
Comment=Basic system settings
Exec=sudo orangepi-config
Icon=/usr/share/icons/orangepi/opi_config128x128.png
Path=/usr/share/icons/orangepi/
Terminal=true
StartupNotify=false
Categories=GTK;GNOME;Settings;HardwareSettings;

View File

@@ -0,0 +1,12 @@
[Desktop Entry]
Version=1.1
Type=Application
Name=PulseAudio System Tray
NoDisplay=true
Comment=An Applet for PulseAudio
Icon=pasystray
Exec=pasystray
Actions=
Categories=Audio;AudioVideo;
Keywords=pulseaudio;tray;system tray;applet;volume;
StartupNotify=true

View File

@@ -0,0 +1,12 @@
[Desktop Entry]
Version=1.1
Type=Application
Name=PulseAudio Volume Control
GenericName=Volume Control
NoDisplay=true
Comment=Adjust the volume level
Icon=multimedia-volume-control
Exec=pavucontrol-qt
Actions=
Categories=Audio;AudioVideo;Mixer;Qt;
StartupNotify=true

View File

@@ -0,0 +1,12 @@
[Desktop Entry]
Version=1.1
Type=Application
Name=PulseAudio Volume Control
GenericName=Volume Control
NoDisplay=true
Comment=Adjust the volume level
Icon=multimedia-volume-control
Exec=pavucontrol
Actions=
Categories=Audio;AudioVideo;GTK;Mixer;
StartupNotify=true

View File

@@ -0,0 +1,12 @@
[Desktop Entry]
Version=1.1
Type=Application
Name=PulseAudio Volume Meter (Capture)
GenericName=Capture Volume Meter
NoDisplay=true
Comment=Monitor the input volume
Icon=audio-input-microphone
Exec=pavumeter --record
Actions=
Categories=Audio;AudioVideo;
StartupNotify=true

View File

@@ -0,0 +1,12 @@
[Desktop Entry]
Version=1.1
Type=Application
Name=PulseAudio Volume Meter (Playback)
GenericName=Playback Volume Meter
NoDisplay=true
Comment=Monitor the output volume
Icon=audio-input-microphone
Exec=pavumeter
Actions=
Categories=Audio;AudioVideo;
StartupNotify=true

View File

@@ -0,0 +1,12 @@
[Desktop Entry]
Version=1.1
Type=Application
Name=Additional Drivers
NoDisplay=true
Comment=Configure third-party and proprietary drivers
Icon=jockey
NotShowIn=GNOME;Unity;KDE;
Exec=/usr/bin/software-properties-gtk --open-tab=4
Actions=
Categories=GTK;HardwareSettings;Settings;X-XFCE;
Keywords=Drivers;

View File

@@ -0,0 +1,11 @@
[Desktop Entry]
Version=1.1
Type=Application
Name=Print Settings
GenericName=Print Settings
Comment=Configure printers
Icon=printer
Exec=system-config-printer
Actions=
Categories=GTK;HardwareSettings;Printing;Settings;
StartupNotify=true

View File

@@ -0,0 +1,13 @@
[Desktop Entry]
Version=1.1
Type=Application
Name=Bulk Rename
GenericName=Bulk Rename
NoDisplay=true
Comment=Rename Multiple Files
Icon=org.xfce.thunar
Exec=thunar --bulk-rename %F
Actions=
Categories=Core;Filesystem;GTK;System;Utility;
Keywords=bulk;renamer;renaming;thunar;files;folders;directory;directories;
StartupNotify=true

View File

@@ -0,0 +1,12 @@
[Desktop Entry]
Version=1.1
Type=Application
Name=Application Finder
NoDisplay=true
Comment=Find and launch applications installed on your system
Icon=org.xfce.appfinder
Exec=xfce4-appfinder
Actions=
Categories=Utility;X-XFCE;
Keywords=program;applications;bookmarks;
StartupNotify=true

View File

@@ -0,0 +1,111 @@
const Cinnamon = imports.gi.Cinnamon;
const CMenu = imports.gi.CMenu;
const Util = imports.misc.util;
let appsys = Cinnamon.AppSystem.get_default();
// sort apps by their latinised name
function appSort(a, b) {
a = Util.latinise(a[0].get_name().toLowerCase());
b = Util.latinise(b[0].get_name().toLowerCase());
return a > b;
}
// sort cmenu directories with admin and prefs categories last
function dirSort(a, b) {
let menuIdA = a.get_menu_id().toLowerCase();
let menuIdB = b.get_menu_id().toLowerCase();
let prefCats = ["administration", "preferences"];
let prefIdA = prefCats.indexOf(menuIdA);
let prefIdB = prefCats.indexOf(menuIdB);
if (prefIdA < 0 && prefIdB >= 0) {
return -1;
}
if (prefIdA >= 0 && prefIdB < 0) {
return 1;
}
let nameA = a.get_name().toLowerCase();
let nameB = b.get_name().toLowerCase();
if (nameA > nameB) {
return 1;
}
if (nameA < nameB) {
return -1;
}
return 0;
}
/* returns all apps and the categories they belong to, and all top level categories
*
* [
* [
* app 1,
* [
* top level category 1,
* random category,
* random category
* ]
* ],
* ...
* ],
* [
* top level category 1,
* top level category 2,
* top level category 3,
* top level category 4,
* ...
* ] */
function getApps() {
let apps = new Map();
let dirs = [];
let tree = appsys.get_tree();
let root = tree.get_root_directory();
let iter = root.iter();
let nextType;
while ((nextType = iter.next()) != CMenu.TreeItemType.INVALID) {
if (nextType == CMenu.TreeItemType.DIRECTORY) {
let dir = iter.get_directory();
if (dir.get_is_nodisplay())
continue;
if (loadDirectory(dir, dir, apps))
dirs.push(dir);
}
}
dirs.sort(dirSort);
let sortedApps = Array.from(apps.entries()).sort(appSort);
return [sortedApps, dirs];
}
// load all apps and their categories from a cmenu directory
// into 'apps' Map
function loadDirectory(dir, top_dir, apps) {
let iter = dir.iter();
let has_entries = false;
let nextType;
while ((nextType = iter.next()) != CMenu.TreeItemType.INVALID) {
if (nextType == CMenu.TreeItemType.ENTRY) {
let desktopId = iter.get_entry().get_desktop_file_id();
let app = appsys.lookup_app(desktopId);
if (!app || app.get_nodisplay())
continue;
has_entries = true;
if (apps.has(app))
apps.get(app).push(dir.get_menu_id());
else
apps.set(app, [top_dir.get_menu_id()]);
} else if (nextType == CMenu.TreeItemType.DIRECTORY) {
has_entries = loadDirectory(iter.get_directory(), top_dir, apps);
}
}
return has_entries;
}

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,7 @@
{
"uuid": "menu@cinnamon.org",
"name": "Menu",
"description": "Main Cinnamon menu",
"icon": "applications-other",
"max-instances": -1
}

View File

@@ -0,0 +1,258 @@
{
"layout": {
"type": "layout",
"pages": [
"panel",
"menu"
],
"panel": {
"type": "page",
"title": "Panel",
"sections": [
"panel-appear",
"panel-behave"
]
},
"menu": {
"type": "page",
"title": "Menu",
"sections": [
"menu-layout",
"menu-behave"
]
},
"panel-appear": {
"type": "section",
"title": "Appearance",
"keys": [
"menu-custom",
"menu-icon",
"menu-icon-size",
"menu-label"
]
},
"panel-behave": {
"type": "section",
"title": "Behavior",
"keys": [
"overlay-key",
"activate-on-hover",
"hover-delay",
"force-show-panel",
"enable-animation"
]
},
"menu-layout": {
"type": "section",
"title": "Layout and content",
"keys": [
"show-category-icons",
"category-icon-size",
"show-application-icons",
"application-icon-size",
"favbox-show",
"fav-icon-size",
"favbox-min-height",
"show-places",
"show-recents",
"menu-editor-button"
]
},
"menu-behave": {
"type": "section",
"title": "Behavior",
"keys": [
"enable-autoscroll",
"search-filesystem"
]
}
},
"overlay-key": {
"type": "keybinding",
"description": "Keyboard shortcut to open and close the menu",
"default": "Super_L::Super_R",
"value": "Super_L::Super_R"
},
"menu-custom": {
"type": "switch",
"default": false,
"description": "Use a custom icon and label",
"tooltip": "Check this to specify a custom icon and label",
"value": true
},
"menu-icon": {
"type": "iconfilechooser",
"default": "cinnamon-symbolic",
"description": "Icon",
"tooltip": "Select an icon to show in the panel.",
"default_icon": "cinnamon-symbolic",
"dependency": "menu-custom",
"indent": true,
"value": "/usr/share/pixmaps/orangepi/orangepi.png"
},
"menu-icon-size": {
"type": "spinbutton",
"default": 32,
"min": 16,
"max": 96,
"step": 1,
"units": "px",
"description": "Icon size",
"dependency": "menu-custom",
"indent": true,
"value": 32
},
"menu-label": {
"type": "entry",
"default": "Menu",
"description": "Text",
"tooltip": "Enter custom text to show in the panel.",
"dependency": "menu-custom",
"indent": true,
"value": "Menu"
},
"favbox-min-height": {
"type": "spinbutton",
"default": 300,
"min": 50,
"max": 1000,
"step": 10,
"units": "px",
"dependency": "favbox-show",
"description": "Minimum height of the favorites section",
"tooltip": "The minimum size allocated for the favorites section (this has an impact on the overall height of the menu).",
"value": 300
},
"show-category-icons": {
"type": "switch",
"default": true,
"description": "Show category icons",
"tooltip": "Choose whether or not to show icons on categories.",
"value": true
},
"category-icon-size": {
"type": "spinbutton",
"default": 22,
"min": 16,
"max": 48,
"step": 1,
"units": "px",
"description": "Categories icon size",
"dependency": "show-category-icons",
"indent": true,
"value": 22
},
"show-application-icons": {
"type": "switch",
"default": true,
"description": "Show application icons",
"tooltip": "Choose whether or not to show icons on applications.",
"value": true
},
"application-icon-size": {
"type": "spinbutton",
"default": 22,
"min": 16,
"max": 48,
"step": 1,
"units": "px",
"description": "Applications icon size",
"dependency": "show-application-icons",
"indent": true,
"value": 22
},
"favbox-show": {
"type": "switch",
"default": true,
"description": "Show favorites and session buttons",
"tooltip": "Choose whether or not to show the left pane of the menu.",
"value": true
},
"fav-icon-size": {
"type": "spinbutton",
"default": 32,
"min": 16,
"max": 64,
"step": 1,
"units": "px",
"description": "Favorites icon size",
"dependency": "favbox-show",
"indent": true,
"value": 32
},
"show-favorites": {
"type": "switch",
"default": true,
"description": "Show favorites",
"tooltip": "Choose whether or not to show favorite files in the menu.",
"value": true
},
"show-places": {
"type": "switch",
"default": true,
"description": "Show bookmarks and places",
"tooltip": "Choose whether or not to show bookmarks and places in the menu.",
"value": true
},
"show-recents": {
"type": "switch",
"default": true,
"description": "Show recents",
"tooltip": "Choose whether or not to show recents in the menu.",
"value": true
},
"enable-autoscroll": {
"type": "switch",
"default": true,
"description": "Enable autoscrolling in application list",
"tooltip": "Choose whether or not to enable smooth autoscrolling in the application list.",
"value": true
},
"search-filesystem": {
"type": "switch",
"default": false,
"description": "Enable filesystem path entry in search box",
"tooltip": "Allows path entry in the menu search box.",
"value": false
},
"force-show-panel": {
"type": "switch",
"default": true,
"description": "Force the panel to be visible when opening the menu",
"tooltip": "Opening the menu will also show the main panel (which may be auto-hidden).",
"value": true
},
"activate-on-hover": {
"type": "switch",
"default": false,
"description": "Open the menu when I move my mouse over it",
"tooltip": "Enable opening the menu when the mouse enters the applet",
"value": false
},
"hover-delay": {
"type": "spinbutton",
"default": 0,
"min": 0,
"max": 1000,
"step": 50,
"units": "milliseconds",
"dependency": "activate-on-hover",
"description": "Menu hover delay",
"tooltip": "Delay before the menu opens when hovered",
"value": 0
},
"enable-animation": {
"type": "switch",
"default": false,
"description": "Use menu animations",
"tooltip": "Allow the menu to animate on open and close",
"value": false
},
"menu-editor-button": {
"type": "button",
"description": "Open the menu editor",
"callback": "_launch_editor",
"tooltip": "Press this button to customize your menu entries."
},
"__md5__": "c4b27da93411965126569249b61793d7"
}

View File

@@ -0,0 +1,132 @@
[Desktop Entry]
Version=1.0
Type=Directory
Icon=applications-accessories
Name=Accessories
Name[am]=ተጨማሪዎች
Name[ar]=ملحقات
Name[ast]=Accesorios
Name[be]=Інструменты
Name[bg]=Помощни програми
Name[bn]=আনুষঙ্গিক
Name[ca]=Accessoris
Name[cs]=Příslušenství
Name[cy]=Ategolion
Name[da]=Tilbehør
Name[de]=Zubehör
Name[el]=Βοηθήματα
Name[en_AU]=Accessories
Name[en_GB]=Accessories
Name[eo]=Akcesoraĵoj
Name[es]=Accesorios
Name[et]=Tarvikud
Name[eu]=Gehigarriak
Name[fi]=Apuohjelmat
Name[fr]=Accessoires
Name[gl]=Accesorios
Name[he]=עזרים
Name[hi]=सहायक सॉफ्टवेयर
Name[hr]=Pomagala
Name[hu]=Kellékek
Name[hy]=Պիտույք
Name[hy_AM]=Պիտոյք
Name[hye]=Պիտոյք
Name[id]=Aksesoris
Name[ie]=Accessories
Name[is]=Aukahlutir
Name[it]=Accessori
Name[ja]=アクセサリ
Name[ka]=აქსესუარები
Name[kab]=Imerniyen
Name[kk]=Қалыпты
Name[ko]=보조프로그램
Name[lt]=Reikmenys
Name[ms]=Aksesori
Name[nb]=Tilbehør
Name[nl]=Hulpmiddelen
Name[nn]=Ymse
Name[oc]=Accessòris
Name[pl]=Akcesoria
Name[pt]=Acessórios
Name[pt_BR]=Acessórios
Name[ro]=Accesorii
Name[ru]=Инструменты
Name[sk]=Príslušenstvo
Name[sl]=Pripomočki
Name[sq]=Aksesorë
Name[sr]=Прибор
Name[sv]=Tillbehör
Name[te]=సహాయకాలు
Name[th]=เครื่องใช้ไม้สอย
Name[tr]=Donatılar
Name[ug]=قوشۇمچە دېتاللار
Name[uk]=Інструменти
Name[uz]=Tizim vositalari
Name[uz@Latn]=Tizim vositalari
Name[zh_CN]=附件
Name[zh_HK]=附屬應用
Name[zh_TW]=附屬應用
Comment=Common desktop tools and applications
Comment[am]=የ ተለመዱ የ ዴስክቶፕ መሳሪያዎች እና መተግበሪያዎች
Comment[ar]=تطبيقات وأدوات سطح المكتب الشائعة
Comment[ast]=Ferramientes d'escritoriu y aplicaciones comunes
Comment[be]=Стандартныя інструменты і праграмы
Comment[bg]=Основни инструменти и програми за работния плот
Comment[bn]=সাধারণ ডেস্কটপ সরঞ্জাম এবং অ্যাপ্লিকেশন
Comment[ca]=Eines comunes d'escriptori i d'aplicacions
Comment[cs]=Běžné nástroje pracovní plochy a aplikace
Comment[cy]=Offer penfwrdd a rhaglenni cyffredin
Comment[da]=Almene skrivebordsværktøjer og -programmer
Comment[de]=Gemeinsame Schreibtischwerkzeuge und -anwendungen
Comment[el]=Εφαρμογές και εργαλεία διαμοιραζόμενου υπολογιστή
Comment[en_AU]=Common desktop tools and applications
Comment[en_GB]=Common desktop tools and applications
Comment[eo]=Kutimaj Labortablaj iloj kaj aplikaĵoj
Comment[es]=Herramientas y aplicaciones de escritorio comunes
Comment[et]=Tavalised töölaua tööriistad ja rakendused
Comment[eu]=Mahaigain lanabes eta aplikazio arruntak
Comment[fi]=Yleiset työpöydän työkalut ja sovellukset
Comment[fr]=Outils et applications bureautiques courantes
Comment[gl]=Aplicacións e ferramentas de escritorio comúns
Comment[he]=כלי שולחן עבודה ויישומים כלליים
Comment[hi]=डेस्कटॉप हेतु सामान्य साधन व अनुप्रयोग
Comment[hr]=Uobičajeni alati i pogrami radne površine
Comment[hu]=Általános asztali eszközök és alkalmazások
Comment[hy]=Աշխատասեղանի գործիքներ և հավելվածներ
Comment[hy_AM]=Աշխատասեղանի գործիքներ եւ յաւելուածներ
Comment[hye]=Աշխատասեղանի գործիքներ եւ յաւելուածներ
Comment[id]=Peralatan dan aplikasi desktop umum
Comment[ie]=Trivial utensiles e applicationes
Comment[is]=Algeng forrit og skjáborðstól
Comment[it]=Applicazioni e strumenti comuni per la scrivania
Comment[ja]=一般的なデスクトップツールやアプリケーションです
Comment[ka]=გავრცელებული სამუშაო მაგიდის ხელსაწყოები და პროგრამები
Comment[kab]=Ifecka d yisnasen yettwassnen n uselkim
Comment[kk]=Жұмыс үстелінің қалыпты құралдары
Comment[ko]=공통 데스크톱 도구와 프로그램
Comment[lt]=Eiliniai darbalaukio įrankiai ir programos
Comment[ms]=Peralatan dan aplikasi destop biasa
Comment[nb]=Vanlige skrivebordsverktøy og programmer
Comment[nl]=Algemene gereedschappen en toepassingen
Comment[nn]=Vanlege program og verktøy for skrivebordet
Comment[oc]=Aisinas e aplicacions buroticas correntas
Comment[pl]=Obejmuje narzędzia i programy użytkowe
Comment[pt]=Ferramentas e aplicações do ambiente de trabalho
Comment[pt_BR]=Ferramentas comuns de área de trabalho e aplicativos
Comment[ro]=Programe și unelte comune pentru desktop
Comment[ru]=Стандартные утилиты и приложения
Comment[sk]=Spoločné nástroje prostredia a aplikácie
Comment[sl]=Skupna namizna orodja in programi
Comment[sq]=Mjete dhe aplikacione të zakonshme desktopi
Comment[sr]=Општи прибор и програми радног окружења
Comment[sv]=Vanliga skrivbordsverktyg och -program
Comment[te]=సాధారణ డెస్క్‌టాప్ సాధనాలు మరియు అనువర్తనాలు
Comment[th]=เครื่องมือและโปรแกรมเดสก์ท็อปทั่วไป
Comment[tr]=Genel masaüstü araçları ve uygulamaları
Comment[ug]=ئورتاق ئىشلىتىلىدىغان ئۈستەلئۈستى قوراللىرى ۋە پروگراممىلىرى
Comment[uk]=Загальні інструменти для стільниці та програм
Comment[uz]=Umumiy ishchi stol vositalari va dasturlari
Comment[uz@Latn]=Umumiy ishchi stol vositalari va dasturlari
Comment[zh_CN]=常用桌面工具和应用程序
Comment[zh_HK]=常見的桌面工具與應用程式
Comment[zh_TW]=常用的桌面工具與應用程式

View File

@@ -0,0 +1,4 @@
INFO | 2021-10-12 07:06:39,789 | DockbarX 1.0-beta
INFO | 2021-10-12 07:06:39,789 | DockbarX init
INFO | 2021-10-12 07:06:40,142 | DockbarX reload
INFO | 2021-10-12 07:08:17,486 | Executing: thunar

View File

@@ -0,0 +1,6 @@
[keyring]
display-name=Default keyring
ctime=1473189692
mtime=0
lock-on-idle=false
lock-after=false

View File

@@ -0,0 +1 @@
Default_keyring

View File

@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<xbel version="1.0"
xmlns:bookmark="http://www.freedesktop.org/standards/desktop-bookmarks"
xmlns:mime="http://www.freedesktop.org/standards/shared-mime-info"
>
<bookmark href="file:///home/orangepi/.local/share/applications/dbx_preference.desktop" added="2021-10-12T07:08:34.240923Z" modified="2021-10-12T07:08:34.240935Z" visited="2021-10-12T07:08:34.240925Z">
<desc>Charset: UTF-8</desc>
<info>
<metadata owner="http://freedesktop.org">
<mime:mime-type type="text/plain"/>
<bookmark:groups>
<bookmark:group>Mousepad</bookmark:group>
</bookmark:groups>
<bookmark:applications>
<bookmark:application name="Mousepad" exec="&apos;mousepad %u&apos;" modified="2021-10-12T07:08:34.240929Z" count="1"/>
</bookmark:applications>
</metadata>
</info>
</bookmark>
</xbel>

View File

@@ -0,0 +1 @@
mode: off