Compare commits
2 Commits
desktop-i3
...
headless
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b4008c2d3c | ||
|
|
3bc8fdb2e8 |
@@ -1,13 +0,0 @@
|
|||||||
[Desktop Entry]
|
|
||||||
Encoding=UTF-8
|
|
||||||
Version=0.9.4
|
|
||||||
Type=Application
|
|
||||||
Name=i3
|
|
||||||
Comment=tiling window manager
|
|
||||||
Exec=i3
|
|
||||||
OnlyShowIn=XFCE;
|
|
||||||
RunHook=0
|
|
||||||
StartupNotify=false
|
|
||||||
Terminal=false
|
|
||||||
Hidden=false
|
|
||||||
|
|
||||||
@@ -1,13 +0,0 @@
|
|||||||
[Desktop Entry]
|
|
||||||
Encoding=UTF-8
|
|
||||||
Version=0.9.4
|
|
||||||
Type=Application
|
|
||||||
Name=xcape
|
|
||||||
Comment=
|
|
||||||
Exec=xcape -e 'Super_L=Alt_L|F1'
|
|
||||||
OnlyShowIn=XFCE;
|
|
||||||
RunHook=0
|
|
||||||
StartupNotify=false
|
|
||||||
Terminal=false
|
|
||||||
Hidden=false
|
|
||||||
|
|
||||||
@@ -1,12 +0,0 @@
|
|||||||
[Desktop Entry]
|
|
||||||
Encoding=UTF-8
|
|
||||||
Version=0.9.4
|
|
||||||
Type=Application
|
|
||||||
Name=XFCE-Panel Workaround
|
|
||||||
Comment=
|
|
||||||
Exec=/etc/skel/.config/autostart/xfce-pbw.sh
|
|
||||||
OnlyShowIn=XFCE;
|
|
||||||
StartupNotify=false
|
|
||||||
Terminal=false
|
|
||||||
Hidden=false
|
|
||||||
|
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
#/bin/sh
|
|
||||||
sleep 5
|
|
||||||
xfsettingsd --replace &
|
|
||||||
sleep 15
|
|
||||||
xfsettingsd --replace &
|
|
||||||
sleep 25
|
|
||||||
xfsettingsd --replace &
|
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
[Desktop Entry]
|
|
||||||
Hidden=false
|
|
||||||
TryExec=xfce4-clipman
|
|
||||||
Exec=xfce4-clipman
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
[Desktop Entry]
|
|
||||||
Hidden=true
|
|
||||||
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
[Desktop Entry]
|
|
||||||
Hidden=true
|
|
||||||
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
[Desktop Entry]
|
|
||||||
Hidden=true
|
|
||||||
@@ -1,13 +0,0 @@
|
|||||||
{
|
|
||||||
"BACKGROUND_COLOR": "#202225",
|
|
||||||
"OPEN_ON_STARTUP": false,
|
|
||||||
"MINIMIZE_TO_TRAY": false,
|
|
||||||
"IS_MAXIMIZED": false,
|
|
||||||
"IS_MINIMIZED": false,
|
|
||||||
"WINDOW_BOUNDS": {
|
|
||||||
"x": 3841,
|
|
||||||
"y": 1,
|
|
||||||
"width": 1598,
|
|
||||||
"height": 898
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Binary file not shown.
|
Before Width: | Height: | Size: 108 KiB |
@@ -1,143 +0,0 @@
|
|||||||
# vim: filetype=i3config
|
|
||||||
|
|
||||||
# this config is based on github.com:LukeSmithxyz/voidrice 884dcbdc4792eed95e558af84491eb3100d314a2
|
|
||||||
# to immediately apply a new config, run `i3-msg reload; i3-msg restart`
|
|
||||||
|
|
||||||
# This config file will use environmental variables such as $BROWSER and $TERMINAL.
|
|
||||||
# You can set these variables in ~/.profile or ~/.bash_profile if you have it as below:
|
|
||||||
|
|
||||||
|
|
||||||
# set modifier key, Mod4 is super (windows), Mod1 = Alt key
|
|
||||||
set $mod Mod4
|
|
||||||
set $termEm xfce4-terminal
|
|
||||||
|
|
||||||
# power options
|
|
||||||
set $shutdown shutdown -h now
|
|
||||||
set $reboot reboot
|
|
||||||
set $hibernate sudo -A systemctl suspend
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# DROPDOWN
|
|
||||||
# Scratchpad binds
|
|
||||||
# bindsym $mod+p [class="bitwarden"] scratchpad show; move position center
|
|
||||||
# General dropdown window traits. The order can matter.
|
|
||||||
# sticky allows windows to stay visible even when switching workspaces
|
|
||||||
for_window [instance="dropdown_*"] sticky enable
|
|
||||||
# Specific dropdown window traits
|
|
||||||
for_window [instance="dropdown_tmux"] resize set 625 450
|
|
||||||
for_window [instance="dropdown_tmux"] border pixel 3
|
|
||||||
# start scratchpads
|
|
||||||
exec --no-startup-id bitwarden-desktop
|
|
||||||
for_window [class="bitwarden"] move scratchpad
|
|
||||||
|
|
||||||
|
|
||||||
# i3 BINDS
|
|
||||||
bindsym $mod+h focus left
|
|
||||||
bindsym $mod+Shift+h move left
|
|
||||||
bindsym $mod+j focus down
|
|
||||||
bindsym $mod+Shift+j move down
|
|
||||||
bindsym $mod+k focus up
|
|
||||||
bindsym $mod+Shift+k move up
|
|
||||||
bindsym $mod+l focus right
|
|
||||||
bindsym $mod+Shift+l move right
|
|
||||||
bindsym $mod+Shift+u resize grow width 1 px or 1 ppt
|
|
||||||
bindsym $mod+Shift+i resize shrink height 1 px or 1 ppt
|
|
||||||
bindsym $mod+Shift+o resize grow height 1 px or 1 ppt
|
|
||||||
bindsym $mod+Shift+p resize shrink width 1 px or 1 ppt
|
|
||||||
bindsym $mod+Shift+r exec --no-startup-id winresize
|
|
||||||
bindsym $mod+f fullscreen toggle
|
|
||||||
bindsym $mod+t workspace_layout tabbed
|
|
||||||
bindsym $mod+Shift+t workspace_layout tiling
|
|
||||||
bindsym $mod+q [con_id="__focused__" instance="^(?!dropdown_).*$"] kill
|
|
||||||
# bindsym $mod+o split h;exec notify-send 'tile horizontally'
|
|
||||||
# bindsym $mod+i split v;exec notify-send 'tile vertically'
|
|
||||||
|
|
||||||
# No focus on mouse over (allows scrolling without changing focus)
|
|
||||||
focus_follows_mouse no
|
|
||||||
# remove title bar
|
|
||||||
default_border pixel 1
|
|
||||||
default_floating_border pixel 1
|
|
||||||
|
|
||||||
# ARROW KEYS
|
|
||||||
bindsym $mod+Ctrl+Left move workspace to output left
|
|
||||||
bindsym $mod+Ctrl+Down move workspace to output down
|
|
||||||
bindsym $mod+Ctrl+Up move workspace to output up
|
|
||||||
bindsym $mod+Ctrl+Right move workspace to output right
|
|
||||||
|
|
||||||
# WORKSPACES
|
|
||||||
# prior and next ar PgUp and PgDown
|
|
||||||
bindsym $mod+Prior workspace prev
|
|
||||||
bindsym $mod+Shift+Prior move container to workspace prev
|
|
||||||
bindsym $mod+Next workspace next
|
|
||||||
bindsym $mod+Shift+Next move container to workspace next
|
|
||||||
bindsym $mod+Tab workspace back_and_forth
|
|
||||||
|
|
||||||
# name workspaces
|
|
||||||
set $ws1 "1"
|
|
||||||
set $ws2 "2"
|
|
||||||
set $ws3 "3"
|
|
||||||
set $ws4 "4"
|
|
||||||
set $ws5 "5"
|
|
||||||
set $ws6 "6"
|
|
||||||
set $ws7 "7"
|
|
||||||
set $ws8 "8"
|
|
||||||
set $ws9 "9"
|
|
||||||
set $ws10 "10"
|
|
||||||
|
|
||||||
# switch to workspace
|
|
||||||
bindsym $mod+1 workspace $ws1
|
|
||||||
bindsym $mod+Shift+1 move container to workspace $ws1
|
|
||||||
bindsym $mod+2 workspace $ws2
|
|
||||||
bindsym $mod+Shift+2 move container to workspace $ws2
|
|
||||||
bindsym $mod+3 workspace $ws3
|
|
||||||
bindsym $mod+Shift+3 move container to workspace $ws3
|
|
||||||
bindsym $mod+4 workspace $ws4
|
|
||||||
bindsym $mod+Shift+4 move container to workspace $ws4
|
|
||||||
bindsym $mod+5 workspace $ws5
|
|
||||||
bindsym $mod+Shift+5 move container to workspace $ws5
|
|
||||||
bindsym $mod+6 workspace $ws6
|
|
||||||
bindsym $mod+Shift+6 move container to workspace $ws6
|
|
||||||
bindsym $mod+7 workspace $ws7
|
|
||||||
bindsym $mod+Shift+7 move container to workspace $ws7
|
|
||||||
bindsym $mod+8 workspace $ws8
|
|
||||||
bindsym $mod+Shift+8 move container to workspace $ws8
|
|
||||||
bindsym $mod+9 workspace $ws9
|
|
||||||
bindsym $mod+Shift+9 move container to workspace $ws9
|
|
||||||
bindsym $mod+0 workspace $ws10
|
|
||||||
bindsym $mod+Shift+0 move container to workspace $ws10
|
|
||||||
|
|
||||||
|
|
||||||
# KEYBOARD SHORTCUTS
|
|
||||||
bindsym $mod+d exec --no-startup-id xfce4-popup-whiskermenu
|
|
||||||
bindsym $mod+Return exec --no-startup-id $termEm
|
|
||||||
bindsym $mod+w exec --no-startup-id $BROWSER
|
|
||||||
# Show selection:
|
|
||||||
bindsym $mod+Insert exec --no-startup-id showclip
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# COLORS
|
|
||||||
set $black #272822
|
|
||||||
set $white #FFFFFF
|
|
||||||
set $pink #F92672
|
|
||||||
set $blue #66D9EF
|
|
||||||
set $green #A6E22E
|
|
||||||
set $orange #FD971F
|
|
||||||
set $yellow #E6DB74
|
|
||||||
set $purple #AE81FF
|
|
||||||
# class border bg. text indicator child_border
|
|
||||||
client.focused $black $black $green $blue $blue
|
|
||||||
client.focused_inactive $black $black $blue $black $black
|
|
||||||
client.unfocused $black $black $white $black $black
|
|
||||||
client.background #f1232
|
|
||||||
|
|
||||||
# EXTERNAL
|
|
||||||
# set background picture
|
|
||||||
exec --no-startup-id nitrogen --set-zoom-fill $HOME/.config/i3/bg.png
|
|
||||||
# start xfce bar
|
|
||||||
exec --no-startup-id xfce4-panel --disable-wm-check
|
|
||||||
# try to start tray tools / applets manually
|
|
||||||
exec --no-startup-id nm-applet
|
|
||||||
exec --no-startup-id blueman-applet
|
|
||||||
|
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
{
|
|
||||||
"color_scheme": "Packages/Color Scheme - Default/Monokai.sublime-color-scheme",
|
|
||||||
"font_size": 15,
|
|
||||||
"theme": "Default.sublime-theme",
|
|
||||||
"create_window_at_startup": false,
|
|
||||||
|
|
||||||
}
|
|
||||||
5128
.config/vlc/vlcrc
5128
.config/vlc/vlcrc
File diff suppressed because it is too large
Load Diff
@@ -1 +0,0 @@
|
|||||||
/home/en/.config/xfce4/desktop/icons.screen0-4464x1424.rc
|
|
||||||
@@ -1,15 +0,0 @@
|
|||||||
[xfdesktop-version-4.10.3+-rcfile_format]
|
|
||||||
4.10.3+=true
|
|
||||||
|
|
||||||
[Trash]
|
|
||||||
row=0
|
|
||||||
col=0
|
|
||||||
|
|
||||||
[/]
|
|
||||||
row=1
|
|
||||||
col=0
|
|
||||||
|
|
||||||
[/home/en]
|
|
||||||
row=2
|
|
||||||
col=0
|
|
||||||
|
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
[xfdesktop-version-4.10.3+-rcfile_format]
|
|
||||||
4.10.3+=true
|
|
||||||
|
|
||||||
[/]
|
|
||||||
row=0
|
|
||||||
col=0
|
|
||||||
|
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
[xfdesktop-version-4.10.3+-rcfile_format]
|
|
||||||
4.10.3+=true
|
|
||||||
|
|
||||||
[/]
|
|
||||||
row=0
|
|
||||||
col=0
|
|
||||||
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
auto-online=false
|
|
||||||
|
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
FileManager=Thunar
|
|
||||||
WebBrowser=firefox
|
|
||||||
MailReader=thunderbird
|
|
||||||
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
layout=3
|
|
||||||
date_font=Bitstream Vera Sans 8
|
|
||||||
time_font=Bitstream Vera Sans 8
|
|
||||||
date_format=%Y-%m-%d
|
|
||||||
time_format=%H:%M
|
|
||||||
|
|
||||||
@@ -1,88 +0,0 @@
|
|||||||
favorites=xfce4-terminal-emulator.desktop,xfce4-file-manager.desktop,xfce4-web-browser.desktop,xfce4-mail-reader.desktop
|
|
||||||
recent=org.manjaro.pamac.manager.desktop,telegramdesktop.desktop,thunar.desktop,bitwarden.desktop,xfce-display-settings.desktop,joplin.desktop,jetbrains-idea.desktop,vlc.desktop,discord.desktop,teamspeak3.desktop
|
|
||||||
button-icon=/usr/share/icons/whiskermenu-manjaro.svg
|
|
||||||
button-single-row=false
|
|
||||||
show-button-title=false
|
|
||||||
show-button-icon=true
|
|
||||||
launcher-show-name=true
|
|
||||||
launcher-show-description=true
|
|
||||||
launcher-show-tooltip=true
|
|
||||||
launcher-icon-size=2
|
|
||||||
hover-switch-category=false
|
|
||||||
category-show-name=true
|
|
||||||
category-icon-size=1
|
|
||||||
sort-categories=true
|
|
||||||
view-mode=1
|
|
||||||
default-category=0
|
|
||||||
recent-items-max=10
|
|
||||||
favorites-in-recent=true
|
|
||||||
position-search-alternate=false
|
|
||||||
position-commands-alternate=false
|
|
||||||
position-categories-alternate=false
|
|
||||||
position-categories-horizontal=false
|
|
||||||
stay-on-focus-out=false
|
|
||||||
profile-shape=0
|
|
||||||
confirm-session-command=true
|
|
||||||
menu-width=510
|
|
||||||
menu-height=549
|
|
||||||
menu-opacity=100
|
|
||||||
command-settings=xfce4-settings-manager
|
|
||||||
show-command-settings=true
|
|
||||||
command-lockscreen=xflock4
|
|
||||||
show-command-lockscreen=true
|
|
||||||
command-switchuser=dm-tool switch-to-greeter
|
|
||||||
show-command-switchuser=true
|
|
||||||
command-logoutuser=xfce4-session-logout --logout --fast
|
|
||||||
show-command-logoutuser=false
|
|
||||||
command-restart=xfce4-session-logout --reboot --fast
|
|
||||||
show-command-restart=false
|
|
||||||
command-shutdown=xfce4-session-logout --halt --fast
|
|
||||||
show-command-shutdown=false
|
|
||||||
command-suspend=xfce4-session-logout --suspend
|
|
||||||
show-command-suspend=false
|
|
||||||
command-hibernate=xfce4-session-logout --hibernate
|
|
||||||
show-command-hibernate=false
|
|
||||||
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=6
|
|
||||||
|
|
||||||
[action0]
|
|
||||||
name=Man Pages
|
|
||||||
pattern=#
|
|
||||||
command=exo-open --launch TerminalEmulator man %s
|
|
||||||
regex=false
|
|
||||||
|
|
||||||
[action1]
|
|
||||||
name=Search the Web
|
|
||||||
pattern=?
|
|
||||||
command=exo-open --launch WebBrowser https://duckduckgo.com/?q=%u
|
|
||||||
regex=false
|
|
||||||
|
|
||||||
[action2]
|
|
||||||
name=Search for Files
|
|
||||||
pattern=-
|
|
||||||
command=catfish --path=~ --start %s
|
|
||||||
regex=false
|
|
||||||
|
|
||||||
[action3]
|
|
||||||
name=Wikipedia
|
|
||||||
pattern=!w
|
|
||||||
command=exo-open --launch WebBrowser https://en.wikipedia.org/wiki/%u
|
|
||||||
regex=false
|
|
||||||
|
|
||||||
[action4]
|
|
||||||
name=Run in Terminal
|
|
||||||
pattern=!
|
|
||||||
command=exo-open --launch TerminalEmulator %s
|
|
||||||
regex=false
|
|
||||||
|
|
||||||
[action5]
|
|
||||||
name=Open URI
|
|
||||||
pattern=^(file|http|https):\\/\\/(.*)$
|
|
||||||
command=exo-open \\0
|
|
||||||
regex=true
|
|
||||||
|
|
||||||
@@ -1,44 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<actions>
|
|
||||||
<action>
|
|
||||||
<name>Bugz</name>
|
|
||||||
<regex>bug\s*#?\s*([0-9]+)</regex>
|
|
||||||
<group>0</group>
|
|
||||||
<commands>
|
|
||||||
<command>
|
|
||||||
<name>GNOME Bug</name>
|
|
||||||
<exec>exo-open http://bugzilla.gnome.org/show_bug.cgi?id=\1</exec>
|
|
||||||
</command>
|
|
||||||
<command>
|
|
||||||
<name>Xfce Bug</name>
|
|
||||||
<exec>exo-open http://bugzilla.xfce.org/show_bug.cgi?id=\1</exec>
|
|
||||||
</command>
|
|
||||||
</commands>
|
|
||||||
</action>
|
|
||||||
<action>
|
|
||||||
<name>Image</name>
|
|
||||||
<regex>(http|ftp).+\.(jpg|png|gif)</regex>
|
|
||||||
<group>0</group>
|
|
||||||
<commands>
|
|
||||||
<command>
|
|
||||||
<name>View with Ristretto</name>
|
|
||||||
<exec>ristretto "\0"</exec>
|
|
||||||
</command>
|
|
||||||
<command>
|
|
||||||
<name>Edit with Gimp</name>
|
|
||||||
<exec>gimp-remote "\0"</exec>
|
|
||||||
</command>
|
|
||||||
</commands>
|
|
||||||
</action>
|
|
||||||
<action>
|
|
||||||
<name>Long URL</name>
|
|
||||||
<regex>http://[^\s]{120,}</regex>
|
|
||||||
<group>0</group>
|
|
||||||
<commands>
|
|
||||||
<command>
|
|
||||||
<name>Shrink the URL</name>
|
|
||||||
<exec>exo-open http://tinyurl.com/create.php?url=\0</exec>
|
|
||||||
</command>
|
|
||||||
</commands>
|
|
||||||
</action>
|
|
||||||
</actions>
|
|
||||||
@@ -1,30 +0,0 @@
|
|||||||
[Configuration]
|
|
||||||
MiscAlwaysShowTabs=FALSE
|
|
||||||
MiscBell=FALSE
|
|
||||||
MiscBellUrgent=FALSE
|
|
||||||
MiscBordersDefault=TRUE
|
|
||||||
MiscCursorBlinks=FALSE
|
|
||||||
MiscCursorShape=TERMINAL_CURSOR_SHAPE_BLOCK
|
|
||||||
MiscDefaultGeometry=80x24
|
|
||||||
MiscInheritGeometry=FALSE
|
|
||||||
MiscMenubarDefault=TRUE
|
|
||||||
MiscMouseAutohide=FALSE
|
|
||||||
MiscMouseWheelZoom=TRUE
|
|
||||||
MiscToolbarDefault=FALSE
|
|
||||||
MiscConfirmClose=FALSE
|
|
||||||
MiscCycleTabs=TRUE
|
|
||||||
MiscTabCloseButtons=TRUE
|
|
||||||
MiscTabCloseMiddleClick=TRUE
|
|
||||||
MiscTabPosition=GTK_POS_TOP
|
|
||||||
MiscHighlightUrls=TRUE
|
|
||||||
MiscMiddleClickOpensUri=FALSE
|
|
||||||
MiscCopyOnSelect=FALSE
|
|
||||||
MiscShowRelaunchDialog=TRUE
|
|
||||||
MiscRewrapOnResize=TRUE
|
|
||||||
MiscUseShiftArrowsToScroll=FALSE
|
|
||||||
MiscSlimTabs=FALSE
|
|
||||||
MiscNewTabAdjacent=FALSE
|
|
||||||
MiscSearchDialogOpacity=100
|
|
||||||
MiscShowUnsafePasteDialog=TRUE
|
|
||||||
MiscRightClickAction=TERMINAL_RIGHT_CLICK_ACTION_CONTEXT_MENU
|
|
||||||
|
|
||||||
@@ -1,183 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
|
|
||||||
<channel name="displays" version="1.0">
|
|
||||||
<property name="ActiveProfile" type="string" value="f66c01e28187a10aaf92e14d049783bc98954348"/>
|
|
||||||
<property name="Default" type="empty">
|
|
||||||
<property name="eDP-1" type="string" value="Laptop">
|
|
||||||
<property name="Active" type="bool" value="true"/>
|
|
||||||
<property name="EDID" type="string" value="6286d3faef3ac66bdb7b8d17bbbcd438a9cc8327"/>
|
|
||||||
<property name="Resolution" type="string" value="1920x1080"/>
|
|
||||||
<property name="RefreshRate" type="double" value="60.020425"/>
|
|
||||||
<property name="Rotation" type="int" value="0"/>
|
|
||||||
<property name="Reflection" type="string" value="0"/>
|
|
||||||
<property name="Primary" type="bool" value="false"/>
|
|
||||||
<property name="Scale" type="empty">
|
|
||||||
<property name="X" type="double" value="1.000000"/>
|
|
||||||
<property name="Y" type="double" value="1.000000"/>
|
|
||||||
</property>
|
|
||||||
<property name="Position" type="empty">
|
|
||||||
<property name="X" type="int" value="0"/>
|
|
||||||
<property name="Y" type="int" value="0"/>
|
|
||||||
</property>
|
|
||||||
</property>
|
|
||||||
<property name="HDMI-2" type="string" value="Dell Inc. 27"">
|
|
||||||
<property name="Active" type="bool" value="true"/>
|
|
||||||
<property name="EDID" type="string" value="8e85084eac2a6fde3e963b461d47fe6654a8eca3"/>
|
|
||||||
<property name="Resolution" type="string" value="2560x1440"/>
|
|
||||||
<property name="RefreshRate" type="double" value="59.950550"/>
|
|
||||||
<property name="Rotation" type="int" value="0"/>
|
|
||||||
<property name="Reflection" type="string" value="0"/>
|
|
||||||
<property name="Primary" type="bool" value="true"/>
|
|
||||||
<property name="Scale" type="empty">
|
|
||||||
<property name="X" type="double" value="1.000000"/>
|
|
||||||
<property name="Y" type="double" value="1.000000"/>
|
|
||||||
</property>
|
|
||||||
<property name="Position" type="empty">
|
|
||||||
<property name="X" type="int" value="1920"/>
|
|
||||||
<property name="Y" type="int" value="0"/>
|
|
||||||
</property>
|
|
||||||
</property>
|
|
||||||
<property name="DP-1" type="string" value="Acer Technologies 20"">
|
|
||||||
<property name="Active" type="bool" value="true"/>
|
|
||||||
<property name="EDID" type="string" value="83c46d528bd3ae63202b3a95940b788aae98da3d"/>
|
|
||||||
<property name="Resolution" type="string" value="1600x900"/>
|
|
||||||
<property name="RefreshRate" type="double" value="59.946021"/>
|
|
||||||
<property name="Rotation" type="int" value="0"/>
|
|
||||||
<property name="Reflection" type="string" value="0"/>
|
|
||||||
<property name="Primary" type="bool" value="false"/>
|
|
||||||
<property name="Scale" type="empty">
|
|
||||||
<property name="X" type="double" value="1.000000"/>
|
|
||||||
<property name="Y" type="double" value="1.000000"/>
|
|
||||||
</property>
|
|
||||||
<property name="Position" type="empty">
|
|
||||||
<property name="X" type="int" value="3840"/>
|
|
||||||
<property name="Y" type="int" value="180"/>
|
|
||||||
</property>
|
|
||||||
</property>
|
|
||||||
<property name="DP-2-3" type="string" value="Fujitsu Siemens Computers GmbH 24"">
|
|
||||||
<property name="Active" type="bool" value="true"/>
|
|
||||||
<property name="EDID" type="string" value="3ac067f469266177b5b402de9b36f341716166c4"/>
|
|
||||||
<property name="Resolution" type="string" value="1920x1080"/>
|
|
||||||
<property name="RefreshRate" type="double" value="60.000000"/>
|
|
||||||
<property name="Rotation" type="int" value="0"/>
|
|
||||||
<property name="Reflection" type="string" value="0"/>
|
|
||||||
<property name="Primary" type="bool" value="false"/>
|
|
||||||
<property name="Scale" type="empty">
|
|
||||||
<property name="X" type="double" value="1.000000"/>
|
|
||||||
<property name="Y" type="double" value="1.000000"/>
|
|
||||||
</property>
|
|
||||||
<property name="Position" type="empty">
|
|
||||||
<property name="X" type="int" value="1920"/>
|
|
||||||
<property name="Y" type="int" value="0"/>
|
|
||||||
</property>
|
|
||||||
</property>
|
|
||||||
</property>
|
|
||||||
<property name="Fallback" type="empty">
|
|
||||||
<property name="eDP-1" type="string" value="Laptop">
|
|
||||||
<property name="Active" type="bool" value="true"/>
|
|
||||||
<property name="EDID" type="string" value="6286d3faef3ac66bdb7b8d17bbbcd438a9cc8327"/>
|
|
||||||
<property name="Resolution" type="string" value="1920x1080"/>
|
|
||||||
<property name="RefreshRate" type="double" value="60.020425"/>
|
|
||||||
<property name="Rotation" type="int" value="0"/>
|
|
||||||
<property name="Reflection" type="string" value="0"/>
|
|
||||||
<property name="Primary" type="bool" value="false"/>
|
|
||||||
<property name="Scale" type="empty">
|
|
||||||
<property name="X" type="double" value="1.000000"/>
|
|
||||||
<property name="Y" type="double" value="1.000000"/>
|
|
||||||
</property>
|
|
||||||
<property name="Position" type="empty">
|
|
||||||
<property name="X" type="int" value="0"/>
|
|
||||||
<property name="Y" type="int" value="0"/>
|
|
||||||
</property>
|
|
||||||
</property>
|
|
||||||
<property name="HDMI-2" type="string" value="Dell Inc. 27"">
|
|
||||||
<property name="Active" type="bool" value="true"/>
|
|
||||||
<property name="EDID" type="string" value="8e85084eac2a6fde3e963b461d47fe6654a8eca3"/>
|
|
||||||
<property name="Resolution" type="string" value="2560x1440"/>
|
|
||||||
<property name="RefreshRate" type="double" value="59.950550"/>
|
|
||||||
<property name="Rotation" type="int" value="0"/>
|
|
||||||
<property name="Reflection" type="string" value="0"/>
|
|
||||||
<property name="Primary" type="bool" value="true"/>
|
|
||||||
<property name="Scale" type="empty">
|
|
||||||
<property name="X" type="double" value="1.000000"/>
|
|
||||||
<property name="Y" type="double" value="1.000000"/>
|
|
||||||
</property>
|
|
||||||
<property name="Position" type="empty">
|
|
||||||
<property name="X" type="int" value="1920"/>
|
|
||||||
<property name="Y" type="int" value="0"/>
|
|
||||||
</property>
|
|
||||||
</property>
|
|
||||||
<property name="DP-1" type="string" value="Acer Technologies 20"">
|
|
||||||
<property name="Active" type="bool" value="true"/>
|
|
||||||
<property name="EDID" type="string" value="83c46d528bd3ae63202b3a95940b788aae98da3d"/>
|
|
||||||
<property name="Resolution" type="string" value="1600x900"/>
|
|
||||||
<property name="RefreshRate" type="double" value="59.946021"/>
|
|
||||||
<property name="Rotation" type="int" value="0"/>
|
|
||||||
<property name="Reflection" type="string" value="0"/>
|
|
||||||
<property name="Primary" type="bool" value="false"/>
|
|
||||||
<property name="Scale" type="empty">
|
|
||||||
<property name="X" type="double" value="1.000000"/>
|
|
||||||
<property name="Y" type="double" value="1.000000"/>
|
|
||||||
</property>
|
|
||||||
<property name="Position" type="empty">
|
|
||||||
<property name="X" type="int" value="3840"/>
|
|
||||||
<property name="Y" type="int" value="180"/>
|
|
||||||
</property>
|
|
||||||
</property>
|
|
||||||
<property name="DP-2-3" type="string" value="Fujitsu Siemens Computers GmbH 24"">
|
|
||||||
<property name="Active" type="bool" value="true"/>
|
|
||||||
<property name="EDID" type="string" value="3ac067f469266177b5b402de9b36f341716166c4"/>
|
|
||||||
<property name="Resolution" type="string" value="1920x1080"/>
|
|
||||||
<property name="RefreshRate" type="double" value="60.000000"/>
|
|
||||||
<property name="Rotation" type="int" value="0"/>
|
|
||||||
<property name="Reflection" type="string" value="0"/>
|
|
||||||
<property name="Primary" type="bool" value="false"/>
|
|
||||||
<property name="Scale" type="empty">
|
|
||||||
<property name="X" type="double" value="1.000000"/>
|
|
||||||
<property name="Y" type="double" value="1.000000"/>
|
|
||||||
</property>
|
|
||||||
<property name="Position" type="empty">
|
|
||||||
<property name="X" type="int" value="1920"/>
|
|
||||||
<property name="Y" type="int" value="0"/>
|
|
||||||
</property>
|
|
||||||
</property>
|
|
||||||
</property>
|
|
||||||
<property name="Notify" type="bool" value="true"/>
|
|
||||||
<property name="AutoEnableProfiles" type="bool" value="true"/>
|
|
||||||
<property name="f66c01e28187a10aaf92e14d049783bc98954348" type="string" value="dell_u2711">
|
|
||||||
<property name="eDP-1" type="string" value="Laptop">
|
|
||||||
<property name="Active" type="bool" value="true"/>
|
|
||||||
<property name="EDID" type="string" value="6286d3faef3ac66bdb7b8d17bbbcd438a9cc8327"/>
|
|
||||||
<property name="Resolution" type="string" value="1920x1080"/>
|
|
||||||
<property name="RefreshRate" type="double" value="60.020425"/>
|
|
||||||
<property name="Rotation" type="int" value="0"/>
|
|
||||||
<property name="Reflection" type="string" value="0"/>
|
|
||||||
<property name="Primary" type="bool" value="false"/>
|
|
||||||
<property name="Scale" type="empty">
|
|
||||||
<property name="X" type="double" value="1.000000"/>
|
|
||||||
<property name="Y" type="double" value="1.000000"/>
|
|
||||||
</property>
|
|
||||||
<property name="Position" type="empty">
|
|
||||||
<property name="X" type="int" value="0"/>
|
|
||||||
<property name="Y" type="int" value="0"/>
|
|
||||||
</property>
|
|
||||||
</property>
|
|
||||||
<property name="HDMI-2" type="string" value="Dell Inc. 27"">
|
|
||||||
<property name="Active" type="bool" value="true"/>
|
|
||||||
<property name="EDID" type="string" value="8e85084eac2a6fde3e963b461d47fe6654a8eca3"/>
|
|
||||||
<property name="Resolution" type="string" value="2560x1440"/>
|
|
||||||
<property name="RefreshRate" type="double" value="59.950550"/>
|
|
||||||
<property name="Rotation" type="int" value="0"/>
|
|
||||||
<property name="Reflection" type="string" value="0"/>
|
|
||||||
<property name="Primary" type="bool" value="true"/>
|
|
||||||
<property name="Scale" type="empty">
|
|
||||||
<property name="X" type="double" value="1.000000"/>
|
|
||||||
<property name="Y" type="double" value="1.000000"/>
|
|
||||||
</property>
|
|
||||||
<property name="Position" type="empty">
|
|
||||||
<property name="X" type="int" value="1920"/>
|
|
||||||
<property name="Y" type="int" value="0"/>
|
|
||||||
</property>
|
|
||||||
</property>
|
|
||||||
</property>
|
|
||||||
</channel>
|
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
<?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>
|
|
||||||
</channel>
|
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
<?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 name="KeyRepeat" type="empty">
|
|
||||||
<property name="Delay" type="int" value="297"/>
|
|
||||||
<property name="Rate" type="int" value="73"/>
|
|
||||||
</property>
|
|
||||||
</property>
|
|
||||||
</channel>
|
|
||||||
@@ -1,30 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
|
|
||||||
<channel name="pointers" version="1.0">
|
|
||||||
<property name="SynPS2_Synaptics_TouchPad" type="empty">
|
|
||||||
<property name="RightHanded" type="bool" value="true"/>
|
|
||||||
<property name="Threshold" type="int" value="1"/>
|
|
||||||
<property name="Acceleration" type="double" value="8.000000"/>
|
|
||||||
<property name="Properties" type="empty">
|
|
||||||
<property name="libinput_Tapping_Enabled" type="int" value="1"/>
|
|
||||||
</property>
|
|
||||||
</property>
|
|
||||||
<property name="SYNA360200_09115288_Touchpad" type="empty">
|
|
||||||
<property name="RightHanded" type="bool" value="true"/>
|
|
||||||
<property name="Threshold" type="int" value="1"/>
|
|
||||||
<property name="Acceleration" type="double" value="8.000000"/>
|
|
||||||
<property name="Properties" type="empty">
|
|
||||||
<property name="libinput_Tapping_Enabled" type="int" value="1"/>
|
|
||||||
</property>
|
|
||||||
</property>
|
|
||||||
<property name="ETPS2_Elantech_Touchpad" type="empty">
|
|
||||||
<property name="Properties" type="empty">
|
|
||||||
<property name="libinput_Tapping_Enabled" type="int" value="1"/>
|
|
||||||
</property>
|
|
||||||
</property>
|
|
||||||
<property name="ALPS000100_09115288_Touchpad" type="empty">
|
|
||||||
<property name="Properties" type="empty">
|
|
||||||
<property name="libinput_Tapping_Enabled" type="int" value="1"/>
|
|
||||||
</property>
|
|
||||||
</property>
|
|
||||||
</channel>
|
|
||||||
@@ -1,42 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
|
|
||||||
<channel name="thunar" version="1.0">
|
|
||||||
<property name="default-view" type="string" value="void"/>
|
|
||||||
<property name="last-compact-view-zoom-level" type="string" value="THUNAR_ZOOM_LEVEL_SMALLEST"/>
|
|
||||||
<property name="last-details-view-column-order" type="string" value="THUNAR_COLUMN_NAME,THUNAR_COLUMN_SIZE,THUNAR_COLUMN_TYPE,THUNAR_COLUMN_DATE_MODIFIED"/>
|
|
||||||
<property name="last-details-view-column-widths" type="string" value=""/>
|
|
||||||
<property name="last-details-view-fixed-columns" type="bool" value="false"/>
|
|
||||||
<property name="last-details-view-visible-columns" type="string" value="THUNAR_COLUMN_DATE_MODIFIED,THUNAR_COLUMN_NAME,THUNAR_COLUMN_SIZE,THUNAR_COLUMN_TYPE"/>
|
|
||||||
<property name="last-details-view-zoom-level" type="string" value="THUNAR_ZOOM_LEVEL_SMALLER"/>
|
|
||||||
<property name="last-icon-view-zoom-level" type="string" value="THUNAR_ZOOM_LEVEL_75_PERCENT"/>
|
|
||||||
<property name="last-location-bar" type="string" value="ThunarLocationEntry"/>
|
|
||||||
<property name="last-separator-position" type="int" value="197"/>
|
|
||||||
<property name="last-show-hidden" type="bool" value="true"/>
|
|
||||||
<property name="last-side-pane" type="string" value="ThunarShortcutsPane"/>
|
|
||||||
<property name="last-sort-column" type="string" value="THUNAR_COLUMN_NAME"/>
|
|
||||||
<property name="last-sort-order" type="string" value="GTK_SORT_ASCENDING"/>
|
|
||||||
<property name="last-statusbar-visible" type="bool" value="true"/>
|
|
||||||
<property name="last-view" type="string" value="ThunarIconView"/>
|
|
||||||
<property name="last-window-height" type="int" value="1021"/>
|
|
||||||
<property name="last-window-width" type="int" value="996"/>
|
|
||||||
<property name="last-window-maximized" type="bool" value="true"/>
|
|
||||||
<property name="misc-volume-management" type="bool" value="true"/>
|
|
||||||
<property name="misc-case-sensitive" type="bool" value="false"/>
|
|
||||||
<property name="misc-date-style" type="string" value="THUNAR_DATE_STYLE_SIMPLE"/>
|
|
||||||
<property name="misc-folders-first" type="bool" value="true"/>
|
|
||||||
<property name="misc-horizontal-wheel-navigates" type="bool" value="false"/>
|
|
||||||
<property name="misc-recursive-permissions" type="string" value="THUNAR_RECURSIVE_PERMISSIONS_ALWAYS"/>
|
|
||||||
<property name="misc-remember-geometry" type="bool" value="true"/>
|
|
||||||
<property name="misc-show-about-templates" type="bool" value="true"/>
|
|
||||||
<property name="misc-single-click" type="bool" value="false"/>
|
|
||||||
<property name="misc-single-click-timeout" type="uint" value="500"/>
|
|
||||||
<property name="misc-text-beside-icons" type="bool" value="false"/>
|
|
||||||
<property name="shortcuts-icon-emblems" type="bool" value="true"/>
|
|
||||||
<property name="shortcuts-icon-size" type="string" value="THUNAR_ICON_SIZE_SMALLEST"/>
|
|
||||||
<property name="tree-icon-emblems" type="bool" value="true"/>
|
|
||||||
<property name="tree-icon-size" type="string" value="THUNAR_ICON_SIZE_SMALLEST"/>
|
|
||||||
<property name="misc-middle-click-in-tab" type="bool" value="true"/>
|
|
||||||
<property name="hidden-bookmarks" type="array">
|
|
||||||
<value type="string" value="file:///home/en/Desktop"/>
|
|
||||||
</property>
|
|
||||||
</channel>
|
|
||||||
@@ -1,52 +0,0 @@
|
|||||||
<?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="image-path" type="string" value="/usr/share/backgrounds/xfce/illyria-default.jpg"/>
|
|
||||||
<property name="last-image" type="string" value="/usr/share/backgrounds/xfce/illyria-default.jpg"/>
|
|
||||||
<property name="last-single-image" type="string" value="/usr/share/backgrounds/xfce/illyria-default.jpg"/>
|
|
||||||
<property name="image-style" type="int" value="5"/>
|
|
||||||
</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/xfce/illyria-default.jpg"/>
|
|
||||||
</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/illyria-default.jpg"/>
|
|
||||||
</property>
|
|
||||||
</property>
|
|
||||||
<property name="monitorHDMI-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/xfce/xfce-verticals.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-verticals.png"/>
|
|
||||||
</property>
|
|
||||||
</property>
|
|
||||||
</property>
|
|
||||||
</property>
|
|
||||||
<property name="desktop-icons" type="empty">
|
|
||||||
<property name="style" type="int" value="2"/>
|
|
||||||
<property name="file-icons" type="empty">
|
|
||||||
<property name="show-removable" type="bool" value="false"/>
|
|
||||||
<property name="show-trash" type="bool" value="false"/>
|
|
||||||
<property name="show-home" type="bool" value="false"/>
|
|
||||||
</property>
|
|
||||||
<property name="icon-size" type="uint" value="42"/>
|
|
||||||
<property name="tooltip-size" type="double" value="96.000000"/>
|
|
||||||
</property>
|
|
||||||
<property name="last" type="empty">
|
|
||||||
<property name="window-width" type="int" value="619"/>
|
|
||||||
<property name="window-height" type="int" value="524"/>
|
|
||||||
</property>
|
|
||||||
</channel>
|
|
||||||
@@ -1,210 +0,0 @@
|
|||||||
<?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="<Alt>F1" type="empty"/>
|
|
||||||
<property name="<Alt>F2" type="empty">
|
|
||||||
<property name="startup-notify" type="empty"/>
|
|
||||||
</property>
|
|
||||||
<property name="<Alt>F3" type="empty">
|
|
||||||
<property name="startup-notify" type="empty"/>
|
|
||||||
</property>
|
|
||||||
<property name="<Primary><Alt>Delete" type="empty"/>
|
|
||||||
<property name="<Primary><Alt>l" type="empty"/>
|
|
||||||
<property name="<Primary><Alt>t" type="empty"/>
|
|
||||||
<property name="XF86Display" type="empty"/>
|
|
||||||
<property name="<Super>p" type="empty"/>
|
|
||||||
<property name="<Primary>Escape" type="empty"/>
|
|
||||||
<property name="XF86WWW" type="empty"/>
|
|
||||||
<property name="HomePage" type="empty"/>
|
|
||||||
<property name="XF86Mail" type="empty"/>
|
|
||||||
<property name="Print" type="empty"/>
|
|
||||||
<property name="<Alt>Print" type="empty"/>
|
|
||||||
<property name="<Shift>Print" type="empty"/>
|
|
||||||
<property name="<Super>e" type="empty"/>
|
|
||||||
<property name="<Primary><Alt>f" type="empty"/>
|
|
||||||
<property name="<Primary><Alt>Escape" type="empty"/>
|
|
||||||
<property name="<Primary><Shift>Escape" type="empty"/>
|
|
||||||
<property name="<Super>r" type="empty">
|
|
||||||
<property name="startup-notify" type="empty"/>
|
|
||||||
</property>
|
|
||||||
<property name="<Control><Alt>Delete" type="empty"/>
|
|
||||||
<property name="<Control>Escape" type="empty"/>
|
|
||||||
</property>
|
|
||||||
<property name="custom" type="empty">
|
|
||||||
<property name="<Alt>F3" type="empty">
|
|
||||||
<property name="startup-notify" type="bool" value="true"/>
|
|
||||||
</property>
|
|
||||||
<property name="<Alt>F2" type="empty">
|
|
||||||
<property name="startup-notify" type="bool" value="true"/>
|
|
||||||
</property>
|
|
||||||
<property name="override" type="bool" value="true"/>
|
|
||||||
<property name="Print" type="string" value="xfce4-screenshooter -fd 1"/>
|
|
||||||
<property name="<Shift>Print" type="string" value="xfce4-screenshooter -wd 1"/>
|
|
||||||
<property name="<Primary><Shift>Print" type="string" value="xfce4-screenshooter -r"/>
|
|
||||||
</property>
|
|
||||||
</property>
|
|
||||||
<property name="xfwm4" type="empty">
|
|
||||||
<property name="default" type="empty">
|
|
||||||
<property name="<Alt>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="<Alt>Tab" type="empty"/>
|
|
||||||
<property name="<Alt><Shift>Tab" type="empty"/>
|
|
||||||
<property name="<Alt>Delete" type="empty"/>
|
|
||||||
<property name="<Primary><Alt>Down" type="empty"/>
|
|
||||||
<property name="<Primary><Alt>Left" type="empty"/>
|
|
||||||
<property name="<Shift><Alt>Page_Down" type="empty"/>
|
|
||||||
<property name="<Alt>F4" type="empty"/>
|
|
||||||
<property name="<Alt>F6" type="empty"/>
|
|
||||||
<property name="<Alt>F7" type="empty"/>
|
|
||||||
<property name="<Alt>F8" type="empty"/>
|
|
||||||
<property name="<Alt>F9" type="empty"/>
|
|
||||||
<property name="<Alt>F10" type="empty"/>
|
|
||||||
<property name="<Alt>F11" type="empty"/>
|
|
||||||
<property name="<Alt>F12" type="empty"/>
|
|
||||||
<property name="<Primary><Shift><Alt>Left" type="empty"/>
|
|
||||||
<property name="<Primary><Alt>End" type="empty"/>
|
|
||||||
<property name="<Primary><Alt>Home" type="empty"/>
|
|
||||||
<property name="<Primary><Shift><Alt>Right" type="empty"/>
|
|
||||||
<property name="<Primary><Shift><Alt>Up" type="empty"/>
|
|
||||||
<property name="<Primary><Alt>KP_1" type="empty"/>
|
|
||||||
<property name="<Primary><Alt>KP_2" type="empty"/>
|
|
||||||
<property name="<Primary><Alt>KP_3" type="empty"/>
|
|
||||||
<property name="<Primary><Alt>KP_4" type="empty"/>
|
|
||||||
<property name="<Primary><Alt>KP_5" type="empty"/>
|
|
||||||
<property name="<Primary><Alt>KP_6" type="empty"/>
|
|
||||||
<property name="<Primary><Alt>KP_7" type="empty"/>
|
|
||||||
<property name="<Primary><Alt>KP_8" type="empty"/>
|
|
||||||
<property name="<Primary><Alt>KP_9" type="empty"/>
|
|
||||||
<property name="<Alt>space" type="empty"/>
|
|
||||||
<property name="<Shift><Alt>Page_Up" type="empty"/>
|
|
||||||
<property name="<Primary><Alt>Right" type="empty"/>
|
|
||||||
<property name="<Primary><Alt>d" type="empty"/>
|
|
||||||
<property name="<Primary><Alt>Up" type="empty"/>
|
|
||||||
<property name="<Super>Tab" type="empty"/>
|
|
||||||
<property name="<Primary>F1" type="empty"/>
|
|
||||||
<property name="<Primary>F2" type="empty"/>
|
|
||||||
<property name="<Primary>F3" type="empty"/>
|
|
||||||
<property name="<Primary>F4" type="empty"/>
|
|
||||||
<property name="<Primary>F5" type="empty"/>
|
|
||||||
<property name="<Primary>F6" type="empty"/>
|
|
||||||
<property name="<Primary>F7" type="empty"/>
|
|
||||||
<property name="<Primary>F8" type="empty"/>
|
|
||||||
<property name="<Primary>F9" type="empty"/>
|
|
||||||
<property name="<Primary>F10" type="empty"/>
|
|
||||||
<property name="<Primary>F11" type="empty"/>
|
|
||||||
<property name="<Primary>F12" type="empty"/>
|
|
||||||
<property name="<Super>KP_Left" type="empty"/>
|
|
||||||
<property name="<Super>KP_Right" type="empty"/>
|
|
||||||
<property name="<Super>KP_Up" type="empty"/>
|
|
||||||
<property name="<Super>KP_Down" type="empty"/>
|
|
||||||
<property name="<Super>KP_Page_Up" type="empty"/>
|
|
||||||
<property name="<Super>KP_Home" type="empty"/>
|
|
||||||
<property name="<Super>KP_End" type="empty"/>
|
|
||||||
<property name="<Super>KP_Next" type="empty"/>
|
|
||||||
<property name="<Control><Alt>Down" type="empty"/>
|
|
||||||
<property name="<Control><Alt>Left" type="empty"/>
|
|
||||||
<property name="<Control><Shift><Alt>Left" type="empty"/>
|
|
||||||
<property name="<Alt><Control>End" type="empty"/>
|
|
||||||
<property name="<Alt><Control>Home" type="empty"/>
|
|
||||||
<property name="<Control><Shift><Alt>Right" type="empty"/>
|
|
||||||
<property name="<Control><Shift><Alt>Up" type="empty"/>
|
|
||||||
<property name="<Alt><Control>KP_1" type="empty"/>
|
|
||||||
<property name="<Alt><Control>KP_2" type="empty"/>
|
|
||||||
<property name="<Alt><Control>KP_3" type="empty"/>
|
|
||||||
<property name="<Alt><Control>KP_4" type="empty"/>
|
|
||||||
<property name="<Alt><Control>KP_5" type="empty"/>
|
|
||||||
<property name="<Alt><Control>KP_6" type="empty"/>
|
|
||||||
<property name="<Alt><Control>KP_7" type="empty"/>
|
|
||||||
<property name="<Alt><Control>KP_8" type="empty"/>
|
|
||||||
<property name="<Alt><Control>KP_9" type="empty"/>
|
|
||||||
<property name="<Control><Alt>Right" type="empty"/>
|
|
||||||
<property name="<Control><Alt>d" type="empty"/>
|
|
||||||
<property name="<Control><Alt>Up" type="empty"/>
|
|
||||||
<property name="<Control>F1" type="empty"/>
|
|
||||||
<property name="<Control>F2" type="empty"/>
|
|
||||||
<property name="<Control>F3" type="empty"/>
|
|
||||||
<property name="<Control>F4" type="empty"/>
|
|
||||||
<property name="<Control>F5" type="empty"/>
|
|
||||||
<property name="<Control>F6" type="empty"/>
|
|
||||||
<property name="<Control>F7" type="empty"/>
|
|
||||||
<property name="<Control>F8" type="empty"/>
|
|
||||||
<property name="<Control>F9" type="empty"/>
|
|
||||||
<property name="<Control>F10" type="empty"/>
|
|
||||||
<property name="<Control>F11" type="empty"/>
|
|
||||||
<property name="<Control>F12" type="empty"/>
|
|
||||||
<property name="<Shift><Control><Alt>Up" type="string" value="move_window_up_workspace_key"/>
|
|
||||||
<property name="<Shift><Control><Alt>Down" type="string" value="move_window_down_workspace_key"/>
|
|
||||||
<property name="<Shift><Control><Alt>Left" type="string" value="move_window_left_workspace_key"/>
|
|
||||||
<property name="<Shift><Control><Alt>Right" type="string" value="move_window_right_workspace_key"/>
|
|
||||||
</property>
|
|
||||||
<property name="custom" type="empty">
|
|
||||||
<property name="<Control>F8" type="string" value="workspace_8_key"/>
|
|
||||||
<property name="<Control>F10" type="string" value="workspace_10_key"/>
|
|
||||||
<property name="<Control>F11" type="string" value="workspace_11_key"/>
|
|
||||||
<property name="<Control>F12" type="string" value="workspace_12_key"/>
|
|
||||||
<property name="<Control>F9" type="string" value="workspace_9_key"/>
|
|
||||||
<property name="<Alt>F10" type="string" value="maximize_window_key"/>
|
|
||||||
<property name="<Alt>F11" type="string" value="fullscreen_key"/>
|
|
||||||
<property name="<Alt>F12" type="string" value="above_key"/>
|
|
||||||
<property name="<Control><Alt>Up" type="string" value="up_workspace_key"/>
|
|
||||||
<property name="Escape" type="string" value="cancel_key"/>
|
|
||||||
<property name="<Alt><Shift>Tab" type="string" value="cycle_reverse_windows_key"/>
|
|
||||||
<property name="<Alt>space" type="string" value="popup_menu_key"/>
|
|
||||||
<property name="<Alt>Delete" type="string" value="del_workspace_key"/>
|
|
||||||
<property name="<Alt>F4" type="string" value="close_window_key"/>
|
|
||||||
<property name="<Shift><Alt>Page_Down" type="string" value="lower_window_key"/>
|
|
||||||
<property name="<Alt>F6" type="string" value="stick_window_key"/>
|
|
||||||
<property name="<Alt>F8" type="string" value="resize_window_key"/>
|
|
||||||
<property name="<Alt>F9" type="string" value="hide_window_key"/>
|
|
||||||
<property name="<Alt>F7" type="string" value="move_window_key"/>
|
|
||||||
<property name="<Control><Shift><Alt>Up" type="string" value="move_window_up_key"/>
|
|
||||||
<property name="<Control>F5" type="string" value="workspace_5_key"/>
|
|
||||||
<property name="<Control><Alt>Left" type="string" value="left_workspace_key"/>
|
|
||||||
<property name="<Control><Alt>Down" type="string" value="down_workspace_key"/>
|
|
||||||
<property name="<Control>F4" type="string" value="workspace_4_key"/>
|
|
||||||
<property name="<Alt><Control>KP_1" type="string" value="move_window_workspace_1_key"/>
|
|
||||||
<property name="<Alt><Control>KP_2" type="string" value="move_window_workspace_2_key"/>
|
|
||||||
<property name="<Alt><Control>KP_3" type="string" value="move_window_workspace_3_key"/>
|
|
||||||
<property name="<Alt><Control>KP_4" type="string" value="move_window_workspace_4_key"/>
|
|
||||||
<property name="<Alt><Control>KP_5" type="string" value="move_window_workspace_5_key"/>
|
|
||||||
<property name="<Alt><Control>KP_6" type="string" value="move_window_workspace_6_key"/>
|
|
||||||
<property name="<Alt><Control>KP_7" type="string" value="move_window_workspace_7_key"/>
|
|
||||||
<property name="<Control><Shift><Alt>Left" type="string" value="move_window_left_key"/>
|
|
||||||
<property name="Left" type="string" value="left_key"/>
|
|
||||||
<property name="<Alt><Control>KP_9" type="string" value="move_window_workspace_9_key"/>
|
|
||||||
<property name="<Alt><Control>KP_8" type="string" value="move_window_workspace_8_key"/>
|
|
||||||
<property name="Down" type="string" value="down_key"/>
|
|
||||||
<property name="<Alt><Control>Home" type="string" value="move_window_prev_workspace_key"/>
|
|
||||||
<property name="<Alt><Control>End" type="string" value="move_window_next_workspace_key"/>
|
|
||||||
<property name="<Control><Alt>Right" type="string" value="right_workspace_key"/>
|
|
||||||
<property name="<Control><Shift><Alt>Right" type="string" value="move_window_right_key"/>
|
|
||||||
<property name="Right" type="string" value="right_key"/>
|
|
||||||
<property name="<Alt>Tab" type="string" value="cycle_windows_key"/>
|
|
||||||
<property name="<Super>Tab" type="string" value="switch_window_key"/>
|
|
||||||
<property name="<Shift><Alt>Page_Up" type="string" value="raise_window_key"/>
|
|
||||||
<property name="<Control>F2" type="string" value="workspace_2_key"/>
|
|
||||||
<property name="<Control>F1" type="string" value="workspace_1_key"/>
|
|
||||||
<property name="Up" type="string" value="up_key"/>
|
|
||||||
<property name="<Control>F6" type="string" value="workspace_6_key"/>
|
|
||||||
<property name="<Control>F7" type="string" value="workspace_7_key"/>
|
|
||||||
<property name="<Control><Alt>d" type="string" value="show_desktop_key"/>
|
|
||||||
<property name="<Control>F3" type="string" value="workspace_3_key"/>
|
|
||||||
<property name="<Alt>Insert" type="string" value="add_workspace_key"/>
|
|
||||||
<property name="<Shift><Control><Alt>Up" type="string" value="move_window_up_workspace_key"/>
|
|
||||||
<property name="<Shift><Control><Alt>Down" type="string" value="move_window_down_workspace_key"/>
|
|
||||||
<property name="<Shift><Control><Alt>Left" type="string" value="move_window_left_workspace_key"/>
|
|
||||||
<property name="<Shift><Control><Alt>Right" type="string" value="move_window_right_workspace_key"/>
|
|
||||||
<property name="override" type="bool" value="true"/>
|
|
||||||
</property>
|
|
||||||
</property>
|
|
||||||
<property name="providers" type="array">
|
|
||||||
<value type="string" value="xfwm4"/>
|
|
||||||
<value type="string" value="commands"/>
|
|
||||||
</property>
|
|
||||||
</channel>
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
|
|
||||||
<channel name="xfce4-mixer" version="1.0">
|
|
||||||
<property name="active-card" type="string" value="Intel82801AAICHAlsamixer"/>
|
|
||||||
<property name="volume-step-size" type="uint" value="5"/>
|
|
||||||
</channel>
|
|
||||||
@@ -1,24 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
|
|
||||||
<channel name="xfce4-notifyd" version="1.0">
|
|
||||||
<property name="primary-monitor" type="uint" value="0"/>
|
|
||||||
<property name="notify-location" type="uint" value="2"/>
|
|
||||||
<property name="log-level" type="uint" value="0"/>
|
|
||||||
<property name="log-level-apps" type="uint" value="0"/>
|
|
||||||
<property name="theme" type="string" value="Default"/>
|
|
||||||
<property name="applications" type="empty">
|
|
||||||
<property name="known_applications" type="array">
|
|
||||||
<value type="string" value="blueman"/>
|
|
||||||
<value type="string" value="discord"/>
|
|
||||||
<value type="string" value="Firefox"/>
|
|
||||||
<value type="string" value="MSM Notifier"/>
|
|
||||||
<value type="string" value="nm-applet"/>
|
|
||||||
<value type="string" value="org.manjaro.pamac.manager"/>
|
|
||||||
<value type="string" value="org.manjaro.pamac.tray"/>
|
|
||||||
<value type="string" value="Package Manager"/>
|
|
||||||
<value type="string" value="Xfce volume control"/>
|
|
||||||
<value type="string" value="Xfce4-notifyd settings"/>
|
|
||||||
<value type="string" value="xfce4-power-manager"/>
|
|
||||||
</property>
|
|
||||||
</property>
|
|
||||||
</channel>
|
|
||||||
@@ -1,133 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
|
|
||||||
<channel name="xfce4-panel" version="1.0">
|
|
||||||
<property name="panels" type="uint" value="1">
|
|
||||||
<property name="panel-0" type="empty">
|
|
||||||
<property name="position" type="string" value="p=6;x=960;y=14"/>
|
|
||||||
<property name="length" type="uint" value="100"/>
|
|
||||||
<property name="position-locked" type="bool" value="true"/>
|
|
||||||
<property name="plugin-ids" type="array">
|
|
||||||
<value type="int" value="1"/>
|
|
||||||
<value type="int" value="7"/>
|
|
||||||
<value type="int" value="4"/>
|
|
||||||
<value type="int" value="9"/>
|
|
||||||
<value type="int" value="6"/>
|
|
||||||
<value type="int" value="5"/>
|
|
||||||
<value type="int" value="3"/>
|
|
||||||
<value type="int" value="8"/>
|
|
||||||
</property>
|
|
||||||
<property name="role" type="string" value="xfce4-panel-12965750720"/>
|
|
||||||
<property name="length-adjust" type="bool" value="true"/>
|
|
||||||
<property name="background-style" type="uint" value="0"/>
|
|
||||||
<property name="size" type="uint" value="28"/>
|
|
||||||
<property name="mode" type="uint" value="0"/>
|
|
||||||
<property name="autohide-behavior" type="uint" value="0"/>
|
|
||||||
<property name="disable-struts" type="bool" value="false"/>
|
|
||||||
<property name="icon-size" type="uint" value="28"/>
|
|
||||||
<property name="span-monitors" type="bool" value="false"/>
|
|
||||||
<property name="output-name" type="string" value="Primary"/>
|
|
||||||
</property>
|
|
||||||
<property name="dark-mode" type="bool" value="true"/>
|
|
||||||
</property>
|
|
||||||
<property name="plugins" type="empty">
|
|
||||||
<property name="plugin-4" type="string" value="pager">
|
|
||||||
<property name="rows" type="uint" value="1"/>
|
|
||||||
<property name="miniature-view" type="bool" value="false"/>
|
|
||||||
<property name="numbering" type="bool" value="false"/>
|
|
||||||
<property name="workspace-scrolling" type="bool" value="false"/>
|
|
||||||
</property>
|
|
||||||
<property name="plugin-6" type="string" value="systray">
|
|
||||||
<property name="names-visible" type="array">
|
|
||||||
<value type="string" value="pnmixer"/>
|
|
||||||
<value type="string" value="manjaro-settings-manager-daemon"/>
|
|
||||||
<value type="string" value="networkmanager applet"/>
|
|
||||||
<value type="string" value="orage"/>
|
|
||||||
<value type="string" value="pamac-tray"/>
|
|
||||||
<value type="string" value="blueman-applet"/>
|
|
||||||
<value type="string" value="clipman"/>
|
|
||||||
<value type="string" value="xfce4-power-manager"/>
|
|
||||||
<value type="string" value="xnoise"/>
|
|
||||||
</property>
|
|
||||||
<property name="show-frame" type="bool" value="false"/>
|
|
||||||
<property name="known-legacy-items" type="array">
|
|
||||||
<value type="string" value="wi-fi network connection “eduroam” active: eduroam (54%)"/>
|
|
||||||
<value type="string" value="wi-fi network connection “eduroam” active: eduroam (53%)"/>
|
|
||||||
<value type="string" value="wi-fi network connection “eduroam” active: eduroam (61%)"/>
|
|
||||||
<value type="string" value="wi-fi network connection “eduroam” active: eduroam (58%)"/>
|
|
||||||
<value type="string" value="wi-fi network connection “jojo” active: jojo (61%)"/>
|
|
||||||
<value type="string" value="wi-fi network connection “jojo” active: jojo (56%)"/>
|
|
||||||
<value type="string" value="wi-fi network connection “eduroam” active: eduroam (67%)"/>
|
|
||||||
<value type="string" value="wi-fi network connection “eduroam” active: eduroam (68%)"/>
|
|
||||||
<value type="string" value="wi-fi network connection “eduroam” active: eduroam (59%)"/>
|
|
||||||
<value type="string" value="wi-fi network connection “eduroam” active: eduroam (72%)"/>
|
|
||||||
<value type="string" value="wi-fi network connection “jojo” active: jojo (51%)"/>
|
|
||||||
<value type="string" value="no network connection"/>
|
|
||||||
<value type="string" value="wi-fi network connection “eduroam” active: eduroam (63%)"/>
|
|
||||||
<value type="string" value="wi-fi network connection “eduroam” active: eduroam (62%)"/>
|
|
||||||
<value type="string" value="wi-fi network connection “eduroam” active: eduroam (69%)"/>
|
|
||||||
<value type="string" value="wi-fi network connection “eduroam” active: eduroam (65%)"/>
|
|
||||||
<value type="string" value="ethernet network connection “wired connection 1” active"/>
|
|
||||||
<value type="string" value="bluetooth disabled"/>
|
|
||||||
<value type="string" value="thunar"/>
|
|
||||||
<value type="string" value="xfce terminal"/>
|
|
||||||
<value type="string" value="clipman"/>
|
|
||||||
<value type="string" value="networkmanager applet"/>
|
|
||||||
<value type="string" value="pamac-tray"/>
|
|
||||||
</property>
|
|
||||||
<property name="known-items" type="array">
|
|
||||||
<value type="string" value="TelegramDesktop"/>
|
|
||||||
<value type="string" value="discord1"/>
|
|
||||||
<value type="string" value="MSM Notifier"/>
|
|
||||||
<value type="string" value="blueman"/>
|
|
||||||
</property>
|
|
||||||
<property name="hide-new-items" type="bool" value="true"/>
|
|
||||||
<property name="hidden-legacy-items" type="array">
|
|
||||||
<value type="string" value="wi-fi network connection “eduroam” active: eduroam (65%)"/>
|
|
||||||
<value type="string" value="wi-fi network connection “jojo” active: jojo (56%)"/>
|
|
||||||
<value type="string" value="wi-fi network connection “eduroam” active: eduroam (63%)"/>
|
|
||||||
<value type="string" value="wi-fi network connection “eduroam” active: eduroam (68%)"/>
|
|
||||||
<value type="string" value="wi-fi network connection “eduroam” active: eduroam (53%)"/>
|
|
||||||
<value type="string" value="wi-fi network connection “eduroam” active: eduroam (61%)"/>
|
|
||||||
<value type="string" value="wi-fi network connection “eduroam” active: eduroam (58%)"/>
|
|
||||||
<value type="string" value="no network connection"/>
|
|
||||||
<value type="string" value="wi-fi network connection “eduroam” active: eduroam (72%)"/>
|
|
||||||
<value type="string" value="wi-fi network connection “eduroam” active: eduroam (69%)"/>
|
|
||||||
<value type="string" value="wi-fi network connection “eduroam” active: eduroam (54%)"/>
|
|
||||||
<value type="string" value="wi-fi network connection “eduroam” active: eduroam (62%)"/>
|
|
||||||
<value type="string" value="wi-fi network connection “eduroam” active: eduroam (59%)"/>
|
|
||||||
<value type="string" value="wi-fi network connection “eduroam” active: eduroam (67%)"/>
|
|
||||||
<value type="string" value="wi-fi network connection “jojo” active: jojo (51%)"/>
|
|
||||||
<value type="string" value="wi-fi network connection “jojo” active: jojo (61%)"/>
|
|
||||||
</property>
|
|
||||||
<property name="single-row" type="bool" value="false"/>
|
|
||||||
<property name="symbolic-icons" type="bool" value="false"/>
|
|
||||||
<property name="menu-is-primary" type="bool" value="false"/>
|
|
||||||
<property name="icon-size" type="int" value="22"/>
|
|
||||||
<property name="hidden-items" type="array">
|
|
||||||
<value type="string" value="TelegramDesktop"/>
|
|
||||||
<value type="string" value="discord1"/>
|
|
||||||
</property>
|
|
||||||
</property>
|
|
||||||
<property name="plugin-7" type="string" value="separator">
|
|
||||||
<property name="expand" type="bool" value="true"/>
|
|
||||||
<property name="style" type="uint" value="0"/>
|
|
||||||
</property>
|
|
||||||
<property name="plugin-9" type="string" value="pulseaudio">
|
|
||||||
<property name="enable-keyboard-shortcuts" type="bool" value="true"/>
|
|
||||||
<property name="mpris-players" type="string" value="firefox.instance1205;firefox.instance1213;firefox.instance1221;firefox.instance1233;firefox.instance1249;firefox.instance1304;firefox.instance1314;firefox.instance1618;firefox.instance1640;firefox.instance2190;vlc"/>
|
|
||||||
</property>
|
|
||||||
<property name="plugin-8" type="string" value="whiskermenu"/>
|
|
||||||
<property name="plugin-5" type="string" value="clock"/>
|
|
||||||
<property name="plugin-1" type="string" value="appmenu">
|
|
||||||
<property name="plugins" type="empty">
|
|
||||||
<property name="plugin-1" type="empty">
|
|
||||||
<property name="compact-mode" type="bool" value="true"/>
|
|
||||||
<property name="bold-application-name" type="bool" value="true"/>
|
|
||||||
<property name="expand" type="bool" value="true"/>
|
|
||||||
</property>
|
|
||||||
</property>
|
|
||||||
</property>
|
|
||||||
<property name="plugin-3" type="string" value="power-manager-plugin"/>
|
|
||||||
</property>
|
|
||||||
<property name="configver" type="int" value="2"/>
|
|
||||||
</channel>
|
|
||||||
@@ -1,13 +0,0 @@
|
|||||||
<?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="uint" value="3"/>
|
|
||||||
<property name="show-tray-icon" type="bool" value="false"/>
|
|
||||||
<property name="brightness-switch-restore-on-exit" type="int" value="1"/>
|
|
||||||
<property name="brightness-switch" type="int" value="0"/>
|
|
||||||
<property name="show-panel-label" type="int" value="1"/>
|
|
||||||
<property name="show-presentation-indicator" type="bool" value="false"/>
|
|
||||||
<property name="presentation-mode" type="bool" value="false"/>
|
|
||||||
</property>
|
|
||||||
</channel>
|
|
||||||
@@ -1,29 +0,0 @@
|
|||||||
<?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 name="LockCommand" type="string" value="light-locker-command --lock"/>
|
|
||||||
</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>
|
|
||||||
</channel>
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
|
|
||||||
<channel name="xfce4-settings-manager" version="1.0">
|
|
||||||
<property name="window-width" type="int" value="800"/>
|
|
||||||
<property name="window-height" type="int" value="600"/>
|
|
||||||
</channel>
|
|
||||||
@@ -1,99 +0,0 @@
|
|||||||
<?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="false"/>
|
|
||||||
<property name="box_resize" type="bool" value="false"/>
|
|
||||||
<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="60"/>
|
|
||||||
<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="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="theme" type="string" value="Matcha-sea"/>
|
|
||||||
<property name="title_alignment" type="string" value="center"/>
|
|
||||||
<property name="title_font" type="string" value="Noto Sans 10"/>
|
|
||||||
<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="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="workspace_names" type="array">
|
|
||||||
<value type="string" value="layout tabbed"/>
|
|
||||||
<value type="string" value="layout tiling"/>
|
|
||||||
<value type="string" value="layout tabbed"/>
|
|
||||||
<value type="string" value="4"/>
|
|
||||||
<value type="string" value="5"/>
|
|
||||||
<value type="string" value="6"/>
|
|
||||||
<value type="string" value="7"/>
|
|
||||||
<value type="string" value="8"/>
|
|
||||||
<value type="string" value="9"/>
|
|
||||||
<value type="string" value="10"/>
|
|
||||||
</property>
|
|
||||||
<property name="tile_on_move" type="bool" value="true"/>
|
|
||||||
<property name="titleless_maximize" type="bool" value="false"/>
|
|
||||||
<property name="cycle_preview" type="bool" value="true"/>
|
|
||||||
<property name="cycle_tabwin_mode" type="int" value="0"/>
|
|
||||||
<property name="sync_to_vblank" type="bool" value="true"/>
|
|
||||||
<property name="zoom_desktop" type="bool" value="true"/>
|
|
||||||
<property name="cycle_raise" type="bool" value="false"/>
|
|
||||||
<property name="cycle_minimized" type="bool" value="false"/>
|
|
||||||
<property name="frame_border_top" type="int" value="0"/>
|
|
||||||
<property name="horiz_scroll_opacity" type="bool" value="false"/>
|
|
||||||
<property name="vblank_mode" type="string" value="auto"/>
|
|
||||||
<property name="zoom_pointer" type="bool" value="true"/>
|
|
||||||
</property>
|
|
||||||
</channel>
|
|
||||||
@@ -1,52 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
|
|
||||||
<channel name="xsettings" version="1.0">
|
|
||||||
<property name="Net" type="empty">
|
|
||||||
<property name="ThemeName" type="string" value="Matcha-dark-sea"/>
|
|
||||||
<property name="IconThemeName" type="string" value="Papirus-Maia"/>
|
|
||||||
<property name="DoubleClickTime" type="int" value="532"/>
|
|
||||||
<property name="DoubleClickDistance" type="int" value="8"/>
|
|
||||||
<property name="DndDragThreshold" type="int" value="8"/>
|
|
||||||
<property name="CursorBlink" type="bool" value="true"/>
|
|
||||||
<property name="CursorBlinkTime" type="int" value="1337"/>
|
|
||||||
<property name="SoundThemeName" type="string" value="default"/>
|
|
||||||
<property name="EnableEventSounds" type="bool" value="false"/>
|
|
||||||
<property name="EnableInputFeedbackSounds" type="bool" value="false"/>
|
|
||||||
</property>
|
|
||||||
<property name="Xft" type="empty">
|
|
||||||
<property name="DPI" type="int" value="96"/>
|
|
||||||
<property name="Antialias" type="int" value="1"/>
|
|
||||||
<property name="Hinting" type="int" value="-1"/>
|
|
||||||
<property name="HintStyle" type="string" value="hintfull"/>
|
|
||||||
<property name="RGBA" type="string" value="none"/>
|
|
||||||
</property>
|
|
||||||
<property name="Gtk" type="empty">
|
|
||||||
<property name="CanChangeAccels" type="bool" value="false"/>
|
|
||||||
<property name="ColorPalette" type="string" value="black:white:gray50:red:purple:blue:light blue:green:yellow:orange:lavender:brown:goldenrod4:dodger blue:pink:light green:gray10:gray30:gray75:gray90"/>
|
|
||||||
<property name="FontName" type="string" value="Noto Sans 10"/>
|
|
||||||
<property name="MonospaceFontName" type="empty"/>
|
|
||||||
<property name="IconSizes" type="string" value=""/>
|
|
||||||
<property name="KeyThemeName" type="string" value=""/>
|
|
||||||
<property name="ToolbarStyle" type="string" value="icons"/>
|
|
||||||
<property name="ToolbarIconSize" type="int" value="3"/>
|
|
||||||
<property name="MenuImages" type="bool" value="true"/>
|
|
||||||
<property name="ButtonImages" type="bool" value="true"/>
|
|
||||||
<property name="MenuBarAccel" type="string" value="F10"/>
|
|
||||||
<property name="CursorThemeName" type="string" value="xcursor-breeze"/>
|
|
||||||
<property name="CursorThemeSize" type="int" value="0"/>
|
|
||||||
<property name="DecorationLayout" type="empty"/>
|
|
||||||
<property name="DialogsUseHeader" type="empty"/>
|
|
||||||
<property name="TitlebarMiddleClick" type="empty"/>
|
|
||||||
<property name="IMPreeditStyle" type="string" value=""/>
|
|
||||||
<property name="IMStatusStyle" type="string" value=""/>
|
|
||||||
<property name="IMModule" type="string" value=""/>
|
|
||||||
<property name="ShellShowsMenubar" type="bool" value="true"/>
|
|
||||||
<property name="ShellShowsAppmenu" type="bool" value="true"/>
|
|
||||||
</property>
|
|
||||||
<property name="Gdk" type="empty">
|
|
||||||
<property name="WindowScalingFactor" type="empty"/>
|
|
||||||
</property>
|
|
||||||
<property name="Xfce" type="empty">
|
|
||||||
<property name="LastCustomDPI" type="int" value="96"/>
|
|
||||||
</property>
|
|
||||||
</channel>
|
|
||||||
@@ -1,85 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
|
|
||||||
# taken from https://github.com/LukeSmithxyz/voidrice/blob/master/.local/bin/displayselect
|
|
||||||
# A UI for detecting and selecting all displays. Probes xrandr for connected
|
|
||||||
# displays and lets user select one to use. User may also select "manual
|
|
||||||
# selection" which opens arandr.
|
|
||||||
|
|
||||||
twoscreen() { # If multi-monitor is selected and there are two screens.
|
|
||||||
|
|
||||||
mirror=$(printf "no\\nyes" | dmenu -i -p "Mirror displays?")
|
|
||||||
# Mirror displays using native resolution of external display and a scaled
|
|
||||||
# version for the internal display
|
|
||||||
if [ "$mirror" = "yes" ]; then
|
|
||||||
external=$(echo "$screens" | dmenu -i -p "Optimize resolution for:")
|
|
||||||
internal=$(echo "$screens" | grep -v "$external")
|
|
||||||
|
|
||||||
res_external=$(xrandr --query | sed -n "/^$external/,/\+/p" | \
|
|
||||||
tail -n 1 | awk '{print $1}')
|
|
||||||
res_internal=$(xrandr --query | sed -n "/^$internal/,/\+/p" | \
|
|
||||||
tail -n 1 | awk '{print $1}')
|
|
||||||
|
|
||||||
res_ext_x=$(echo "$res_external" | sed 's/x.*//')
|
|
||||||
res_ext_y=$(echo "$res_external" | sed 's/.*x//')
|
|
||||||
res_int_x=$(echo "$res_internal" | sed 's/x.*//')
|
|
||||||
res_int_y=$(echo "$res_internal" | sed 's/.*x//')
|
|
||||||
|
|
||||||
scale_x=$(echo "$res_ext_x / $res_int_x" | bc -l)
|
|
||||||
scale_y=$(echo "$res_ext_y / $res_int_y" | bc -l)
|
|
||||||
|
|
||||||
xrandr --output "$external" --auto --scale 1.0x1.0 \
|
|
||||||
--output "$internal" --auto --same-as "$external" \
|
|
||||||
--scale "$scale_x"x"$scale_y"
|
|
||||||
else
|
|
||||||
|
|
||||||
primary=$(echo "$screens" | dmenu -i -p "Select primary display:")
|
|
||||||
secondary=$(echo "$screens" | grep -v "$primary")
|
|
||||||
direction=$(printf "left\\nright" | dmenu -i -p "What side of $primary should $secondary be on?")
|
|
||||||
xrandr --output "$primary" --auto --scale 1.0x1.0 --output "$secondary" --"$direction"-of "$primary" --auto --scale 1.0x1.0
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
morescreen() { # If multi-monitor is selected and there are more than two screens.
|
|
||||||
primary=$(echo "$screens" | dmenu -i -p "Select primary display:")
|
|
||||||
secondary=$(echo "$screens" | grep -v "$primary" | dmenu -i -p "Select secondary display:")
|
|
||||||
direction=$(printf "left\\nright" | dmenu -i -p "What side of $primary should $secondary be on?")
|
|
||||||
tertiary=$(echo "$screens" | grep -v "$primary" | grep -v "$secondary" | dmenu -i -p "Select third display:")
|
|
||||||
xrandr --output "$primary" --auto --output "$secondary" --"$direction"-of "$primary" --auto --output "$tertiary" --"$(printf "left\\nright" | grep -v "$direction")"-of "$primary" --auto
|
|
||||||
}
|
|
||||||
|
|
||||||
multimon() { # Multi-monitor handler.
|
|
||||||
case "$(echo "$screens" | wc -l)" in
|
|
||||||
2) twoscreen ;;
|
|
||||||
*) morescreen ;;
|
|
||||||
esac ;}
|
|
||||||
|
|
||||||
onescreen() { # If only one output available or chosen.
|
|
||||||
xrandr --output "$1" --auto --scale 1.0x1.0 $(echo "$allposs" | grep -v "\b$1" | awk '{print "--output", $1, "--off"}' | paste -sd ' ' -)
|
|
||||||
}
|
|
||||||
|
|
||||||
postrun() { # Stuff to run to clean up.
|
|
||||||
setbg # Fix background if screen size/arangement has changed.
|
|
||||||
remaps # Re-remap keys if keyboard added (for laptop bases)
|
|
||||||
{ killall dunst ; setsid -f dunst ;} >/dev/null 2>&1 # Restart dunst to ensure proper location on screen
|
|
||||||
}
|
|
||||||
|
|
||||||
# Get all possible displays
|
|
||||||
allposs=$(xrandr -q | grep "connected")
|
|
||||||
|
|
||||||
# Get all connected screens.
|
|
||||||
screens=$(echo "$allposs" | awk '/ connected/ {print $1}')
|
|
||||||
|
|
||||||
# If there's only one screen
|
|
||||||
[ "$(echo "$screens" | wc -l)" -lt 2 ] &&
|
|
||||||
{ onescreen "$screens"; postrun; notify-send "💻 Only one screen detected." "Using it in its optimal settings..."; exit ;}
|
|
||||||
|
|
||||||
# Get user choice including multi-monitor and manual selection:
|
|
||||||
chosen=$(printf "%s\\nmulti-monitor\\nmanual selection" "$screens" | dmenu -i -p "Select display arangement:") &&
|
|
||||||
case "$chosen" in
|
|
||||||
"manual selection") arandr ; exit ;;
|
|
||||||
"multi-monitor") multimon ;;
|
|
||||||
*) onescreen "$chosen" ;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
postrun
|
|
||||||
|
|
||||||
@@ -1,69 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
|
|
||||||
# from https://github.com/LukeSmithxyz/voidrice/blob/master/.local/bin/dmenumount
|
|
||||||
# Gives a dmenu prompt to mount unmounted drives and Android phones. If
|
|
||||||
# they're in /etc/fstab, they'll be mounted automatically. Otherwise, you'll
|
|
||||||
# be prompted to give a mountpoint from already existsing directories. If you
|
|
||||||
# input a novel directory, it will prompt you to create that directory.
|
|
||||||
|
|
||||||
getmount() { \
|
|
||||||
[ -z "$chosen" ] && exit 1
|
|
||||||
# shellcheck disable=SC2086
|
|
||||||
mp="$(find $1 2>/dev/null | dmenu -i -p "Type in mount point.")" || exit 1
|
|
||||||
test -z "$mp" && exit 1
|
|
||||||
if [ ! -d "$mp" ]; then
|
|
||||||
mkdiryn=$(printf "No\\nYes" | dmenu -i -p "$mp does not exist. Create it?") || exit 1
|
|
||||||
[ "$mkdiryn" = "Yes" ] && (mkdir -p "$mp" || sudo -A mkdir -p "$mp")
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
mountusb() { \
|
|
||||||
chosen="$(echo "$usbdrives" | dmenu -i -p "Mount which drive?")" || exit 1
|
|
||||||
chosen="$(echo "$chosen" | awk '{print $1}')"
|
|
||||||
sudo -A mount "$chosen" 2>/dev/null && notify-send "💻 USB mounting" "$chosen mounted." && exit 0
|
|
||||||
alreadymounted=$(lsblk -nrpo "name,type,mountpoint" | awk '$3!~/\/boot|\/home$|SWAP/&&length($3)>1{printf "-not ( -path *%s -prune ) ",$3}')
|
|
||||||
getmount "/mnt /media /mount /home -maxdepth 5 -type d $alreadymounted"
|
|
||||||
partitiontype="$(lsblk -no "fstype" "$chosen")"
|
|
||||||
case "$partitiontype" in
|
|
||||||
"vfat") sudo -A mount -t vfat "$chosen" "$mp" -o rw,umask=0000;;
|
|
||||||
"exfat") sudo -A mount "$chosen" "$mp" -o uid="$(id -u)",gid="$(id -g)";;
|
|
||||||
*) sudo -A mount "$chosen" "$mp"; user="$(whoami)"; ug="$(groups | awk '{print $1}')"; sudo -A chown "$user":"$ug" "$mp";;
|
|
||||||
esac
|
|
||||||
notify-send "💻 USB mounting" "$chosen mounted to $mp."
|
|
||||||
}
|
|
||||||
|
|
||||||
mountandroid() { \
|
|
||||||
chosen="$(echo "$anddrives" | dmenu -i -p "Which Android device?")" || exit 1
|
|
||||||
chosen="$(echo "$chosen" | cut -d : -f 1)"
|
|
||||||
getmount "$HOME -maxdepth 3 -type d"
|
|
||||||
simple-mtpfs --device "$chosen" "$mp"
|
|
||||||
echo "OK" | dmenu -i -p "Tap Allow on your phone if it asks for permission and then press enter" || exit 1
|
|
||||||
simple-mtpfs --device "$chosen" "$mp"
|
|
||||||
notify-send "🤖 Android Mounting" "Android device mounted to $mp."
|
|
||||||
}
|
|
||||||
|
|
||||||
asktype() { \
|
|
||||||
choice="$(printf "USB\\nAndroid" | dmenu -i -p "Mount a USB drive or Android device?")" || exit 1
|
|
||||||
case $choice in
|
|
||||||
USB) mountusb ;;
|
|
||||||
Android) mountandroid ;;
|
|
||||||
esac
|
|
||||||
}
|
|
||||||
|
|
||||||
anddrives=$(simple-mtpfs -l 2>/dev/null)
|
|
||||||
usbdrives="$(lsblk -rpo "name,type,size,mountpoint" | grep 'part\|rom' | awk '$4==""{printf "%s (%s)\n",$1,$3}')"
|
|
||||||
|
|
||||||
if [ -z "$usbdrives" ]; then
|
|
||||||
[ -z "$anddrives" ] && echo "No USB drive or Android device detected" && exit
|
|
||||||
echo "Android device(s) detected."
|
|
||||||
mountandroid
|
|
||||||
else
|
|
||||||
if [ -z "$anddrives" ]; then
|
|
||||||
echo "USB drive(s) detected."
|
|
||||||
mountusb
|
|
||||||
else
|
|
||||||
echo "Mountable USB drive(s) and Android device(s) detected."
|
|
||||||
asktype
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
@@ -1,125 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
|
|
||||||
# taken from https://github.com/LukeSmithxyz/voidrice/blob/master/.local/bin/dmenurecord
|
|
||||||
# Usage:
|
|
||||||
# `$0`: Ask for recording type via dmenu
|
|
||||||
# `$0 screencast`: Record both audio and screen
|
|
||||||
# `$0 video`: Record only screen
|
|
||||||
# `$0 audio`: Record only audio
|
|
||||||
# `$0 kill`: Kill existing recording
|
|
||||||
#
|
|
||||||
# If there is already a running instance, user will be prompted to end it.
|
|
||||||
|
|
||||||
updateicon() { \
|
|
||||||
echo "$1" > /tmp/recordingicon
|
|
||||||
pkill -RTMIN+9 "${STATUSBAR:-dwmblocks}"
|
|
||||||
}
|
|
||||||
|
|
||||||
killrecording() {
|
|
||||||
recpid="$(cat /tmp/recordingpid)"
|
|
||||||
# kill with SIGTERM, allowing finishing touches.
|
|
||||||
kill -15 "$recpid"
|
|
||||||
rm -f /tmp/recordingpid
|
|
||||||
updateicon ""
|
|
||||||
pkill -RTMIN+9 "${STATUSBAR:-dwmblocks}"
|
|
||||||
# even after SIGTERM, ffmpeg may still run, so SIGKILL it.
|
|
||||||
sleep 3
|
|
||||||
kill -9 "$recpid"
|
|
||||||
exit
|
|
||||||
}
|
|
||||||
|
|
||||||
screencast() { \
|
|
||||||
ffmpeg -y \
|
|
||||||
-f x11grab \
|
|
||||||
-framerate 60 \
|
|
||||||
-s "$(xdpyinfo | awk '/dimensions/ {print $2;}')" \
|
|
||||||
-i "$DISPLAY" \
|
|
||||||
-f alsa -i default \
|
|
||||||
-r 30 \
|
|
||||||
-c:v h264 -crf 0 -preset ultrafast -c:a aac \
|
|
||||||
"$HOME/screencast-$(date '+%y%m%d-%H%M-%S').mp4" &
|
|
||||||
echo $! > /tmp/recordingpid
|
|
||||||
updateicon "⏺️🎙️"
|
|
||||||
}
|
|
||||||
|
|
||||||
video() { ffmpeg \
|
|
||||||
-f x11grab \
|
|
||||||
-s "$(xdpyinfo | awk '/dimensions/ {print $2;}')" \
|
|
||||||
-i "$DISPLAY" \
|
|
||||||
-c:v libx264 -qp 0 -r 30 \
|
|
||||||
"$HOME/video-$(date '+%y%m%d-%H%M-%S').mkv" &
|
|
||||||
echo $! > /tmp/recordingpid
|
|
||||||
updateicon "⏺️"
|
|
||||||
}
|
|
||||||
|
|
||||||
webcamhidef() { ffmpeg \
|
|
||||||
-f v4l2 \
|
|
||||||
-i /dev/video0 \
|
|
||||||
-video_size 1920x1080 \
|
|
||||||
"$HOME/webcam-$(date '+%y%m%d-%H%M-%S').mkv" &
|
|
||||||
echo $! > /tmp/recordingpid
|
|
||||||
updateicon "🎥"
|
|
||||||
}
|
|
||||||
|
|
||||||
webcam() { ffmpeg \
|
|
||||||
-f v4l2 \
|
|
||||||
-i /dev/video0 \
|
|
||||||
-video_size 640x480 \
|
|
||||||
"$HOME/webcam-$(date '+%y%m%d-%H%M-%S').mkv" &
|
|
||||||
echo $! > /tmp/recordingpid
|
|
||||||
updateicon "🎥"
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
audio() { \
|
|
||||||
ffmpeg \
|
|
||||||
-f alsa -i default \
|
|
||||||
-c:a flac \
|
|
||||||
"$HOME/audio-$(date '+%y%m%d-%H%M-%S').flac" &
|
|
||||||
echo $! > /tmp/recordingpid
|
|
||||||
updateicon "🎙️"
|
|
||||||
}
|
|
||||||
|
|
||||||
askrecording() { \
|
|
||||||
choice=$(printf "screencast\\nvideo\\nvideo selected\\naudio\\nwebcam\\nwebcam (hi-def)" | dmenu -i -p "Select recording style:")
|
|
||||||
case "$choice" in
|
|
||||||
screencast) screencast;;
|
|
||||||
audio) audio;;
|
|
||||||
video) video;;
|
|
||||||
*selected) videoselected;;
|
|
||||||
webcam) webcam;;
|
|
||||||
"webcam (hi-def)") webcamhidef;;
|
|
||||||
esac
|
|
||||||
}
|
|
||||||
|
|
||||||
asktoend() { \
|
|
||||||
response=$(printf "No\\nYes" | dmenu -i -p "Recording still active. End recording?") &&
|
|
||||||
[ "$response" = "Yes" ] && killrecording
|
|
||||||
}
|
|
||||||
|
|
||||||
videoselected()
|
|
||||||
{
|
|
||||||
slop -f "%x %y %w %h" > /tmp/slop
|
|
||||||
read -r X Y W H < /tmp/slop
|
|
||||||
rm /tmp/slop
|
|
||||||
|
|
||||||
ffmpeg \
|
|
||||||
-f x11grab \
|
|
||||||
-framerate 60 \
|
|
||||||
-video_size "$W"x"$H" \
|
|
||||||
-i :0.0+"$X,$Y" \
|
|
||||||
-c:v libx264 -qp 0 -r 30 \
|
|
||||||
"$HOME/box-$(date '+%y%m%d-%H%M-%S').mkv" &
|
|
||||||
echo $! > /tmp/recordingpid
|
|
||||||
updateicon "⏺️"
|
|
||||||
}
|
|
||||||
|
|
||||||
case "$1" in
|
|
||||||
screencast) screencast;;
|
|
||||||
audio) audio;;
|
|
||||||
video) video;;
|
|
||||||
*selected) videoselected;;
|
|
||||||
kill) killrecording;;
|
|
||||||
*) ([ -f /tmp/recordingpid ] && asktoend && exit) || askrecording;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
@@ -1,46 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
|
|
||||||
# taken from https://github.com/LukeSmithxyz/voidrice/blob/master/.local/bin/dmenuumount
|
|
||||||
# A dmenu prompt to unmount drives.
|
|
||||||
# Provides you with mounted partitions, select one to unmount.
|
|
||||||
# Drives mounted at /, /boot and /home will not be options to unmount.
|
|
||||||
|
|
||||||
unmountusb() {
|
|
||||||
[ -z "$drives" ] && exit
|
|
||||||
chosen="$(echo "$drives" | dmenu -i -p "Unmount which drive?")" || exit 1
|
|
||||||
chosen="$(echo "$chosen" | awk '{print $1}')"
|
|
||||||
[ -z "$chosen" ] && exit
|
|
||||||
sudo -A umount "$chosen" && notify-send "💻 USB unmounting" "$chosen unmounted."
|
|
||||||
}
|
|
||||||
|
|
||||||
unmountandroid() { \
|
|
||||||
chosen="$(awk '/simple-mtpfs/ {print $2}' /etc/mtab | dmenu -i -p "Unmount which device?")" || exit 1
|
|
||||||
[ -z "$chosen" ] && exit
|
|
||||||
sudo -A umount -l "$chosen" && notify-send "🤖 Android unmounting" "$chosen unmounted."
|
|
||||||
}
|
|
||||||
|
|
||||||
asktype() { \
|
|
||||||
choice="$(printf "USB\\nAndroid" | dmenu -i -p "Unmount a USB drive or Android device?")" || exit 1
|
|
||||||
case "$choice" in
|
|
||||||
USB) unmountusb ;;
|
|
||||||
Android) unmountandroid ;;
|
|
||||||
esac
|
|
||||||
}
|
|
||||||
|
|
||||||
drives=$(lsblk -nrpo "name,type,size,mountpoint,label" | awk -F':' '{gsub(/ /,":")}$4!~/\/boot|\/efi|\/home$|SWAP/&&length($4)>1{printf "%s (%s) %s\n",$4,$3,$5}')
|
|
||||||
|
|
||||||
if ! grep simple-mtpfs /etc/mtab; then
|
|
||||||
[ -z "$drives" ] && echo "No drives to unmount." && exit
|
|
||||||
echo "Unmountable USB drive detected."
|
|
||||||
unmountusb
|
|
||||||
else
|
|
||||||
if [ -z "$drives" ]
|
|
||||||
then
|
|
||||||
echo "Unmountable Android device detected."
|
|
||||||
unmountandroid
|
|
||||||
else
|
|
||||||
echo "Unmountable USB drive(s) and Android device(s) detected."
|
|
||||||
asktype
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
[Scheme]
|
|
||||||
Name=Monokai (dark)
|
|
||||||
TabActivityColor=#a6a6e2e22e2e
|
|
||||||
ColorCursor=#f8f8f8f8f2f2
|
|
||||||
ColorForeground=#f8f8f8f8f2f2
|
|
||||||
ColorBackground=#19191a1a1717
|
|
||||||
ColorPalette=#272728282222;#f9f926267272;#a6a6e2e22e2e;#f4f4bfbf7575;#6666d9d9efef;#aeae8181ffff;#a1a1efefe4e4;#f8f8f8f8f2f2;#757571715e5e;#f9f926267272;#a6a6e2e22e2e;#f4f4bfbf7575;#6666d9d9efef;#aeae8181ffff;#a1a1efefe4e4;#f9f9f8f8f5f5
|
|
||||||
@@ -1,29 +0,0 @@
|
|||||||
/*The following block hides the horizontal tabs for tree style tabs https://github.com/piroor/treestyletab/wiki/Code-snippets-for-custom-style-rules#for-userchromecss */
|
|
||||||
#main-window[tabsintitlebar="true"]:not([extradragspace="true"]) #TabsToolbar > .toolbar-items {
|
|
||||||
opacity: 0;
|
|
||||||
pointer-events: none;
|
|
||||||
}
|
|
||||||
#main-window:not([tabsintitlebar="true"]) #TabsToolbar {
|
|
||||||
visibility: collapse !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*remove top white line*/
|
|
||||||
#main-window[tabsintitlebar="true"]:not([extradragspace="true"]) #TabsToolbar .titlebar-spacer {
|
|
||||||
border-inline-end: none;
|
|
||||||
}
|
|
||||||
/*Hide the Tree style Tab header*/
|
|
||||||
#sidebar-box[sidebarcommand="treestyletab_piro_sakura_ne_jp-sidebar-action"] #sidebar-header {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* The following moves the window buttons to the lower bar after removeing horizontal tabs*/
|
|
||||||
/* Adding empty space for buttons */
|
|
||||||
#nav-bar {
|
|
||||||
margin-right:140px;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Fix for main menu calling by Alt button */
|
|
||||||
#titlebar > #toolbar-menubar {
|
|
||||||
margin-top: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
Reference in New Issue
Block a user