xfce + bspwm setup
authorAmin Bandali <me@aminb.org>
Mon, 16 Mar 2015 04:34:11 +0000 (00:34 -0400)
committerAmin Bandali <me@aminb.org>
Mon, 16 Mar 2015 04:36:21 +0000 (00:36 -0400)
33 files changed:
bspwm/.config/bspwm/bspwmrc
sxhkd/.config/sxhkd/sxhkdrc
x/.Xresources
x/.xinitrc [deleted file]
x/.xprofile [new file with mode: 0755]
xfce4/.config/xfce4/desktop/icons.screen0-0x0.rc [new file with mode: 0644]
xfce4/.config/xfce4/desktop/icons.screen0-1424x804.rc [new file with mode: 0644]
xfce4/.config/xfce4/desktop/icons.screen0-1424x853.rc [new file with mode: 0644]
xfce4/.config/xfce4/desktop/icons.screen0-1424x884.rc [new file with mode: 0644]
xfce4/.config/xfce4/helpers.rc [new file with mode: 0644]
xfce4/.config/xfce4/panel/battery-7.rc [new file with mode: 0644]
xfce4/.config/xfce4/panel/whiskermenu-11.rc [new file with mode: 0644]
xfce4/.config/xfce4/panel/xkb-plugin-9.rc [new file with mode: 0644]
xfce4/.config/xfce4/terminal/terminalrc [new file with mode: 0644]
xfce4/.config/xfce4/xfce4-taskmanager.rc [new file with mode: 0644]
xfce4/.config/xfce4/xfconf/xfce-perchannel-xml/keyboard-layout.xml [new file with mode: 0644]
xfce4/.config/xfce4/xfconf/xfce-perchannel-xml/keyboards.xml [new file with mode: 0644]
xfce4/.config/xfce4/xfconf/xfce-perchannel-xml/pointers.xml [new file with mode: 0644]
xfce4/.config/xfce4/xfconf/xfce-perchannel-xml/thunar-volman.xml [new file with mode: 0644]
xfce4/.config/xfce4/xfconf/xfce-perchannel-xml/thunar.xml [new file with mode: 0644]
xfce4/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-appfinder.xml [new file with mode: 0644]
xfce4/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-desktop.xml [new file with mode: 0644]
xfce4/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-keyboard-shortcuts.xml [new file with mode: 0644]
xfce4/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-mixer.xml [new file with mode: 0644]
xfce4/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-notifyd.xml [new file with mode: 0644]
xfce4/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml [new file with mode: 0644]
xfce4/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-power-manager.xml [new file with mode: 0644]
xfce4/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-power-manager.xml.new [new file with mode: 0644]
xfce4/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-session.xml [new file with mode: 0644]
xfce4/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-settings-editor.xml [new file with mode: 0644]
xfce4/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-settings-manager.xml [new file with mode: 0644]
xfce4/.config/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml [new file with mode: 0644]
xfce4/.config/xfce4/xfconf/xfce-perchannel-xml/xsettings.xml [new file with mode: 0644]

index 76207bf..f9693b4 100755 (executable)
@@ -3,7 +3,7 @@
 bspc config border_width        5
 bspc config window_gap                 10
 
-bspc config top_padding 24
+bspc config top_padding 30
 
 bspc config split_ratio         0.5
 bspc config borderless_monocle  true
@@ -15,5 +15,6 @@ bspc monitor -d web code term misc1 misc2
 bspc rule -a Firefox desktop=^1 focus=on
 bspc rule -a emacs desktop=^2 focus=on
 bspc rule -a zathura desktop=^5 focus=on
+bspc rule -a xfce4-appfinder floating=on
 
 # panel &
index cc7ec59..aaf37e4 100644 (file)
@@ -84,7 +84,7 @@ super + Return
        urxvt
 
 super + space
-       dmenu_run -fn "-*-termsyn-medium-r-normal-*-13-*-*-*-c-*-*-1" -h 24 -nb \#1d1f21 -nf \#ffffff -sb \#cc6666 -sf \#ffffff
+       xfce4-popup-whiskermenu
 
 super + x
     slimlock
@@ -93,23 +93,23 @@ super + e
     emacs
 
 super + r
-    firefox-developer
+    firefox
 
 # make sxhkd reload its configuration files:
 super + Escape
        pkill -USR1 -x sxhkd
 
-XF86MonBrightnessDown
-       xbacklight -dec 5
+#XF86MonBrightnessDown
+#      xbacklight -dec 5
 
-XF86MonBrightnessUp
-       xbacklight -inc 5
+#XF86MonBrightnessUp
+#      xbacklight -inc 5
 
-XF86KbdBrightnessDown
-       kbdlight down
+XF86KbdBrightnessDown
+       #kbdlight down
 
-XF86KbdBrightnessUp
-       kbdlight up
+XF86KbdBrightnessUp
+       #kbdlight up
 
 #XF86AudioRaiseVolume
 #    pulseaudio-ctl up
@@ -139,4 +139,4 @@ XF86AudioMute
        pamixer --toggle-mute
 
 XF86LaunchA
-  toggle-layout
\ No newline at end of file
+  toggle-layout
index cdf3bbe..a7c4009 100644 (file)
@@ -22,7 +22,7 @@ URxvt.keysym.M-c: perl:clipboard:copy
 URxvt.keysym.M-v: perl:clipboard:paste
 URxvt.keysym.C-A-V: perl:clipboard:paste_escaped
 
-!URxvt.iconFile: /usr/share/icons/Numix-Circle/scalable/apps/utilities-terminal.svg
+URxvt.iconFile: /usr/share/icons/Moka/96x96/apps/utilities-terminal.png
 !URxvt.iconFile: /home/amin/.icons/Moka/96x96/apps/utilities-terminal.png
 
 URxvt.keysym.C-Up:     perl:font-size:increase
diff --git a/x/.xinitrc b/x/.xinitrc
deleted file mode 100755 (executable)
index e998b0b..0000000
+++ /dev/null
@@ -1,71 +0,0 @@
-#!/bin/sh
-#
-# ~/.xinitrc
-#
-# Executed by startx (run your window manager from here)
-
-if [ -d /etc/X11/xinit/xinitrc.d ]; then
-  for f in /etc/X11/xinit/xinitrc.d/*; do
-    [ -x "$f" ] && . "$f"
-  done
-  unset f
-fi
-
-# workaround for some java apps, when running a non-reparenting window manager
-export _JAVA_AWT_WM_NONREPARENTING=1
-
-xrdb -merge ~/.Xresources
-xrdb -merge ~/.base16-tomorrow.dark.256.xresources
-
-# set the cursor icon
-xsetroot -cursor_name left_ptr &
-
-# set the wallpaper
-sh ~/.fehbg &
-
-# font stuff
-xset +fp /usr/share/fonts/local
-xset +fp ~/.fonts
-xset fp rehash
-xset b off
-
-# the compositor
-compton &
-
-# xbacklight -set 50
-
-# synaptics (touchpad) configs
-synclient TapButton2=3
-synclient TapButton3=2
-synclient HorizTwoFingerScroll=1
-synclient VertScrollDelta=-237
-synclient HorizScrollDelta=-237
-
-# swap caps lock and esc
-setxkbmap -option caps:swapescape
-
-# MPD daemon start (if no other instance exists)
-[ -z $(pidof mpd) ] && mpd &
-
-# screen powersave
-xset +dpms
-xset dpms 0 0 300
-
-# lock the screen using lightdm after 5 minutes
-xautolock -time 5 -locker "slimlock" &
-
-
-# exec gnome-session
-# exec startkde
-# exec startxfce4
-# ...or the Window Manager of your choice
-source ~/.profile
-sxhkd &
-panel &
-
-DEFAULTSESSION=bspwm
-case "$1" in
-    i3) exec i3;;
-     bspwm) exec bspwm;;
-     *) exec $DEFAULTSESSION ;;
-esac
diff --git a/x/.xprofile b/x/.xprofile
new file mode 100755 (executable)
index 0000000..e44ff71
--- /dev/null
@@ -0,0 +1,74 @@
+#!/bin/sh
+#
+# ~/.xinitrc
+#
+# Executed by startx (run your window manager from here)
+
+if [ -d /etc/X11/xinit/xinitrc.d ]; then
+  for f in /etc/X11/xinit/xinitrc.d/*; do
+    [ -x "$f" ] && . "$f"
+  done
+  unset f
+fi
+
+# workaround for some java apps, when running a non-reparenting window manager
+export _JAVA_AWT_WM_NONREPARENTING=1
+
+xrdb -merge ~/.Xresources
+xrdb -merge ~/.base16-tomorrow.dark.256.xresources
+
+# set the cursor icon
+# xsetroot -cursor_name left_ptr &
+
+# set the wallpaper
+# sh ~/.fehbg &
+
+# font stuff
+# xset +fp /usr/share/fonts/local
+# xset +fp ~/.fonts
+# xset fp rehash
+# xset b off
+
+# the compositor
+compton &
+
+# xbacklight -set 50
+
+# synaptics (touchpad) configs
+synclient TapButton2=3
+synclient TapButton3=2
+synclient HorizTwoFingerScroll=1
+synclient VertScrollDelta=-237
+synclient HorizScrollDelta=-237
+
+# swap caps lock and esc
+setxkbmap -option caps:swapescape
+
+# MPD daemon start (if no other instance exists)
+[ -z $(pidof mpd) ] && mpd &
+
+# screen powersave
+# xset +dpms
+# xset dpms 0 0 300
+
+# lock the screen using lightdm after 5 minutes
+# xautolock -time 5 -locker "slimlock" &
+
+
+# exec gnome-session
+# exec startkde
+# exec startxfce4
+# ...or the Window Manager of your choice
+# source ~/.profile
+# bspwm &
+sxhkd &
+sleep 1 && pnmixer &
+# panel &
+
+# DEFAULTSESSION=bspwm
+# case "$1" in
+#     i3) exec i3;;
+#      bspwm) exec bspwm;;
+#      *) exec $DEFAULTSESSION ;;
+# esac
+
diff --git a/xfce4/.config/xfce4/desktop/icons.screen0-0x0.rc b/xfce4/.config/xfce4/desktop/icons.screen0-0x0.rc
new file mode 100644 (file)
index 0000000..d6683a9
--- /dev/null
@@ -0,0 +1,3 @@
+[xfdesktop-version-4.10.3+-rcfile_format]
+4.10.3+=true
+
diff --git a/xfce4/.config/xfce4/desktop/icons.screen0-1424x804.rc b/xfce4/.config/xfce4/desktop/icons.screen0-1424x804.rc
new file mode 100644 (file)
index 0000000..d6683a9
--- /dev/null
@@ -0,0 +1,3 @@
+[xfdesktop-version-4.10.3+-rcfile_format]
+4.10.3+=true
+
diff --git a/xfce4/.config/xfce4/desktop/icons.screen0-1424x853.rc b/xfce4/.config/xfce4/desktop/icons.screen0-1424x853.rc
new file mode 100644 (file)
index 0000000..d6683a9
--- /dev/null
@@ -0,0 +1,3 @@
+[xfdesktop-version-4.10.3+-rcfile_format]
+4.10.3+=true
+
diff --git a/xfce4/.config/xfce4/desktop/icons.screen0-1424x884.rc b/xfce4/.config/xfce4/desktop/icons.screen0-1424x884.rc
new file mode 100644 (file)
index 0000000..d6683a9
--- /dev/null
@@ -0,0 +1,3 @@
+[xfdesktop-version-4.10.3+-rcfile_format]
+4.10.3+=true
+
diff --git a/xfce4/.config/xfce4/helpers.rc b/xfce4/.config/xfce4/helpers.rc
new file mode 100644 (file)
index 0000000..ed48f33
--- /dev/null
@@ -0,0 +1,2 @@
+TerminalEmulator=urxvt
+
diff --git a/xfce4/.config/xfce4/panel/battery-7.rc b/xfce4/.config/xfce4/panel/battery-7.rc
new file mode 100644 (file)
index 0000000..db0b7e7
--- /dev/null
@@ -0,0 +1,20 @@
+display_label=false
+display_icon=false
+display_power=false
+display_percentage=true
+display_bar=false
+display_time=false
+tooltip_display_percentage=false
+tooltip_display_time=false
+low_percentage=5
+critical_percentage=2
+action_on_low=1
+action_on_critical=1
+hide_when_full=459
+colorA=#8888FF
+colorH=#00FF00
+colorL=#FFFF00
+colorC=#FF0000
+command_on_low=
+command_on_critical=
+
diff --git a/xfce4/.config/xfce4/panel/whiskermenu-11.rc b/xfce4/.config/xfce4/panel/whiskermenu-11.rc
new file mode 100644 (file)
index 0000000..113222f
--- /dev/null
@@ -0,0 +1,60 @@
+favorites=exo-terminal-emulator.desktop,exo-file-manager.desktop,exo-mail-reader.desktop,exo-web-browser.desktop
+recent=Thunar.desktop,xfce-session-settings.desktop,android-studio.desktop,android-sdk.desktop,exo-preferred-applications.desktop,xfce4-taskmanager.desktop,firefox.desktop,emacs.desktop
+button-title=Applications
+button-icon=distributor-logo-archlinux
+button-single-row=false
+show-button-title=false
+show-button-icon=true
+launcher-show-name=true
+launcher-show-description=true
+item-icon-size=2
+hover-switch-category=false
+category-icon-size=1
+load-hierarchy=false
+recent-items-max=10
+favorites-in-recent=true
+display-recent-default=false
+position-search-alternate=true
+position-commands-alternate=false
+position-categories-alternate=true
+menu-width=524
+menu-height=436
+menu-opacity=100
+command-settings=xfce4-settings-manager
+show-command-settings=true
+command-lockscreen=xflock4
+show-command-lockscreen=true
+command-switchuser=gdmflexiserver
+show-command-switchuser=true
+command-logout=xfce4-session-logout
+show-command-logout=true
+command-menueditor=menulibre
+show-command-menueditor=true
+command-profile=mugshot
+show-command-profile=true
+search-actions=4
+
+[action0]
+name=Man Pages
+pattern=#
+command=exo-open --launch TerminalEmulator man %s
+regex=false
+
+[action1]
+name=Wikipedia
+pattern=!w
+command=exo-open --launch WebBrowser https://en.wikipedia.org/wiki/%u
+regex=false
+
+[action2]
+name=Run in Terminal
+pattern=!
+command=exo-open --launch TerminalEmulator %s
+regex=false
+
+[action3]
+name=Open URI
+pattern=^(file|http|https):\\/\\/(.*)$
+command=exo-open \\0
+regex=true
+
diff --git a/xfce4/.config/xfce4/panel/xkb-plugin-9.rc b/xfce4/.config/xfce4/panel/xkb-plugin-9.rc
new file mode 100644 (file)
index 0000000..73bec45
--- /dev/null
@@ -0,0 +1,4 @@
+display_type=1
+display_textsize=0
+group_policy=0
+
diff --git a/xfce4/.config/xfce4/terminal/terminalrc b/xfce4/.config/xfce4/terminal/terminalrc
new file mode 100644 (file)
index 0000000..c76da38
--- /dev/null
@@ -0,0 +1,25 @@
+[Configuration]
+FontName=Source Code Pro Medium 11
+MiscAlwaysShowTabs=FALSE
+MiscBell=FALSE
+MiscBordersDefault=TRUE
+MiscCursorBlinks=FALSE
+MiscCursorShape=TERMINAL_CURSOR_SHAPE_BLOCK
+MiscDefaultGeometry=80x24
+MiscInheritGeometry=FALSE
+MiscMenubarDefault=FALSE
+MiscMouseAutohide=FALSE
+MiscToolbarDefault=FALSE
+MiscConfirmClose=TRUE
+MiscCycleTabs=TRUE
+MiscTabCloseButtons=TRUE
+MiscTabCloseMiddleClick=TRUE
+MiscTabPosition=GTK_POS_TOP
+MiscHighlightUrls=TRUE
+ScrollingBar=TERMINAL_SCROLLBAR_NONE
+
+ColorCursor=#c5c8c6
+ColorForeground=#c5c8c6
+ColorBackground=#1d1f21
+ColorPalette=#1d1f21;#cc6666;#b5bd68;#f0c674;#81a2be;#b294bb;#8abeb7;#c5c8c6;#969896;#cc6666;#b5bd68;#f0c674;#81a2be;#b294bb;#8abeb7;#ffffff
+
diff --git a/xfce4/.config/xfce4/xfce4-taskmanager.rc b/xfce4/.config/xfce4/xfce4-taskmanager.rc
new file mode 100644 (file)
index 0000000..74c2669
--- /dev/null
@@ -0,0 +1,25 @@
+[Settings]
+ShowAllProcesses=FALSE
+MorePrecision=FALSE
+FullCommandLine=FALSE
+ShowStatusIcon=FALSE
+ShowMemoryInXBytes=FALSE
+MonitorPaintBox=TRUE
+ShowApplicationIcons=TRUE
+ToolbarStyle=DEFAULT
+PromptTerminateTask=TRUE
+RefreshRate=750
+ColumnUID=FALSE
+ColumnPID=TRUE
+ColumnPPID=FALSE
+ColumnState=FALSE
+ColumnVSZ=FALSE
+ColumnRSS=TRUE
+ColumnCPU=TRUE
+ColumnPriority=FALSE
+SortColumn=7
+SortType=1
+WindowWidth=1410
+WindowHeight=840
+HandlePosition=100
+ProcessTreeView=FALSE
diff --git a/xfce4/.config/xfce4/xfconf/xfce-perchannel-xml/keyboard-layout.xml b/xfce4/.config/xfce4/xfconf/xfce-perchannel-xml/keyboard-layout.xml
new file mode 100644 (file)
index 0000000..ad431bd
--- /dev/null
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<channel name="keyboard-layout" version="1.0">
+  <property name="Default" type="empty">
+    <property name="XkbDisable" type="bool" value="false"/>
+    <property name="XkbLayout" type="string" value="us,ir"/>
+    <property name="XkbVariant" type="string" value=","/>
+    <property name="XkbOptions" type="empty">
+      <property name="Group" type="string" value=""/>
+    </property>
+  </property>
+</channel>
diff --git a/xfce4/.config/xfce4/xfconf/xfce-perchannel-xml/keyboards.xml b/xfce4/.config/xfce4/xfconf/xfce-perchannel-xml/keyboards.xml
new file mode 100644 (file)
index 0000000..9ddc443
--- /dev/null
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<channel name="keyboards" version="1.0">
+  <property name="Default" type="empty">
+    <property name="Numlock" type="bool" value="false"/>
+  </property>
+</channel>
diff --git a/xfce4/.config/xfce4/xfconf/xfce-perchannel-xml/pointers.xml b/xfce4/.config/xfce4/xfconf/xfce-perchannel-xml/pointers.xml
new file mode 100644 (file)
index 0000000..dbb83d1
--- /dev/null
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<channel name="pointers" version="1.0">
+  <property name="bcm5974" type="empty">
+    <property name="RightHanded" type="bool" value="true"/>
+    <property name="ReverseScrolling" type="bool" value="false"/>
+    <property name="Threshold" type="int" value="4"/>
+    <property name="Acceleration" type="double" value="2.000000"/>
+    <property name="Properties" type="empty">
+      <property name="Synaptics_Edge_Scrolling" type="array">
+        <value type="int" value="0"/>
+        <value type="int" value="0"/>
+        <value type="int" value="0"/>
+      </property>
+      <property name="Synaptics_Two-Finger_Scrolling" type="array">
+        <value type="int" value="1"/>
+        <value type="int" value="0"/>
+      </property>
+      <property name="Synaptics_Circular_Scrolling" type="int" value="0"/>
+      <property name="Synaptics_Circular_Scrolling_Trigger" type="int" value="0"/>
+      <property name="libinput_Scroll_Method_Enabled" type="array">
+        <value type="int" value="1"/>
+        <value type="int" value="0"/>
+        <value type="int" value="0"/>
+      </property>
+    </property>
+  </property>
+</channel>
diff --git a/xfce4/.config/xfce4/xfconf/xfce-perchannel-xml/thunar-volman.xml b/xfce4/.config/xfce4/xfconf/xfce-perchannel-xml/thunar-volman.xml
new file mode 100644 (file)
index 0000000..8812fbc
--- /dev/null
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<channel name="thunar-volman" version="1.0">
+  <property name="automount-drives" type="empty">
+    <property name="enabled" type="bool" value="true"/>
+  </property>
+  <property name="automount-media" type="empty">
+    <property name="enabled" type="bool" value="true"/>
+  </property>
+</channel>
diff --git a/xfce4/.config/xfce4/xfconf/xfce-perchannel-xml/thunar.xml b/xfce4/.config/xfce4/xfconf/xfce-perchannel-xml/thunar.xml
new file mode 100644 (file)
index 0000000..ea7d4e3
--- /dev/null
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<channel name="thunar" version="1.0">
+  <property name="last-view" type="string" value="ThunarIconView"/>
+  <property name="last-icon-view-zoom-level" type="string" value="THUNAR_ZOOM_LEVEL_NORMAL"/>
+  <property name="misc-single-click" type="bool" value="false"/>
+  <property name="last-separator-position" type="int" value="170"/>
+  <property name="misc-volume-management" type="bool" value="true"/>
+  <property name="last-show-hidden" type="bool" value="true"/>
+  <property name="last-window-width" type="int" value="1410"/>
+  <property name="last-window-height" type="int" value="840"/>
+  <property name="last-window-maximized" type="bool" value="false"/>
+</channel>
diff --git a/xfce4/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-appfinder.xml b/xfce4/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-appfinder.xml
new file mode 100644 (file)
index 0000000..a89226b
--- /dev/null
@@ -0,0 +1,47 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<channel name="xfce4-appfinder" version="1.0">
+  <property name="last" type="empty">
+    <property name="window-height" type="int" value="343"/>
+    <property name="window-width" type="int" value="695"/>
+    <property name="pane-position" type="int" value="180"/>
+  </property>
+  <property name="actions" type="array">
+    <value type="int" value="5"/>
+    <value type="int" value="4"/>
+    <value type="int" value="3"/>
+    <value type="int" value="2"/>
+    <value type="int" value="1"/>
+    <property name="action-5" type="empty">
+      <property name="type" type="int" value="0"/>
+      <property name="pattern" type="string" value="/"/>
+      <property name="command" type="string" value="exo-open --launch FileManager %S"/>
+      <property name="save" type="bool" value="false"/>
+    </property>
+    <property name="action-4" type="empty">
+      <property name="type" type="int" value="0"/>
+      <property name="pattern" type="string" value="#"/>
+      <property name="command" type="string" value="exo-open --launch TerminalEmulator man %s"/>
+      <property name="save" type="bool" value="false"/>
+    </property>
+    <property name="action-3" type="empty">
+      <property name="type" type="int" value="0"/>
+      <property name="pattern" type="string" value="!w"/>
+      <property name="command" type="string" value="exo-open --launch WebBrowser http://en.wikipedia.org/wiki/%s"/>
+      <property name="save" type="bool" value="false"/>
+    </property>
+    <property name="action-2" type="empty">
+      <property name="type" type="int" value="0"/>
+      <property name="pattern" type="string" value="!"/>
+      <property name="command" type="string" value="exo-open --launch TerminalEmulator %s"/>
+      <property name="save" type="bool" value="true"/>
+    </property>
+    <property name="action-1" type="empty">
+      <property name="type" type="int" value="1"/>
+      <property name="pattern" type="string" value="^(file|http|https):\/\/(.*)$"/>
+      <property name="command" type="string" value="exo-open \0"/>
+      <property name="save" type="bool" value="false"/>
+    </property>
+  </property>
+  <property name="icon-view" type="bool" value="false"/>
+</channel>
diff --git a/xfce4/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-desktop.xml b/xfce4/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-desktop.xml
new file mode 100644 (file)
index 0000000..a61bc02
--- /dev/null
@@ -0,0 +1,47 @@
+<?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="monitoreDP1" 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="/home/amin/pics/che-stallman-png.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/xfce/xfce-teal.jpg"/>
+        </property>
+        <property name="workspace2" 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/xfce/xfce-teal.jpg"/>
+        </property>
+        <property name="workspace3" 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/xfce/xfce-teal.jpg"/>
+        </property>
+        <property name="workspace4" 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/xfce/xfce-teal.jpg"/>
+        </property>
+      </property>
+    </property>
+  </property>
+  <property name="last" type="empty">
+    <property name="window-width" type="int" value="647"/>
+    <property name="window-height" type="int" value="530"/>
+  </property>
+  <property name="desktop-icons" type="empty">
+    <property name="file-icons" type="empty">
+      <property name="show-home" type="bool" value="false"/>
+      <property name="show-filesystem" type="bool" value="false"/>
+      <property name="show-removable" type="bool" value="false"/>
+      <property name="show-trash" type="bool" value="false"/>
+    </property>
+  </property>
+</channel>
diff --git a/xfce4/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-keyboard-shortcuts.xml b/xfce4/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-keyboard-shortcuts.xml
new file mode 100644 (file)
index 0000000..a9860bc
--- /dev/null
@@ -0,0 +1,162 @@
+<?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="&lt;Primary&gt;&lt;Alt&gt;l" 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;F3" type="empty">
+        <property name="startup-notify" type="bool" value="true"/>
+      </property>
+      <property name="&lt;Alt&gt;F1" type="string" value="xfce4-popup-applicationsmenu"/>
+      <property name="&lt;Alt&gt;F2" type="empty">
+        <property name="startup-notify" type="bool" value="true"/>
+      </property>
+      <property name="&lt;Primary&gt;&lt;Alt&gt;Delete" type="string" value="xflock4"/>
+      <property name="&lt;Primary&gt;&lt;Alt&gt;l" 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 name="&lt;Super&gt;Return" type="string" value="xfce4-terminal"/>
+      <property name="&lt;Super&gt;space" type="string" value="xfce4-appfinder">
+        <property name="startup-notify" type="bool" value="true"/>
+      </property>
+    </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>
+    <property name="custom" type="empty">
+      <property name="Up" type="string" value="up_key"/>
+      <property name="&lt;Primary&gt;&lt;Alt&gt;KP_9" type="string" value="move_window_workspace_9_key"/>
+      <property name="&lt;Primary&gt;&lt;Alt&gt;KP_8" type="string" value="move_window_workspace_8_key"/>
+      <property name="Left" type="string" value="left_key"/>
+      <property name="&lt;Primary&gt;&lt;Alt&gt;KP_6" type="string" value="move_window_workspace_6_key"/>
+      <property name="&lt;Alt&gt;Insert" type="string" value="add_workspace_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;Right" type="string" value="right_workspace_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;Up" type="string" value="up_workspace_key"/>
+      <property name="&lt;Primary&gt;F7" type="string" value="workspace_7_key"/>
+      <property name="&lt;Primary&gt;&lt;Shift&gt;&lt;Alt&gt;Left" type="string" value="move_window_left_key"/>
+      <property name="&lt;Alt&gt;F6" type="string" value="stick_window_key"/>
+      <property name="&lt;Alt&gt;F12" type="string" value="above_key"/>
+      <property name="&lt;Primary&gt;&lt;Alt&gt;Down" type="string" value="down_workspace_key"/>
+      <property name="&lt;Alt&gt;F8" type="string" value="resize_window_key"/>
+      <property name="Escape" type="string" value="cancel_key"/>
+      <property name="&lt;Primary&gt;F10" type="string" value="workspace_10_key"/>
+      <property name="&lt;Primary&gt;F11" type="string" value="workspace_11_key"/>
+      <property name="&lt;Alt&gt;F11" type="string" value="fullscreen_key"/>
+      <property name="&lt;Primary&gt;&lt;Shift&gt;&lt;Alt&gt;Up" type="string" value="move_window_up_key"/>
+      <property name="Right" type="string" value="right_key"/>
+      <property name="Down" type="string" value="down_key"/>
+      <property name="&lt;Alt&gt;F7" type="string" value="move_window_key"/>
+      <property name="&lt;Shift&gt;&lt;Alt&gt;Page_Down" type="string" value="lower_window_key"/>
+      <property name="&lt;Primary&gt;F12" type="string" value="workspace_12_key"/>
+      <property name="&lt;Primary&gt;&lt;Alt&gt;Left" type="string" value="left_workspace_key"/>
+      <property name="&lt;Primary&gt;F6" type="string" value="workspace_6_key"/>
+      <property name="&lt;Primary&gt;F8" type="string" value="workspace_8_key"/>
+      <property name="&lt;Primary&gt;F9" type="string" value="workspace_9_key"/>
+      <property name="&lt;Alt&gt;Delete" type="string" value="del_workspace_key"/>
+      <property name="&lt;Shift&gt;&lt;Alt&gt;Page_Up" type="string" value="raise_window_key"/>
+      <property name="override" type="bool" value="true"/>
+      <property name="&lt;Super&gt;w" type="string" value="close_window_key"/>
+      <property name="&lt;Super&gt;Tab" type="string" value="cycle_windows_key"/>
+      <property name="&lt;Super&gt;k" type="string" value="tile_up_key"/>
+      <property name="&lt;Super&gt;j" type="string" value="tile_down_key"/>
+      <property name="&lt;Super&gt;h" type="string" value="tile_left_key"/>
+      <property name="&lt;Super&gt;l" type="string" value="tile_right_key"/>
+      <property name="&lt;Super&gt;bracketleft" type="string" value="prev_workspace_key"/>
+      <property name="&lt;Super&gt;bracketright" type="string" value="next_workspace_key"/>
+      <property name="&lt;Super&gt;1" type="string" value="workspace_1_key"/>
+      <property name="&lt;Super&gt;2" type="string" value="workspace_2_key"/>
+      <property name="&lt;Super&gt;3" type="string" value="workspace_3_key"/>
+      <property name="&lt;Super&gt;4" type="string" value="workspace_4_key"/>
+      <property name="&lt;Super&gt;5" type="string" value="workspace_5_key"/>
+      <property name="&lt;Super&gt;d" type="string" value="show_desktop_key"/>
+      <property name="&lt;Shift&gt;&lt;Super&gt;exclam" type="string" value="move_window_workspace_1_key"/>
+      <property name="&lt;Shift&gt;&lt;Super&gt;at" type="string" value="move_window_workspace_2_key"/>
+      <property name="&lt;Shift&gt;&lt;Super&gt;numbersign" type="string" value="move_window_workspace_3_key"/>
+      <property name="&lt;Shift&gt;&lt;Super&gt;dollar" type="string" value="move_window_workspace_4_key"/>
+      <property name="&lt;Shift&gt;&lt;Super&gt;percent" type="string" value="move_window_workspace_5_key"/>
+      <property name="&lt;Shift&gt;&lt;Super&gt;braceleft" type="string" value="move_window_prev_workspace_key"/>
+      <property name="&lt;Shift&gt;&lt;Super&gt;braceright" type="string" value="move_window_next_workspace_key"/>
+      <property name="&lt;Super&gt;period" type="string" value="maximize_window_key"/>
+      <property name="&lt;Super&gt;slash" type="string" value="hide_window_key"/>
+      <property name="&lt;Shift&gt;&lt;Super&gt;ISO_Left_Tab" type="string" value="cycle_reverse_windows_key"/>
+    </property>
+  </property>
+  <property name="providers" type="array">
+    <value type="string" value="xfwm4"/>
+    <value type="string" value="commands"/>
+  </property>
+</channel>
diff --git a/xfce4/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-mixer.xml b/xfce4/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-mixer.xml
new file mode 100644 (file)
index 0000000..ea3acb2
--- /dev/null
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<channel name="xfce4-mixer" version="1.0">
+  <property name="sound-card" type="string" value="HDAIntelPCHAlsamixer"/>
+  <property name="sound-cards" type="empty">
+    <property name="HDAIntelHDMIAlsamixer" type="array">
+    </property>
+    <property name="HDAIntelPCHAlsamixer" type="array">
+      <value type="string" value="Mic Boost"/>
+      <value type="string" value="PCM"/>
+      <value type="string" value="Speaker"/>
+      <value type="string" value="Headphone"/>
+      <value type="string" value="Master"/>
+    </property>
+  </property>
+  <property name="window-height" type="int" value="840"/>
+  <property name="window-width" type="int" value="695"/>
+</channel>
diff --git a/xfce4/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-notifyd.xml b/xfce4/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-notifyd.xml
new file mode 100644 (file)
index 0000000..15a308d
--- /dev/null
@@ -0,0 +1,8 @@
+<?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-Tomorrow"/>
+  <property name="initial-opacity" type="double" value="0.950000"/>
+  <property name="expire-timeout" type="int" value="4"/>
+</channel>
diff --git a/xfce4/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml b/xfce4/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml
new file mode 100644 (file)
index 0000000..1e5b37d
--- /dev/null
@@ -0,0 +1,59 @@
+<?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=6;x=0;y=0"/>
+      <property name="length" type="uint" value="100"/>
+      <property name="position-locked" type="bool" value="true"/>
+      <property name="size" type="uint" value="30"/>
+      <property name="plugin-ids" type="array">
+        <value type="int" value="11"/>
+        <value type="int" value="3"/>
+        <value type="int" value="15"/>
+        <value type="int" value="4"/>
+        <value type="int" value="9"/>
+        <value type="int" value="6"/>
+        <value type="int" value="8"/>
+        <value type="int" value="7"/>
+        <value type="int" value="5"/>
+      </property>
+      <property name="autohide-behavior" type="uint" value="0"/>
+      <property name="background-style" type="uint" value="0"/>
+      <property name="background-color" type="array">
+        <value type="uint" value="9252"/>
+        <value type="uint" value="9252"/>
+        <value type="uint" value="9252"/>
+        <value type="uint" value="65535"/>
+      </property>
+      <property name="background-alpha" type="uint" value="100"/>
+    </property>
+  </property>
+  <property name="plugins" type="empty">
+    <property name="plugin-3" type="string" value="tasklist"/>
+    <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-4" type="string" value="pager"/>
+    <property name="plugin-5" type="string" value="clock">
+      <property name="digital-format" type="string" value="%I:%M %p"/>
+      <property name="mode" type="uint" value="2"/>
+    </property>
+    <property name="plugin-6" type="string" value="systray">
+      <property name="names-visible" type="array">
+        <value type="string" value="pnmixer"/>
+        <value type="string" value="networkmanager applet"/>
+        <value type="string" value="xfce4-power-manager"/>
+        <value type="string" value="task manager"/>
+        <value type="string" value="thunar"/>
+      </property>
+    </property>
+    <property name="plugin-7" type="string" value="battery"/>
+    <property name="plugin-8" type="string" value="power-manager-plugin"/>
+    <property name="plugin-9" type="string" value="xkb-plugin"/>
+    <property name="plugin-11" type="string" value="whiskermenu"/>
+  </property>
+</channel>
diff --git a/xfce4/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-power-manager.xml b/xfce4/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-power-manager.xml
new file mode 100644 (file)
index 0000000..e20ab39
--- /dev/null
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<channel name="xfce4-power-manager" version="1.0">
+  <property name="xfce4-power-manager" type="empty">
+    <property name="brightness-switch-restore-on-exit" type="int" value="0"/>
+    <property name="brightness-switch" type="int" value="0"/>
+    <property name="lid-action-on-battery" type="uint" value="1"/>
+    <property name="logind-handle-lid-switch" type="bool" value="true"/>
+    <property name="lid-action-on-ac" type="uint" value="1"/>
+    <property name="power-button-action" type="uint" value="3"/>
+    <property name="critical-power-level" type="uint" value="3"/>
+    <property name="inactivity-sleep-mode-on-battery" type="uint" value="1"/>
+    <property name="inactivity-on-battery" type="uint" value="15"/>
+    <property name="inactivity-on-ac" type="uint" value="20"/>
+    <property name="brightness-on-battery" type="uint" value="9"/>
+    <property name="blank-on-battery" type="int" value="5"/>
+    <property name="dpms-on-battery-sleep" type="uint" value="15"/>
+    <property name="dpms-on-battery-off" type="uint" value="25"/>
+    <property name="dpms-on-ac-sleep" type="uint" value="20"/>
+    <property name="dpms-on-ac-off" type="uint" value="30"/>
+  </property>
+</channel>
diff --git a/xfce4/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-power-manager.xml.new b/xfce4/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-power-manager.xml.new
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/xfce4/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-session.xml b/xfce4/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-session.xml
new file mode 100644 (file)
index 0000000..225ccaf
--- /dev/null
@@ -0,0 +1,39 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<channel name="xfce4-session" version="1.0">
+  <property name="general" type="empty">
+    <property name="FailsafeSessionName" type="string" value="Failsafe"/>
+  </property>
+  <property name="sessions" type="empty">
+    <property name="Failsafe" type="empty">
+      <property name="IsFailsafe" type="bool" value="true"/>
+      <property name="Count" type="int" value="5"/>
+      <property name="Client0_Command" type="array">
+        <value type="string" value="bspwm"/>
+      </property>
+      <property name="Client0_PerScreen" type="bool" value="false"/>
+      <property name="Client1_Command" type="array">
+        <value type="string" value="xfsettingsd"/>
+      </property>
+      <property name="Client1_PerScreen" type="bool" value="false"/>
+      <property name="Client2_Command" type="array">
+        <value type="string" value="xfce4-panel"/>
+        <value type="string" value="--disable-wm-check"/>
+      </property>
+      <property name="Client2_PerScreen" type="bool" value="false"/>
+      <property name="Client3_Command" type="array">
+        <value type="string" value="Thunar"/>
+        <value type="string" value="--daemon"/>
+      </property>
+      <property name="Client3_PerScreen" type="bool" value="false"/>
+      <property name="Client4_Command" type="array">
+        <value type="string" value="xfdesktop"/>
+        <value type="string" value="--disable-wm-check"/>
+      </property>
+      <property name="Client4_PerScreen" type="bool" value="false"/>
+    </property>
+  </property>
+  <property name="splash" type="empty">
+    <property name="Engine" type="string" value=""/>
+  </property>
+</channel>
diff --git a/xfce4/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-settings-editor.xml b/xfce4/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-settings-editor.xml
new file mode 100644 (file)
index 0000000..d832b67
--- /dev/null
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<channel name="xfce4-settings-editor" version="1.0">
+  <property name="last" type="empty">
+    <property name="window-width" type="int" value="1410"/>
+    <property name="window-height" type="int" value="840"/>
+    <property name="paned-position" type="int" value="180"/>
+  </property>
+</channel>
diff --git a/xfce4/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-settings-manager.xml b/xfce4/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-settings-manager.xml
new file mode 100644 (file)
index 0000000..4c0783b
--- /dev/null
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<channel name="xfce4-settings-manager" version="1.0">
+  <property name="last" type="empty">
+    <property name="window-width" type="int" value="722"/>
+    <property name="window-height" type="int" value="500"/>
+  </property>
+</channel>
diff --git a/xfce4/.config/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml b/xfce4/.config/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml
new file mode 100644 (file)
index 0000000..7f79454
--- /dev/null
@@ -0,0 +1,88 @@
+<?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="titleless_maximize" type="bool" value="false"/>
+    <property name="box_move" type="bool" value="false"/>
+    <property name="box_resize" type="bool" value="false"/>
+    <property name="button_layout" type="string" value="|"/>
+    <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_preview" type="bool" value="true"/>
+    <property name="cycle_tabwin_mode" type="int" value="0"/>
+    <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="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="false"/>
+    <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="sync_to_vblank" type="bool" value="false"/>
+    <property name="theme" type="string" value="Numix-Tomorrow"/>
+    <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="5"/>
+    <property name="wrap_cycle" type="bool" value="true"/>
+    <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 name="zoom_desktop" type="bool" value="true"/>
+    <property name="workspace_names" type="array">
+      <value type="string" value="misc2"/>
+      <value type="string" value="code"/>
+      <value type="string" value="term"/>
+      <value type="string" value="misc1"/>
+      <value type="string" value="misc2"/>
+    </property>
+    <property name="horiz_scroll_opacity" type="bool" value="false"/>
+  </property>
+</channel>
diff --git a/xfce4/.config/xfce4/xfconf/xfce-perchannel-xml/xsettings.xml b/xfce4/.config/xfce4/xfconf/xfce-perchannel-xml/xsettings.xml
new file mode 100644 (file)
index 0000000..e95b04c
--- /dev/null
@@ -0,0 +1,41 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<channel name="xsettings" version="1.0">
+  <property name="Net" type="empty">
+    <property name="ThemeName" type="string" value="Numix-Tomorrow"/>
+    <property name="IconThemeName" type="string" value="Moka"/>
+    <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="int" value="96"/>
+    <property name="Antialias" type="empty"/>
+    <property name="Hinting" type="empty"/>
+    <property name="HintStyle" type="string" value="hintslight"/>
+    <property name="RGBA" type="string" value="rgb"/>
+  </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="bool" value="true"/>
+    <property name="ButtonImages" type="bool" value="false"/>
+    <property name="MenuBarAccel" type="empty"/>
+    <property name="CursorThemeName" type="empty"/>
+    <property name="CursorThemeSize" type="empty"/>
+    <property name="DecorationLayout" type="string" value=":"/>
+  </property>
+  <property name="Xfce" type="empty">
+    <property name="LastCustomDPI" type="int" value="96"/>
+  </property>
+</channel>