.
This commit is contained in:
4
TODO
Normal file
4
TODO
Normal file
@@ -0,0 +1,4 @@
|
||||
- Make bspc-column only operate on the window initially focused, as to prevent bugs with floating windows between rows in the column
|
||||
- Fix slowness with XFCE Display management dialog and bspc-xfce-monitors
|
||||
- Configure picom
|
||||
- Finish context menu
|
||||
3
archive
3
archive
@@ -16,9 +16,10 @@ rsync -a ~/.config/sxhkd "$config"
|
||||
rsync -a ~/.config/xfce4 \
|
||||
--exclude 'desktop' "$config"
|
||||
rsync -a ~/.config/rofi "$config"
|
||||
rsync -a ~/.config/i3 "$config"
|
||||
# cp ~/.config/picom.conf .
|
||||
|
||||
cd ~/bin || exit
|
||||
cd ~/.local/bin || exit
|
||||
cp \
|
||||
bsp-auto-monitors \
|
||||
bsp-float \
|
||||
|
||||
@@ -1,42 +1,42 @@
|
||||
#!/bin/sh
|
||||
|
||||
if [ -d "$HOME/bin" ] ; then
|
||||
PATH="$HOME/bin:$PATH"
|
||||
fi
|
||||
if [ -d "$HOME/.local/bin" ] ; then
|
||||
PATH="$HOME/.local/bin:$PATH"
|
||||
fi
|
||||
|
||||
# Identify as a non-reparenting window manager
|
||||
wmname LG3D &
|
||||
|
||||
# START MONITOR BLOCK
|
||||
bspc monitor HDMI-1 -d I II III IV V
|
||||
# END MONITOR BLOCK
|
||||
bspc config border_width 2
|
||||
bspc config window_gap 4
|
||||
|
||||
bsp-key-daemon
|
||||
bspc config split_ratio 0.54
|
||||
|
||||
bspc config border_width 1
|
||||
bspc config window_gap 4
|
||||
bspc config pointer_modifier mod4 # When holding super:
|
||||
bspc config pointer_action1 move # Left click drag moves
|
||||
bspc config pointer_action2 resize_corner # Right click drag resizes
|
||||
|
||||
bspc config split_ratio 0.54
|
||||
bspc config borderless_monocle true
|
||||
bspc config gapless_monocle true
|
||||
|
||||
bspc config pointer_modifier mod4
|
||||
bspc config pointer_action1 move
|
||||
# bspc config pointer_action2 resize_side
|
||||
bspc config pointer_action2 resize_corner
|
||||
|
||||
# Focus is on the hovered window, but the cursor is
|
||||
# moved when the keyboard changes focus
|
||||
bspc config focus_follows_pointer true
|
||||
bspc config pointer_follows_focus true
|
||||
|
||||
# bspc rule -a \* state=pseudo_tiled
|
||||
bspc config external_rules_command "$(realpath "$(dirname "$0")")/external-rules"
|
||||
|
||||
bspc config automatic_scheme alternate
|
||||
|
||||
bspc rule -a qutebrowser state=tiled
|
||||
bspc rule -a KittyScratch state=floating
|
||||
# bspc rule -a KittyScratch state=floating
|
||||
bspc rule -a Wrapper-2.0 state=floating # Xfce start menu
|
||||
bspc rule -a Rofi state=floating
|
||||
bspc rule -a Gimp state=floating
|
||||
bspc rule -a Chromium desktop='^2'
|
||||
bspc rule -a mplayer2 state=floating
|
||||
bspc rule -a Kupfer.py focus=on
|
||||
bspc rule -a Screenkey manage=off
|
||||
|
||||
xsetroot -cursor_name left_ptr &
|
||||
"$(dirname "$0")/colors"
|
||||
watch_monitors() {
|
||||
xfconf-query -c displays -m | while read -r line; do
|
||||
bspc-xfce-monitors
|
||||
done
|
||||
}
|
||||
|
||||
export _JAVA_AWT_WM_NONREPARENTING=1
|
||||
watch_monitors & # Monitor daemon
|
||||
pgrep -x sxhkd > /dev/null || sxhkd & # Key daemon
|
||||
|
||||
8
config/bspwm/external-rules
Executable file
8
config/bspwm/external-rules
Executable file
@@ -0,0 +1,8 @@
|
||||
#!/bin/sh
|
||||
|
||||
NEXT_WINDOW_RULES_PATH="/tmp/bspwm-next-window-rules"
|
||||
|
||||
[ -f "$NEXT_WINDOW_RULES_PATH" ] && {
|
||||
cat "$NEXT_WINDOW_RULES_PATH"
|
||||
rm "$NEXT_WINDOW_RULES_PATH"
|
||||
}
|
||||
18
config/i3/config
Normal file
18
config/i3/config
Normal file
@@ -0,0 +1,18 @@
|
||||
# - Settings
|
||||
set $mod Mod4
|
||||
font pango:Ubuntu 9
|
||||
gaps inner 4px
|
||||
gaps outer 2px
|
||||
|
||||
# Drag with modifier
|
||||
floating_modifier $mod
|
||||
# ...or with titlebar
|
||||
tiling_drag modifier titlebar
|
||||
|
||||
|
||||
# Start XDG autostart .desktop files using dex. See also
|
||||
# https://wiki.archlinux.org/index.php/XDG_Autostart
|
||||
exec --no-startup-id dex --autostart --environment i3
|
||||
|
||||
include ./keybinds
|
||||
include ./theme
|
||||
178
config/i3/default-config
Normal file
178
config/i3/default-config
Normal file
@@ -0,0 +1,178 @@
|
||||
# This file has been auto-generated by i3-config-wizard(1).
|
||||
# It will not be overwritten, so edit it as you like.
|
||||
#
|
||||
# Should you change your keyboard layout some time, delete
|
||||
# this file and re-run i3-config-wizard(1).
|
||||
#
|
||||
|
||||
# i3 config file (v4)
|
||||
#
|
||||
# Please see https://i3wm.org/docs/userguide.html for a complete reference!
|
||||
|
||||
set $mod Mod4
|
||||
|
||||
# Font for window titles. Will also be used by the bar unless a different font
|
||||
# is used in the bar {} block below.
|
||||
font pango:monospace 8
|
||||
|
||||
# This font is widely installed, provides lots of unicode glyphs, right-to-left
|
||||
# text rendering and scalability on retina/hidpi displays (thanks to pango).
|
||||
#font pango:DejaVu Sans Mono 8
|
||||
|
||||
# Start XDG autostart .desktop files using dex. See also
|
||||
# https://wiki.archlinux.org/index.php/XDG_Autostart
|
||||
exec --no-startup-id dex --autostart --environment i3
|
||||
|
||||
# The combination of xss-lock, nm-applet and pactl is a popular choice, so
|
||||
# they are included here as an example. Modify as you see fit.
|
||||
|
||||
# xss-lock grabs a logind suspend inhibit lock and will use i3lock to lock the
|
||||
# screen before suspend. Use loginctl lock-session to lock your screen.
|
||||
exec --no-startup-id xss-lock --transfer-sleep-lock -- i3lock --nofork
|
||||
|
||||
# NetworkManager is the most popular way to manage wireless networks on Linux,
|
||||
# and nm-applet is a desktop environment-independent system tray GUI for it.
|
||||
exec --no-startup-id nm-applet
|
||||
|
||||
# Use pactl to adjust volume in PulseAudio.
|
||||
set $refresh_i3status killall -SIGUSR1 i3status
|
||||
bindsym XF86AudioRaiseVolume exec --no-startup-id pactl set-sink-volume @DEFAULT_SINK@ +10% && $refresh_i3status
|
||||
bindsym XF86AudioLowerVolume exec --no-startup-id pactl set-sink-volume @DEFAULT_SINK@ -10% && $refresh_i3status
|
||||
bindsym XF86AudioMute exec --no-startup-id pactl set-sink-mute @DEFAULT_SINK@ toggle && $refresh_i3status
|
||||
bindsym XF86AudioMicMute exec --no-startup-id pactl set-source-mute @DEFAULT_SOURCE@ toggle && $refresh_i3status
|
||||
|
||||
# Use Mouse+$mod to drag floating windows to their wanted position
|
||||
floating_modifier $mod
|
||||
|
||||
# move tiling windows via drag & drop by left-clicking into the title bar,
|
||||
# or left-clicking anywhere into the window while holding the floating modifier.
|
||||
tiling_drag modifier titlebar
|
||||
|
||||
# start a terminal
|
||||
bindsym $mod+Return exec i3-sensible-terminal
|
||||
|
||||
# kill focused window
|
||||
bindsym $mod+w kill
|
||||
|
||||
# A more modern dmenu replacement is rofi:
|
||||
# bindcode $mod+40 exec "rofi -modi drun,run -show drun"
|
||||
# There also is i3-dmenu-desktop which only displays applications shipping a
|
||||
# .desktop file. It is a wrapper around dmenu, so you need that installed.
|
||||
# bindcode $mod+40 exec --no-startup-id i3-dmenu-desktop
|
||||
|
||||
# change focus
|
||||
bindsym $mod+j focus left
|
||||
bindsym $mod+k focus down
|
||||
bindsym $mod+l focus up
|
||||
bindsym $mod+semicolon focus right
|
||||
|
||||
# alternatively, you can use the cursor keys:
|
||||
bindsym $mod+Left focus left
|
||||
bindsym $mod+Down focus down
|
||||
bindsym $mod+Up focus up
|
||||
bindsym $mod+Right focus right
|
||||
|
||||
# move focused window
|
||||
bindsym $mod+Shift+j move left
|
||||
bindsym $mod+Shift+k move down
|
||||
bindsym $mod+Shift+l move up
|
||||
bindsym $mod+Shift+semicolon move right
|
||||
|
||||
# alternatively, you can use the cursor keys:
|
||||
bindsym $mod+Shift+Left move left
|
||||
bindsym $mod+Shift+Down move down
|
||||
bindsym $mod+Shift+Up move up
|
||||
bindsym $mod+Shift+Right move right
|
||||
|
||||
# toggle floating
|
||||
bindsym $mod+c floating toggle
|
||||
|
||||
# split in horizontal orientation
|
||||
bindsym $mod+h split h
|
||||
|
||||
# split in vertical orientation
|
||||
bindsym $mod+v split v
|
||||
|
||||
# enter fullscreen mode for the focused container
|
||||
bindsym $mod+f fullscreen toggle
|
||||
|
||||
# change container layout (stacked, tabbed, toggle split)
|
||||
bindsym $mod+s layout stacking
|
||||
bindsym $mod+e layout toggle split
|
||||
|
||||
# # change focus between tiling / floating windows
|
||||
# bindsym $mod+space focus mode_toggle
|
||||
|
||||
# Launch application manager
|
||||
bindsym $mod+space exec rofi -show drun -show-icons
|
||||
|
||||
# Qutesearch
|
||||
bindsym $mod+o exec qutesearch
|
||||
|
||||
# focus the parent container
|
||||
bindsym $mod+a focus parent
|
||||
|
||||
# focus the child container
|
||||
#bindsym $mod+d focus child
|
||||
|
||||
# Define names for default workspaces for which we configure key bindings later on.
|
||||
# We use variables to avoid repeating the names in multiple places.
|
||||
set $ws1 "1"
|
||||
set $ws2 "2"
|
||||
set $ws3 "3"
|
||||
set $ws4 "4"
|
||||
set $ws5 "5"
|
||||
|
||||
# switch to workspace
|
||||
bindsym $mod+1 workspace number $ws1
|
||||
bindsym $mod+2 workspace number $ws2
|
||||
bindsym $mod+3 workspace number $ws3
|
||||
bindsym $mod+4 workspace number $ws4
|
||||
bindsym $mod+5 workspace number $ws5
|
||||
|
||||
# move focused container to workspace
|
||||
bindsym $mod+Shift+1 move container to workspace number $ws1
|
||||
bindsym $mod+Shift+2 move container to workspace number $ws2
|
||||
bindsym $mod+Shift+3 move container to workspace number $ws3
|
||||
bindsym $mod+Shift+4 move container to workspace number $ws4
|
||||
bindsym $mod+Shift+5 move container to workspace number $ws5
|
||||
|
||||
# reload the configuration file
|
||||
bindsym $mod+Escape reload
|
||||
# restart i3 inplace (preserves your layout/session, can be used to upgrade i3)
|
||||
bindsym $mod+Shift+r restart
|
||||
# exit i3 (logs you out of your X session)
|
||||
bindsym $mod+Shift+e exec "i3-nagbar -t warning -m 'You pressed the exit shortcut. Do you really want to exit i3? This will end your X session.' -B 'Yes, exit i3' 'i3-msg exit'"
|
||||
|
||||
# resize window (you can also use the mouse for that)
|
||||
mode "resize" {
|
||||
# These bindings trigger as soon as you enter the resize mode
|
||||
|
||||
# Pressing left will shrink the window’s width.
|
||||
# Pressing right will grow the window’s width.
|
||||
# Pressing up will shrink the window’s height.
|
||||
# Pressing down will grow the window’s height.
|
||||
bindsym j resize shrink width 10 px or 10 ppt
|
||||
bindsym k resize grow height 10 px or 10 ppt
|
||||
bindsym l resize shrink height 10 px or 10 ppt
|
||||
bindsym semicolon resize grow width 10 px or 10 ppt
|
||||
|
||||
# same bindings, but for the arrow keys
|
||||
bindsym Left resize shrink width 10 px or 10 ppt
|
||||
bindsym Down resize grow height 10 px or 10 ppt
|
||||
bindsym Up resize shrink height 10 px or 10 ppt
|
||||
bindsym Right resize grow width 10 px or 10 ppt
|
||||
|
||||
# back to normal: Enter or Escape or $mod+r
|
||||
bindsym Return mode "default"
|
||||
bindsym Escape mode "default"
|
||||
bindsym $mod+r mode "default"
|
||||
}
|
||||
|
||||
bindsym $mod+r mode "resize"
|
||||
|
||||
# Start i3bar to display a workspace bar (plus the system information i3status
|
||||
# finds out, if available)
|
||||
bar {
|
||||
status_command i3status
|
||||
}
|
||||
113
config/i3/keybinds
Normal file
113
config/i3/keybinds
Normal file
@@ -0,0 +1,113 @@
|
||||
|
||||
# -- Meta
|
||||
|
||||
# Reload i3's configuration file
|
||||
bindsym $mod+Escape reload
|
||||
|
||||
# Restart i3 in-place (preserves your layout/session, can be used to upgrade i3)
|
||||
bindsym $mod+Shift+Escape restart
|
||||
|
||||
# Exit i3 (log out)
|
||||
bindsym $mod+Shift+space exec "i3-nagbar -t warning -m 'You pressed the exit shortcut. Do you really want to exit i3? This will end your X session.' -B 'Yes, exit i3' 'i3-msg exit'"
|
||||
|
||||
# -- Media
|
||||
|
||||
# Raise volume
|
||||
bindsym XF86AudioRaiseVolume exec --no-startup-id pactl set-sink-volume @DEFAULT_SINK@ +10% && $refresh_i3status
|
||||
|
||||
# Lower volume
|
||||
bindsym XF86AudioLowerVolume exec --no-startup-id pactl set-sink-volume @DEFAULT_SINK@ -10% && $refresh_i3status
|
||||
|
||||
# Mute audio
|
||||
bindsym XF86AudioMute exec --no-startup-id pactl set-sink-mute @DEFAULT_SINK@ toggle && $refresh_i3status
|
||||
|
||||
# Mute mic
|
||||
bindsym XF86AudioMicMute exec --no-startup-id pactl set-source-mute @DEFAULT_SOURCE@ toggle && $refresh_i3status
|
||||
|
||||
# -- Applications
|
||||
|
||||
# Open terminal
|
||||
bindsym $mod+Return exec xfce4-terminal
|
||||
|
||||
# Open application launcher
|
||||
bindsym $mod+space exec rofi -show drun -show-icons
|
||||
|
||||
# Qutesearch
|
||||
bindsym $mod+o exec qutesearch
|
||||
|
||||
bindsym $mod+p exec flameshot gui
|
||||
|
||||
# -- Window management
|
||||
|
||||
# Close application
|
||||
bindsym $mod+w kill
|
||||
|
||||
# Toggle floating
|
||||
bindsym $mod+c floating toggle
|
||||
|
||||
# Toggle fullscreen
|
||||
bindsym $mod+f fullscreen toggle
|
||||
|
||||
# Horizontal Split
|
||||
bindsym $mod+b split h
|
||||
|
||||
# Vertical Split
|
||||
bindsym $mod+v split v
|
||||
|
||||
# Rotate (toggle split)
|
||||
bindsym $mod+e layout toggle split
|
||||
|
||||
# Toggle container stacking
|
||||
bindsym $mod+s layout stacking
|
||||
|
||||
# Focus left
|
||||
bindsym $mod+h focus left
|
||||
bindsym $mod+Left focus left
|
||||
# Focus down
|
||||
bindsym $mod+j focus down
|
||||
bindsym $mod+Down focus down
|
||||
bindsym $mod+x focus down
|
||||
# Focus up
|
||||
bindsym $mod+k focus up
|
||||
bindsym $mod+z focus up
|
||||
bindsym $mod+Up focus up
|
||||
# Focus right
|
||||
bindsym $mod+l focus right
|
||||
bindsym $mod+Right focus right
|
||||
|
||||
# Move left
|
||||
bindsym $mod+Shift+h move left
|
||||
bindsym $mod+Shift+Left move left
|
||||
# Move down
|
||||
bindsym $mod+Shift+j move down
|
||||
bindsym $mod+Shift+Down move down
|
||||
# Move up
|
||||
bindsym $mod+Shift+k move up
|
||||
bindsym $mod+Shift+Up move up
|
||||
# Move right
|
||||
bindsym $mod+Shift+l move right
|
||||
bindsym $mod+Shift+Right move right
|
||||
|
||||
# -- Workspaces
|
||||
|
||||
# Define names for default workspaces for which we configure key bindings later on.
|
||||
# We use variables to avoid repeating the names in multiple places.
|
||||
set $ws1 "1"
|
||||
set $ws2 "2"
|
||||
set $ws3 "3"
|
||||
set $ws4 "4"
|
||||
set $ws5 "5"
|
||||
|
||||
# Switch to workspace
|
||||
bindsym $mod+1 workspace number $ws1
|
||||
bindsym $mod+2 workspace number $ws2
|
||||
bindsym $mod+3 workspace number $ws3
|
||||
bindsym $mod+4 workspace number $ws4
|
||||
bindsym $mod+5 workspace number $ws5
|
||||
|
||||
# Move focused container to workspace
|
||||
bindsym $mod+Shift+1 move container to workspace number $ws1
|
||||
bindsym $mod+Shift+2 move container to workspace number $ws2
|
||||
bindsym $mod+Shift+3 move container to workspace number $ws3
|
||||
bindsym $mod+Shift+4 move container to workspace number $ws4
|
||||
bindsym $mod+Shift+5 move container to workspace number $ws5
|
||||
8
config/i3/theme
Normal file
8
config/i3/theme
Normal file
@@ -0,0 +1,8 @@
|
||||
# class border background text indicator child_border
|
||||
client.focused #75715e #383830 #f9f8f5 #f9f8f5 #75715e
|
||||
client.focused_inactive #75715e #272822 #f8f8f2 #f9f8f5 #383830
|
||||
client.unfocused #49483e #272822 #f8f8f2 #f9f8f5 #383830
|
||||
client.urgent #49483e #272822 #a59f85 #f9f8f5 #383830
|
||||
client.placeholder #000000 #0c0c0c #ffffff #000000 #0c0c0c
|
||||
|
||||
client.background #ffffff
|
||||
@@ -1,27 +1,27 @@
|
||||
# :root {
|
||||
# --vii: #3a3432;
|
||||
# --vi: #5c5855;
|
||||
# --v: #db2d20;
|
||||
# --iv: #a5a2a2;
|
||||
# --iiv: #f7f7f7;
|
||||
# --a: #b5e4f4;
|
||||
# --vii: #383830;
|
||||
# --vi: #75715e;
|
||||
# --v: #f92672;
|
||||
# --iv: #f8f8f2;
|
||||
# --iiv: #f9f8f5;
|
||||
# --a: #a1efe4;
|
||||
# }
|
||||
|
||||
:root {
|
||||
--base00: #090300;
|
||||
--base01: #3a3432;
|
||||
--base02: #4a4543;
|
||||
--base03: #5c5855;
|
||||
--base04: #807d7c;
|
||||
--base05: #a5a2a2;
|
||||
--base06: #d6d5d4;
|
||||
--base07: #f7f7f7;
|
||||
--base08: #db2d20;
|
||||
--base09: #e8bbd0;
|
||||
--base0A: #fded02;
|
||||
--base0B: #01a252;
|
||||
--base0C: #b5e4f4;
|
||||
--base0D: #01a0e4;
|
||||
--base0E: #a16a94;
|
||||
--base0F: #cdab53;
|
||||
--base00: #272822;
|
||||
--base01: #383830;
|
||||
--base02: #49483e;
|
||||
--base03: #75715e;
|
||||
--base04: #a59f85;
|
||||
--base05: #f8f8f2;
|
||||
--base06: #f5f4f1;
|
||||
--base07: #f9f8f5;
|
||||
--base08: #f92672;
|
||||
--base09: #fd971f;
|
||||
--base0A: #f4bf75;
|
||||
--base0B: #a6e22e;
|
||||
--base0C: #a1efe4;
|
||||
--base0D: #66d9ef;
|
||||
--base0E: #ae81ff;
|
||||
--base0F: #cc6633;
|
||||
}
|
||||
|
||||
@@ -55,22 +55,22 @@ c.content.user_stylesheets = "base16.css"
|
||||
# Template author: theova
|
||||
# Commentary: Tinted Theming: (https://github.com/tinted-theming)
|
||||
|
||||
base00 = "#090300"
|
||||
base01 = "#3a3432"
|
||||
base02 = "#4a4543"
|
||||
base03 = "#5c5855"
|
||||
base04 = "#807d7c"
|
||||
base05 = "#a5a2a2"
|
||||
base06 = "#d6d5d4"
|
||||
base07 = "#f7f7f7"
|
||||
base08 = "#db2d20"
|
||||
base09 = "#e8bbd0"
|
||||
base0A = "#fded02"
|
||||
base0B = "#01a252"
|
||||
base0C = "#b5e4f4"
|
||||
base0D = "#01a0e4"
|
||||
base0E = "#a16a94"
|
||||
base0F = "#cdab53"
|
||||
base00 = "#272822"
|
||||
base01 = "#383830"
|
||||
base02 = "#49483e"
|
||||
base03 = "#75715e"
|
||||
base04 = "#a59f85"
|
||||
base05 = "#f8f8f2"
|
||||
base06 = "#f5f4f1"
|
||||
base07 = "#f9f8f5"
|
||||
base08 = "#f92672"
|
||||
base09 = "#fd971f"
|
||||
base0A = "#f4bf75"
|
||||
base0B = "#a6e22e"
|
||||
base0C = "#a1efe4"
|
||||
base0D = "#66d9ef"
|
||||
base0E = "#ae81ff"
|
||||
base0F = "#cc6633"
|
||||
|
||||
# set qutebrowser colors
|
||||
|
||||
|
||||
@@ -1,201 +1,16 @@
|
||||
#
|
||||
# wm independent hotkeys
|
||||
# Meta
|
||||
#
|
||||
|
||||
# Open kitty
|
||||
super + Return
|
||||
xfce4-terminal
|
||||
|
||||
# Open floating kitty
|
||||
super + shift + Return
|
||||
bsp-float xfce4-terminal
|
||||
|
||||
# launch program (drun)
|
||||
super + @space
|
||||
rofi -show drun -show-icons
|
||||
|
||||
# launch program (standard run)
|
||||
super + shift + @space
|
||||
rofi -show run
|
||||
|
||||
# make sxhkd reload its configuration files:
|
||||
# Reload SXHKD
|
||||
super + Escape
|
||||
pkill -USR1 -x sxhkd && notify-send 'Key daemon reloaded'
|
||||
|
||||
super + alt + Menu
|
||||
le-keyboard && notify-send 'Remapped Keyboard'
|
||||
|
||||
# Start a qutebrowser search
|
||||
super + o
|
||||
qutesearch
|
||||
|
||||
# Preselect below and start a qutebrowser search
|
||||
super + p
|
||||
bspc node -p south -o 0.01 \
|
||||
&& qutesearch \
|
||||
|| bspc node -p cancel
|
||||
|
||||
# Grab color
|
||||
Print
|
||||
grabc | xclip -sel clipboard
|
||||
le-keyboard &&
|
||||
pkill -USR1 -x sxhkd &&
|
||||
notify-send 'Key daemon reloaded'
|
||||
|
||||
# Show keybinds
|
||||
super + slash
|
||||
sxhkd-help
|
||||
|
||||
# Show clipmenu
|
||||
super + v
|
||||
xfce4-popup-clipman
|
||||
|
||||
# Exit session
|
||||
super + q
|
||||
xflock4
|
||||
|
||||
# Lock screen
|
||||
super + shift + q
|
||||
xfce4-session-logout
|
||||
|
||||
# Open task manager
|
||||
super + t
|
||||
# Arguable how valuable this is tbh
|
||||
bsp-float xfce4-taskmanager
|
||||
|
||||
# Screenshot region
|
||||
XF86Launch5
|
||||
flameshot gui
|
||||
# xfce4-screenshooter -r
|
||||
|
||||
# Manage audio profiles[57362;10u]
|
||||
super + shift + Pause
|
||||
le-audio
|
||||
|
||||
# Cycle audio profile on default sink
|
||||
super + Pause
|
||||
le-audio -afc
|
||||
|
||||
#
|
||||
# bspwm hotkeys
|
||||
#
|
||||
|
||||
# quit/restart bspwm
|
||||
super + shift + {q,r}
|
||||
bspc {quit,wm -r}
|
||||
|
||||
# close and kill
|
||||
super + {_,shift + }w
|
||||
bspc node -{c,k}
|
||||
|
||||
# superernate between the tiled and monocle layout
|
||||
super + m
|
||||
bspc desktop -l next
|
||||
|
||||
# swap the current node and the biggest window
|
||||
super + g
|
||||
bspc node -s biggest.window
|
||||
|
||||
#
|
||||
# state/flags
|
||||
#
|
||||
|
||||
# toggle window state
|
||||
super + c
|
||||
bspc node 'focused.!tiled' -t tiled || bspc node 'focused.!floating' -t floating
|
||||
# bspc node 'focused.!pseudo_tiled' -t pseudo_tiled
|
||||
|
||||
# toggle window fullscreen
|
||||
super + f
|
||||
bspc node 'focused.!tiled' -t tiled || bspc node 'focused.!fullscreen' -t fullscreen
|
||||
|
||||
|
||||
# set the node flags
|
||||
super + ctrl + {m,x,y,z}
|
||||
bspc node -g {marked,locked,sticky,private}
|
||||
|
||||
#
|
||||
# focus/swap
|
||||
#
|
||||
|
||||
# Focus the node in the given direction
|
||||
super + {h,j,k,l,Left,Down,Up,Right}
|
||||
bspc node -{f} {west,south,north,east,west,south,north,east}
|
||||
|
||||
# Rotate focus clockwise/counterclockwise
|
||||
super + {d,a}
|
||||
bspc node -f {next,prev}.local.window
|
||||
|
||||
# focus the last node/desktop
|
||||
super + {grave,Tab}
|
||||
bspc {node,desktop} -f last
|
||||
|
||||
# focus or send to the given desktop
|
||||
super + {_,shift + }{1-6}
|
||||
bspc {desktop -f,node -d} '^{1-6}'
|
||||
|
||||
#
|
||||
# preselect
|
||||
#
|
||||
|
||||
# preselect the direction
|
||||
super + ctrl + shift {h,j,k,l,Left,Down,Up,Right}
|
||||
bspc node -p {west,south,north,east,west,south,north,east}
|
||||
|
||||
# cancel the preselection for the focused node
|
||||
super + ctrl + space
|
||||
bspc node -p cancel
|
||||
|
||||
# cancel the preselection for the focused desktop
|
||||
super + ctrl + shift + space
|
||||
bspc query -N -d | xargs -I id -n 1 bspc node id -p cancel
|
||||
|
||||
# swap current window with preselection
|
||||
super + s
|
||||
bspc node -n last.\!automatic -t tiled
|
||||
|
||||
#
|
||||
# move/resize
|
||||
#
|
||||
|
||||
# Resize a window by moving one of its side outward/inward
|
||||
super + s ; {h,j,k,l,Left,Down,Up,Right}
|
||||
STEP=20; SELECTION={1,2,3,4,1,2,3,4}; \
|
||||
bspc node -z $(echo "left -$STEP 0,bottom 0 $STEP,top 0 -$STEP,right $STEP 0" | cut -d',' -f$SELECTION) || \
|
||||
bspc node -z $(echo "right -$STEP 0,top 0 $STEP,bottom 0 -$STEP,left $STEP 0" | cut -d',' -f$SELECTION)
|
||||
|
||||
# move a floating window
|
||||
super + {h,j,k,l}
|
||||
bspc node -v {-30 0,0 20,0 -30,20 0}
|
||||
|
||||
# move a window
|
||||
super + shift + {h,j,k,l,Left,Down,Up,Right}
|
||||
bsp-smove {west,south,north,east,west,south,north,east}
|
||||
|
||||
# minimize current window, move down
|
||||
super + {z,bracketleft}
|
||||
bspc node -f 'focused.tiled' \
|
||||
&& bspc node -f north; \
|
||||
bspc node -z bottom 0 9999
|
||||
|
||||
# minimize current window, move up
|
||||
super + {x,bracketright}
|
||||
bspc node -f 'focused.tiled' \
|
||||
&& bspc node -f south; \
|
||||
bspc node -z top 0 -9999
|
||||
|
||||
super + backslash
|
||||
bspc node -e
|
||||
|
||||
#
|
||||
# Program launching binds
|
||||
#
|
||||
|
||||
super + 8
|
||||
vesktop
|
||||
|
||||
super + 9
|
||||
bitwarden
|
||||
|
||||
super + 0
|
||||
kitty -e micro
|
||||
sxh-help
|
||||
|
||||
#
|
||||
# Media
|
||||
@@ -220,3 +35,131 @@ XF86AudioPrev
|
||||
# Stop track
|
||||
XF86AudioStop
|
||||
playerctl stop
|
||||
|
||||
#
|
||||
# Applications
|
||||
#
|
||||
|
||||
# Open terminal
|
||||
super + Return
|
||||
xfce4-terminal
|
||||
|
||||
# Launch program (drun)
|
||||
super + @space
|
||||
rofi -show drun -show-icons
|
||||
|
||||
# Launch floating program
|
||||
super + shift + button2
|
||||
slop
|
||||
|
||||
# Open window management context menu
|
||||
super + button2
|
||||
bspc-context-menu
|
||||
|
||||
# Run command
|
||||
super + shift + @space
|
||||
rofi -show run
|
||||
|
||||
#
|
||||
# XFCE
|
||||
#
|
||||
|
||||
# Show clipboard
|
||||
super + v
|
||||
xfce4-popup-clipman
|
||||
|
||||
# Lock screen
|
||||
super + q
|
||||
xflock4
|
||||
|
||||
# Session options
|
||||
super + shift + q
|
||||
xfce4-session-logout
|
||||
|
||||
#
|
||||
# Screen capturing
|
||||
#
|
||||
|
||||
# Grab color and put in clipboard
|
||||
shift + XF86Launch5
|
||||
flameshot gui
|
||||
|
||||
|
||||
# Screenshot region
|
||||
XF86Launch5
|
||||
commentmenu 'grabc | xclip -sel clipboard # Put color in clipboard\nflameshot gui # Capture region' | sh
|
||||
|
||||
#
|
||||
# Qutebrowser
|
||||
#
|
||||
|
||||
# Make a qutebrowser search
|
||||
super + o
|
||||
qutesearch
|
||||
|
||||
# # Preselect below and make a qutebrowser search
|
||||
# super + p
|
||||
# bspc node -p south -o 0.01 \
|
||||
# && qutesearch \
|
||||
# || bspc node -p cancel
|
||||
|
||||
#
|
||||
# Focus
|
||||
#
|
||||
|
||||
# Move focus west/south/north/east
|
||||
super + {h,j,k,l,Left,Down,Up,Right}
|
||||
bspc node -{f} {west,south,north,east,west,south,north,east}
|
||||
|
||||
# Move focus forward/backward in stack
|
||||
super + {d,a}
|
||||
bspc node -f {next,prev}.local.window
|
||||
|
||||
# Focus or send to desktop
|
||||
super + {_,shift + }{1-9}
|
||||
bspc {desktop -f,node -d} '^{1-9}'
|
||||
|
||||
#
|
||||
# Window management
|
||||
#
|
||||
|
||||
# Close or kill window
|
||||
super + {_,shift + }w
|
||||
bspc node -{c,k}
|
||||
|
||||
# Move window west/south/north/east
|
||||
super + shift + {h,j,k,l,Left,Down,Up,Right}
|
||||
bspc-smart-move {west,south,north,east,west,south,north,east}
|
||||
|
||||
# Maximize below/above
|
||||
super + {x,z}
|
||||
bspc-column {up,down}
|
||||
|
||||
# Toggle floating/tiled
|
||||
super + c
|
||||
bspc node 'focused.!tiled' -t tiled || bspc node 'focused.!floating' -t floating
|
||||
|
||||
# Toggle fullscreen
|
||||
super + f
|
||||
bspc node 'focused.!fullscreen' -t fullscreen || bspc node 'focused.!tiled' -t tiled
|
||||
|
||||
|
||||
# Switch between tiled and stacked layout
|
||||
super + m
|
||||
bspc desktop -l next
|
||||
|
||||
#
|
||||
# Preselection
|
||||
#
|
||||
|
||||
# Preselect in a direction
|
||||
super + ctrl + shift {h,j,k,l,Left,Down,Up,Right}
|
||||
bspc node -p {west,south,north,east,west,south,north,east}
|
||||
|
||||
# Cancel all preselections in desktop
|
||||
super + ctrl + space
|
||||
bspc query -N -d | xargs -I id -n 1 bspc node id -p cancel
|
||||
|
||||
# Swap current window with preselection
|
||||
super + s
|
||||
bspc node -n last.\!automatic -t tiled
|
||||
|
||||
@@ -1,105 +1,127 @@
|
||||
#
|
||||
# wm independent hotkeys
|
||||
#
|
||||
|
||||
Super_L ; Return
|
||||
kitty
|
||||
|
||||
# # Open kitty
|
||||
# super + Return
|
||||
# kitty
|
||||
# Open terminal
|
||||
super + Return
|
||||
xfce4-terminal
|
||||
|
||||
# Open floating kitty
|
||||
# Super_L ; shift + Return
|
||||
# bsp-float kitty
|
||||
# Open floating terminal
|
||||
super + shift + Return
|
||||
bsp-float xfce4-terminal
|
||||
|
||||
# launch program (drun)
|
||||
Super_L ; @space
|
||||
super + @space
|
||||
rofi -show drun -show-icons
|
||||
|
||||
# launch program (standard run)
|
||||
# Super_L ; shift + @space
|
||||
# rofi -show run
|
||||
super + shift + @space
|
||||
rofi -show run
|
||||
|
||||
# make sxhkd reload its configuration files:
|
||||
Super_L ; Escape
|
||||
super + Escape
|
||||
pkill -USR1 -x sxhkd && notify-send 'Key daemon reloaded'
|
||||
|
||||
super + alt + Menu
|
||||
le-keyboard && notify-send 'Remapped Keyboard'
|
||||
|
||||
# Start a qutebrowser search
|
||||
Super_L ; o
|
||||
super + o
|
||||
qutesearch
|
||||
|
||||
# Preselect below and start a qutebrowser search
|
||||
super + p
|
||||
bspc node -p south -o 0.01 \
|
||||
&& qutesearch \
|
||||
|| bspc node -p cancel
|
||||
|
||||
# Grab color
|
||||
Print
|
||||
grabc | xclip -sel clipboard
|
||||
|
||||
# Show keybinds
|
||||
Super_L ; slash
|
||||
super + slash
|
||||
sxhkd-help
|
||||
|
||||
# Show clipmenu
|
||||
Super_L ; v
|
||||
super + v
|
||||
xfce4-popup-clipman
|
||||
|
||||
# Exit session
|
||||
# Super_L ; shift + q
|
||||
# xfce4-session-logout
|
||||
|
||||
# Lock screen
|
||||
Super_L ; q
|
||||
super + q
|
||||
xflock4
|
||||
|
||||
# Lock screen
|
||||
super + shift + q
|
||||
xfce4-session-logout
|
||||
|
||||
# Open task manager
|
||||
Super_L ; t
|
||||
super + t
|
||||
# Arguable how valuable this is tbh
|
||||
bsp-float xfce4-taskmanager
|
||||
|
||||
# Screenshot region
|
||||
Super_L ; Print
|
||||
xfce4-screenshooter -r
|
||||
XF86Launch5
|
||||
flameshot gui
|
||||
# xfce4-screenshooter -r
|
||||
|
||||
# Manage audio profiles[57362;10u]
|
||||
super + shift + Pause
|
||||
le-audio
|
||||
|
||||
# Cycle audio profile on default sink
|
||||
super + Pause
|
||||
le-audio -afc
|
||||
|
||||
#
|
||||
# bspwm hotkeys
|
||||
#
|
||||
|
||||
# quit/restart bspwm
|
||||
super + shift + {q,r}
|
||||
bspc {quit,wm -r}
|
||||
|
||||
# close and kill
|
||||
Super_L ; {_,shift + }w
|
||||
super + {_,shift + }w
|
||||
bspc node -{c,k}
|
||||
|
||||
# superernate between the tiled and monocle layout
|
||||
F3
|
||||
super + m
|
||||
bspc desktop -l next
|
||||
|
||||
# send the newest marked node to the newest preselected node
|
||||
Super_L ; y
|
||||
bspc node newest.marked.local -n newest.!automatic.local
|
||||
|
||||
# Plumb selected text
|
||||
Super_L ; c
|
||||
zsh -c "$(sselp | goawk $(cat ~/plumber.awk))"
|
||||
# swap the current node and the biggest window
|
||||
super + g
|
||||
bspc node -s biggest.window
|
||||
|
||||
#
|
||||
# state/flags
|
||||
#
|
||||
|
||||
# set the window state
|
||||
Super_L ; {z,shift + z,x,f}
|
||||
bspc node -t {tiled,pseudo_tiled,floating,fullscreen}
|
||||
# toggle window state
|
||||
super + c
|
||||
bspc node 'focused.!tiled' -t tiled || bspc node 'focused.!floating' -t floating
|
||||
# bspc node 'focused.!pseudo_tiled' -t pseudo_tiled
|
||||
|
||||
# toggle window fullscreen
|
||||
super + f
|
||||
bspc node 'focused.!tiled' -t tiled || bspc node 'focused.!fullscreen' -t fullscreen
|
||||
|
||||
|
||||
# set the node flags
|
||||
super + ctrl + {m,x,y,z}
|
||||
bspc node -g {marked,locked,sticky,private}
|
||||
|
||||
#
|
||||
# focus/swap
|
||||
#
|
||||
|
||||
# focus the node in the given direction
|
||||
super + {w,a,s,d,j,k,i,l,Left,Down,Up,Right}
|
||||
bspc node -f {west,south,north,east,west,south,north,east,west,south,north,east}
|
||||
# Focus the node in the given direction
|
||||
super + {h,j,k,l,Left,Down,Up,Right}
|
||||
bspc node -{f} {west,south,north,east,west,south,north,east}
|
||||
|
||||
# Change window, counterclockwise/clockwise
|
||||
{F1,F2}
|
||||
bspc node -f {prev,next}.local.!hidden.window
|
||||
|
||||
# focus the next/previous desktop in the current monitor
|
||||
super + bracket{left,right}
|
||||
bspc desktop -f {prev,next}.local
|
||||
# Rotate focus clockwise/counterclockwise
|
||||
super + {d,a}
|
||||
bspc node -f {next,prev}.local.window
|
||||
|
||||
# focus the last node/desktop
|
||||
super + {grave,Tab}
|
||||
@@ -116,11 +138,7 @@ super + {_,shift + }{1-6}
|
||||
# preselect the direction
|
||||
super + ctrl + shift {h,j,k,l,Left,Down,Up,Right}
|
||||
bspc node -p {west,south,north,east,west,south,north,east}
|
||||
|
||||
# preselect the ratio
|
||||
super + ctrl + {1-9}
|
||||
bspc node -o 0.{1-9}
|
||||
|
||||
|
||||
# cancel the preselection for the focused node
|
||||
super + ctrl + space
|
||||
bspc node -p cancel
|
||||
@@ -129,24 +147,42 @@ super + ctrl + space
|
||||
super + ctrl + shift + space
|
||||
bspc query -N -d | xargs -I id -n 1 bspc node id -p cancel
|
||||
|
||||
# swap current window with preselection
|
||||
super + s
|
||||
bspc node -n last.\!automatic -t tiled
|
||||
|
||||
#
|
||||
# move/resize
|
||||
#
|
||||
|
||||
|
||||
# Resize a window by moving one of its side outward/inward
|
||||
# Super_L ; {w,a,s,d,j,k,i,l,Left,Down,Up,Right}
|
||||
# STEP=20; SELECTION={1,2,3,4,1,2,3,4,1,2,3,4}; \
|
||||
# bspc node -z $(echo "left -$STEP 0,bottom 0 $STEP,top 0 -$STEP,right $STEP 0" | cut -d',' -f$SELECTION) || \
|
||||
# bspc node -z $(echo "right -$STEP 0,top 0 $STEP,bottom 0 -$STEP,left $STEP 0" | cut -d',' -f$SELECTION)
|
||||
super + s ; {h,j,k,l,Left,Down,Up,Right}
|
||||
STEP=20; SELECTION={1,2,3,4,1,2,3,4}; \
|
||||
bspc node -z $(echo "left -$STEP 0,bottom 0 $STEP,top 0 -$STEP,right $STEP 0" | cut -d',' -f$SELECTION) || \
|
||||
bspc node -z $(echo "right -$STEP 0,top 0 $STEP,bottom 0 -$STEP,left $STEP 0" | cut -d',' -f$SELECTION)
|
||||
|
||||
# move a floating window
|
||||
super + {h,j,k,l}
|
||||
bspc node -v {-30 0,0 20,0 -30,20 0}
|
||||
|
||||
# move a window
|
||||
super + shift + {w,s,a,d,j,k,i,l,Left,Down,Up,Right}
|
||||
bsp-smove {west,south,north,east,west,south,north,east,west,south,north,east}
|
||||
super + shift + {h,j,k,l,Left,Down,Up,Right}
|
||||
bsp-smove {west,south,north,east,west,south,north,east}
|
||||
|
||||
# minimize current window, move down
|
||||
super + {z,bracketleft}
|
||||
bspc node -f 'focused.tiled' \
|
||||
&& bspc node -f north; \
|
||||
bspc node -z bottom 0 9999
|
||||
|
||||
# minimize current window, move up
|
||||
super + {x,bracketright}
|
||||
bspc node -f 'focused.tiled' \
|
||||
&& bspc node -f south; \
|
||||
bspc node -z top 0 -9999
|
||||
|
||||
super + backslash
|
||||
bspc node -e
|
||||
|
||||
#
|
||||
# Program launching binds
|
||||
@@ -159,4 +195,28 @@ super + 9
|
||||
bitwarden
|
||||
|
||||
super + 0
|
||||
kitty --hold sh -c micro
|
||||
kitty -e micro
|
||||
|
||||
#
|
||||
# Media
|
||||
#
|
||||
|
||||
# Play/pause track
|
||||
XF86AudioPlay
|
||||
playerctl play-pause
|
||||
|
||||
# Play/pause track
|
||||
Pause
|
||||
playerctl play-pause
|
||||
|
||||
# Previus track
|
||||
XF86AudioNext
|
||||
playerctl next
|
||||
|
||||
# Previous track
|
||||
XF86AudioPrev
|
||||
playerctl previous
|
||||
|
||||
# Stop track
|
||||
XF86AudioStop
|
||||
playerctl stop
|
||||
|
||||
@@ -1,6 +0,0 @@
|
||||
@media screen and (max-width: 1280px) {
|
||||
/* Hide guild members sidebar */
|
||||
.container_cbd271 {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,11 +1,12 @@
|
||||
{
|
||||
"notifyAboutUpdates": true,
|
||||
"autoUpdate": false,
|
||||
"autoUpdate": true,
|
||||
"autoUpdateNotification": true,
|
||||
"useQuickCss": true,
|
||||
"themeLinks": [],
|
||||
"eagerPatches": false,
|
||||
"enabledThemes": [
|
||||
"theme.css"
|
||||
"old-cord.theme.css",
|
||||
"shchemes.css"
|
||||
],
|
||||
"enableReactDevtools": false,
|
||||
"frameless": false,
|
||||
@@ -14,17 +15,14 @@
|
||||
"disableMinSize": false,
|
||||
"winNativeTitleBar": false,
|
||||
"plugins": {
|
||||
"BadgeAPI": {
|
||||
"enabled": true
|
||||
},
|
||||
"ChatInputButtonAPI": {
|
||||
"enabled": false
|
||||
},
|
||||
"CommandsAPI": {
|
||||
"enabled": true
|
||||
},
|
||||
"ContextMenuAPI": {
|
||||
"enabled": true
|
||||
"DynamicImageModalAPI": {
|
||||
"enabled": false
|
||||
},
|
||||
"MemberListDecoratorsAPI": {
|
||||
"enabled": false
|
||||
@@ -41,32 +39,33 @@
|
||||
"MessagePopoverAPI": {
|
||||
"enabled": false
|
||||
},
|
||||
"NoticesAPI": {
|
||||
"enabled": true
|
||||
"MessageUpdaterAPI": {
|
||||
"enabled": false
|
||||
},
|
||||
"ServerListAPI": {
|
||||
"enabled": false
|
||||
},
|
||||
"NoTrack": {
|
||||
"enabled": true,
|
||||
"disableAnalytics": true
|
||||
},
|
||||
"Settings": {
|
||||
"enabled": true,
|
||||
"settingsLocation": "aboveActivity"
|
||||
},
|
||||
"SupportHelper": {
|
||||
"UserSettingsAPI": {
|
||||
"enabled": true
|
||||
},
|
||||
"AccountPanelServerProfile": {
|
||||
"enabled": false
|
||||
},
|
||||
"AlwaysAnimate": {
|
||||
"enabled": false
|
||||
},
|
||||
"AlwaysExpandRoles": {
|
||||
"enabled": false
|
||||
},
|
||||
"AlwaysTrust": {
|
||||
"enabled": false
|
||||
},
|
||||
"AnonymiseFileNames": {
|
||||
"enabled": false
|
||||
},
|
||||
"AppleMusicRichPresence": {
|
||||
"enabled": false
|
||||
},
|
||||
"WebRichPresence (arRPC)": {
|
||||
"enabled": false
|
||||
},
|
||||
@@ -91,6 +90,9 @@
|
||||
"BetterRoleDot": {
|
||||
"enabled": false
|
||||
},
|
||||
"BetterSessions": {
|
||||
"enabled": false
|
||||
},
|
||||
"BetterSettings": {
|
||||
"enabled": false
|
||||
},
|
||||
@@ -115,22 +117,35 @@
|
||||
"ColorSighted": {
|
||||
"enabled": false
|
||||
},
|
||||
"ConsoleJanitor": {
|
||||
"enabled": false
|
||||
},
|
||||
"ConsoleShortcuts": {
|
||||
"enabled": false
|
||||
},
|
||||
"CopyEmojiMarkdown": {
|
||||
"enabled": false
|
||||
},
|
||||
"CopyFileContents": {
|
||||
"enabled": false
|
||||
},
|
||||
"CopyUserURLs": {
|
||||
"enabled": false
|
||||
},
|
||||
"CrashHandler": {
|
||||
"enabled": true
|
||||
},
|
||||
"CtrlEnterSend": {
|
||||
"enabled": false
|
||||
},
|
||||
"CustomRPC": {
|
||||
"enabled": false
|
||||
},
|
||||
"CustomIdle": {
|
||||
"enabled": false
|
||||
},
|
||||
"Dearrow": {
|
||||
"enabled": true,
|
||||
"hideButton": false,
|
||||
"replaceElements": 0
|
||||
"enabled": false
|
||||
},
|
||||
"Decor": {
|
||||
"enabled": false
|
||||
@@ -138,11 +153,12 @@
|
||||
"DisableCallIdle": {
|
||||
"enabled": false
|
||||
},
|
||||
"EmoteCloner": {
|
||||
"DontRoundMyTimestamps": {
|
||||
"enabled": false
|
||||
},
|
||||
"Experiments": {
|
||||
"enabled": false
|
||||
"enabled": true,
|
||||
"toolbarDevMenu": false
|
||||
},
|
||||
"F8Break": {
|
||||
"enabled": false
|
||||
@@ -162,6 +178,9 @@
|
||||
"FixCodeblockGap": {
|
||||
"enabled": false
|
||||
},
|
||||
"FixImagesQuality": {
|
||||
"enabled": false
|
||||
},
|
||||
"FixSpotifyEmbeds": {
|
||||
"enabled": false
|
||||
},
|
||||
@@ -177,6 +196,12 @@
|
||||
"FriendsSince": {
|
||||
"enabled": false
|
||||
},
|
||||
"FullSearchContext": {
|
||||
"enabled": false
|
||||
},
|
||||
"FullUserInChatbox": {
|
||||
"enabled": false
|
||||
},
|
||||
"GameActivityToggle": {
|
||||
"enabled": false
|
||||
},
|
||||
@@ -186,18 +211,30 @@
|
||||
"GreetStickerPicker": {
|
||||
"enabled": false
|
||||
},
|
||||
"HideMedia": {
|
||||
"enabled": false
|
||||
},
|
||||
"iLoveSpam": {
|
||||
"enabled": false
|
||||
},
|
||||
"IgnoreActivities": {
|
||||
"enabled": false
|
||||
},
|
||||
"ImageLink": {
|
||||
"enabled": false
|
||||
},
|
||||
"ImageZoom": {
|
||||
"enabled": false
|
||||
},
|
||||
"ImplicitRelationships": {
|
||||
"enabled": false
|
||||
},
|
||||
"InvisibleChat": {
|
||||
"enabled": false
|
||||
},
|
||||
"IrcColors": {
|
||||
"enabled": false
|
||||
},
|
||||
"KeepCurrentChannel": {
|
||||
"enabled": false
|
||||
},
|
||||
@@ -210,9 +247,15 @@
|
||||
"MemberCount": {
|
||||
"enabled": false
|
||||
},
|
||||
"MentionAvatars": {
|
||||
"enabled": false
|
||||
},
|
||||
"MessageClickActions": {
|
||||
"enabled": false
|
||||
},
|
||||
"MessageLatency": {
|
||||
"enabled": false
|
||||
},
|
||||
"MessageLinkEmbeds": {
|
||||
"enabled": false
|
||||
},
|
||||
@@ -228,9 +271,6 @@
|
||||
"MoreKaomoji": {
|
||||
"enabled": false
|
||||
},
|
||||
"MoreUserTags": {
|
||||
"enabled": false
|
||||
},
|
||||
"Moyai": {
|
||||
"enabled": false
|
||||
},
|
||||
@@ -249,9 +289,15 @@
|
||||
"NoF1": {
|
||||
"enabled": false
|
||||
},
|
||||
"NoMaskedUrlPaste": {
|
||||
"enabled": false
|
||||
},
|
||||
"NoMosaic": {
|
||||
"enabled": false
|
||||
},
|
||||
"NoOnboardingDelay": {
|
||||
"enabled": false
|
||||
},
|
||||
"NoPendingCount": {
|
||||
"enabled": false
|
||||
},
|
||||
@@ -261,7 +307,7 @@
|
||||
"NoReplyMention": {
|
||||
"enabled": false
|
||||
},
|
||||
"NoScreensharePreview": {
|
||||
"NoServerEmojis": {
|
||||
"enabled": false
|
||||
},
|
||||
"NoTypingAnimation": {
|
||||
@@ -276,9 +322,6 @@
|
||||
"NotificationVolume": {
|
||||
"enabled": false
|
||||
},
|
||||
"NSFWGateBypass": {
|
||||
"enabled": false
|
||||
},
|
||||
"OnePingPerDM": {
|
||||
"enabled": false
|
||||
},
|
||||
@@ -291,6 +334,12 @@
|
||||
"OverrideForumDefaults": {
|
||||
"enabled": false
|
||||
},
|
||||
"PartyMode": {
|
||||
"enabled": false
|
||||
},
|
||||
"PauseInvitesForever": {
|
||||
"enabled": false
|
||||
},
|
||||
"PermissionFreeWill": {
|
||||
"enabled": false
|
||||
},
|
||||
@@ -330,7 +379,10 @@
|
||||
"RelationshipNotifier": {
|
||||
"enabled": false
|
||||
},
|
||||
"ResurrectHome": {
|
||||
"ReplaceGoogleSearch": {
|
||||
"enabled": false
|
||||
},
|
||||
"ReplyTimestamp": {
|
||||
"enabled": false
|
||||
},
|
||||
"RevealAllSpoilers": {
|
||||
@@ -348,9 +400,15 @@
|
||||
"SecretRingToneEnabler": {
|
||||
"enabled": false
|
||||
},
|
||||
"Summaries": {
|
||||
"enabled": false
|
||||
},
|
||||
"SendTimestamps": {
|
||||
"enabled": false
|
||||
},
|
||||
"ServerInfo": {
|
||||
"enabled": false
|
||||
},
|
||||
"ServerListIndicators": {
|
||||
"enabled": false
|
||||
},
|
||||
@@ -366,9 +424,15 @@
|
||||
"ShowHiddenChannels": {
|
||||
"enabled": false
|
||||
},
|
||||
"ShowHiddenThings": {
|
||||
"enabled": false
|
||||
},
|
||||
"ShowMeYourName": {
|
||||
"enabled": false
|
||||
},
|
||||
"ShowTimeoutDuration": {
|
||||
"enabled": false
|
||||
},
|
||||
"SilentMessageToggle": {
|
||||
"enabled": false
|
||||
},
|
||||
@@ -390,6 +454,12 @@
|
||||
"StartupTimings": {
|
||||
"enabled": false
|
||||
},
|
||||
"StickerPaste": {
|
||||
"enabled": false
|
||||
},
|
||||
"StreamerModeOnStream": {
|
||||
"enabled": false
|
||||
},
|
||||
"SuperReactionTweaks": {
|
||||
"enabled": false
|
||||
},
|
||||
@@ -399,9 +469,6 @@
|
||||
"ThemeAttributes": {
|
||||
"enabled": false
|
||||
},
|
||||
"TimeBarAllActivities": {
|
||||
"enabled": false
|
||||
},
|
||||
"Translate": {
|
||||
"enabled": false
|
||||
},
|
||||
@@ -414,10 +481,13 @@
|
||||
"Unindent": {
|
||||
"enabled": false
|
||||
},
|
||||
"UnlockedAvatarZoom": {
|
||||
"enabled": false
|
||||
},
|
||||
"UnsuppressEmbeds": {
|
||||
"enabled": false
|
||||
},
|
||||
"UrbanDictionary": {
|
||||
"UserMessagesPronouns": {
|
||||
"enabled": false
|
||||
},
|
||||
"UserVoiceShow": {
|
||||
@@ -426,6 +496,9 @@
|
||||
"USRBG": {
|
||||
"enabled": false
|
||||
},
|
||||
"ValidReply": {
|
||||
"enabled": false
|
||||
},
|
||||
"ValidUser": {
|
||||
"enabled": false
|
||||
},
|
||||
@@ -444,131 +517,51 @@
|
||||
"ViewRaw": {
|
||||
"enabled": false
|
||||
},
|
||||
"VoiceDownload": {
|
||||
"enabled": false
|
||||
},
|
||||
"VoiceMessages": {
|
||||
"enabled": false
|
||||
},
|
||||
"WebContextMenus": {
|
||||
"enabled": true,
|
||||
"addBack": true
|
||||
"VolumeBooster": {
|
||||
"enabled": false
|
||||
},
|
||||
"WebKeybinds": {
|
||||
"enabled": true
|
||||
},
|
||||
"WebScreenShareFixes": {
|
||||
"enabled": true
|
||||
},
|
||||
"WhoReacted": {
|
||||
"enabled": false
|
||||
},
|
||||
"Wikisearch": {
|
||||
"enabled": false
|
||||
},
|
||||
"XSOverlay": {
|
||||
"enabled": false
|
||||
},
|
||||
"UnlockedAvatarZoom": {
|
||||
"enabled": false
|
||||
},
|
||||
"ShowHiddenThings": {
|
||||
"enabled": false
|
||||
},
|
||||
"BetterSessions": {
|
||||
"enabled": false
|
||||
},
|
||||
"ImplicitRelationships": {
|
||||
"enabled": false
|
||||
},
|
||||
"StreamerModeOnStream": {
|
||||
"enabled": false
|
||||
},
|
||||
"PartyMode": {
|
||||
"enabled": false
|
||||
},
|
||||
"MessageUpdaterAPI": {
|
||||
"enabled": false
|
||||
},
|
||||
"AutomodContext": {
|
||||
"enabled": false
|
||||
},
|
||||
"CtrlEnterSend": {
|
||||
"enabled": false
|
||||
},
|
||||
"CustomIdle": {
|
||||
"enabled": false
|
||||
},
|
||||
"DontRoundMyTimestamps": {
|
||||
"enabled": false
|
||||
},
|
||||
"ImageLink": {
|
||||
"enabled": false
|
||||
},
|
||||
"MaskedLinkPaste": {
|
||||
"enabled": false
|
||||
},
|
||||
"MessageLatency": {
|
||||
"enabled": false
|
||||
},
|
||||
"NoDefaultHangStatus": {
|
||||
"enabled": false
|
||||
},
|
||||
"NoServerEmojis": {
|
||||
"enabled": false
|
||||
},
|
||||
"PauseInvitesForever": {
|
||||
"enabled": false
|
||||
},
|
||||
"ReplaceGoogleSearch": {
|
||||
"enabled": false
|
||||
},
|
||||
"ReplyTimestamp": {
|
||||
"enabled": false
|
||||
},
|
||||
"Summaries": {
|
||||
"enabled": false
|
||||
},
|
||||
"ShowTimeoutDuration": {
|
||||
"enabled": false
|
||||
},
|
||||
"ValidReply": {
|
||||
"enabled": false
|
||||
},
|
||||
"VoiceDownload": {
|
||||
"enabled": false
|
||||
},
|
||||
"WebScreenShareFixes": {
|
||||
"enabled": true
|
||||
},
|
||||
"ServerInfo": {
|
||||
"enabled": false
|
||||
},
|
||||
"UserSettingsAPI": {
|
||||
"enabled": true
|
||||
},
|
||||
"AppleMusicRichPresence": {
|
||||
"enabled": false
|
||||
},
|
||||
"ConsoleJanitor": {
|
||||
"enabled": false
|
||||
},
|
||||
"CopyEmojiMarkdown": {
|
||||
"enabled": false
|
||||
},
|
||||
"MentionAvatars": {
|
||||
"enabled": false
|
||||
},
|
||||
"NoOnboardingDelay": {
|
||||
"enabled": false
|
||||
},
|
||||
"AlwaysExpandRoles": {
|
||||
"enabled": false
|
||||
},
|
||||
"YoutubeAdblock": {
|
||||
"enabled": false
|
||||
"enabled": true
|
||||
},
|
||||
"FullSearchContext": {
|
||||
"enabled": false
|
||||
"BadgeAPI": {
|
||||
"enabled": true
|
||||
},
|
||||
"UserMessagesPronouns": {
|
||||
"enabled": false
|
||||
"NoTrack": {
|
||||
"enabled": true,
|
||||
"disableAnalytics": true
|
||||
},
|
||||
"HideMedia": {
|
||||
"Settings": {
|
||||
"enabled": true,
|
||||
"settingsLocation": "aboveNitro"
|
||||
},
|
||||
"DisableDeepLinks": {
|
||||
"enabled": true
|
||||
},
|
||||
"SupportHelper": {
|
||||
"enabled": true
|
||||
},
|
||||
"WebContextMenus": {
|
||||
"enabled": true
|
||||
},
|
||||
"ExpressionCloner": {
|
||||
"enabled": false
|
||||
}
|
||||
},
|
||||
@@ -582,7 +575,6 @@
|
||||
"authenticated": false,
|
||||
"url": "https://api.vencord.dev/",
|
||||
"settingsSync": false,
|
||||
"settingsSyncVersion": 1739774681370
|
||||
},
|
||||
"eagerPatches": false
|
||||
"settingsSyncVersion": 1748987857207
|
||||
}
|
||||
}
|
||||
@@ -1,12 +1,12 @@
|
||||
app=/usr/bin/display-im6.q16
|
||||
custom_action_command=none
|
||||
app=/usr/bin/flatpak
|
||||
custom_action_command=/usr/libexec/xfce4/screenshooter/scripts/imgur-upload.sh %f %imgur_client_id
|
||||
last_user=
|
||||
last_extension=png
|
||||
enable_imgur_upload=true
|
||||
show_in_folder=false
|
||||
screenshot_dir=file:/home/dakedres
|
||||
action=2
|
||||
delay=0
|
||||
screenshot_dir=file:/home/dakedres/Pictures
|
||||
action=1
|
||||
delay=5
|
||||
region=3
|
||||
show_mouse=1
|
||||
show_border=1
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?xml version="1.1" encoding="UTF-8"?>
|
||||
|
||||
<channel name="displays" version="1.0">
|
||||
<property name="ActiveProfile" type="string" value="Default"/>
|
||||
@@ -16,18 +16,18 @@
|
||||
<property name="Y" type="double" value="1"/>
|
||||
</property>
|
||||
<property name="Position" type="empty">
|
||||
<property name="X" type="int" value="0"/>
|
||||
<property name="X" type="int" value="1920"/>
|
||||
<property name="Y" type="int" value="0"/>
|
||||
</property>
|
||||
</property>
|
||||
<property name="HDMI-1" type="string" value="LG 72"">
|
||||
<property name="HDMI-1" type="string" value="Lenovo Group Limited 22"">
|
||||
<property name="Active" type="bool" value="true"/>
|
||||
<property name="EDID" type="string" value="798e7beefc07f4d7c9dd87f70fd5a408ac3ace59"/>
|
||||
<property name="Resolution" type="string" value="2560x1440"/>
|
||||
<property name="RefreshRate" type="double" value="59.950550105254798"/>
|
||||
<property name="EDID" type="string" value="c89931af72068948d9206fa7f80f34bb90faeb1d"/>
|
||||
<property name="Resolution" type="string" value="1920x1080"/>
|
||||
<property name="RefreshRate" type="double" value="60"/>
|
||||
<property name="Rotation" type="int" value="0"/>
|
||||
<property name="Reflection" type="string" value="0"/>
|
||||
<property name="Primary" type="bool" value="false"/>
|
||||
<property name="Primary" type="bool" value="true"/>
|
||||
<property name="Scale" type="empty">
|
||||
<property name="X" type="double" value="1"/>
|
||||
<property name="Y" type="double" value="1"/>
|
||||
@@ -52,18 +52,18 @@
|
||||
<property name="Y" type="double" value="1"/>
|
||||
</property>
|
||||
<property name="Position" type="empty">
|
||||
<property name="X" type="int" value="0"/>
|
||||
<property name="X" type="int" value="1920"/>
|
||||
<property name="Y" type="int" value="0"/>
|
||||
</property>
|
||||
</property>
|
||||
<property name="HDMI-1" type="string" value="LG 72"">
|
||||
<property name="HDMI-1" type="string" value="Lenovo Group Limited 22"">
|
||||
<property name="Active" type="bool" value="true"/>
|
||||
<property name="EDID" type="string" value="798e7beefc07f4d7c9dd87f70fd5a408ac3ace59"/>
|
||||
<property name="Resolution" type="string" value="2560x1440"/>
|
||||
<property name="RefreshRate" type="double" value="59.950550105254798"/>
|
||||
<property name="EDID" type="string" value="c89931af72068948d9206fa7f80f34bb90faeb1d"/>
|
||||
<property name="Resolution" type="string" value="1920x1080"/>
|
||||
<property name="RefreshRate" type="double" value="60"/>
|
||||
<property name="Rotation" type="int" value="0"/>
|
||||
<property name="Reflection" type="string" value="0"/>
|
||||
<property name="Primary" type="bool" value="false"/>
|
||||
<property name="Primary" type="bool" value="true"/>
|
||||
<property name="Scale" type="empty">
|
||||
<property name="X" type="double" value="1"/>
|
||||
<property name="Y" type="double" value="1"/>
|
||||
@@ -75,5 +75,5 @@
|
||||
</property>
|
||||
</property>
|
||||
<property name="Notify" type="int" value="1"/>
|
||||
<property name="AutoEnableProfiles" type="bool" value="true"/>
|
||||
<property name="AutoEnableProfiles" type="int" value="3"/>
|
||||
</channel>
|
||||
|
||||
@@ -2,7 +2,6 @@
|
||||
|
||||
<channel name="keyboards" version="1.0">
|
||||
<property name="Default" type="empty">
|
||||
<property name="Numlock" type="bool" value="true"/>
|
||||
<property name="KeyRepeat" type="bool" value="true"/>
|
||||
<property name="Numlock" type="bool" value="false"/>
|
||||
</property>
|
||||
</channel>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?xml version="1.1" encoding="UTF-8"?>
|
||||
|
||||
<channel name="thunar" version="1.0">
|
||||
<property name="last-location-bar" type="empty"/>
|
||||
@@ -9,14 +9,15 @@
|
||||
<property name="shortcuts-icon-size" type="empty"/>
|
||||
<property name="last-view" type="string" value="ThunarDetailsView"/>
|
||||
<property name="last-icon-view-zoom-level" type="string" value="THUNAR_ZOOM_LEVEL_100_PERCENT"/>
|
||||
<property name="last-window-width" type="int" value="598"/>
|
||||
<property name="last-window-height" type="int" value="1039"/>
|
||||
<property name="last-separator-position" type="int" value="107"/>
|
||||
<property name="last-window-maximized" type="bool" value="false"/>
|
||||
<property name="last-separator-position" type="int" value="170"/>
|
||||
<property name="last-show-hidden" type="bool" value="true"/>
|
||||
<property name="last-window-width" type="int" value="829"/>
|
||||
<property name="last-window-height" type="int" value="1021"/>
|
||||
<property name="misc-confirm-close-multiple-tabs" type="bool" value="false"/>
|
||||
<property name="last-details-view-zoom-level" type="string" value="THUNAR_ZOOM_LEVEL_25_PERCENT"/>
|
||||
<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-column-widths" type="string" value="50,50,124,50,73,74,50,50,340,50,50,77,50,440"/>
|
||||
<property name="last-sort-column" type="string" value="THUNAR_COLUMN_DATE_MODIFIED"/>
|
||||
<property name="last-sort-order" type="string" value="GTK_SORT_DESCENDING"/>
|
||||
<property name="last-details-view-column-widths" type="string" value="50,50,121,116,50,81,50,50,386,50,50,69,50,458"/>
|
||||
<property name="last-show-hidden" type="bool" value="true"/>
|
||||
<property name="last-sort-column" type="string" value="THUNAR_COLUMN_NAME"/>
|
||||
<property name="last-sort-order" type="string" value="GTK_SORT_ASCENDING"/>
|
||||
</channel>
|
||||
|
||||
@@ -35,8 +35,8 @@
|
||||
</property>
|
||||
</property>
|
||||
<property name="last" type="empty">
|
||||
<property name="window-height" type="int" value="1039"/>
|
||||
<property name="window-width" type="int" value="1910"/>
|
||||
<property name="window-height" type="int" value="422"/>
|
||||
<property name="window-width" type="int" value="580"/>
|
||||
<property name="pane-position" type="int" value="180"/>
|
||||
</property>
|
||||
</channel>
|
||||
|
||||
@@ -1,21 +1,21 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?xml version="1.1" encoding="UTF-8"?>
|
||||
|
||||
<channel name="xfce4-desktop" version="1.0">
|
||||
<property name="desktop-icons" type="empty">
|
||||
<property name="style" type="empty"/>
|
||||
<property name="file-icons" type="empty">
|
||||
<property name="show-home" type="bool" value="false"/>
|
||||
<property name="show-home" type="empty"/>
|
||||
<property name="show-filesystem" type="empty"/>
|
||||
<property name="show-removable" type="empty"/>
|
||||
<property name="show-trash" type="bool" value="false"/>
|
||||
<property name="show-trash" type="empty"/>
|
||||
</property>
|
||||
<property name="icon-size" type="uint" value="48"/>
|
||||
<property name="icon-size" type="empty"/>
|
||||
<property name="tooltip-size" type="empty"/>
|
||||
</property>
|
||||
<property name="backdrop" type="empty">
|
||||
<property name="screen0" type="empty">
|
||||
<property name="monitor0" type="empty">
|
||||
<property name="image-path" type="string" value="/home/dakedres/repos/dotfiles/wallpapers/walkin-just-crop.jpg"/>
|
||||
<property name="image-path" type="empty"/>
|
||||
<property name="image-style" type="empty"/>
|
||||
<property name="image-show" type="empty"/>
|
||||
</property>
|
||||
@@ -36,36 +36,477 @@
|
||||
</property>
|
||||
<property name="monitoreDP-1" type="empty">
|
||||
<property name="workspace0" type="empty">
|
||||
<property name="last-image" type="string" value="/home/dakedres/.local/share/le_wallpaper/.eDP-1.png"/>
|
||||
<property name="image-style" type="int" value="5"/>
|
||||
<property name="color-style" type="int" value="0"/>
|
||||
<property name="backdrop-cycle-enable" type="bool" value="false"/>
|
||||
<property name="image-style" type="int" value="5"/>
|
||||
<property name="last-image" type="string" value="/usr/share/xfce4/backdrops/xubuntu-wallpaper.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="repos/dotfiles/wallpapers/walkin-just-crop.jpg"/>
|
||||
<property name="last-image" type="string" value="/usr/share/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</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="repos/dotfiles/wallpapers/walkin-just-crop.jpg"/>
|
||||
<property name="last-image" type="string" value="/usr/share/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</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="repos/dotfiles/wallpapers/walkin-just-crop.jpg"/>
|
||||
<property name="last-image" type="string" value="/usr/share/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</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="repos/dotfiles/wallpapers/walkin-just-crop.jpg"/>
|
||||
<property name="last-image" type="string" value="/usr/share/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace5" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace6" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace7" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace8" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace9" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace10" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace11" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace12" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace13" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace14" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace15" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace16" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace17" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace18" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace19" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace20" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace21" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace22" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace23" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace24" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace25" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace26" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace27" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace28" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace29" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace30" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace31" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace32" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace33" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace34" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace35" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace36" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace37" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace38" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace39" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace40" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace41" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace42" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace43" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace44" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace45" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace46" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
</property>
|
||||
<property name="monitorHDMI-1" type="empty">
|
||||
<property name="workspace0" type="empty">
|
||||
<property name="color-style" type="int" value="0"/>
|
||||
<property name="image-style" type="int" value="5"/>
|
||||
<property name="last-image" type="string" value="/home/dakedres/.local/share/le_wallpaper/.HDMI-1.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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace5" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace6" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace7" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace8" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace9" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace10" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace11" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace12" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace13" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace14" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace15" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace16" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace17" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace18" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace19" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace20" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace21" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace22" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace23" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace24" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace25" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace26" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace27" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace28" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace29" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace30" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace31" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace32" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace33" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace34" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace35" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace36" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace37" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace38" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace39" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace40" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace41" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace42" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace43" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace44" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace45" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
<property name="workspace46" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
||||
</property>
|
||||
</property>
|
||||
</property>
|
||||
</property>
|
||||
@@ -73,7 +514,7 @@
|
||||
<property name="show" type="empty"/>
|
||||
</property>
|
||||
<property name="last" type="empty">
|
||||
<property name="window-width" type="int" value="929"/>
|
||||
<property name="window-height" type="int" value="842"/>
|
||||
<property name="window-width" type="int" value="615"/>
|
||||
<property name="window-height" type="int" value="553"/>
|
||||
</property>
|
||||
</channel>
|
||||
|
||||
@@ -43,10 +43,6 @@
|
||||
<property name="XF86Music" type="empty"/>
|
||||
</property>
|
||||
<property name="custom" type="empty">
|
||||
<property name="XF86WWW" type="string" value="exo-open --launch WebBrowser"/>
|
||||
<property name="XF86Mail" type="string" value="exo-open --launch MailReader"/>
|
||||
<property name="<Primary><Alt>Delete" type="string" value="xfce4-session-logout"/>
|
||||
<property name="HomePage" type="string" value="exo-open --launch WebBrowser"/>
|
||||
<property name="override" type="bool" value="true"/>
|
||||
</property>
|
||||
</property>
|
||||
@@ -124,67 +120,72 @@
|
||||
<property name="<Super>d" type="empty"/>
|
||||
</property>
|
||||
<property name="custom" type="empty">
|
||||
<property name="<Primary>F12" type="string" value="workspace_12_key"/>
|
||||
<property name="<Super>KP_Down" type="string" value="tile_down_key"/>
|
||||
<property name="<Alt>F4" type="string" value="close_window_key"/>
|
||||
<property name="<Super>KP_7" type="string" value="tile_up_left_key"/>
|
||||
<property name="<Alt>F7" type="string" value="maximize_window_key"/>
|
||||
<property name="<Alt><Shift>Tab" type="string" value="cycle_reverse_windows_key"/>
|
||||
<property name="<Primary><Alt>KP_1" type="string" value="move_window_workspace_1_key"/>
|
||||
<property name="<Primary><Alt>Right" type="string" value="right_workspace_key"/>
|
||||
<property name="<Alt>F12" type="string" value="above_key"/>
|
||||
<property name="<Alt>F8" type="string" value="stick_window_key"/>
|
||||
<property name="<Primary><Shift><Alt>Left" type="string" value="move_window_left_key"/>
|
||||
<property name="<Shift><Alt>Page_Down" type="string" value="lower_window_key"/>
|
||||
<property name="<Primary><Alt>KP_2" type="string" value="move_window_workspace_2_key"/>
|
||||
<property name="<Super>Tab" type="string" value="switch_window_key"/>
|
||||
<property name="<Primary>F1" type="string" value="workspace_1_key"/>
|
||||
<property name="Right" type="string" value="right_key"/>
|
||||
<property name="Left" type="string" value="left_key"/>
|
||||
<property name="<Super>KP_9" type="string" value="tile_up_right_key"/>
|
||||
<property name="<Alt>F9" type="string" value="hide_window_key"/>
|
||||
<property name="<Primary>F10" type="string" value="workspace_10_key"/>
|
||||
<property name="Up" type="string" value="up_key"/>
|
||||
<property name="<Primary><Alt>KP_3" type="string" value="move_window_workspace_3_key"/>
|
||||
<property name="<Primary>F2" type="string" value="workspace_2_key"/>
|
||||
<property name="<Primary>F6" type="string" value="workspace_6_key"/>
|
||||
<property name="<Primary><Alt>Down" type="string" value="down_workspace_key"/>
|
||||
<property name="<Primary><Alt>KP_9" type="string" value="move_window_workspace_9_key"/>
|
||||
<property name="<Super>KP_Up" type="string" value="tile_up_key"/>
|
||||
<property name="<Primary><Alt>End" type="string" value="move_window_next_workspace_key"/>
|
||||
<property name="<Primary>F8" type="string" value="workspace_8_key"/>
|
||||
<property name="<Primary><Shift><Alt>Left" type="string" value="move_window_left_key"/>
|
||||
<property name="<Super>KP_Right" type="string" value="tile_right_key"/>
|
||||
<property name="<Primary><Alt>KP_4" type="string" value="move_window_workspace_4_key"/>
|
||||
<property name="Right" type="string" value="right_key"/>
|
||||
<property name="Down" type="string" value="down_key"/>
|
||||
<property name="<Primary><Alt>Left" type="string" value="left_workspace_key"/>
|
||||
<property name="<Primary>F11" type="string" value="workspace_11_key"/>
|
||||
<property name="<Primary><Alt>KP_4" type="string" value="move_window_workspace_4_key"/>
|
||||
<property name="<Primary>F3" type="string" value="workspace_3_key"/>
|
||||
<property name="<Shift><Alt>Page_Down" type="string" value="lower_window_key"/>
|
||||
<property name="<Super>KP_Next" type="string" value="tile_down_right_key"/>
|
||||
<property name="<Primary><Alt>Down" type="string" value="down_workspace_key"/>
|
||||
<property name="<Primary>F12" type="string" value="workspace_12_key"/>
|
||||
<property name="<Primary><Alt>End" type="string" value="move_window_next_workspace_key"/>
|
||||
<property name="<Primary><Alt>KP_5" type="string" value="move_window_workspace_5_key"/>
|
||||
<property name="<Primary>F4" type="string" value="workspace_4_key"/>
|
||||
<property name="<Primary><Alt>KP_6" type="string" value="move_window_workspace_6_key"/>
|
||||
<property name="<Super>KP_1" type="string" value="tile_down_left_key"/>
|
||||
<property name="<Primary>F5" type="string" value="workspace_5_key"/>
|
||||
<property name="<Alt>Insert" type="string" value="add_workspace_key"/>
|
||||
<property name="<Primary><Alt>KP_7" type="string" value="move_window_workspace_7_key"/>
|
||||
<property name="Escape" type="string" value="cancel_key"/>
|
||||
<property name="<Primary><Alt>Home" type="string" value="move_window_prev_workspace_key"/>
|
||||
<property name="<Primary>F6" type="string" value="workspace_6_key"/>
|
||||
<property name="<Primary><Alt>KP_8" type="string" value="move_window_workspace_8_key"/>
|
||||
<property name="<Primary>F7" type="string" value="workspace_7_key"/>
|
||||
<property name="<Primary><Shift><Alt>Up" type="string" value="move_window_up_key"/>
|
||||
<property name="<Primary><Alt>Up" type="string" value="up_workspace_key"/>
|
||||
<property name="<Super>Left" type="string" value="tile_left_key"/>
|
||||
<property name="<Primary><Alt>KP_9" type="string" value="move_window_workspace_9_key"/>
|
||||
<property name="<Alt>F4" type="string" value="close_window_key"/>
|
||||
<property name="<Primary>F8" type="string" value="workspace_8_key"/>
|
||||
<property name="<Alt>Delete" type="string" value="del_workspace_key"/>
|
||||
<property name="<Super>KP_Right" type="string" value="tile_right_key"/>
|
||||
<property name="<Alt>F5" type="string" value="maximize_horiz_key"/>
|
||||
<property name="<Primary><Shift><Alt>Right" type="string" value="move_window_right_key"/>
|
||||
<property name="<Primary>F9" type="string" value="workspace_9_key"/>
|
||||
<property name="<Alt>Tab" type="string" value="cycle_windows_key"/>
|
||||
<property name="<Primary><Shift><Alt>Right" type="string" value="move_window_right_key"/>
|
||||
<property name="<Primary><Alt>Right" type="string" value="right_workspace_key"/>
|
||||
<property name="<Alt>F6" type="string" value="stick_window_key"/>
|
||||
<property name="<Primary><Alt>KP_5" type="string" value="move_window_workspace_5_key"/>
|
||||
<property name="<Primary>F11" type="string" value="workspace_11_key"/>
|
||||
<property name="<Alt>F10" type="string" value="maximize_window_key"/>
|
||||
<property name="<Alt>Delete" type="string" value="del_workspace_key"/>
|
||||
<property name="<Super>Tab" type="string" value="switch_window_key"/>
|
||||
<property name="<Primary><Alt>d" type="string" value="show_desktop_key"/>
|
||||
<property name="<Primary>F4" type="string" value="workspace_4_key"/>
|
||||
<property name="<Super>KP_Page_Up" type="string" value="tile_up_right_key"/>
|
||||
<property name="<Alt>F7" type="string" value="move_window_key"/>
|
||||
<property name="Up" type="string" value="up_key"/>
|
||||
<property name="<Primary><Alt>KP_6" type="string" value="move_window_workspace_6_key"/>
|
||||
<property name="<Alt>F11" type="string" value="fullscreen_key"/>
|
||||
<property name="<Alt>space" type="string" value="popup_menu_key"/>
|
||||
<property name="<Super>KP_Home" type="string" value="tile_up_left_key"/>
|
||||
<property name="Escape" type="string" value="cancel_key"/>
|
||||
<property name="<Primary><Alt>KP_1" type="string" value="move_window_workspace_1_key"/>
|
||||
<property name="<Super>KP_Next" type="string" value="tile_down_right_key"/>
|
||||
<property name="<Super>KP_Left" type="string" value="tile_left_key"/>
|
||||
<property name="<Shift><Alt>Page_Up" type="string" value="raise_window_key"/>
|
||||
<property name="<Primary><Alt>Home" type="string" value="move_window_prev_workspace_key"/>
|
||||
<property name="<Alt><Shift>Tab" type="string" value="cycle_reverse_windows_key"/>
|
||||
<property name="<Primary><Alt>Left" type="string" value="left_workspace_key"/>
|
||||
<property name="<Alt>F12" type="string" value="above_key"/>
|
||||
<property name="<Primary><Shift><Alt>Up" type="string" value="move_window_up_key"/>
|
||||
<property name="<Primary>F5" type="string" value="workspace_5_key"/>
|
||||
<property name="<Alt>F8" type="string" value="resize_window_key"/>
|
||||
<property name="<Primary><Alt>KP_7" type="string" value="move_window_workspace_7_key"/>
|
||||
<property name="<Primary><Alt>KP_2" type="string" value="move_window_workspace_2_key"/>
|
||||
<property name="<Super>KP_End" type="string" value="tile_down_left_key"/>
|
||||
<property name="<Primary><Alt>Up" type="string" value="up_workspace_key"/>
|
||||
<property name="<Alt>F9" type="string" value="hide_window_key"/>
|
||||
<property name="<Primary>F7" type="string" value="workspace_7_key"/>
|
||||
<property name="<Primary>F10" type="string" value="workspace_10_key"/>
|
||||
<property name="Left" type="string" value="left_key"/>
|
||||
<property name="<Primary><Alt>KP_8" type="string" value="move_window_workspace_8_key"/>
|
||||
<property name="<Alt>Insert" type="string" value="add_workspace_key"/>
|
||||
<property name="<Primary>F1" type="string" value="workspace_1_key"/>
|
||||
<property name="<Alt>F11" type="string" value="fullscreen_key"/>
|
||||
<property name="<Alt>F6" type="string" value="maximize_vert_key"/>
|
||||
<property name="override" type="bool" value="true"/>
|
||||
<property name="<Super>w" type="string" value="tile_up_key"/>
|
||||
<property name="<Super>x" type="string" value="tile_down_key"/>
|
||||
<property name="<Super>q" type="string" value="tile_up_left_key"/>
|
||||
<property name="<Super>z" type="string" value="tile_down_left_key"/>
|
||||
<property name="<Super>c" type="string" value="tile_down_right_key"/>
|
||||
<property name="<Super>e" type="string" value="tile_up_right_key"/>
|
||||
<property name="<Super>d" type="string" value="tile_right_key"/>
|
||||
<property name="<Super>a" type="string" value="tile_left_key"/>
|
||||
</property>
|
||||
</property>
|
||||
<property name="providers" type="array">
|
||||
|
||||
@@ -1,36 +1,24 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<channel name="xfce4-notifyd" version="1.0">
|
||||
<property name="notify-location" type="uint" value="3"/>
|
||||
<property name="theme" type="string" value="Greybird"/>
|
||||
<property name="notify-location" type="string" value="bottom-right"/>
|
||||
<property name="theme" type="empty"/>
|
||||
<property name="initial-opacity" type="empty"/>
|
||||
<property name="do-fadeout" type="bool" value="true"/>
|
||||
<property name="do-fadeout" type="empty"/>
|
||||
<property name="log-max-size-enabled" type="bool" value="true"/>
|
||||
<property name="applications" type="empty">
|
||||
<property name="known_applications" type="array">
|
||||
<value type="string" value="blueman"/>
|
||||
<value type="string" value="com.uploadedlobster.peek"/>
|
||||
<value type="string" value="discord"/>
|
||||
<value type="string" value="FileZilla"/>
|
||||
<value type="string" value="flameshot"/>
|
||||
<value type="string" value="io.snapcraft.SessionAgent"/>
|
||||
<value type="string" value="notify-send"/>
|
||||
<value type="string" value="org.freedesktop.network-manager-applet"/>
|
||||
<value type="string" value="org.kde.kdenlive"/>
|
||||
<value type="string" value="org.qutebrowser.qutebrowser"/>
|
||||
<value type="string" value="org.xfce.Thunar"/>
|
||||
<value type="string" value="telegram-desktop_telegram-desktop"/>
|
||||
<value type="string" value="thunar-volman"/>
|
||||
<value type="string" value="vesktop"/>
|
||||
<value type="string" value="Xfce volume control"/>
|
||||
<value type="string" value="Xfce4-notifyd settings"/>
|
||||
<value type="string" value="xfce4-power-manager"/>
|
||||
<value type="string" value="xfce4-settings-helper"/>
|
||||
</property>
|
||||
</property>
|
||||
<property name="primary-monitor" type="uint" value="0"/>
|
||||
<property name="date-time-format" type="int" value="0"/>
|
||||
<property name="date-time-custom-format" type="string" value="%a %H:%M:%S"/>
|
||||
<property name="log-level" type="uint" value="0"/>
|
||||
<property name="log-level-apps" type="uint" value="0"/>
|
||||
<property name="do-not-disturb" type="bool" value="false"/>
|
||||
<property name="gauge-ignores-dnd" type="bool" value="false"/>
|
||||
</channel>
|
||||
|
||||
@@ -1,91 +1,47 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?xml version="1.1" encoding="UTF-8"?>
|
||||
|
||||
<channel name="xfce4-panel" version="1.0">
|
||||
<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=960;y=12"/>
|
||||
<property name="position" type="string" value="p=8;x=960;y=1067"/>
|
||||
<property name="length" type="double" 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="11"/>
|
||||
<value type="int" value="2"/>
|
||||
<value type="int" value="3"/>
|
||||
<value type="int" value="4"/>
|
||||
<value type="int" value="5"/>
|
||||
<value type="int" value="12"/>
|
||||
<value type="int" value="8"/>
|
||||
<value type="int" value="7"/>
|
||||
<value type="int" value="9"/>
|
||||
<value type="int" value="13"/>
|
||||
<value type="int" value="6"/>
|
||||
<value type="int" value="7"/>
|
||||
<value type="int" value="8"/>
|
||||
<value type="int" value="9"/>
|
||||
<value type="int" value="1"/>
|
||||
<value type="int" value="4"/>
|
||||
<value type="int" value="2"/>
|
||||
<value type="int" value="3"/>
|
||||
<value type="int" value="10"/>
|
||||
</property>
|
||||
<property name="background-style" type="uint" value="0"/>
|
||||
<property name="size" type="uint" value="30"/>
|
||||
<property name="size" type="uint" value="24"/>
|
||||
<property name="length-adjust" type="bool" value="true"/>
|
||||
<property name="span-monitors" type="bool" value="false"/>
|
||||
<property name="mode" type="uint" value="0"/>
|
||||
<property name="autohide-behavior" type="uint" value="0"/>
|
||||
<property name="enable-struts" type="bool" value="true"/>
|
||||
<property name="output-name" type="string" value="Primary"/>
|
||||
<property name="enable-struts" type="bool" value="false"/>
|
||||
<property name="enter-opacity" type="uint" value="100"/>
|
||||
<property name="leave-opacity" type="uint" value="100"/>
|
||||
</property>
|
||||
<property name="dark-mode" type="bool" value="false"/>
|
||||
</property>
|
||||
<property name="plugins" type="empty">
|
||||
<property name="plugin-1" type="string" value="whiskermenu">
|
||||
<property name="favorites" type="array">
|
||||
<value type="string" value="xfce4-file-manager.desktop"/>
|
||||
<value type="string" value="xfce4-terminal-emulator.desktop"/>
|
||||
</property>
|
||||
<property name="recent" type="array">
|
||||
<value type="string" value="org.gnome.LightsOff.desktop"/>
|
||||
<value type="string" value="org.gnome.Hitori.desktop"/>
|
||||
<value type="string" value="panel-preferences.desktop"/>
|
||||
<value type="string" value="xfce-display-settings.desktop"/>
|
||||
<value type="string" value="xfce-backdrop-settings.desktop"/>
|
||||
<value type="string" value="software-properties-gtk.desktop"/>
|
||||
<value type="string" value="xfce4-settings-editor.desktop"/>
|
||||
<value type="string" value="xfce4-file-manager.desktop"/>
|
||||
<value type="string" value="xfce-keyboard-settings.desktop"/>
|
||||
<value type="string" value="xfce4-accessibility-settings.desktop"/>
|
||||
</property>
|
||||
</property>
|
||||
<property name="plugin-2" type="string" value="separator">
|
||||
<property name="style" type="uint" value="0"/>
|
||||
<property name="expand" type="bool" value="false"/>
|
||||
</property>
|
||||
<property name="plugin-3" type="string" value="tasklist">
|
||||
<property name="show-handle" type="bool" value="false"/>
|
||||
<property name="flat-buttons" type="bool" value="true"/>
|
||||
<property name="show-labels" type="bool" value="true"/>
|
||||
<property name="show-tooltips" type="bool" value="true"/>
|
||||
<property name="middle-click" type="uint" value="1"/>
|
||||
</property>
|
||||
<property name="plugin-4" type="string" value="separator">
|
||||
<property name="style" type="uint" value="0"/>
|
||||
<property name="expand" type="bool" value="true"/>
|
||||
</property>
|
||||
<property name="plugin-7" type="string" value="indicator">
|
||||
<property name="blacklist" type="array">
|
||||
<value type="string" value="libappmenu.so"/>
|
||||
<value type="string" value="libayatana-application.so"/>
|
||||
</property>
|
||||
<property name="square-icons" type="bool" value="true"/>
|
||||
<property name="known-indicators" type="array">
|
||||
<value type="string" value="libayatana-application.so"/>
|
||||
</property>
|
||||
<property name="mode-whitelist" type="bool" value="false"/>
|
||||
<property name="whitelist" type="array">
|
||||
</property>
|
||||
<property name="align-left" type="bool" value="false"/>
|
||||
<property name="single-row" type="bool" value="false"/>
|
||||
</property>
|
||||
<property name="plugin-6" type="string" value="notification-plugin"/>
|
||||
<property name="plugin-8" type="string" value="power-manager-plugin"/>
|
||||
<property name="plugin-9" type="string" value="pulseaudio">
|
||||
<property name="enable-keyboard-shortcuts" type="bool" value="true"/>
|
||||
<property name="enable-mpris" type="bool" value="true"/>
|
||||
<property name="enable-wnck" type="bool" value="true"/>
|
||||
<property name="known-players" type="string" value="Chromium;cmus;firefox_firefox;ncspot;org.gnome.Rhythmbox3;parole;qutebrowser;vlc;VSCodium"/>
|
||||
<property name="known-players" type="string" value=";firefox_firefox;org.gnome.Rhythmbox3;parole;qutebrowser;vlc"/>
|
||||
<property name="mixer-command" type="string" value="pavucontrol"/>
|
||||
<property name="persistent-players" type="string" value="parole;org.gnome.Rhythmbox3"/>
|
||||
<property name="show-notifications" type="bool" value="true"/>
|
||||
@@ -96,35 +52,29 @@
|
||||
<property name="digital-layout" type="uint" value="3"/>
|
||||
<property name="mode" type="uint" value="2"/>
|
||||
</property>
|
||||
<property name="plugin-11" type="string" value="pager">
|
||||
<property name="rows" type="uint" value="1"/>
|
||||
<property name="wrap-workspaces" type="bool" value="true"/>
|
||||
<property name="miniature-view" type="bool" value="true"/>
|
||||
<property name="plugin-12" type="string" value="separator">
|
||||
<property name="expand" type="bool" value="true"/>
|
||||
<property name="style" type="uint" value="0"/>
|
||||
</property>
|
||||
<property name="plugin-5" type="string" value="xfce4-clipman-plugin"/>
|
||||
<property name="clipman" type="empty">
|
||||
<property name="settings" type="empty">
|
||||
<property name="enable-actions" type="bool" value="true"/>
|
||||
<property name="add-primary-clipboard" type="bool" value="false"/>
|
||||
</property>
|
||||
<property name="tweaks" type="empty">
|
||||
<property name="never-confirm-history-clear" type="bool" value="true"/>
|
||||
<property name="plugin-13" type="string" value="xfce4-clipman-plugin"/>
|
||||
<property name="plugin-7" type="string" value="indicator">
|
||||
<property name="known-indicators" type="array">
|
||||
<value type="string" value="libayatana-application.so"/>
|
||||
</property>
|
||||
</property>
|
||||
<property name="plugin-12" type="string" value="directorymenu">
|
||||
<property name="plugin-1" type="string" value="directorymenu">
|
||||
<property name="base-directory" type="string" value="/home/dakedres"/>
|
||||
</property>
|
||||
<property name="plugin-8" type="string" value="systray">
|
||||
<property name="known-items" type="array">
|
||||
<value type="string" value="blueman"/>
|
||||
<value type="string" value="nm-applet"/>
|
||||
</property>
|
||||
<property name="known-legacy-items" type="array">
|
||||
<value type="string" value="ibus panel"/>
|
||||
<value type="string" value="hexchat"/>
|
||||
</property>
|
||||
<property name="plugin-2" type="string" value="actions">
|
||||
<property name="appearance" type="uint" value="1"/>
|
||||
</property>
|
||||
<property name="plugin-13" type="string" value="power-manager-plugin"/>
|
||||
<property name="plugin-3" type="string" value="separator">
|
||||
<property name="style" type="uint" value="2"/>
|
||||
</property>
|
||||
<property name="plugin-4" type="string" value="separator">
|
||||
<property name="style" type="uint" value="2"/>
|
||||
</property>
|
||||
<property name="plugin-5" type="string" value="pager"/>
|
||||
</property>
|
||||
<property name="configver" type="int" value="2"/>
|
||||
</channel>
|
||||
|
||||
@@ -1,25 +1,25 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?xml version="1.1" encoding="UTF-8"?>
|
||||
|
||||
<channel name="xfce4-power-manager" version="1.0">
|
||||
<property name="xfce4-power-manager" type="empty">
|
||||
<property name="power-button-action" type="empty"/>
|
||||
<property name="lock-screen-suspend-hibernate" type="empty"/>
|
||||
<property name="logind-handle-lid-switch" type="empty"/>
|
||||
<property name="blank-on-ac" type="int" value="15"/>
|
||||
<property name="blank-on-battery" type="empty"/>
|
||||
<property name="blank-on-ac" type="empty"/>
|
||||
<property name="blank-on-battery" type="int" value="15"/>
|
||||
<property name="dpms-enabled" type="empty"/>
|
||||
<property name="dpms-on-ac-sleep" type="uint" value="30"/>
|
||||
<property name="dpms-on-ac-sleep" type="empty"/>
|
||||
<property name="dpms-on-ac-off" type="empty"/>
|
||||
<property name="dpms-on-battery-sleep" type="uint" value="15"/>
|
||||
<property name="dpms-on-battery-sleep" type="uint" value="20"/>
|
||||
<property name="dpms-on-battery-off" type="uint" value="30"/>
|
||||
<property name="show-panel-label" type="empty"/>
|
||||
<property name="show-panel-label" type="int" value="1"/>
|
||||
<property name="inactivity-sleep-mode-on-ac" type="empty"/>
|
||||
<property name="inactivity-sleep-mode-on-battery" type="empty"/>
|
||||
<property name="show-tray-icon" type="bool" value="false"/>
|
||||
<property name="brightness-switch" type="int" value="0"/>
|
||||
<property name="brightness-switch-restore-on-exit" type="int" value="1"/>
|
||||
<property name="presentation-mode" type="bool" value="false"/>
|
||||
<property name="inactivity-on-ac" type="uint" value="14"/>
|
||||
<property name="critical-power-action" type="uint" value="0"/>
|
||||
<property name="brightness-switch" type="int" value="0"/>
|
||||
<property name="brightness-on-battery" type="uint" value="9"/>
|
||||
<property name="brightness-level-on-battery" type="uint" value="15"/>
|
||||
<property name="show-presentation-indicator" type="bool" value="false"/>
|
||||
</property>
|
||||
</channel>
|
||||
|
||||
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<channel name="xfce4-screenshooter" version="1.0">
|
||||
<property name="imgur-custom-action-added" type="bool" value="true"/>
|
||||
<property name="actions" type="empty">
|
||||
<property name="action-0" type="empty">
|
||||
<property name="name" type="string" value="Host on Imgur™"/>
|
||||
<property name="command" type="string" value="/usr/libexec/xfce4/screenshooter/scripts/imgur-upload.sh %f %imgur_client_id"/>
|
||||
</property>
|
||||
<property name="actions" type="int" value="1"/>
|
||||
</property>
|
||||
</channel>
|
||||
@@ -6,14 +6,13 @@
|
||||
<property name="LockCommand" type="empty"/>
|
||||
<property name="SaveOnExit" type="bool" value="true"/>
|
||||
<property name="SessionName" type="string" value="Default"/>
|
||||
<property name="PromptOnLogout" type="bool" value="true"/>
|
||||
</property>
|
||||
<property name="sessions" type="empty">
|
||||
<property name="Failsafe" type="empty">
|
||||
<property name="IsFailsafe" type="empty"/>
|
||||
<property name="Count" type="empty"/>
|
||||
<property name="Client0_Command" type="array">
|
||||
<value type="string" value="bspwm"/>
|
||||
</property>
|
||||
<property name="Client0_Command" type="empty"/>
|
||||
<property name="Client0_Priority" type="empty"/>
|
||||
<property name="Client0_PerScreen" type="empty"/>
|
||||
<property name="Client1_Command" type="empty"/>
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
<channel name="xfce4-settings-manager" version="1.0">
|
||||
<property name="last" type="empty">
|
||||
<property name="window-width" type="int" value="1028"/>
|
||||
<property name="window-height" type="int" value="1039"/>
|
||||
<property name="window-width" type="int" value="640"/>
|
||||
<property name="window-height" type="int" value="500"/>
|
||||
</property>
|
||||
</channel>
|
||||
|
||||
17
config/xfce4/xfconf/xfce-perchannel-xml/xfce4-terminal.xml
Normal file
17
config/xfce4/xfconf/xfce-perchannel-xml/xfce4-terminal.xml
Normal file
@@ -0,0 +1,17 @@
|
||||
<?xml version="1.1" encoding="UTF-8"?>
|
||||
|
||||
<channel name="xfce4-terminal" version="1.0">
|
||||
<property name="color-foreground" type="string" value="#f8f8f2"/>
|
||||
<property name="color-background" type="string" value="#272822"/>
|
||||
<property name="color-cursor" type="string" value="#a1efe4"/>
|
||||
<property name="color-selection" type="string" value="#272822"/>
|
||||
<property name="color-bold" type="string" value="#f8f8f2"/>
|
||||
<property name="color-selection-use-default" type="bool" value="false"/>
|
||||
<property name="color-bold-use-default" type="bool" value="false"/>
|
||||
<property name="color-palette" type="string" value="#272822;#f92672;#a6e22e;#f4bf75;#66d9ef;#ae81ff;#a1efe4;#f8f8f2;#75715e;#f92672;#a6e22e;#f4bf75;#66d9ef;#ae81ff;#a1efe4;#f9f8f5"/>
|
||||
<property name="font-name" type="string" value="DejaVu Sans Mono 10"/>
|
||||
<property name="tab-activity-color" type="string" value="#f4bf75"/>
|
||||
<property name="misc-confirm-close" type="bool" value="false"/>
|
||||
<property name="misc-menubar-default" type="bool" value="false"/>
|
||||
<property name="font-allow-bold" type="bool" value="true"/>
|
||||
</channel>
|
||||
@@ -1,57 +1,57 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?xml version="1.1" encoding="UTF-8"?>
|
||||
|
||||
<channel name="xfwm4" version="1.0">
|
||||
<property name="general" type="empty">
|
||||
<property name="activate_action" type="string" value="bring"/>
|
||||
<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="cycle_apps_only" type="bool" value="false"/>
|
||||
<property name="cycle_draw_frame" type="bool" value="true"/>
|
||||
<property name="cycle_preview" type="bool" value="true"/>
|
||||
<property name="double_click_distance" type="int" value="5"/>
|
||||
<property name="double_click_time" type="int" value="250"/>
|
||||
<property name="focus_delay" type="int" value="250"/>
|
||||
<property name="focus_new" type="bool" value="true"/>
|
||||
<property name="activate_action" type="empty"/>
|
||||
<property name="box_move" type="empty"/>
|
||||
<property name="box_resize" type="empty"/>
|
||||
<property name="button_layout" type="empty"/>
|
||||
<property name="button_offset" type="empty"/>
|
||||
<property name="button_spacing" type="empty"/>
|
||||
<property name="click_to_focus" type="bool" value="false"/>
|
||||
<property name="cycle_apps_only" type="empty"/>
|
||||
<property name="cycle_draw_frame" type="empty"/>
|
||||
<property name="cycle_preview" type="empty"/>
|
||||
<property name="double_click_distance" type="empty"/>
|
||||
<property name="double_click_time" type="empty"/>
|
||||
<property name="focus_delay" type="empty"/>
|
||||
<property name="focus_new" type="empty"/>
|
||||
<property name="frame_opacity" type="int" value="100"/>
|
||||
<property name="full_width_title" type="bool" value="true"/>
|
||||
<property name="maximized_offset" type="int" value="0"/>
|
||||
<property name="mousewheel_rollup" type="bool" value="true"/>
|
||||
<property name="placement_mode" type="string" value="center"/>
|
||||
<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="repeat_urgent_blink" type="bool" value="false"/>
|
||||
<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_to_border" type="bool" value="true"/>
|
||||
<property name="full_width_title" type="empty"/>
|
||||
<property name="maximized_offset" type="empty"/>
|
||||
<property name="mousewheel_rollup" type="empty"/>
|
||||
<property name="placement_mode" type="empty"/>
|
||||
<property name="raise_delay" type="empty"/>
|
||||
<property name="raise_on_click" type="empty"/>
|
||||
<property name="raise_on_focus" type="empty"/>
|
||||
<property name="repeat_urgent_blink" type="empty"/>
|
||||
<property name="scroll_workspaces" type="empty"/>
|
||||
<property name="shadow_delta_height" type="empty"/>
|
||||
<property name="shadow_delta_width" type="empty"/>
|
||||
<property name="shadow_delta_x" type="empty"/>
|
||||
<property name="shadow_delta_y" type="empty"/>
|
||||
<property name="shadow_opacity" type="empty"/>
|
||||
<property name="show_app_icon" type="empty"/>
|
||||
<property name="show_dock_shadow" type="empty"/>
|
||||
<property name="show_frame_shadow" type="empty"/>
|
||||
<property name="show_popup_shadow" type="empty"/>
|
||||
<property name="snap_to_border" type="empty"/>
|
||||
<property name="snap_to_windows" type="bool" value="false"/>
|
||||
<property name="snap_width" type="int" value="10"/>
|
||||
<property name="theme" type="string" value="base16"/>
|
||||
<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="urgent_blink" type="bool" value="false"/>
|
||||
<property name="use_compositing" type="bool" value="true"/>
|
||||
<property name="workspace_count" type="int" value="6"/>
|
||||
<property name="wrap_resistance" type="int" value="10"/>
|
||||
<property name="snap_width" type="empty"/>
|
||||
<property name="theme" type="string" value="Ayu-Dark"/>
|
||||
<property name="title_alignment" type="empty"/>
|
||||
<property name="title_font" type="empty"/>
|
||||
<property name="title_horizontal_offset" type="empty"/>
|
||||
<property name="title_shadow_active" type="empty"/>
|
||||
<property name="title_shadow_inactive" type="empty"/>
|
||||
<property name="title_vertical_offset_active" type="empty"/>
|
||||
<property name="title_vertical_offset_inactive" type="empty"/>
|
||||
<property name="urgent_blink" type="empty"/>
|
||||
<property name="use_compositing" type="empty"/>
|
||||
<property name="workspace_count" type="int" value="1"/>
|
||||
<property name="wrap_resistance" type="empty"/>
|
||||
<property name="wrap_windows" type="bool" value="false"/>
|
||||
<property name="wrap_workspaces" type="bool" value="false"/>
|
||||
<property name="wrap_workspaces" type="empty"/>
|
||||
<property name="borderless_maximize" type="bool" value="true"/>
|
||||
<property name="cycle_raise" type="bool" value="false"/>
|
||||
<property name="cycle_hidden" type="bool" value="true"/>
|
||||
@@ -65,12 +65,12 @@
|
||||
<property name="frame_border_top" type="int" value="0"/>
|
||||
<property name="horiz_scroll_opacity" type="bool" value="false"/>
|
||||
<property name="inactive_opacity" type="int" value="100"/>
|
||||
<property name="move_opacity" type="int" value="100"/>
|
||||
<property name="move_opacity" type="int" value="93"/>
|
||||
<property name="placement_ratio" type="int" value="20"/>
|
||||
<property name="popup_opacity" type="int" value="100"/>
|
||||
<property name="prevent_focus_stealing" type="bool" value="false"/>
|
||||
<property name="raise_with_any_button" type="bool" value="true"/>
|
||||
<property name="resize_opacity" type="int" value="100"/>
|
||||
<property name="resize_opacity" type="int" value="93"/>
|
||||
<property name="snap_resist" type="bool" value="false"/>
|
||||
<property name="vblank_mode" type="string" value="auto"/>
|
||||
<property name="tile_on_move" type="bool" value="true"/>
|
||||
@@ -82,16 +82,53 @@
|
||||
<property name="zoom_desktop" type="bool" value="true"/>
|
||||
<property name="zoom_pointer" type="bool" value="true"/>
|
||||
<property name="workspace_names" type="array">
|
||||
<value type="string" value="I"/>
|
||||
<value type="string" value="II"/>
|
||||
<value type="string" value="III"/>
|
||||
<value type="string" value="IV"/>
|
||||
<value type="string" value="V"/>
|
||||
<value type="string" value="1"/>
|
||||
<value type="string" value="2"/>
|
||||
<value type="string" value="3"/>
|
||||
<value type="string" value="4"/>
|
||||
<value type="string" value="5"/>
|
||||
<value type="string" value="Desktop"/>
|
||||
<value type="string" value="II"/>
|
||||
<value type="string" value="III"/>
|
||||
<value type="string" value="IV"/>
|
||||
<value type="string" value="Workspace 7"/>
|
||||
<value type="string" value="Workspace 8"/>
|
||||
<value type="string" value="Workspace 9"/>
|
||||
<value type="string" value="Workspace 10"/>
|
||||
<value type="string" value="Workspace 11"/>
|
||||
<value type="string" value="Workspace 12"/>
|
||||
<value type="string" value="Workspace 13"/>
|
||||
<value type="string" value="Workspace 14"/>
|
||||
<value type="string" value="Workspace 15"/>
|
||||
<value type="string" value="Workspace 16"/>
|
||||
<value type="string" value="Workspace 17"/>
|
||||
<value type="string" value="Workspace 18"/>
|
||||
<value type="string" value="Workspace 19"/>
|
||||
<value type="string" value="Workspace 20"/>
|
||||
<value type="string" value="Workspace 21"/>
|
||||
<value type="string" value="Workspace 22"/>
|
||||
<value type="string" value="Workspace 23"/>
|
||||
<value type="string" value="Workspace 24"/>
|
||||
<value type="string" value="Workspace 25"/>
|
||||
<value type="string" value="Workspace 26"/>
|
||||
<value type="string" value="Workspace 27"/>
|
||||
<value type="string" value="Workspace 28"/>
|
||||
<value type="string" value="Workspace 29"/>
|
||||
<value type="string" value="Workspace 30"/>
|
||||
<value type="string" value="Workspace 31"/>
|
||||
<value type="string" value="Workspace 32"/>
|
||||
<value type="string" value="Workspace 33"/>
|
||||
<value type="string" value="Workspace 34"/>
|
||||
<value type="string" value="Workspace 35"/>
|
||||
<value type="string" value="Workspace 36"/>
|
||||
<value type="string" value="Workspace 37"/>
|
||||
<value type="string" value="Workspace 38"/>
|
||||
<value type="string" value="Workspace 39"/>
|
||||
<value type="string" value="Workspace 40"/>
|
||||
<value type="string" value="Workspace 41"/>
|
||||
<value type="string" value="Workspace 42"/>
|
||||
<value type="string" value="Workspace 43"/>
|
||||
<value type="string" value="Workspace 44"/>
|
||||
<value type="string" value="Workspace 45"/>
|
||||
<value type="string" value="Workspace 46"/>
|
||||
<value type="string" value="Workspace 47"/>
|
||||
</property>
|
||||
</property>
|
||||
</channel>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?xml version="1.1" encoding="UTF-8"?>
|
||||
|
||||
<channel name="xsettings" version="1.0">
|
||||
<property name="Net" type="empty">
|
||||
<property name="ThemeName" type="string" value="base16"/>
|
||||
<property name="IconThemeName" type="string" value="elementary-xfce"/>
|
||||
<property name="ThemeName" type="string" value="Ayu-Dark"/>
|
||||
<property name="IconThemeName" type="string" value="ubuntu-mono-dark"/>
|
||||
<property name="DoubleClickTime" type="empty"/>
|
||||
<property name="DoubleClickDistance" type="empty"/>
|
||||
<property name="DndDragThreshold" type="empty"/>
|
||||
@@ -25,12 +25,10 @@
|
||||
<property name="Gtk" type="empty">
|
||||
<property name="CanChangeAccels" type="empty"/>
|
||||
<property name="ColorPalette" type="empty"/>
|
||||
<property name="FontName" type="string" value="Noto Sans 11"/>
|
||||
<property name="MonospaceFontName" type="string" value="Monospace 12"/>
|
||||
<property name="FontName" type="string" value="Ubuntu Sans 10"/>
|
||||
<property name="MonospaceFontName" type="string" value="Ubuntu Sans Mono 10"/>
|
||||
<property name="IconSizes" type="empty"/>
|
||||
<property name="KeyThemeName" type="empty"/>
|
||||
<property name="ToolbarStyle" type="empty"/>
|
||||
<property name="ToolbarIconSize" type="empty"/>
|
||||
<property name="MenuImages" type="empty"/>
|
||||
<property name="ButtonImages" type="empty"/>
|
||||
<property name="MenuBarAccel" type="empty"/>
|
||||
@@ -39,11 +37,13 @@
|
||||
<property name="DecorationLayout" type="empty"/>
|
||||
<property name="DialogsUseHeader" type="empty"/>
|
||||
<property name="TitlebarMiddleClick" type="empty"/>
|
||||
<property name="ToolbarStyle" type="empty"/>
|
||||
<property name="ToolbarIconSize" type="empty"/>
|
||||
</property>
|
||||
<property name="Gdk" type="empty">
|
||||
<property name="WindowScalingFactor" type="int" value="1"/>
|
||||
<property name="WindowScalingFactor" type="empty"/>
|
||||
</property>
|
||||
<property name="Xfce" type="empty">
|
||||
<property name="SyncThemes" type="bool" value="true"/>
|
||||
<property name="SyncThemes" type="empty"/>
|
||||
</property>
|
||||
</channel>
|
||||
|
||||
@@ -11,32 +11,33 @@ if [[ -n "$1" ]]; then
|
||||
export SCHEME=$1
|
||||
fi
|
||||
|
||||
if ! shchemes install_tinted_scheme; then
|
||||
exit 1
|
||||
if [ ! -r "$(shchemes path)" ]; then
|
||||
if ! shchemes install_tinted_scheme; then
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
|
||||
shchemes inject "$HOME/.profile"
|
||||
# shchemes inject "$HOME/.profile"
|
||||
|
||||
shchemes inject "$HOME/.config/qutebrowser/config.py"
|
||||
shchemes create_theme css > "$HOME/.config/base16.css"
|
||||
shchemes create_theme css > "$HOME/.config/qutebrowser/base16.css"
|
||||
pkill -HUP qutebrowser
|
||||
|
||||
BSPWM_THEME="$HOME/.config/bspwm/colors"
|
||||
shchemes create_theme bspwm > "$BSPWM_THEME"
|
||||
"$BSPWM_THEME"
|
||||
shchemes create_theme xfce4-terminal | sh
|
||||
|
||||
shchemes create_theme xfce4-terminal | shchemes merge "$HOME/.config/xfce4/terminal/terminalrc"
|
||||
shchemes create_theme i3 > "$HOME/.config/i3/theme"
|
||||
i3-msg reload
|
||||
|
||||
shchemes create_theme rofi > "$HOME/.config/rofi/theme.rasi"
|
||||
shchemes create_theme better-discord > "$HOME/.config/vesktop/themes/theme.css"
|
||||
shchemes create_theme obsidian > "$HOME/media/vault/.obsidian/themes/base16.css"
|
||||
# shchemes create_theme obsidian > "$HOME/media/vault/.obsidian/themes/base16.css"
|
||||
|
||||
"$HOME/repos/oomox-gtk-theme/change_color.sh" -o base16 <(shchemes create_theme oomox-gtk)
|
||||
# "$HOME/repos/oomox-gtk-theme/change_color.sh" -o base16 <(shchemes create_theme oomox-gtk)
|
||||
|
||||
# Reload XFCE theme
|
||||
xfconf-query -c xsettings -p /Net/ThemeName -r
|
||||
xfconf-query -c xsettings -p /Net/ThemeName -s base16
|
||||
# xfconf-query -c xsettings -p /Net/ThemeName -r
|
||||
# xfconf-query -c xsettings -p /Net/ThemeName -s base16
|
||||
|
||||
xrandr | awk '$2 == "connected" { system("le-wallpaper " $1) }'
|
||||
|
||||
|
||||
Reference in New Issue
Block a user