Compare commits

...

9 Commits
chama ... main

Author SHA1 Message Date
7f7c20cfda Changes tm 2025-01-15 23:33:33 -07:00
213d8bf9c8 oops 2024-12-13 01:04:26 -07:00
2600016096 . 2024-12-13 01:01:50 -07:00
0a0a444a2d SXHKD experimentation, vesktop added, audio profile switching utility, shchemes installer, etc. 2024-08-12 05:52:19 -06:00
0cdbfbd9bd Update readme 2024-06-29 18:32:28 -06:00
c5c11a7cfb Cleanup 2024-06-29 18:25:37 -06:00
72ae9f6ce7 New configuration based on xfce4 + bpswm. No more tint2 2024-06-29 18:25:01 -06:00
e06469f47b Doesn't need to be there 2024-06-29 18:16:04 -06:00
4f45d3b02f Little baby install scripts 2024-06-29 18:14:38 -06:00
60 changed files with 2835 additions and 365 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/wallpapers

12
README
View File

@ -4,25 +4,25 @@
| | | | | |- | | |-' `-. | | | | | |- | | |-' `-.
`-' `-' `-' | ' ' `-' `-' `-' `-' `-' | ' ' `-' `-'
-' [1] -' [1]
Window Manager - bspwm[6], with tabs via tabbed[7] Desktop Environment - xfce4[7]
Terminal - Kitty[3] Window Manager - bspwm[6]
Terminal - kitty[3]
Browser - qutebrowser[4] Browser - qutebrowser[4]
Panel - tint2[5]
Screenshot in ./screenshot.png, if it pleases Screenshot in ./screenshot.png, if it pleases
Theme Theme
‾‾‾‾‾ `````
Right now I use a Kaolin Dark theme. Many themes are pulled directly from alternateved/kaolin-inspired[2] Right now I use a Kaolin Dark theme. Many themes are pulled directly from alternateved/kaolin-inspired[2]
Links Links
‾‾‾‾‾ `````
1. Ascii font is "Shimrod" from http://www.patorjk.com/software/taag (other cool small fonts are "script", and "stampatello") 1. Ascii font is "Shimrod" from http://www.patorjk.com/software/taag (other cool small fonts are "script", and "stampatello")
2. https://github.com/alternateved/kaolin-inspired 2. https://github.com/alternateved/kaolin-inspired
3. https://sw.kovidgoyal.net/kitty 3. https://sw.kovidgoyal.net/kitty
4. https://qutebrowser.org 4. https://qutebrowser.org
5. https://wiki.archlinux.org/title/Tint2 5. https://wiki.archlinux.org/title/Tint2
6. https://github.com/baskerville/bspwm 6. https://github.com/baskerville/bspwm
7. https://tools.suckless.org/tabbed 7. https://www.xfce.org/

View File

@ -1,32 +1,42 @@
#!/bin/bash #!/bin/bash
dir=$PWD dir=$PWD
scripts_subdir=$(echo "$PWD/scripts") scripts_subdir="$PWD/scripts"
rsync -a ~/pictures/wallpapers/* wallpapers/ # rsync -a ~/pictures/wallpapers/* wallpapers/
cd config cd config || exit
rsync -a ~/.config/kitty . rsync -a \
rsync -a --exclude 'bookmarks' ~/.config/qutebrowser . --exclude 'bookmarks' \
--exclude 'quickmarks' \
--exclude 'qsettings' \
--exclude 'autoconfig.yml' \
~/.config/qutebrowser .
rsync -a ~/.config/vesktop/settings ./vesktop
rsync -a ~/.config/bspwm . rsync -a ~/.config/bspwm .
rsync -a ~/.config/sxhkd . rsync -a ~/.config/sxhkd .
rsync -a ~/.config/tint2/tint2rc tint2/ rsync -a ~/.config/xfce4 \
rsync -a ~/.config/lxqt . --exclude 'desktop' .
rsync -a ~/.config/rofi . rsync -a ~/.config/rofi .
cp ~/.config/picom.conf . # cp ~/.config/picom.conf .
cd ~/bin cd ~/bin || exit
cp \ cp \
bsp-auto-monitors \
bsp-float \ bsp-float \
bsp-floating-only \ bsp-key-daemon \
bsp-smove \ bsp-smove \
bsp-status \ le-keyboard \
bsp-toggle-visibility \ le-audio \
ezmount \
pfetch \
qutesearch \
rofi-ask \
tabc-smart-detach \
sxhkd-help \ sxhkd-help \
web \ change-scheme \
$scripts_subdir le-wallpaper \
le-wallpaper-open \
xfce4-le-wallpaper \
qutebrowser \
qutesearch \
rack \
f \
"$scripts_subdir"
cd "$dir"

View File

@ -1,21 +1,22 @@
#! /bin/sh #!/bin/sh
# Import user bin for sxhkd
PATH="/home/dakedres/bin:$PATH"
pgrep -x sxhkd > /dev/null || sxhkd &
wmname LG3D & wmname LG3D &
bspc monitor -d I II III IV V # START MONITOR BLOCK
bspc monitor HDMI-1 -d I II III IV
bspc monitor eDP-1 -d eDP-1
# END MONITOR BLOCK
bsp-key-daemon
bspc config border_width 1 bspc config border_width 1
bspc config window_gap 4 bspc config window_gap 4
bspc config split_ratio 0.52 bspc config split_ratio 0.54
bspc config borderless_monocle true bspc config borderless_monocle true
bspc config gapless_monocle true bspc config gapless_monocle true
bspc config pointer_modifier mod1 bspc config pointer_modifier mod4
bspc config pointer_action1 move bspc config pointer_action1 move
# bspc config pointer_action2 resize_side # bspc config pointer_action2 resize_side
bspc config pointer_action2 resize_corner bspc config pointer_action2 resize_corner
@ -25,7 +26,11 @@ bspc config pointer_action2 resize_corner
bspc config focus_follows_pointer true bspc config focus_follows_pointer true
bspc config pointer_follows_focus true bspc config pointer_follows_focus true
# bspc rule -a \* state=pseudo_tiled
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 Gimp state=floating
bspc rule -a Chromium desktop='^2' bspc rule -a Chromium desktop='^2'
bspc rule -a mplayer2 state=floating bspc rule -a mplayer2 state=floating
@ -33,5 +38,6 @@ bspc rule -a Kupfer.py focus=on
bspc rule -a Screenkey manage=off bspc rule -a Screenkey manage=off
xsetroot -cursor_name left_ptr & xsetroot -cursor_name left_ptr &
"$(dirname "$0")/colors"
export _JAVA_AWT_WM_NONREPARENTING=1 export _JAVA_AWT_WM_NONREPARENTING=1

3
config/bspwm/colors Executable file
View File

@ -0,0 +1,3 @@
bspc config normal_border_color "#3c3f4c"
bspc config active_border_color "#383a47"
bspc config focused_border_color "#555e70"

View File

@ -1,9 +1,12 @@
# Theme: https://github.com/alternateved/kaolin-inspired/blob/main/kaolin-dark/kitty/Kaolin_Dark.conf # Theme: https://github.com/alternateved/kaolin-inspired/blob/main/kaolin-dark/kitty/Kaolin_Dark.conf
shell fish
editor micro editor micro
confirm_os_window_close 0
enable_audio_bell no enable_audio_bell no
visual_bell_duration 0.6
visual_bell_color #111111
font_family Ubuntu Mono font_family Ubuntu Mono
bold_font Ubuntu Medium bold_font Ubuntu Medium
@ -11,59 +14,51 @@ italic_font Ubuntu Italic
bold_italic_font Ubuntu Medium Italic bold_italic_font Ubuntu Medium Italic
font_size 11.5 font_size 11.5
## name: Kaolin Dark #START SHCHEMES BLOCK : shchemes create_theme kitty
## author: Ogden Webb # Base16 - kitty color config
## license: GNU GPLv3 # Scheme by
## blurb: Dark jade theme inspired by Sierra.vim. visual_bell_color #161413
# The basic colors background #1b1918
foreground #E4E4E8 foreground #a8a19f
background #18181B selection_background #a8a19f
selection_foreground #18181B selection_foreground #1b1918
selection_background #E4E4E8 url_color #407ee7
cursor #407ee7
cursor_text_color #1b1918
active_border_color #766e6b
inactive_border_color #2c2421
active_tab_background #1b1918
active_tab_foreground #a8a19f
inactive_tab_background #2c2421
inactive_tab_foreground #9c9491
# Cursor colors # Normal
cursor #E4E4E8 color0 #1b1918
cursor_text_color #ffffff color1 #f22c40
color2 #7b9726
color3 #c38418
color4 #407ee7
color5 #6666ea
color6 #3d97b8
color7 #a8a19f
# kitty window border colors # Bright (same as Normal except 8/15)
active_border_color #4D9391 color8 #766e6b
inactive_border_color #4B5254 color9 #f22c40
color10 #7b9726
color11 #c38418
color12 #407ee7
color13 #6666ea
color14 #3d97b8
color15 #f1efee
# Tab bar colors # Other (like base16-shell)
active_tab_background #E4E4E8 color16 #df5320
active_tab_foreground #18181B color17 #c33ff3
inactive_tab_background #879193 color18 #2c2421
inactive_tab_foreground #18181B color19 #68615e
color20 #9c9491
color21 #e6e2e0
# black #END SHCHEMES BLOCK
color0 #4B5254
color8 #879193
# red
color1 #CD5C60
color9 #E36D5B
# green
color2 #6FB593
color10 #72CCBA
# yellow
color3 #DBAC66
color11 #F2C866
# blue
color4 #91B9C7
color12 #97B8DE
# magenta
color5 #845A84
color13 #8C629C
# cyan
color6 #4D9391
color14 #5096AB
# white
color7 #E4E4E8
color15 #EFEFF1

View File

@ -1,48 +0,0 @@
# If a config.py file exists, this file is ignored unless it's explicitly loaded
# via config.load_autoconfig(). For more information, see:
# https://github.com/qutebrowser/qutebrowser/blob/master/doc/help/configuring.asciidoc#loading-autoconfigyml
# DO NOT edit this file by hand, qutebrowser will overwrite it.
# Instead, create a config.py - see :help for details.
config_version: 2
settings:
content.autoplay:
global: false
content.geolocation:
https://icl.churchofjesuschrist.org: true
https://myinstitute.churchofjesuschrist.org: true
https://www.acrevalue.com: true
https://www.findagrave.com: true
content.media.audio_capture:
https://mictests.com: true
https://teams.microsoft.com: true
https://virtualspeech.com: true
content.media.audio_video_capture:
https://teams.microsoft.com: true
content.media.video_capture:
https://teams.microsoft.com: true
content.mouse_lock:
http://www.windows93.net: true
content.notifications.enabled:
https://app.cinny.in: true
content.register_protocol_handler:
https://calendar.google.com?cid=%25s: true
https://mail.google.com?extsrc=mailto&url=%25s: true
fonts.debug_console:
global: default_size default_family
fonts.default_family:
global: Ubuntu
fonts.prompts:
global: default_size sans-serif
fonts.statusbar:
global: default_size Ubuntu Mono
fonts.web.family.fixed:
global: Ubuntu Mono
fonts.web.family.serif:
global: Ubuntu
fonts.web.family.standard:
global: Ubuntu
tabs.show:
global: never
tabs.tabs_are_windows:
global: true

View File

@ -0,0 +1,27 @@
# :root {
# --vii: #22262d;
# --vi: #383a47;
# --v: #ff29a8;
# --iv: #8b9cbe;
# --iiv: #f4f4f7;
# --a: #8265ff;
# }
:root {
--base00: #17191E;
--base01: #22262d;
--base02: #3c3f4c;
--base03: #383a47;
--base04: #555e70;
--base05: #8b9cbe;
--base06: #B2BFD9;
--base07: #f4f4f7;
--base08: #ff29a8;
--base09: #85ffe0;
--base0A: #f0ffaa;
--base0B: #0badff;
--base0C: #8265ff;
--base0D: #00eaff;
--base0E: #00f6d9;
--base0F: #ff3d81;
}

View File

@ -1,28 +1,70 @@
# Theme: https://github.com/alternateved/kaolin-inspired/blob/main/kaolin-dark/qutebrowser/default/base16-kaolin-dark.config.py
config.load_autoconfig() config.load_autoconfig()
# base16-qutebrowser (https://github.com/theova/base16-qutebrowser) # c.tabs.tabs_are_windows = True
# Base16 qutebrowser template by theova #
# Kaolin-dark scheme by alternateved (http://github.com/alternateved) # c.content.autoplay.global = False
# Inspired by (https://github.com/ogdenwebb/emacs-kaolin-themes)
base00 = "#18181B" c.tabs.tabs_are_windows = True
base01 = "#222225" c.tabs.show = "never"
base02 = "#4B5254"
base03 = "#545C5E" c.content.autoplay = False
base04 = "#879193"
base05 = "#9ba5a7" # c.colors.webpage.preferred_color_scheme
base06 = "#d0d0d4"
base07 = "#E4E4E8" config.bind('h', 'back')
base08 = "#CD5C60" config.bind('l', 'forward')
base09 = "#DBAC66" config.bind('j', 'scroll-page 0 1')
base0A = "#F2C866" config.bind('k', 'scroll-page 0 -1')
base0B = "#6FB593"
base0C = "#4D9391" config.bind('gp', 'mode-enter passthrough')
base0D = "#91B9C7"
base0E = "#845A84" c.hints.selectors["bookmarks"] = [
base0F = "#E36D5B" "h1[id]",
"h2[id]",
"h3[id]",
"h4[id]",
"h5[id]",
"h6[id]",
"h1 > a[id]",
"h2 > a[id]",
"h3 > a[id]",
"h4 > a[id]",
"h5 > a[id]",
"h6 > a[id]",
"header[id]",
"footer[id]",
"article[id]",
"section[id]",
"p[id]",
"div[itemtype=\"https://schema.org/Answer\"]" # Stackoverflow answers
]
config.bind(';b', 'hint bookmarks userscript copy-bookmark')
c.content.user_stylesheets = "base16.css"
#START SHCHEMES BLOCK : shchemes create_theme qutebrowser
# base16-qutebrowser (https://github.com/theova/base16-qutebrowser)
# Scheme name:
# Scheme author:
# Template author: theova
# Commentary: Tinted Theming: (https://github.com/tinted-theming)
base00 = "#17191E"
base01 = "#22262d"
base02 = "#3c3f4c"
base03 = "#383a47"
base04 = "#555e70"
base05 = "#8b9cbe"
base06 = "#B2BFD9"
base07 = "#f4f4f7"
base08 = "#ff29a8"
base09 = "#85ffe0"
base0A = "#f0ffaa"
base0B = "#0badff"
base0C = "#8265ff"
base0D = "#00eaff"
base0E = "#00f6d9"
base0F = "#ff3d81"
# set qutebrowser colors # set qutebrowser colors
@ -303,3 +345,5 @@ c.colors.tabs.selected.even.bg = base02
# Background color for webpages if unset (or empty to use the theme's # Background color for webpages if unset (or empty to use the theme's
# color). # color).
# c.colors.webpage.bg = base00 # c.colors.webpage.bg = base00
#END SHCHEMES BLOCK

View File

@ -1,5 +0,0 @@
[FileDialog]
history=@Invalid()
lastVisited=file:///home/dakedres/Downloads
qtVersion=5.15.8
viewMode=Detail

View File

@ -1,15 +0,0 @@
[Sizes]
SplitterPos=200
WindowSize=@Size(989 756)
[View]
BigIconSize=48
Mode=Detailed
ScrollPerPixel=true
ShowHidden=true
ShowThumbnails=true
SmallIconSize=24
SortColumn=type
SortFolderFirst=true
SortOrder=ascending
ThumbnailIconSize=128

View File

@ -1 +0,0 @@
Uxn tutorial d2 https://compudanzas.net/uxn_tutorial_day_2.html

View File

@ -1,6 +1,25 @@
configuration { configuration {
modes: [ combi ]; modes: [ combi ];
combi-modes: [ window, drun, run, dmenu ]; combi-modes: [ window, drun, run, dmenu ];
font: "Inconsolata 13";
} }
@theme "theme" @theme "theme"
window {
location: north;
anchor: north;
background-color: @background;
border: 1;
padding: 5;
y-offset: 29;
}
element-icon {
size: 1em;
padding: 2px;
}
element-text {
vertical-align: 0.5;
}

View File

@ -1,65 +1,53 @@
// Kaolin Dark theme for Rofi /**
// by Dakedres * Base16 ROFI Color theme
// edited from a theme by Qball *
* Authors
* Scheme:
* Template: Tinted Theming (https://github.com/tinted-theming)
*/
* { * {
base00: #18181B; red: rgba ( 255, 41, 168, 100 % );
base01: #222225; blue: rgba ( 0, 234, 255, 100 % );
base02: #4B5254; lightfg: rgba ( 178, 191, 217, 100 % );
base03: #545C5E; lightbg: rgba ( 34, 38, 45, 100 % );
base04: #879193; foreground: rgba ( 139, 156, 190, 100 % );
base05: #9ba5a7; background: rgba ( 23, 25, 30, 100 % );
base06: #d0d0d4; background-color: rgba ( 23, 25, 30, 0 % );
base07: #E4E4E8; separatorcolor: @foreground;
base08: #CD5C60; border-color: @foreground;
base09: #DBAC66; selected-normal-foreground: @lightbg;
base0A: #F2C866; selected-normal-background: @lightfg;
base0B: #6FB593; selected-active-foreground: @background;
base0C: #4D9391; selected-active-background: @blue;
base0D: #91B9C7; selected-urgent-foreground: @background;
base0E: #845A84; selected-urgent-background: @red;
base0F: #E36D5B;
foreground: @base05;
normal-foreground: @foreground; normal-foreground: @foreground;
normal-background: @background;
active-foreground: @blue;
active-background: @background;
urgent-foreground: @red;
urgent-background: @background;
alternate-normal-foreground: @foreground; alternate-normal-foreground: @foreground;
selected-urgent-foreground: rgba ( 245, 245, 245, 100 % ); alternate-normal-background: @lightbg;
urgent-foreground: rgba ( 215, 95, 0, 100 % ); alternate-active-foreground: @blue;
alternate-urgent-background: rgba ( 208, 208, 208, 100 % ); alternate-active-background: @lightbg;
active-foreground: rgba ( 0, 95, 135, 100 % ); alternate-urgent-foreground: @red;
selected-active-foreground: rgba ( 245, 245, 245, 100 % ); alternate-urgent-background: @lightbg;
background: @base00;
normal-background: @base00;
alternate-normal-background: @base01;
selected-normal-background: @base0C;
selected-normal-foreground: @base07;
border-color: @base02;
spacing: 2; spacing: 2;
separator: @border-color;
urgent-background: rgba ( 245, 245, 245, 100 % );
selected-urgent-background: rgba ( 215, 95, 0, 100 % );
alternate-urgent-foreground: @urgent-foreground;
background-color: rgba ( 0, 0, 0, 0 % );
active-background: @base0C;
alternate-active-background: @active-background;
selected-active-background: @active-background;
} }
window { window {
location: north;
anchor: north;
background-color: @background; background-color: @background;
border: 1; border: 1;
padding: 5; padding: 5;
y-offset: 20;
c: "Ubuntu Mono 11";
} }
mainbox { mainbox {
border: 0; border: 0;
padding: 0; padding: 0;
} }
message { message {
border: 2px 0px 0px ; border: 1px dash 0px 0px ;
border-color: @separator; border-color: @separatorcolor;
padding: 1px ; padding: 1px ;
} }
textbox { textbox {
@ -67,74 +55,80 @@ textbox {
} }
listview { listview {
fixed-height: 0; fixed-height: 0;
border: 2px 0px 0px ; border: 2px dash 0px 0px ;
border-color: @separator; border-color: @separatorcolor;
spacing: 2px ; spacing: 2px ;
scrollbar: true; scrollbar: true;
padding: 2px 0px 0px ; padding: 2px 0px 0px ;
} }
element-text, element-icon {
background-color: inherit;
text-color: inherit;
}
element { element {
border: 0; border: 0;
padding: 1px ; padding: 1px ;
} }
element-text { element normal.normal {
background-color: inherit;
text-color: inherit;
}
element.normal.normal {
background-color: @normal-background; background-color: @normal-background;
text-color: @normal-foreground; text-color: @normal-foreground;
} }
element.normal.urgent { element normal.urgent {
background-color: @urgent-background; background-color: @urgent-background;
text-color: @urgent-foreground; text-color: @urgent-foreground;
} }
element.normal.active { element normal.active {
background-color: @active-background; background-color: @active-background;
text-color: @active-foreground; text-color: @active-foreground;
} }
element.selected.normal { element selected.normal {
background-color: @selected-normal-background; background-color: @selected-normal-background;
text-color: @selected-normal-foreground; text-color: @selected-normal-foreground;
} }
element.selected.urgent { element selected.urgent {
background-color: @selected-urgent-background; background-color: @selected-urgent-background;
text-color: @selected-urgent-foreground; text-color: @selected-urgent-foreground;
} }
element.selected.active { element selected.active {
background-color: @selected-active-background; background-color: @selected-active-background;
text-color: @selected-active-foreground; text-color: @selected-active-foreground;
} }
element.alternate.normal { element alternate.normal {
background-color: @alternate-normal-background; background-color: @alternate-normal-background;
text-color: @alternate-normal-foreground; text-color: @alternate-normal-foreground;
} }
element.alternate.urgent { element alternate.urgent {
background-color: @alternate-urgent-background; background-color: @alternate-urgent-background;
text-color: @alternate-urgent-foreground; text-color: @alternate-urgent-foreground;
} }
element.alternate.active { element alternate.active {
background-color: @alternate-active-background; background-color: @alternate-active-background;
text-color: @alternate-active-foreground; text-color: @alternate-active-foreground;
} }
scrollbar { scrollbar {
width: 4px ; width: 4px ;
border: 0; border: 0;
handle-color: @normal-foreground;
handle-width: 8px ; handle-width: 8px ;
padding: 0; padding: 0;
} }
mode-switcher { sidebar {
border: 2px 0px 0px ; border: 2px dash 0px 0px ;
border-color: @separator; border-color: @separatorcolor;
} }
button.selected { button {
spacing: 0;
text-color: @normal-foreground;
}
button selected {
background-color: @selected-normal-background; background-color: @selected-normal-background;
text-color: @selected-normal-foreground; text-color: @selected-normal-foreground;
} }
inputbar { inputbar {
spacing: 0; spacing: 0px;
text-color: @normal-foreground; text-color: @normal-foreground;
padding: 1px ; padding: 1px ;
children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
} }
case-indicator { case-indicator {
spacing: 0; spacing: 0;
@ -148,12 +142,9 @@ prompt {
spacing: 0; spacing: 0;
text-color: @normal-foreground; text-color: @normal-foreground;
} }
inputbar {
children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
}
textbox-prompt-colon { textbox-prompt-colon {
expand: false; expand: false;
str: ":"; str: ":";
margin: 0px 0.3em 0em 0em ; margin: 0px 0.3000em 0.0000em 0.0000em ;
text-color: @normal-foreground; text-color: inherit;
} }

2
config/sxhkd/moderc Normal file
View File

@ -0,0 +1,2 @@
r
sxhkd-mode-exit

73
config/sxhkd/status Executable file
View File

@ -0,0 +1,73 @@
#!/bin/sh
# tail -f test-out | awk -v qt='""' '
# $1 ~ "HSuper_L" { checkstart=1 }
# /^BBegin chain/ && checkstart {
# checkstart=0
# print "rofi -normal-window -e " qt "sxhkd: Super ;" qt
# }
# /^EEnd chain/ {
# print "kill " qt "$pid" qt
# }'
checkstart=false
theme='
window {
anchor: southwest;
location: southwest;
x-offset: 4;
y-offset: -4;
width: 200;
}
listview {
border-color: @blue;
}'
display_message() {
rofi \
-normal-window \
-e "sxhkd: $1" \
-theme-str "$theme" &
pid=$!
}
close_message() {
[ -n "$pid" ] && kill "$pid"
pid=""
}
tail -f test-out | while read -r line; do
case $line in
HSuper_L)
checkstart=true
;;
HSuper_L*)
if [ "$inchain" = "false" ]; then
continue
fi
echo "Extra chain"
close_message
display_message "$line"
;;
"BBegin chain")
if [ "$checkstart" = "false" ]; then
continue
fi
echo "In chain"
checkstart=false
inchain=true
display_message "HSuper_L"
;;
"EEnd chain")
if [ "$inchain" = "false" ]; then
continue
fi
echo "End chain"
close_message
;;
esac
done

221
config/sxhkd/sxhkdrc Executable file → Normal file
View File

@ -3,174 +3,219 @@
# #
# Open kitty # Open kitty
alt + Return super + Return
kitty xfce4-terminal
# Open floating kitty # Open floating kitty
alt + shift + Return super + shift + Return
bsp-float kitty bsp-float xfce4-terminal
# launch program # launch program (drun)
alt + @space super + @space
rofi -show drun -show-icons
# launch program (standard run)
super + shift + @space
rofi -show run rofi -show run
# launch program as root
alt + shift + @space
rofi-ask rofi -show drun -run-command "sudo -A {cmd}"
# make sxhkd reload its configuration files: # make sxhkd reload its configuration files:
alt + Escape super + Escape
pkill -USR1 -x sxhkd; notify-send 'Key daemon reloaded' pkill -USR1 -x sxhkd && notify-send 'Key daemon reloaded'
super + alt + Menu
le-keyboard && notify-send 'Remapped Keyboard'
# Start a qutebrowser search # Start a qutebrowser search
alt + o super + o
qutesearch 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 # Show keybinds
alt + slash super + slash
sxhkd-help sxhkd-help
# Show clipmenu # Show clipmenu
alt + v super + v
rofi -modi "clipboard:greenclip print" -show clipboard -run-command '{cmd}' xfce4-popup-clipman
alt + shift + v # Exit session
greenclip clear super + q
xfce4-session-logout
# Lock screen
super + shift + q
xflock4
# Open task manager
super + t
# Arguable how valuable this is tbh
bsp-float xfce4-taskmanager
# Screenshot region
super + Print
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 # bspwm hotkeys
# #
# quit/restart bspwm # quit/restart bspwm
alt + shift + {q,r} super + shift + {q,r}
bspc {quit,wm -r} bspc {quit,wm -r}
# close and kill # close and kill
alt + {_,shift + }w super + {_,shift + }w
bspc node -{c,k} bspc node -{c,k}
alt + q # superernate between the tiled and monocle layout
bspc node -c super + m
# alternate between the tiled and monocle layout
alt + m
bspc desktop -l next bspc desktop -l next
# send the newest marked node to the newest preselected node
alt + y
bspc node newest.marked.local -n newest.!automatic.local
# swap the current node and the biggest window # swap the current node and the biggest window
alt + g super + g
bspc node -s biggest.window bspc node -s biggest.window
# Reveal hidden kitty (scratchpad)
alt + super + Return
bsp-toggle-visibility KittyScratch "kitty --class KittyScratch"
# flameshot
alt + Print
flameshot gui
# #
# state/flags # state/flags
# #
# set the window state # toggle window state
alt + {z,shift + z,x,f} super + c
bspc node -t {tiled,pseudo_tiled,floating,fullscreen} 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 # set the node flags
alt + ctrl + {m,x,y,z} super + ctrl + {m,x,y,z}
bspc node -g {marked,locked,sticky,private} bspc node -g {marked,locked,sticky,private}
# #
# focus/swap # focus/swap
# #
# focus the node in the given direction # Focus the node in the given direction
alt + {h,j,k,l,Left,Down,Up,Right} super + {h,j,k,l,Left,Down,Up,Right}
bspc node -{f} {west,south,north,east,west,south,north,east} bspc node -{f} {west,south,north,east,west,south,north,east}
# focus the node for the given path jump # Rotate focus clockwise/counterclockwise
alt + {p,b,comma,period} super + {d,a}
bspc node -f @{parent,brother,first,second} bspc node -f {next,prev}.local.window
# focus the next/previous window in the current desktop
alt + {a,d}
bspc node -f {next,prev}.local.!hidden.window
# focus the next/previous desktop in the current monitor
alt + bracket{left,right}
bspc desktop -f {prev,next}.local
# focus the last node/desktop # focus the last node/desktop
alt + {grave,Tab} super + {grave,Tab}
bspc {node,desktop} -f last bspc {node,desktop} -f last
# focus the older or newer node in the focus history
alt + {o,i}
bspc wm -h off; \
bspc node {older,newer} -f; \
bspc wm -h on
# focus or send to the given desktop # focus or send to the given desktop
alt + {_,shift + }{1-9,0} super + {_,shift + }{1-6}
bspc {desktop -f,node -d} '^{1-9,10}' bspc {desktop -f,node -d} '^{1-6}'
# #
# preselect # preselect
# #
# preselect the direction # preselect the direction
alt + ctrl + shift {h,j,k,l,Left,Down,Up,Right} super + ctrl + shift {h,j,k,l,Left,Down,Up,Right}
bspc node -p {west,south,north,east,west,south,north,east} bspc node -p {west,south,north,east,west,south,north,east}
# preselect the ratio
alt + ctrl + {1-9}
bspc node -o 0.{1-9}
# cancel the preselection for the focused node # cancel the preselection for the focused node
alt + ctrl + space super + ctrl + space
bspc node -p cancel bspc node -p cancel
# cancel the preselection for the focused desktop # cancel the preselection for the focused desktop
alt + ctrl + shift + space super + ctrl + shift + space
bspc query -N -d | xargs -I id -n 1 bspc node id -p cancel 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 # move/resize
# #
# Resize a window by moving one of its side outward/inward # Resize a window by moving one of its side outward/inward
alt + s ; {h,j,k,l,Left,Down,Up,Right} super + s ; {h,j,k,l,Left,Down,Up,Right}
STEP=20; SELECTION={1,2,3,4,1,2,3,4}; \ 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 "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) bspc node -z $(echo "right -$STEP 0,top 0 $STEP,bottom 0 -$STEP,left $STEP 0" | cut -d',' -f$SELECTION)
# move a floating window # move a floating window
alt + {h,j,k,l} super + {h,j,k,l}
bspc node -v {-30 0,0 20,0 -30,20 0} bspc node -v {-30 0,0 20,0 -30,20 0}
# move a not-floating window # move a window
alt + shift + {h,j,k,l,Left,Down,Up,Right} super + shift + {h,j,k,l,Left,Down,Up,Right}
bsp-smove {west,south,north,east,west,south,north,east} 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
# #
# tabs # Program launching binds
# #
# move in/out of tabbed container super + 8
alt + ctrl + {h,j,k,l,Left,Down,Up,Right} vesktop
tabc-smart-detach {west,south,north,east,west,south,north,east}
# tab/untab window super + 9
alt + t bitwarden
id=$(bspc query -N -n); \
[[ "$(tabc printclass $id)" == "tabbed" ]] \
&& tabc detach $id \
|| tabc create $id
# toggle autoattach in tabbed container super + 0
alt + shift + t kitty -e micro
tabc autoattach $(bspc query -N -n)
#
# 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

162
config/sxhkd/sxhkdrc.old Normal file
View File

@ -0,0 +1,162 @@
#
# wm independent hotkeys
#
Super_L ; Return
kitty
# # Open kitty
# super + Return
# kitty
# Open floating kitty
# Super_L ; shift + Return
# bsp-float kitty
# launch program (drun)
Super_L ; @space
rofi -show drun -show-icons
# launch program (standard run)
# Super_L ; shift + @space
# rofi -show run
# make sxhkd reload its configuration files:
Super_L ; 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
qutesearch
# Show keybinds
Super_L ; slash
sxhkd-help
# Show clipmenu
Super_L ; v
xfce4-popup-clipman
# Exit session
# Super_L ; shift + q
# xfce4-session-logout
# Lock screen
Super_L ; q
xflock4
# Open task manager
Super_L ; t
# Arguable how valuable this is tbh
bsp-float xfce4-taskmanager
# Screenshot region
Super_L ; Print
xfce4-screenshooter -r
#
# bspwm hotkeys
#
# close and kill
Super_L ; {_,shift + }w
bspc node -{c,k}
# superernate between the tiled and monocle layout
F3
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))"
#
# state/flags
#
# set the window state
Super_L ; {z,shift + z,x,f}
bspc node -t {tiled,pseudo_tiled,floating,fullscreen}
#
# 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}
# 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
# 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}
# 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
# 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
#
# 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)
# 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}
#
# Program launching binds
#
super + 8
vesktop
super + 9
bitwarden
super + 0
kitty --hold sh -c micro

52
config/sxhkd/sxhkdrc.seq Normal file
View File

@ -0,0 +1,52 @@
#
# Utilities
#
Super_L ; Return
kitty
# Open floating kitty
Super_L ; f ; Return
bsp-float kitty
# open rofi
Super_L ; @space
rofi -show drun -show-icons
#
# Management
#
# Close or kill window
Super_L ; {_,shift + }w
bspc node -{c,k}
#
# Navigation
#
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}
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}
# focus or send to the given desktop
Super_L ; {_,shift + }{1-5}
bspc {desktop -f,node -d} '^{1-5}'
#
# Program launching binds
#
Super_L ; o
qutesearch
super + 8
vesktop
super + 9
bitwarden
super + 0
kitty --hold sh -c micro

110
config/sxhkd/test-out Normal file
View File

@ -0,0 +1,110 @@
HSuper_L
BBegin chain
EEnd chain
Hsuper + Right
Cbspc node -f east
Hsuper + Left
Cbspc node -f west
Hsuper + Right
Cbspc node -f east
HSuper_L
BBegin chain
HSuper_L ; Return
EEnd chain
Ckitty
HSuper_L
BBegin chain
EEnd chain
HSuper_L
BBegin chain
TTimeout reached
EEnd chain
HSuper_L
BBegin chain
TTimeout reached
EEnd chain
HSuper_L
BBegin chain
HSuper_L ; 2
EEnd chain
Cbspc desktop -f '^2'
HSuper_L
BBegin chain
TTimeout reached
EEnd chain
HSuper_L
BBegin chain
EEnd chain
HSuper_L
BBegin chain
HSuper_L ; w
EEnd chain
Cbspc node -c
HSuper_L
BBegin chain
EEnd chain
HSuper_L
BBegin chain
HSuper_L ; o
EEnd chain
Cqutesearch
HSuper_L
BBegin chain
HSuper_L ; w
EEnd chain
Cbspc node -c
HSuper_L
BBegin chain
HSuper_L ; w
EEnd chain
Cbspc node -c
HSuper_L
BBegin chain
EEnd chain
HSuper_L
BBegin chain
HSuper_L ; o
EEnd chain
Cqutesearch
HSuper_L
BBegin chain
EEnd chain
HSuper_L
BBegin chain
EEnd chain
HSuper_L
BBegin chain
EEnd chain
Hsuper + w
Cbspc node -f west
HSuper_L
BBegin chain
EEnd chain
HSuper_L
BBegin chain
EEnd chain
HSuper_L
BBegin chain
HSuper_L ; 1
EEnd chain
Cbspc desktop -f '^1'
HSuper_L
BBegin chain
HSuper_L ; 2
EEnd chain
Cbspc desktop -f '^2'
HSuper_L
BBegin chain
EEnd chain
Hsuper + Right
Cbspc node -f east
Hsuper + Left
Cbspc node -f west
Hsuper + Right
Cbspc node -f east
HSuper_L
BBegin chain
EEnd chain
HSuper_L
BBegin chain
EEnd chain

View File

@ -0,0 +1,6 @@
@media screen and (max-width: 1280px) {
/* Hide guild members sidebar */
.container_cbd271 {
display: none;
}
}

View File

@ -0,0 +1,587 @@
{
"notifyAboutUpdates": true,
"autoUpdate": false,
"autoUpdateNotification": true,
"useQuickCss": true,
"themeLinks": [],
"enabledThemes": [
"theme.css"
],
"enableReactDevtools": false,
"frameless": false,
"transparent": false,
"winCtrlQ": false,
"disableMinSize": false,
"winNativeTitleBar": false,
"plugins": {
"BadgeAPI": {
"enabled": true
},
"ChatInputButtonAPI": {
"enabled": false
},
"CommandsAPI": {
"enabled": true
},
"ContextMenuAPI": {
"enabled": true
},
"MemberListDecoratorsAPI": {
"enabled": false
},
"MessageAccessoriesAPI": {
"enabled": true
},
"MessageDecorationsAPI": {
"enabled": false
},
"MessageEventsAPI": {
"enabled": true
},
"MessagePopoverAPI": {
"enabled": false
},
"NoticesAPI": {
"enabled": true
},
"ServerListAPI": {
"enabled": false
},
"NoTrack": {
"enabled": true,
"disableAnalytics": true
},
"Settings": {
"enabled": true,
"settingsLocation": "aboveActivity"
},
"SupportHelper": {
"enabled": true
},
"AlwaysAnimate": {
"enabled": false
},
"AlwaysTrust": {
"enabled": false
},
"AnonymiseFileNames": {
"enabled": false
},
"WebRichPresence (arRPC)": {
"enabled": false
},
"BANger": {
"enabled": false
},
"BetterFolders": {
"enabled": false
},
"BetterGifAltText": {
"enabled": false
},
"BetterGifPicker": {
"enabled": false
},
"BetterNotesBox": {
"enabled": false
},
"BetterRoleContext": {
"enabled": false
},
"BetterRoleDot": {
"enabled": false
},
"BetterSettings": {
"enabled": false
},
"BetterUploadButton": {
"enabled": false
},
"BiggerStreamPreview": {
"enabled": false
},
"BlurNSFW": {
"enabled": false
},
"CallTimer": {
"enabled": false
},
"ClearURLs": {
"enabled": true
},
"ClientTheme": {
"enabled": false
},
"ColorSighted": {
"enabled": false
},
"ConsoleShortcuts": {
"enabled": false
},
"CopyUserURLs": {
"enabled": false
},
"CrashHandler": {
"enabled": true
},
"CustomRPC": {
"enabled": false
},
"Dearrow": {
"enabled": true,
"hideButton": false,
"replaceElements": 0
},
"Decor": {
"enabled": false
},
"DisableCallIdle": {
"enabled": false
},
"EmoteCloner": {
"enabled": false
},
"Experiments": {
"enabled": false
},
"F8Break": {
"enabled": false
},
"FakeNitro": {
"enabled": false
},
"FakeProfileThemes": {
"enabled": false
},
"FavoriteEmojiFirst": {
"enabled": false
},
"FavoriteGifSearch": {
"enabled": false
},
"FixCodeblockGap": {
"enabled": false
},
"FixSpotifyEmbeds": {
"enabled": false
},
"FixYoutubeEmbeds": {
"enabled": false
},
"ForceOwnerCrown": {
"enabled": false
},
"FriendInvites": {
"enabled": false
},
"FriendsSince": {
"enabled": false
},
"GameActivityToggle": {
"enabled": false
},
"GifPaste": {
"enabled": false
},
"GreetStickerPicker": {
"enabled": false
},
"HideAttachments": {
"enabled": false
},
"iLoveSpam": {
"enabled": false
},
"IgnoreActivities": {
"enabled": false
},
"ImageZoom": {
"enabled": false
},
"InvisibleChat": {
"enabled": false
},
"KeepCurrentChannel": {
"enabled": false
},
"LastFMRichPresence": {
"enabled": false
},
"LoadingQuotes": {
"enabled": false
},
"MemberCount": {
"enabled": false
},
"MessageClickActions": {
"enabled": false
},
"MessageLinkEmbeds": {
"enabled": false
},
"MessageLogger": {
"enabled": false
},
"MessageTags": {
"enabled": false
},
"MoreCommands": {
"enabled": false
},
"MoreKaomoji": {
"enabled": false
},
"MoreUserTags": {
"enabled": false
},
"Moyai": {
"enabled": false
},
"MutualGroupDMs": {
"enabled": false
},
"NewGuildSettings": {
"enabled": false
},
"NoBlockedMessages": {
"enabled": false
},
"NoDevtoolsWarning": {
"enabled": false
},
"NoF1": {
"enabled": false
},
"NoMosaic": {
"enabled": false
},
"NoPendingCount": {
"enabled": false
},
"NoProfileThemes": {
"enabled": false
},
"NoReplyMention": {
"enabled": false
},
"NoScreensharePreview": {
"enabled": false
},
"NoTypingAnimation": {
"enabled": false
},
"NoUnblockToJump": {
"enabled": false
},
"NormalizeMessageLinks": {
"enabled": false
},
"NotificationVolume": {
"enabled": false
},
"NSFWGateBypass": {
"enabled": false
},
"OnePingPerDM": {
"enabled": false
},
"oneko": {
"enabled": false
},
"OpenInApp": {
"enabled": false
},
"OverrideForumDefaults": {
"enabled": false
},
"PermissionFreeWill": {
"enabled": false
},
"PermissionsViewer": {
"enabled": false
},
"petpet": {
"enabled": false
},
"PictureInPicture": {
"enabled": false
},
"PinDMs": {
"enabled": false
},
"PlainFolderIcon": {
"enabled": false
},
"PlatformIndicators": {
"enabled": false
},
"PreviewMessage": {
"enabled": false
},
"QuickMention": {
"enabled": false
},
"QuickReply": {
"enabled": false
},
"ReactErrorDecoder": {
"enabled": false
},
"ReadAllNotificationsButton": {
"enabled": false
},
"RelationshipNotifier": {
"enabled": false
},
"ResurrectHome": {
"enabled": false
},
"RevealAllSpoilers": {
"enabled": false
},
"ReverseImageSearch": {
"enabled": false
},
"ReviewDB": {
"enabled": false
},
"RoleColorEverywhere": {
"enabled": false
},
"SecretRingToneEnabler": {
"enabled": false
},
"SendTimestamps": {
"enabled": false
},
"ServerListIndicators": {
"enabled": false
},
"ShikiCodeblocks": {
"enabled": false
},
"ShowAllMessageButtons": {
"enabled": false
},
"ShowConnections": {
"enabled": false
},
"ShowHiddenChannels": {
"enabled": false
},
"ShowMeYourName": {
"enabled": false
},
"SilentMessageToggle": {
"enabled": false
},
"SilentTyping": {
"enabled": false
},
"SortFriendRequests": {
"enabled": false
},
"SpotifyControls": {
"enabled": false
},
"SpotifyCrack": {
"enabled": false
},
"SpotifyShareCommands": {
"enabled": false
},
"StartupTimings": {
"enabled": false
},
"SuperReactionTweaks": {
"enabled": false
},
"TextReplace": {
"enabled": false
},
"ThemeAttributes": {
"enabled": false
},
"TimeBarAllActivities": {
"enabled": false
},
"Translate": {
"enabled": false
},
"TypingIndicator": {
"enabled": false
},
"TypingTweaks": {
"enabled": false
},
"Unindent": {
"enabled": false
},
"UnsuppressEmbeds": {
"enabled": false
},
"UrbanDictionary": {
"enabled": false
},
"UserVoiceShow": {
"enabled": false
},
"USRBG": {
"enabled": false
},
"ValidUser": {
"enabled": false
},
"VoiceChatDoubleClick": {
"enabled": false
},
"VcNarrator": {
"enabled": false
},
"VencordToolbox": {
"enabled": false
},
"ViewIcons": {
"enabled": false
},
"ViewRaw": {
"enabled": false
},
"VoiceMessages": {
"enabled": false
},
"WebContextMenus": {
"enabled": true,
"addBack": true
},
"WebKeybinds": {
"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
},
"FullSearchContext": {
"enabled": false
},
"UserMessagesPronouns": {
"enabled": false
}
},
"notifications": {
"timeout": 5000,
"position": "bottom-right",
"useNative": "not-focused",
"logLimit": 50
},
"cloud": {
"authenticated": false,
"url": "https://api.vencord.dev/",
"settingsSync": false,
"settingsSyncVersion": 1731937700893
}
}

2
config/xfce4/help.rc Normal file
View File

@ -0,0 +1,2 @@
auto-online=false

2
config/xfce4/helpers.rc Normal file
View File

@ -0,0 +1,2 @@
WebBrowser=custom-WebBrowser

View File

@ -0,0 +1,44 @@
<?xml version="1.0" encoding="UTF-8"?>
<actions>
<action>
<name>Bugz</name>
<regex>bug\s*#?\s*([0-9]+)</regex>
<group>0</group>
<commands>
<command>
<name>GNOME Bug</name>
<exec>exo-open http://bugzilla.gnome.org/show_bug.cgi?id=\1</exec>
</command>
<command>
<name>Xfce Bug</name>
<exec>exo-open http://bugzilla.xfce.org/show_bug.cgi?id=\1</exec>
</command>
</commands>
</action>
<action>
<name>Image</name>
<regex>(http|ftp).+\.(jpg|png|gif)</regex>
<group>0</group>
<commands>
<command>
<name>View with Ristretto</name>
<exec>ristretto &quot;\0&quot;</exec>
</command>
<command>
<name>Edit with Gimp</name>
<exec>gimp-remote &quot;\0&quot;</exec>
</command>
</commands>
</action>
<action>
<name>Long URL</name>
<regex>https?://[^\s]{120,}</regex>
<group>0</group>
<commands>
<command>
<name>Shrink the URL</name>
<exec>exo-open http://tinyurl.com/create.php?url=\0</exec>
</command>
</commands>
</action>
</actions>

View File

@ -0,0 +1,40 @@
[Configuration]
ColorForeground=#8b9cbe
ColorBackground=#17191E
ColorCursor=#8265ff
ColorSelection=#17191E
ColorBold=#8b9cbe
ColorBoldUseDefault=FALSE
ColorPalette=#17191E;#ff29a8;#0badff;#f0ffaa;#00eaff;#00f6d9;#8265ff;#8b9cbe;#383a47;#ff29a8;#0badff;#f0ffaa;#00eaff;#00f6d9;#8265ff;#f4f4f7
TabActivityColor=#f0ffaa
FontName=DejaVu Sans Mono 11
MiscAlwaysShowTabs=FALSE
MiscBell=FALSE
MiscBellUrgent=FALSE
MiscBordersDefault=FALSE
MiscCursorBlinks=FALSE
MiscCursorShape=TERMINAL_CURSOR_SHAPE_BLOCK
MiscDefaultGeometry=80x24
MiscInheritGeometry=FALSE
MiscMenubarDefault=FALSE
MiscMouseAutohide=FALSE
MiscMouseWheelZoom=TRUE
MiscToolbarDefault=FALSE
MiscConfirmClose=FALSE
MiscCycleTabs=TRUE
MiscTabCloseButtons=TRUE
MiscTabCloseMiddleClick=TRUE
MiscTabPosition=GTK_POS_TOP
MiscHighlightUrls=TRUE
MiscMiddleClickOpensUri=FALSE
MiscCopyOnSelect=FALSE
MiscShowRelaunchDialog=TRUE
MiscRewrapOnResize=TRUE
MiscUseShiftArrowsToScroll=FALSE
MiscSlimTabs=FALSE
MiscNewTabAdjacent=FALSE
MiscSearchDialogOpacity=100
MiscShowUnsafePasteDialog=TRUE
MiscRightClickAction=TERMINAL_RIGHT_CLICK_ACTION_CONTEXT_MENU
ShortcutsNoMnemonics=TRUE

View File

@ -0,0 +1,13 @@
app=/usr/bin/display-im6.q16
custom_action_command=none
last_user=
last_extension=png
enable_imgur_upload=true
show_in_folder=false
screenshot_dir=file:/home/dakedres
action=2
delay=0
region=3
show_mouse=1
show_border=1

View File

@ -0,0 +1,79 @@
<?xml version="1.0" encoding="UTF-8"?>
<channel name="displays" version="1.0">
<property name="ActiveProfile" type="string" value="Default"/>
<property name="Default" type="empty">
<property name="eDP-1" type="string" value="Laptop">
<property name="Active" type="bool" value="false"/>
<property name="EDID" type="string" value="b523bc2cb14c5b55f5ea3aa234181e999627d08e"/>
<property name="Resolution" type="string" value="1920x1080"/>
<property name="RefreshRate" type="double" value="60.002344822965867"/>
<property name="Rotation" type="int" value="0"/>
<property name="Reflection" type="string" value="0"/>
<property name="Primary" type="bool" value="false"/>
<property name="Scale" type="empty">
<property name="X" type="double" value="1"/>
<property name="Y" type="double" value="1"/>
</property>
<property name="Position" type="empty">
<property name="X" type="int" value="0"/>
<property name="Y" type="int" value="0"/>
</property>
</property>
<property name="HDMI-1" type="string" value="Lenovo 22&quot;">
<property name="Active" type="bool" value="true"/>
<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="true"/>
<property name="Scale" type="empty">
<property name="X" type="double" value="1"/>
<property name="Y" type="double" value="1"/>
</property>
<property name="Position" type="empty">
<property name="X" type="int" value="0"/>
<property name="Y" type="int" value="0"/>
</property>
</property>
</property>
<property name="Fallback" type="empty">
<property name="eDP-1" type="string" value="Laptop">
<property name="Active" type="bool" value="true"/>
<property name="EDID" type="string" value="b523bc2cb14c5b55f5ea3aa234181e999627d08e"/>
<property name="Resolution" type="string" value="1920x1080"/>
<property name="RefreshRate" type="double" value="60.002344822965867"/>
<property name="Rotation" type="int" value="0"/>
<property name="Reflection" type="string" value="0"/>
<property name="Primary" type="bool" value="false"/>
<property name="Scale" type="empty">
<property name="X" type="double" value="1"/>
<property name="Y" type="double" value="1"/>
</property>
<property name="Position" type="empty">
<property name="X" type="int" value="0"/>
<property name="Y" type="int" value="0"/>
</property>
</property>
<property name="HDMI-1" type="string" value="Lenovo 22&quot;">
<property name="Active" type="bool" value="true"/>
<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="true"/>
<property name="Scale" type="empty">
<property name="X" type="double" value="1"/>
<property name="Y" type="double" value="1"/>
</property>
<property name="Position" type="empty">
<property name="X" type="int" value="0"/>
<property name="Y" type="int" value="0"/>
</property>
</property>
</property>
<property name="Notify" type="int" value="1"/>
<property name="AutoEnableProfiles" type="bool" value="true"/>
</channel>

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<channel name="keyboard-layout" version="1.0">
<property name="Default" type="empty">
<property name="XkbDisable" type="bool" value="true"/>
</property>
</channel>

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<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>
</channel>

View File

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="UTF-8"?>
<channel name="thunar" version="1.0">
<property name="last-location-bar" type="empty"/>
<property name="misc-change-window-icon" type="empty"/>
<property name="misc-full-path-in-title" type="empty"/>
<property name="misc-middle-click-in-tab" type="empty"/>
<property name="misc-volume-management" type="empty"/>
<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="876"/>
<property name="last-window-height" type="int" value="1045"/>
<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-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,106,50,73,217,50,50,284,50,50,65,50,356"/>
<property name="last-sort-column" type="string" value="THUNAR_COLUMN_DATE_MODIFIED"/>
<property name="last-sort-order" type="string" value="GTK_SORT_DESCENDING"/>
</channel>

View File

@ -0,0 +1,42 @@
<?xml version="1.0" encoding="UTF-8"?>
<channel name="xfce4-appfinder" version="1.0">
<property name="actions" type="empty">
<property name="action-1" type="empty">
<property name="pattern" type="empty"/>
<property name="command" type="empty"/>
<property name="save" type="empty"/>
<property name="type" type="empty"/>
</property>
<property name="action-2" type="empty">
<property name="pattern" type="empty"/>
<property name="command" type="empty"/>
<property name="save" type="empty"/>
</property>
<property name="action-3" type="empty">
<property name="pattern" type="empty"/>
<property name="command" type="empty"/>
<property name="save" type="empty"/>
</property>
<property name="action-4" type="empty">
<property name="pattern" type="empty"/>
<property name="command" type="empty"/>
<property name="save" type="empty"/>
</property>
<property name="action-5" type="empty">
<property name="pattern" type="empty"/>
<property name="command" type="empty"/>
<property name="save" type="empty"/>
</property>
<property name="action-6" type="empty">
<property name="pattern" type="empty"/>
<property name="save" type="empty"/>
<property name="command" type="empty"/>
</property>
</property>
<property name="last" type="empty">
<property name="window-height" type="int" value="1045"/>
<property name="window-width" type="int" value="990"/>
<property name="pane-position" type="int" value="180"/>
</property>
</channel>

View File

@ -0,0 +1,79 @@
<?xml version="1.0" 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-filesystem" type="empty"/>
<property name="show-removable" type="empty"/>
<property name="show-trash" type="bool" value="false"/>
</property>
<property name="icon-size" type="uint" value="48"/>
<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-style" type="empty"/>
<property name="image-show" type="empty"/>
</property>
<property name="monitor1" type="empty">
<property name="image-path" type="empty"/>
<property name="image-style" type="empty"/>
<property name="image-show" type="empty"/>
</property>
<property name="monitor2" type="empty">
<property name="image-path" type="empty"/>
<property name="image-style" type="empty"/>
<property name="image-show" type="empty"/>
</property>
<property name="monitor3" type="empty">
<property name="image-path" type="empty"/>
<property name="image-style" type="empty"/>
<property name="image-show" type="empty"/>
</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>
<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>
<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>
<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>
<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>
</property>
<property name="monitorHDMI-1" type="empty">
<property name="workspace0" type="empty">
<property name="last-image" type="string" value="/home/dakedres/.local/share/le_wallpaper/.HDMI-1.png"/>
</property>
</property>
</property>
</property>
<property name="desktop-menu" type="empty">
<property name="show" type="empty"/>
</property>
<property name="last" type="empty">
<property name="window-width" type="int" value="815"/>
<property name="window-height" type="int" value="599"/>
</property>
</channel>

View File

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

View File

@ -0,0 +1,36 @@
<?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="initial-opacity" type="empty"/>
<property name="do-fadeout" type="bool" value="true"/>
<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="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="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>

View File

@ -0,0 +1,130 @@
<?xml version="1.0" 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="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="10"/>
</property>
<property name="background-style" type="uint" value="0"/>
<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>
<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="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"/>
<value type="string" value="xfce-ui-settings.desktop"/>
<value type="string" value="discord.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-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;ncspot;org.gnome.Rhythmbox3;parole;qutebrowser;vlc;VSCodium"/>
<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"/>
</property>
<property name="plugin-10" type="string" value="clock">
<property name="digital-format" type="string" value=" %d %b, %H:%M "/>
<property name="digital-time-format" type="string" value="%I:%M %p"/>
<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>
<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>
</property>
<property name="plugin-12" 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>
<property name="plugin-13" type="string" value="power-manager-plugin"/>
</property>
<property name="configver" type="int" value="2"/>
</channel>

View File

@ -0,0 +1,25 @@
<?xml version="1.0" encoding="UTF-8"?>
<channel name="xfce4-power-manager" version="1.0">
<property name="xfce4-power-manager" type="empty">
<property name="power-button-action" type="empty"/>
<property name="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="dpms-enabled" type="empty"/>
<property name="dpms-on-ac-sleep" type="uint" value="30"/>
<property name="dpms-on-ac-off" type="empty"/>
<property name="dpms-on-battery-sleep" type="uint" value="15"/>
<property name="dpms-on-battery-off" type="uint" value="30"/>
<property name="show-panel-label" type="empty"/>
<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="true"/>
<property name="inactivity-on-ac" type="uint" value="14"/>
<property name="critical-power-action" type="uint" value="0"/>
</property>
</channel>

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<channel name="xfce4-screensaver" version="1.0">
<property name="saver" type="empty">
<property name="mode" type="int" value="0"/>
</property>
</channel>

View File

@ -0,0 +1,44 @@
<?xml version="1.0" encoding="UTF-8"?>
<channel name="xfce4-session" version="1.0">
<property name="general" type="empty">
<property name="FailsafeSessionName" type="empty"/>
<property name="LockCommand" type="empty"/>
<property name="SaveOnExit" type="bool" value="true"/>
<property name="SessionName" type="string" value="Default"/>
</property>
<property name="sessions" type="empty">
<property name="Failsafe" type="empty">
<property name="IsFailsafe" type="empty"/>
<property name="Count" type="empty"/>
<property name="Client0_Command" type="array">
<value type="string" value="bspwm"/>
</property>
<property name="Client0_Priority" type="empty"/>
<property name="Client0_PerScreen" type="empty"/>
<property name="Client1_Command" type="empty"/>
<property name="Client1_Priority" type="empty"/>
<property name="Client1_PerScreen" type="empty"/>
<property name="Client2_Command" type="empty"/>
<property name="Client2_Priority" type="empty"/>
<property name="Client2_PerScreen" type="empty"/>
<property name="Client3_Command" type="empty"/>
<property name="Client3_Priority" type="empty"/>
<property name="Client3_PerScreen" type="empty"/>
<property name="Client4_Command" type="empty"/>
<property name="Client4_Priority" type="empty"/>
<property name="Client4_PerScreen" type="empty"/>
</property>
</property>
<property name="compat" type="empty">
<property name="LaunchGNOME" type="empty"/>
</property>
<property name="shutdown" type="empty">
<property name="LockScreen" type="empty"/>
</property>
<property name="startup" type="empty">
<property name="screensaver" type="empty">
<property name="type" type="empty"/>
</property>
</property>
</channel>

View File

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

View File

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

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<channel name="xfce4-taskmanager" version="1.0">
<property name="window-width" type="int" value="1908"/>
<property name="window-height" type="int" value="1043"/>
<property name="columns" type="empty">
<property name="sort-type" type="uint" value="0"/>
<property name="sort-id" type="uint" value="0"/>
</property>
</channel>

View File

@ -0,0 +1,97 @@
<?xml version="1.0" encoding="UTF-8"?>
<channel name="xfwm4" version="1.0">
<property name="general" type="empty">
<property name="activate_action" type="string" value="bring"/>
<property name="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="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="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="4"/>
<property name="wrap_resistance" type="int" value="10"/>
<property name="wrap_windows" type="bool" value="false"/>
<property name="wrap_workspaces" type="bool" value="false"/>
<property name="borderless_maximize" type="bool" value="true"/>
<property name="cycle_raise" type="bool" value="false"/>
<property name="cycle_hidden" type="bool" value="true"/>
<property name="cycle_minimum" type="bool" value="true"/>
<property name="cycle_minimized" type="bool" value="false"/>
<property name="cycle_tabwin_mode" type="int" value="0"/>
<property name="cycle_workspaces" type="bool" value="false"/>
<property name="double_click_action" type="string" value="maximize"/>
<property name="easy_click" type="string" value="Alt"/>
<property name="focus_hint" type="bool" value="true"/>
<property name="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="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="snap_resist" type="bool" value="false"/>
<property name="vblank_mode" type="string" value="auto"/>
<property name="tile_on_move" type="bool" value="true"/>
<property name="titleless_maximize" type="bool" value="false"/>
<property name="toggle_workspaces" type="bool" value="false"/>
<property name="unredirect_overlays" type="bool" value="true"/>
<property name="wrap_cycle" type="bool" value="true"/>
<property name="wrap_layout" type="bool" value="true"/>
<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="Desktop"/>
<value type="string" value="II"/>
<value type="string" value="III"/>
<value type="string" value="IV"/>
<value type="string" value="Workspace 10"/>
</property>
</property>
</channel>

View File

@ -0,0 +1,49 @@
<?xml version="1.0" 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="DoubleClickTime" type="empty"/>
<property name="DoubleClickDistance" type="empty"/>
<property name="DndDragThreshold" type="empty"/>
<property name="CursorBlink" type="empty"/>
<property name="CursorBlinkTime" type="empty"/>
<property name="SoundThemeName" type="empty"/>
<property name="EnableEventSounds" type="empty"/>
<property name="EnableInputFeedbackSounds" type="empty"/>
<property name="FallbackIconTheme" type="empty"/>
</property>
<property name="Xft" type="empty">
<property name="DPI" type="empty"/>
<property name="Antialias" type="empty"/>
<property name="Hinting" type="empty"/>
<property name="HintStyle" type="empty"/>
<property name="RGBA" type="empty"/>
<property name="Lcdfilter" type="empty"/>
</property>
<property name="Gtk" type="empty">
<property name="CanChangeAccels" type="empty"/>
<property name="ColorPalette" type="empty"/>
<property name="FontName" type="empty"/>
<property name="MonospaceFontName" type="empty"/>
<property name="IconSizes" type="empty"/>
<property name="KeyThemeName" type="empty"/>
<property name="ToolbarStyle" type="empty"/>
<property name="ToolbarIconSize" type="empty"/>
<property name="MenuImages" type="empty"/>
<property name="ButtonImages" type="empty"/>
<property name="MenuBarAccel" type="empty"/>
<property name="CursorThemeName" type="empty"/>
<property name="CursorThemeSize" type="empty"/>
<property name="DecorationLayout" type="empty"/>
<property name="DialogsUseHeader" type="empty"/>
<property name="TitlebarMiddleClick" type="empty"/>
</property>
<property name="Gdk" type="empty">
<property name="WindowScalingFactor" type="int" value="1"/>
</property>
<property name="Xfce" type="empty">
<property name="SyncThemes" type="bool" value="true"/>
</property>
</channel>

9
install-shchemes.sh Normal file
View File

@ -0,0 +1,9 @@
#!/bin/sh
printf %s '
#START SHCHEMES BLOCK : printf "SCHEME=\"%s\"\n" "$SCHEME"
SCHEME="horizon-terminal-dark"
#END SHCHEMES BLOCK
' >> ~/.profile
change-scheme

18
install-zsh.sh Executable file
View File

@ -0,0 +1,18 @@
#!/bin/env bash
set -e
sudo apt install zsh
if [[ -z "$ZSH" ]]; then
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
fi
if [[ ! -r "$HOME/.zshrc" ]]; then
cp ./config/zshrc "$HOME/.zshrc"
else
echo ".zshrc exists. Refusing to overwrite"
fi
[[ -r ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions ]] || git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
[[ -r ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting ]] || git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting

4
install.sh Executable file
View File

@ -0,0 +1,4 @@
sudo apt install \
socat \
sqlite3 \
suckless-tools # wmname primarily

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 MiB

After

Width:  |  Height:  |  Size: 1.6 MiB

52
scripts/bsp-auto-monitors Executable file
View File

@ -0,0 +1,52 @@
#!/bin/env bash
path="$HOME/.config/bspwm/bspwmrc"
tmp=$(mktemp)
primary=$(xrandr | grep " connected" | rofi -dmenu -a | awk '{ print $1 }')
secondary=$(xrandr | grep " connected" | grep -v "^$primary" | awk '{ print $1 }')
use_secondary=$(printf 'Yes\nNo\n' | rofi -dmenu -e "Use secondary displays?" -format i)
p() {
if [ -n "$secondary" ] && [ "$use_secondary" == 0 ]; then
printf 'bspc monitor %s -d I II III IV\n' "$primary"
printf 'bspc monitor %s -d %s\n' "$secondary" "$secondary"
else
printf 'bspc monitor %s -d I II III IV V\n' "$primary"
bspc monitor "$secondary" -r
fi
}
p | awk -v blockstart="# START MONITOR BLOCK" \
-v blockend="# END MONITOR BLOCK" \
-v sq="'" \
-v nl="\n" '
FILENAME == "-" {
block=block $0 nl
next
}
!inblock { print }
inblock {
lines[++bi] = $0
}
$0 ~ blockstart {
inblock = 1;
bi = 0;
printf block
next
}
$0 == blockend && inblock {
inblock = 0;
print blockend;
next;
}
ENDFILE {
if(inblock) {
print nl blockend;
for(i=1;i<=bi;i++) {
print lines[i];
}
}
}
' - "$path" > "$tmp" && mv "$tmp" "$path"
chmod +x "$path"
"$path"

6
scripts/bsp-key-daemon Executable file
View File

@ -0,0 +1,6 @@
#!/bin/sh
# Make sure user bin is imported for sxhkd
PATH="/home/dakedres/bin:$PATH"
pgrep -x sxhkd > /dev/null || sxhkd &

54
scripts/change-scheme Executable file
View File

@ -0,0 +1,54 @@
#!/usr/bin/env bash
# Favorites:
# - horizon-terminal-dark
# - heetch
# - blueforest
# - tarot
if [[ -n "$1" ]]; then
export SCHEME=$1
fi
if ! shchemes install_tinted_scheme; then
exit 1
fi
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 | shchemes merge "$HOME/.config/xfce4/terminal/terminalrc"
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"
"$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
xrandr | awk '$2 == "connected" { system("le-wallpaper " $1) }'
# WALLPAPER_OUT="$HOME/.wallpaper.png"
# shchemes create_theme imagemagick \
# | convert ~/pictures/wallpapers/tradin.jpg -dither FloydSteinberg -colorspace srgb -remap txt:- "$WALLPAPER_OUT"
# feh --bg-scale "$WALLPAPER_OUT"
# terminal=$(ps -o comm= -p "$(($(ps -o ppid= -p "$(($(ps -o sid= -p "$$")))")))")
# if [[ "$terminal" == "kitty" ]]; then
# tmp=$(mktemp)
# shchemes create_theme imagemagick \
# | convert txt:- -filter point -resize 2400% "$tmp"
# kitty +kitten icat "$tmp"
# fi

29
scripts/f Executable file
View File

@ -0,0 +1,29 @@
#!/bin/sh
path=$1
if [ -z "$path" ]; then
path="."
fi
if [ -d "$path" ]; then
ls -lh --color=tty "$path"
else
if [ ! -f "$path" ]; then
echo "No such file: $path"
exit 0
fi
format="$(file -i "$path" | cut -d' ' -f2)"
format="${format%%/*}"
case "$format" in
"image")
kitty +kitten icat "$path"
;;
*)
cat "$path"
;;
esac
fi

162
scripts/le-audio Executable file
View File

@ -0,0 +1,162 @@
#!/bin/sh
get_cards() {
pacmd list-cards | awk -F '[\t ]+' '
function printcard() {
print cardindex " " cardname " " carddesc
}
$2 ~ "index:" {
if(incard) {
printcard()
}
incard=1
cardindex=$3
}
incard && $2 ~ "name:" {
cardname=substr($3, 2, length($3) - 2)
}
incard && $2 ~ "device.description" {
carddesc=substr($0, index($0, "= ") + 2)
}
END {
printcard()
}
'
}
# First line will always be the active profile
get_selected_card_profiles() {
pacmd list-cards | awk -F '[\t ]+' \
-v selected_card_index="$selected_card_index" '
BEGIN {
profile_count=0
}
function print_card() {
if(do_print) {
print profile_names[i] " " profile_descs[i]
}
}
$2 ~ "index:" && $3 == selected_card_index {
incard=1
}
incard && $2 ~ "profiles:" {
inprofiles=1
next
}
inprofiles && $2 ~ "active" {
for(i = 0; i < profile_count; i++) {
if(profile_names[i] == substr($4, 2, length($4) - 2)) {
current_card_index=i
do_print=1
}
print_card()
}
for(i = 0; i < current_card_index; i++) {
print_card()
}
exit
}
inprofiles {
profile_names[profile_count] = substr($2, 0, length($2) - 1)
profile_descs[profile_count] = substr($0, index($0, ": ") + 2)
profile_count++
}
'
}
select_default_sink_card() {
selected_card=$(pacmd list-sinks | awk -F '[\t ]+' '
$2 == "*" && $3 ~ "index:" {
incard=1
}
incard && $2 == "card:" {
print $3 " " substr($4, 2, length($4) - 2)
exit
}
')
}
select_card_manually() {
card_options=$(get_cards)
selected_option_index=$(printf %s\\n "$card_options" | rofi -dmenu -format 'i')
selected_option_index=$((selected_option_index+1))
selected_card=$(printf %s\\n "$card_options" | sed -n "${selected_option_index}p")
}
print_usage() {
printf '
Usage: le-audio [OPTIONS]
Manage audio profiles
Options
-a Auto - Auto-select the card for the default sink
-f Filter - Filter out "off" profiles
-c Cycle - Auto-select the next audio profile after the current one
Utility written by Dakedres (dakedres.sys42.net)
'
}
while getopts 'afc' args; do
case "$args" in
a)
arg_auto_select_card=true
;;
f)
arg_filter_off_profile=true
;;
c)
arg_select_next_profile=true
;;
?)
print_usage
exit
;;
*)
>&2 echo "Invalid option '${args}'"
esac
done
if [ "$arg_auto_select_card" = true ]; then
select_default_sink_card
else
select_card_manually
fi
selected_card_index=$(printf %s\\n "$selected_card" | awk '{ print $1 }')
echo "$selected_card"
if [ "$arg_filter_off_profile" = true ]; then
selected_card_profiles=$(get_selected_card_profiles | grep -v '^off')
else
selected_card_profiles=$(get_selected_card_profiles)
fi
if [ "$arg_select_next_profile" = true ]; then
selected_profile_index=1
else
selected_profile_index=$(printf %s\\n "$selected_card_profiles" | rofi -dmenu -format "i")
fi
if [ -z "$selected_profile_index" ]; then
>&2 echo "No profile selected"
exit 1
fi
printf %s\\n "$selected_card_profiles" | awk \
-v selected_profile_index="$selected_profile_index" \
-v selected_card="$selected_card" \
-v qt="'" '
NR-1 == selected_profile_index {
split(selected_card, split_card, " ")
printf "pactl set-card-profile" " " split_card[1] " " $1
$1=""
print " && notify-send " qt "Set audio profile to" $0 qt
}
' | sh

2
scripts/le-keyboard Executable file
View File

@ -0,0 +1,2 @@
setxkbmap -option altwin:swap_alt_win
setxkbmap -option caps:swapescape

63
scripts/le-wallpaper Executable file
View File

@ -0,0 +1,63 @@
#!/bin/env bash
if [ -f "$HOME/.profile" ]; then
source "$HOME/.profile"
fi
monitor=($(xrandr | awk -v name="$1" '$1 == name && $2 == "connected" {
for(i=1;i<=NF;i++) {
if($i ~ /[0-9]+x[0-9]+\+[0-9]+\+[0-9]+/) {
split($i, a, /[+x]/); print $1 " " a[1] " " a[2]; exit
}
}
}'))
monitor_name="${monitor[0]}"
monitor_width="${monitor[1]}"
monitor_height="${monitor[2]}"
prop="/backdrop/screen0/monitor${monitor_name}/workspace0/last-image"
path="$2"
wallpaper_dir="$HOME/.local/share/le_wallpaper"
wallpaper_path="${wallpaper_dir}/.${monitor_name}.png"
wallpaper_store="${wallpaper_dir}/${monitor_name}_path"
mkdir -p "$wallpaper_dir"
if [ -z "$path" ]; then
path="$(xfconf-query -c xfce4-desktop -p "$prop")"
if [[ ! "$path" = /* ]]; then
path="${HOME}/${path}"
fi
fi
if [ "$path" == "$wallpaper_path" ]; then
path=$(cat "$wallpaper_store")
fi
# path="$(readlink -f "$path")"
if [ ! -f "$path" ]; then
echo "No wallpaper source"
exit 0
fi
filename=$(basename -- "$path")
ext="${filename##*.}"
# The following always assumes the monitor is landscape
if [ "$ext" == "svg" ] && command -v inkscape; then
tmp="$(mktemp).png"
inkscape -h "$monitor_height" "$path" -o "$tmp"
path="$tmp"
fi
export SCHEME
shchemes create_theme imagemagick \
| convert "$path" -colorspace srgb -dither FloydSteinberg -geometry "${monitor_width}x" -remap txt:- "$wallpaper_path"
echo "Setting wallpaper: $path"
xfconf-query -c xfce4-desktop -p "$prop" -s "$wallpaper_path"
echo "$path" > "$wallpaper_store"
le-wallpaper-open

32
scripts/le-wallpaper-open Executable file
View File

@ -0,0 +1,32 @@
#!/bin/sh
xrandr | awk '
function addWallpaper(i) {
split($3, a, "+");
b[bi] = a[2];
c[bi] = $1;
bi++
}
$2 == "connected" {
for(i=1;i<=NF;i++) {
if($i ~ /[0-9]+x[0-9]+\+[0-9]+\+[0-9]+/) {
addWallpaper(i);
}
}
}
END {
PROCINFO["sorted_in"] = "@val_num_asc";
d = "feh --bg-center";
for(i in b) {
p="$HOME/.local/share/le_wallpaper/." c[i] ".png";
if(system("test -f " p)) {
p = lp;
}
lp = p;
d=d " " p;
}
system(d);
}
'

15
scripts/qutebrowser Executable file
View File

@ -0,0 +1,15 @@
#!/bin/sh
# initial idea: Florian Bruhin (The-Compiler)
# author: Thore Bödecker (foxxx0)
_url="$1"
_qb_version='1.0.4'
_proto_version=1
_ipc_socket="${XDG_RUNTIME_DIR}/qutebrowser/ipc-$(echo -n "$USER" | md5sum | cut -d' ' -f1)"
_qute_bin="/home/dakedres/repos/qutebrowser/.venv/bin/qutebrowser"
printf '{"args": ["%s"], "target_arg": "window", "version": "%s", "protocol_version": %d, "cwd": "%s"}\n' \
"${_url}" \
"${_qb_version}" \
"${_proto_version}" \
"${PWD}" | socat -lf /dev/null - UNIX-CONNECT:"${_ipc_socket}" || "$_qute_bin" "$@" &

View File

@ -2,5 +2,6 @@
db=$HOME/.local/share/qutebrowser/history.sqlite db=$HOME/.local/share/qutebrowser/history.sqlite
url=$(sqlite3 "$db" "select title,url from History" | tac | awk '!a[$0]++' | rofi -dmenu | awk -F '|' '{print $NF}') url=$(sqlite3 "$db" "select title,url from History" | tac | awk '!a[$0]++' | rofi -dmenu | awk -F '|' '{print $NF}')
[ -z "$url" ] && exit [ -z "$url" ] && exit
qutebrowser --target window "$url" qutebrowser "$url"

2
scripts/rack Executable file
View File

@ -0,0 +1,2 @@
cd $HOME/apps/Rack2Free
./Rack

10
scripts/xfce4-le-wallpaper Executable file
View File

@ -0,0 +1,10 @@
#!/bin/env bash
# xrandr | awk '$2 == "connected" && $3 ~ /[0-9]+x[0-9]+\+[0-9]+\+[0-9]+/ { split($3, a, "+"); b[bi] = a[2]; c[bi] = $1; bi++ } END { PROCINFO["sorted_in"] = "@val_num_asc"; d = "feh --bg-center"; for(i in b) { d=d " $HOME/.local/share/le_wallpaper/" c[i] ".png" }; system(d) }'
le-wallpaper-open
xfconf-query -c xfce4-desktop -m | awk -F '/' '
$2 == "backdrop" && $3 == "screen0" && $4 ~ /^monitor/ {
system("le-wallpaper " substr($4, 8))
}'