Compare commits
No commits in common. "main" and "nix-colors" have entirely different histories.
main
...
nix-colors
1
.gitignore
vendored
1
.gitignore
vendored
@ -1 +0,0 @@
|
||||
/wallpapers
|
28
README
28
README
@ -1,28 +0,0 @@
|
||||
. . .
|
||||
| | ,- o |
|
||||
,-| ,-. |- | . | ,-. ,-.
|
||||
| | | | | |- | | |-' `-.
|
||||
`-' `-' `-' | ' ' `-' `-'
|
||||
-' [1]
|
||||
Desktop Environment - xfce4[7]
|
||||
Window Manager - bspwm[6]
|
||||
Terminal - kitty[3]
|
||||
Browser - qutebrowser[4]
|
||||
|
||||
Screenshot in ./screenshot.png, if it pleases
|
||||
|
||||
|
||||
Theme
|
||||
`````
|
||||
Right now I use a Kaolin Dark theme. Many themes are pulled directly from alternateved/kaolin-inspired[2]
|
||||
|
||||
|
||||
Links
|
||||
`````
|
||||
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
|
||||
3. https://sw.kovidgoyal.net/kitty
|
||||
4. https://qutebrowser.org
|
||||
5. https://wiki.archlinux.org/title/Tint2
|
||||
6. https://github.com/baskerville/bspwm
|
||||
7. https://www.xfce.org/
|
42
archive.sh
42
archive.sh
@ -1,42 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
dir=$PWD
|
||||
scripts_subdir="$PWD/scripts"
|
||||
|
||||
# rsync -a ~/pictures/wallpapers/* wallpapers/
|
||||
|
||||
cd config || exit
|
||||
rsync -a \
|
||||
--exclude 'bookmarks' \
|
||||
--exclude 'quickmarks' \
|
||||
--exclude 'qsettings' \
|
||||
--exclude 'autoconfig.yml' \
|
||||
~/.config/qutebrowser .
|
||||
rsync -a ~/.config/vesktop/settings ./vesktop
|
||||
rsync -a ~/.config/bspwm .
|
||||
rsync -a ~/.config/sxhkd .
|
||||
rsync -a ~/.config/xfce4 \
|
||||
--exclude 'desktop' .
|
||||
rsync -a ~/.config/rofi .
|
||||
# cp ~/.config/picom.conf .
|
||||
|
||||
cd ~/bin || exit
|
||||
cp \
|
||||
bsp-auto-monitors \
|
||||
bsp-float \
|
||||
bsp-key-daemon \
|
||||
bsp-smove \
|
||||
le-keyboard \
|
||||
le-audio \
|
||||
sxhkd-help \
|
||||
change-scheme \
|
||||
le-wallpaper \
|
||||
le-wallpaper-open \
|
||||
xfce4-le-wallpaper \
|
||||
qutebrowser \
|
||||
qutesearch \
|
||||
rack \
|
||||
f \
|
||||
"$scripts_subdir"
|
||||
|
||||
cd "$dir"
|
12
common/default.nix
Normal file
12
common/default.nix
Normal file
@ -0,0 +1,12 @@
|
||||
{ config, lib, helpers, ... }:
|
||||
|
||||
{
|
||||
options.custom = {
|
||||
modules = lib.mkOption {
|
||||
type = lib.types.listOf lib.types.path;
|
||||
default = [];
|
||||
};
|
||||
};
|
||||
|
||||
imports = (helpers.getModules "/default.nix" config.custom.modules);
|
||||
}
|
25
common/helpers.nix
Normal file
25
common/helpers.nix
Normal file
@ -0,0 +1,25 @@
|
||||
{ lib, ... }: {
|
||||
getModules = (filename: modules:
|
||||
(builtins.filter
|
||||
(path: builtins.pathExists path)
|
||||
# (builtins.map
|
||||
# (dirname: ./. + ("/" + dirname) + filename)
|
||||
# (lib.attrsets.filterAttrs
|
||||
# (entry: entry == "directory")
|
||||
# (builtins.readDir ../modules)
|
||||
# )
|
||||
# )
|
||||
(builtins.map
|
||||
(path: path + filename)
|
||||
modules
|
||||
)
|
||||
)
|
||||
);
|
||||
|
||||
filterModules = (modules:
|
||||
(builtins.filter
|
||||
(path: builtins.pathExists path)
|
||||
modules
|
||||
)
|
||||
);
|
||||
}
|
70
common/home.nix
Normal file
70
common/home.nix
Normal file
@ -0,0 +1,70 @@
|
||||
{ pkgs, config, lib, helpers, ... }:
|
||||
|
||||
{
|
||||
options.custom = {
|
||||
username = lib.mkOption {
|
||||
type = lib.types.str;
|
||||
default = "dakedres";
|
||||
};
|
||||
|
||||
nonFreePackages = lib.mkOption {
|
||||
type = lib.types.listOf lib.types.str;
|
||||
default = [];
|
||||
};
|
||||
|
||||
wallpaper = lib.mkOption {
|
||||
type = lib.types.path;
|
||||
};
|
||||
|
||||
colors =
|
||||
let
|
||||
colorOption = lib.mkOption {
|
||||
type = lib.types.str;
|
||||
default = "#000000";
|
||||
};
|
||||
in
|
||||
{
|
||||
base00 = colorOption;
|
||||
base01 = colorOption;
|
||||
base02 = colorOption;
|
||||
base03 = colorOption;
|
||||
base04 = colorOption;
|
||||
base05 = colorOption;
|
||||
base06 = colorOption;
|
||||
base07 = colorOption;
|
||||
base08 = colorOption;
|
||||
base09 = colorOption;
|
||||
base0A = colorOption;
|
||||
base0B = colorOption;
|
||||
base0C = colorOption;
|
||||
base0D = colorOption;
|
||||
base0E = colorOption;
|
||||
base0F = colorOption;
|
||||
};
|
||||
};
|
||||
|
||||
config =
|
||||
let
|
||||
username = config.custom.username;
|
||||
nonFreePackages = config.custom.nonFreePackages;
|
||||
in
|
||||
{
|
||||
home = {
|
||||
username = username;
|
||||
homeDirectory = "/home/${username}";
|
||||
};
|
||||
|
||||
# Unfree packages
|
||||
nixpkgs.config.allowUnfreePredicate = pkg:
|
||||
builtins.elem (lib.getName pkg) nonFreePackages;
|
||||
|
||||
home.packages =
|
||||
map (name: pkgs.${name}) nonFreePackages;
|
||||
|
||||
# Take over my xsession
|
||||
xsession.enable = true;
|
||||
|
||||
# Let Home Manager install and manage itself.
|
||||
programs.home-manager.enable = true;
|
||||
};
|
||||
}
|
3
common/homeOptions.nix
Normal file
3
common/homeOptions.nix
Normal file
@ -0,0 +1,3 @@
|
||||
{ lib, ... }: {
|
||||
|
||||
}
|
@ -1,43 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
wmname LG3D &
|
||||
|
||||
# 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 window_gap 4
|
||||
|
||||
bspc config split_ratio 0.54
|
||||
bspc config borderless_monocle true
|
||||
bspc config gapless_monocle true
|
||||
|
||||
bspc config pointer_modifier mod4
|
||||
bspc config pointer_action1 move
|
||||
# bspc config pointer_action2 resize_side
|
||||
bspc config pointer_action2 resize_corner
|
||||
|
||||
# Focus is on the hovered window, but the cursor is
|
||||
# moved when the keyboard changes focus
|
||||
bspc config focus_follows_pointer true
|
||||
bspc config pointer_follows_focus true
|
||||
|
||||
# bspc rule -a \* state=pseudo_tiled
|
||||
bspc rule -a qutebrowser state=tiled
|
||||
bspc rule -a KittyScratch state=floating
|
||||
bspc rule -a Wrapper-2.0 state=floating # Xfce start menu
|
||||
bspc rule -a Rofi state=floating
|
||||
bspc rule -a Gimp state=floating
|
||||
bspc rule -a Chromium desktop='^2'
|
||||
bspc rule -a mplayer2 state=floating
|
||||
bspc rule -a Kupfer.py focus=on
|
||||
bspc rule -a Screenkey manage=off
|
||||
|
||||
xsetroot -cursor_name left_ptr &
|
||||
"$(dirname "$0")/colors"
|
||||
|
||||
export _JAVA_AWT_WM_NONREPARENTING=1
|
@ -1,3 +0,0 @@
|
||||
bspc config normal_border_color "#3c3f4c"
|
||||
bspc config active_border_color "#383a47"
|
||||
bspc config focused_border_color "#555e70"
|
@ -1,64 +0,0 @@
|
||||
# Theme: https://github.com/alternateved/kaolin-inspired/blob/main/kaolin-dark/kitty/Kaolin_Dark.conf
|
||||
|
||||
editor micro
|
||||
|
||||
confirm_os_window_close 0
|
||||
|
||||
enable_audio_bell no
|
||||
visual_bell_duration 0.6
|
||||
visual_bell_color #111111
|
||||
|
||||
font_family Ubuntu Mono
|
||||
bold_font Ubuntu Medium
|
||||
italic_font Ubuntu Italic
|
||||
bold_italic_font Ubuntu Medium Italic
|
||||
font_size 11.5
|
||||
|
||||
#START SHCHEMES BLOCK : shchemes create_theme kitty
|
||||
# Base16 - kitty color config
|
||||
# Scheme by
|
||||
visual_bell_color #161413
|
||||
|
||||
background #1b1918
|
||||
foreground #a8a19f
|
||||
selection_background #a8a19f
|
||||
selection_foreground #1b1918
|
||||
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
|
||||
|
||||
# Normal
|
||||
color0 #1b1918
|
||||
color1 #f22c40
|
||||
color2 #7b9726
|
||||
color3 #c38418
|
||||
color4 #407ee7
|
||||
color5 #6666ea
|
||||
color6 #3d97b8
|
||||
color7 #a8a19f
|
||||
|
||||
# Bright (same as Normal except 8/15)
|
||||
color8 #766e6b
|
||||
color9 #f22c40
|
||||
color10 #7b9726
|
||||
color11 #c38418
|
||||
color12 #407ee7
|
||||
color13 #6666ea
|
||||
color14 #3d97b8
|
||||
color15 #f1efee
|
||||
|
||||
# Other (like base16-shell)
|
||||
color16 #df5320
|
||||
color17 #c33ff3
|
||||
color18 #2c2421
|
||||
color19 #68615e
|
||||
color20 #9c9491
|
||||
color21 #e6e2e0
|
||||
|
||||
#END SHCHEMES BLOCK
|
@ -1,2 +0,0 @@
|
||||
[General]
|
||||
__userfile__=true
|
@ -1,9 +0,0 @@
|
||||
[Sizes]
|
||||
SplitterPos=200
|
||||
ViewsIconSize=24
|
||||
WindowSize=@Size(895 1070)
|
||||
|
||||
[Window]
|
||||
DirTree=true
|
||||
StatusBar=true
|
||||
ToolBar=true
|
@ -1,14 +0,0 @@
|
||||
[Sizes]
|
||||
SplitterPos=200
|
||||
WindowSize=@Size(700 500)
|
||||
|
||||
[View]
|
||||
BigIconSize=48
|
||||
Mode=Detailed
|
||||
ScrollPerPixel=true
|
||||
ShowThumbnails=true
|
||||
SmallIconSize=24
|
||||
SortColumn=name
|
||||
SortFolderFirst=true
|
||||
SortOrder=ascending
|
||||
ThumbnailIconSize=128
|
@ -1,238 +0,0 @@
|
||||
[General]
|
||||
AllowGrabBaseKeypad=true
|
||||
AllowGrabBaseSpecial=false
|
||||
AllowGrabLocks=false
|
||||
AllowGrabMiscKeypad=true
|
||||
AllowGrabMiscSpecial=true
|
||||
MultipleActionsBehaviour=first
|
||||
WindowSize=@Invalid()
|
||||
|
||||
[Control%2BAlt%2BB.1]
|
||||
Comment=Web browser
|
||||
Enabled=true
|
||||
Exec=xdg-open, about:blank
|
||||
|
||||
[Control%2BAlt%2BDelete.2]
|
||||
Comment=Task manager
|
||||
Enabled=true
|
||||
Exec=qps
|
||||
|
||||
[Control%2BAlt%2BL.3]
|
||||
Comment=lockscreen
|
||||
Enabled=true
|
||||
Exec=xdg-screensaver, lock
|
||||
|
||||
[Control%2BAlt%2BT.4]
|
||||
Comment=Launch Terminal
|
||||
Enabled=true
|
||||
Exec=qterminal
|
||||
|
||||
[Meta%2B0.5]
|
||||
Comment=Activate task 10
|
||||
Enabled=true
|
||||
path=/panel/taskbar/task_10
|
||||
|
||||
[Meta%2B1.6]
|
||||
Comment=Activate task 1
|
||||
Enabled=true
|
||||
path=/panel/taskbar/task_1
|
||||
|
||||
[Meta%2B2.7]
|
||||
Comment=Activate task 2
|
||||
Enabled=true
|
||||
path=/panel/taskbar/task_2
|
||||
|
||||
[Meta%2B3.8]
|
||||
Comment=Activate task 3
|
||||
Enabled=true
|
||||
path=/panel/taskbar/task_3
|
||||
|
||||
[Meta%2B4.9]
|
||||
Comment=Activate task 4
|
||||
Enabled=true
|
||||
path=/panel/taskbar/task_4
|
||||
|
||||
[Meta%2B5.10]
|
||||
Comment=Activate task 5
|
||||
Enabled=true
|
||||
path=/panel/taskbar/task_5
|
||||
|
||||
[Meta%2B6.11]
|
||||
Comment=Activate task 6
|
||||
Enabled=true
|
||||
path=/panel/taskbar/task_6
|
||||
|
||||
[Meta%2B7.12]
|
||||
Comment=Activate task 7
|
||||
Enabled=true
|
||||
path=/panel/taskbar/task_7
|
||||
|
||||
[Meta%2B8.13]
|
||||
Comment=Activate task 8
|
||||
Enabled=true
|
||||
path=/panel/taskbar/task_8
|
||||
|
||||
[Meta%2B9.14]
|
||||
Comment=Activate task 9
|
||||
Enabled=true
|
||||
path=/panel/taskbar/task_9
|
||||
|
||||
[Meta%2BD.15]
|
||||
Comment=Show desktop
|
||||
Enabled=true
|
||||
path=/panel/showdesktop/show_hide
|
||||
|
||||
[Meta%2BE.16]
|
||||
Comment=Pcmanfm
|
||||
Enabled=true
|
||||
Exec=pcmanfm-qt
|
||||
|
||||
[Meta%2BF1.17]
|
||||
Comment=Switch to desktop 1
|
||||
Enabled=true
|
||||
path=/panel/desktopswitch/desktop_1
|
||||
|
||||
[Meta%2BF10.18]
|
||||
Comment=Switch to desktop 10
|
||||
Enabled=true
|
||||
path=/panel/desktopswitch/desktop_10
|
||||
|
||||
[Meta%2BF11.19]
|
||||
Comment=Switch to desktop 11
|
||||
Enabled=true
|
||||
path=/panel/desktopswitch/desktop_11
|
||||
|
||||
[Meta%2BF12.20]
|
||||
Comment=Switch to desktop 12
|
||||
Enabled=true
|
||||
path=/panel/desktopswitch/desktop_12
|
||||
|
||||
[Meta%2BF2.21]
|
||||
Comment=Switch to desktop 2
|
||||
Enabled=true
|
||||
path=/panel/desktopswitch/desktop_2
|
||||
|
||||
[Meta%2BF3.22]
|
||||
Comment=Switch to desktop 3
|
||||
Enabled=true
|
||||
path=/panel/desktopswitch/desktop_3
|
||||
|
||||
[Meta%2BF4.23]
|
||||
Comment=Switch to desktop 4
|
||||
Enabled=true
|
||||
path=/panel/desktopswitch/desktop_4
|
||||
|
||||
[Meta%2BF5.24]
|
||||
Comment=Switch to desktop 5
|
||||
Enabled=true
|
||||
path=/panel/desktopswitch/desktop_5
|
||||
|
||||
[Meta%2BF6.25]
|
||||
Comment=Switch to desktop 6
|
||||
Enabled=true
|
||||
path=/panel/desktopswitch/desktop_6
|
||||
|
||||
[Meta%2BF7.26]
|
||||
Comment=Switch to desktop 7
|
||||
Enabled=true
|
||||
path=/panel/desktopswitch/desktop_7
|
||||
|
||||
[Meta%2BF8.27]
|
||||
Comment=Switch to desktop 8
|
||||
Enabled=true
|
||||
path=/panel/desktopswitch/desktop_8
|
||||
|
||||
[Meta%2BF9.28]
|
||||
Comment=Switch to desktop 9
|
||||
Enabled=true
|
||||
path=/panel/desktopswitch/desktop_9
|
||||
|
||||
[Meta%2BR.29]
|
||||
Comment=Show/hide runner
|
||||
Enabled=true
|
||||
path=/runner/show_hide_dialog
|
||||
|
||||
[Print.30]
|
||||
Comment=screen shot
|
||||
Enabled=true
|
||||
Exec=screengrab
|
||||
|
||||
[Shift%2BControl%2BF6.31]
|
||||
Comment=\x2600 \x2193
|
||||
Enabled=true
|
||||
Exec=lxqt-config-brightness, -d
|
||||
|
||||
[Shift%2BControl%2BF7.32]
|
||||
Comment=\x2600 \x2191
|
||||
Enabled=true
|
||||
Exec=lxqt-config-brightness, -i
|
||||
|
||||
[Super_L.33]
|
||||
Comment=Show/hide main menu
|
||||
Enabled=true
|
||||
path=/panel/mainmenu/show_hide
|
||||
|
||||
[XF86AudioLowerVolume.34]
|
||||
Comment=Decrease sound volume
|
||||
Enabled=true
|
||||
path=/panel/volume/down
|
||||
|
||||
[XF86AudioMute.35]
|
||||
Comment=Mute/unmute sound volume
|
||||
Enabled=true
|
||||
path=/panel/volume/mute
|
||||
|
||||
[XF86AudioRaiseVolume.36]
|
||||
Comment=Increase sound volume
|
||||
Enabled=true
|
||||
path=/panel/volume/up
|
||||
|
||||
[XF86Calculator.37]
|
||||
Comment=Launch calculator
|
||||
Enabled=true
|
||||
Exec=kcalc
|
||||
|
||||
[XF86Eject.38]
|
||||
Comment=Eject removable media
|
||||
Enabled=true
|
||||
path=/panel/mount/eject
|
||||
|
||||
[XF86HomePage.39]
|
||||
Comment=Launch browser
|
||||
Enabled=true
|
||||
Exec=xdg-open, about:blank
|
||||
|
||||
[XF86Mail.40]
|
||||
Comment=Launch mail
|
||||
Enabled=true
|
||||
Exec=trojita
|
||||
|
||||
[XF86MonBrightnessDown.41]
|
||||
Comment=\x2600 \x2193
|
||||
Enabled=true
|
||||
Exec=lxqt-config-brightness, -d
|
||||
|
||||
[XF86MonBrightnessUp.42]
|
||||
Comment=\x2600 \x2191
|
||||
Enabled=true
|
||||
Exec=lxqt-config-brightness, -i
|
||||
|
||||
[XF86MyComputer.43]
|
||||
Comment=Launch pcmanfm
|
||||
Enabled=true
|
||||
Exec=pcmanfm-qt
|
||||
|
||||
[XF86PowerOff.44]
|
||||
Comment=Power off key action
|
||||
Enabled=true
|
||||
path=/powermanager/keypoweroff
|
||||
|
||||
[XF86Sleep.45]
|
||||
Comment=Hibernate key action
|
||||
Enabled=true
|
||||
path=/powermanager/keyhibernate
|
||||
|
||||
[XF86Suspend.46]
|
||||
Comment=Suspend key action
|
||||
Enabled=true
|
||||
path=/powermanager/keysuspend
|
@ -1,4 +0,0 @@
|
||||
[General]
|
||||
ControlGTKThemeEnabled=true
|
||||
__userfile__=true
|
||||
size=@Size(648 598)
|
@ -1,2 +0,0 @@
|
||||
[General]
|
||||
size=@Size(600 400)
|
@ -1,3 +0,0 @@
|
||||
[General]
|
||||
__userfile__=true
|
||||
size=@Size(861 622)
|
@ -1,2 +0,0 @@
|
||||
[General]
|
||||
__userfile__=true
|
@ -1,2 +0,0 @@
|
||||
[General]
|
||||
size=@Size(1870 1070)
|
@ -1,6 +0,0 @@
|
||||
[General]
|
||||
__userfile__=true
|
||||
enableBatteryWatcher=true
|
||||
enableIdlenessWatcher=true
|
||||
enableLidWatcher=true
|
||||
runCheckLevel=1
|
@ -1,2 +0,0 @@
|
||||
[General]
|
||||
__userfile__=true
|
@ -1,17 +0,0 @@
|
||||
[General]
|
||||
__userfile__=true
|
||||
icon_theme=ePapirus
|
||||
theme=frost
|
||||
|
||||
[Palette]
|
||||
base_color=#18181b
|
||||
highlight_color=#91b9c7
|
||||
highlighted_text_color=#ffffff
|
||||
link_color=#9ba5a7
|
||||
link_visited_color=#845a84
|
||||
text_color=#e4e4e8
|
||||
window_color=#222225
|
||||
window_text_color=#e4e4e8
|
||||
|
||||
[Qt]
|
||||
style=Breeze
|
@ -1,2 +0,0 @@
|
||||
[General]
|
||||
__userfile__=true
|
@ -1,63 +0,0 @@
|
||||
[General]
|
||||
__userfile__=true
|
||||
|
||||
[desktopswitch]
|
||||
alignment=Left
|
||||
type=desktopswitch
|
||||
|
||||
[mainmenu]
|
||||
alignment=Left
|
||||
type=mainmenu
|
||||
|
||||
[mount]
|
||||
alignment=Right
|
||||
type=mount
|
||||
|
||||
[panel1]
|
||||
alignment=-1
|
||||
animation-duration=0
|
||||
background-color=@Variant(\0\0\0\x43\0\xff\xff\0\0\0\0\0\0\0\0)
|
||||
background-image=
|
||||
desktop=0
|
||||
font-color=@Variant(\0\0\0\x43\0\xff\xff\0\0\0\0\0\0\0\0)
|
||||
hidable=false
|
||||
hide-on-overlap=false
|
||||
iconSize=22
|
||||
lineCount=1
|
||||
lockPanel=false
|
||||
opacity=100
|
||||
panelSize=32
|
||||
position=Bottom
|
||||
reserve-space=true
|
||||
show-delay=0
|
||||
visible-margin=true
|
||||
width=100
|
||||
width-percent=true
|
||||
|
||||
[quicklaunch]
|
||||
alignment=Left
|
||||
type=quicklaunch
|
||||
|
||||
[showdesktop]
|
||||
alignment=Right
|
||||
type=showdesktop
|
||||
|
||||
[statusnotifier]
|
||||
alignment=Right
|
||||
type=statusnotifier
|
||||
|
||||
[taskbar]
|
||||
alignment=Left
|
||||
type=taskbar
|
||||
|
||||
[tray]
|
||||
alignment=Right
|
||||
type=tray
|
||||
|
||||
[volume]
|
||||
alignment=Right
|
||||
type=volume
|
||||
|
||||
[worldclock]
|
||||
alignment=Right
|
||||
type=worldclock
|
@ -1,2 +0,0 @@
|
||||
[General]
|
||||
__userfile__=true
|
@ -1,16 +0,0 @@
|
||||
[General]
|
||||
__userfile__=true
|
||||
window_manager=bspwm
|
||||
|
||||
[Environment]
|
||||
BROWSER=qutebrowser
|
||||
GTK_CSD=0
|
||||
GTK_OVERLAY_SCROLLING=0
|
||||
GTK_USE_PORTAL=1
|
||||
SAL_USE_VCLPLUGIN=qt5
|
||||
SAL_VCL_QT5_USE_CAIRO=true
|
||||
TERM=kitty
|
||||
|
||||
[Mouse]
|
||||
cursor_size=22
|
||||
cursor_theme=breeze_cursors
|
@ -1,2 +0,0 @@
|
||||
[General]
|
||||
__userfile__=true
|
@ -1,436 +0,0 @@
|
||||
#################################
|
||||
# Shadows #
|
||||
#################################
|
||||
|
||||
|
||||
# Enabled client-side shadows on windows. Note desktop windows
|
||||
# (windows with '_NET_WM_WINDOW_TYPE_DESKTOP') never get shadow,
|
||||
# unless explicitly requested using the wintypes option.
|
||||
#
|
||||
# shadow = false
|
||||
shadow = true;
|
||||
|
||||
# The blur radius for shadows, in pixels. (defaults to 12)
|
||||
# shadow-radius = 12
|
||||
shadow-radius = 8;
|
||||
|
||||
# The opacity of shadows. (0.0 - 1.0, defaults to 0.75)
|
||||
# shadow-opacity = .75
|
||||
|
||||
# The left offset for shadows, in pixels. (defaults to -15)
|
||||
# shadow-offset-x = -15
|
||||
shadow-offset-x = -7;
|
||||
|
||||
# The top offset for shadows, in pixels. (defaults to -15)
|
||||
# shadow-offset-y = -15
|
||||
shadow-offset-y = -7;
|
||||
|
||||
# Red color value of shadow (0.0 - 1.0, defaults to 0).
|
||||
# shadow-red = 0
|
||||
|
||||
# Green color value of shadow (0.0 - 1.0, defaults to 0).
|
||||
# shadow-green = 0
|
||||
|
||||
# Blue color value of shadow (0.0 - 1.0, defaults to 0).
|
||||
# shadow-blue = 0
|
||||
|
||||
# Hex string color value of shadow (#000000 - #FFFFFF, defaults to #000000). This option will override options set shadow-(red/green/blue)
|
||||
# shadow-color = "#000000"
|
||||
|
||||
# Specify a list of conditions of windows that should have no shadow.
|
||||
#
|
||||
# examples:
|
||||
# shadow-exclude = "n:e:Notification";
|
||||
#
|
||||
# shadow-exclude = []
|
||||
shadow-exclude = [
|
||||
"name = 'Notification'",
|
||||
"class_g = 'Conky'",
|
||||
"class_g ?= 'Notify-osd'",
|
||||
"class_g = 'Cairo-clock'",
|
||||
"_GTK_FRAME_EXTENTS@:c"
|
||||
];
|
||||
|
||||
# Specify a list of conditions of windows that should have no shadow painted over, such as a dock window.
|
||||
# clip-shadow-above = []
|
||||
|
||||
# Specify a X geometry that describes the region in which shadow should not
|
||||
# be painted in, such as a dock window region. Use
|
||||
# shadow-exclude-reg = "x10+0+0"
|
||||
# for example, if the 10 pixels on the bottom of the screen should not have shadows painted on.
|
||||
#
|
||||
# shadow-exclude-reg = ""
|
||||
|
||||
# Crop shadow of a window fully on a particular monitor to that monitor. This is
|
||||
# currently implemented using the X RandR extension.
|
||||
# crop-shadow-to-monitor = false
|
||||
|
||||
|
||||
#################################
|
||||
# Fading #
|
||||
#################################
|
||||
|
||||
|
||||
# Fade windows in/out when opening/closing and when opacity changes,
|
||||
# unless no-fading-openclose is used.
|
||||
# fading = false
|
||||
fading = true;
|
||||
|
||||
# Opacity change between steps while fading in. (0.01 - 1.0, defaults to 0.028)
|
||||
# fade-in-step = 0.028
|
||||
fade-in-step = 0.09;
|
||||
|
||||
# Opacity change between steps while fading out. (0.01 - 1.0, defaults to 0.03)
|
||||
# fade-out-step = 0.03
|
||||
fade-out-step = 0.09;
|
||||
|
||||
# The time between steps in fade step, in milliseconds. (> 0, defaults to 10)
|
||||
# fade-delta = 10
|
||||
|
||||
# Specify a list of conditions of windows that should not be faded.
|
||||
# fade-exclude = []
|
||||
|
||||
# Do not fade on window open/close.
|
||||
# no-fading-openclose = false
|
||||
|
||||
# Do not fade destroyed ARGB windows with WM frame. Workaround of bugs in Openbox, Fluxbox, etc.
|
||||
# no-fading-destroyed-argb = false
|
||||
|
||||
|
||||
#################################
|
||||
# Transparency / Opacity #
|
||||
#################################
|
||||
|
||||
|
||||
# Opacity of inactive windows. (0.1 - 1.0, defaults to 1.0)
|
||||
# inactive-opacity = 1
|
||||
inactive-opacity = 0.8;
|
||||
|
||||
# Opacity of window titlebars and borders. (0.1 - 1.0, disabled by default)
|
||||
# frame-opacity = 1.0
|
||||
frame-opacity = 0.7;
|
||||
|
||||
# Let inactive opacity set by -i override the '_NET_WM_WINDOW_OPACITY' values of windows.
|
||||
# inactive-opacity-override = true
|
||||
inactive-opacity-override = false;
|
||||
|
||||
# Default opacity for active windows. (0.0 - 1.0, defaults to 1.0)
|
||||
# active-opacity = 1.0
|
||||
|
||||
# Dim inactive windows. (0.0 - 1.0, defaults to 0.0)
|
||||
# inactive-dim = 0.0
|
||||
|
||||
# Specify a list of conditions of windows that should never be considered focused.
|
||||
# focus-exclude = []
|
||||
focus-exclude = [ "class_g = 'Cairo-clock'" ];
|
||||
|
||||
# Use fixed inactive dim value, instead of adjusting according to window opacity.
|
||||
# inactive-dim-fixed = 1.0
|
||||
|
||||
# Specify a list of opacity rules, in the format `PERCENT:PATTERN`,
|
||||
# like `50:name *= "Firefox"`. picom-trans is recommended over this.
|
||||
# Note we don't make any guarantee about possible conflicts with other
|
||||
# programs that set '_NET_WM_WINDOW_OPACITY' on frame or client windows.
|
||||
# example:
|
||||
# opacity-rule = [ "80:class_g = 'URxvt'" ];
|
||||
#
|
||||
# opacity-rule = [
|
||||
# "80:class_g = 'Rofi'"
|
||||
# ]
|
||||
|
||||
|
||||
#################################
|
||||
# Corners #
|
||||
#################################
|
||||
|
||||
# Sets the radius of rounded window corners. When > 0, the compositor will
|
||||
# round the corners of windows. Does not interact well with
|
||||
# `transparent-clipping`.
|
||||
corner-radius = 0
|
||||
|
||||
# Exclude conditions for rounded corners.
|
||||
rounded-corners-exclude = [
|
||||
"window_type = 'dock'",
|
||||
"window_type = 'desktop'"
|
||||
];
|
||||
|
||||
|
||||
#################################
|
||||
# Background-Blurring #
|
||||
#################################
|
||||
|
||||
|
||||
# Parameters for background blurring, see the *BLUR* section for more information.
|
||||
# blur-method =
|
||||
# blur-size = 12
|
||||
#
|
||||
# blur-deviation = false
|
||||
#
|
||||
# blur-strength = 5
|
||||
|
||||
# Blur background of semi-transparent / ARGB windows.
|
||||
# Bad in performance, with driver-dependent behavior.
|
||||
# The name of the switch may change without prior notifications.
|
||||
#
|
||||
# blur-background = false
|
||||
|
||||
# Blur background of windows when the window frame is not opaque.
|
||||
# Implies:
|
||||
# blur-background
|
||||
# Bad in performance, with driver-dependent behavior. The name may change.
|
||||
#
|
||||
# blur-background-frame = false
|
||||
|
||||
|
||||
# Use fixed blur strength rather than adjusting according to window opacity.
|
||||
# blur-background-fixed = false
|
||||
|
||||
|
||||
# Specify the blur convolution kernel, with the following format:
|
||||
# example:
|
||||
# blur-kern = "5,5,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1";
|
||||
#
|
||||
# blur-kern = ""
|
||||
blur-kern = "3x3box";
|
||||
|
||||
|
||||
# Exclude conditions for background blur.
|
||||
# blur-background-exclude = []
|
||||
blur-background-exclude = [
|
||||
"window_type = 'dock'",
|
||||
"window_type = 'desktop'",
|
||||
"_GTK_FRAME_EXTENTS@:c"
|
||||
];
|
||||
|
||||
#################################
|
||||
# General Settings #
|
||||
#################################
|
||||
|
||||
# Enable remote control via D-Bus. See the man page for more details.
|
||||
# dbus = true
|
||||
|
||||
# Daemonize process. Fork to background after initialization. Causes issues with certain (badly-written) drivers.
|
||||
# daemon = false
|
||||
|
||||
# Specify the backend to use: `xrender`, `glx`, `egl` or `xr_glx_hybrid`.
|
||||
# `xrender` is the default one.
|
||||
#
|
||||
# backend = "glx"
|
||||
backend = "xrender";
|
||||
|
||||
# Use higher precision during rendering, and apply dither when presenting the
|
||||
# rendered screen. Reduces banding artifacts, but might cause performance
|
||||
# degradation. Only works with OpenGL.
|
||||
dithered-present = false;
|
||||
|
||||
# Enable/disable VSync.
|
||||
# vsync = false
|
||||
vsync = true;
|
||||
|
||||
# Enable remote control via D-Bus. See the *D-BUS API* section below for more details.
|
||||
# dbus = false
|
||||
|
||||
# Try to detect WM windows (a non-override-redirect window with no
|
||||
# child that has 'WM_STATE') and mark them as active.
|
||||
#
|
||||
# mark-wmwin-focused = false
|
||||
mark-wmwin-focused = true;
|
||||
|
||||
# Mark override-redirect windows that doesn't have a child window with 'WM_STATE' focused.
|
||||
# mark-ovredir-focused = false
|
||||
mark-ovredir-focused = true;
|
||||
|
||||
# Try to detect windows with rounded corners and don't consider them
|
||||
# shaped windows. The accuracy is not very high, unfortunately.
|
||||
#
|
||||
# detect-rounded-corners = false
|
||||
detect-rounded-corners = true;
|
||||
|
||||
# Detect '_NET_WM_WINDOW_OPACITY' on client windows, useful for window managers
|
||||
# not passing '_NET_WM_WINDOW_OPACITY' of client windows to frame windows.
|
||||
#
|
||||
# detect-client-opacity = false
|
||||
detect-client-opacity = true;
|
||||
|
||||
# Use EWMH '_NET_ACTIVE_WINDOW' to determine currently focused window,
|
||||
# rather than listening to 'FocusIn'/'FocusOut' event. Might have more accuracy,
|
||||
# provided that the WM supports it.
|
||||
#
|
||||
# use-ewmh-active-win = false
|
||||
|
||||
# Unredirect all windows if a full-screen opaque window is detected,
|
||||
# to maximize performance for full-screen windows. Known to cause flickering
|
||||
# when redirecting/unredirecting windows.
|
||||
#
|
||||
# unredir-if-possible = false
|
||||
|
||||
# Delay before unredirecting the window, in milliseconds. Defaults to 0.
|
||||
# unredir-if-possible-delay = 0
|
||||
|
||||
# Conditions of windows that shouldn't be considered full-screen for unredirecting screen.
|
||||
# unredir-if-possible-exclude = []
|
||||
|
||||
# Use 'WM_TRANSIENT_FOR' to group windows, and consider windows
|
||||
# in the same group focused at the same time.
|
||||
#
|
||||
# detect-transient = false
|
||||
detect-transient = true;
|
||||
|
||||
# Use 'WM_CLIENT_LEADER' to group windows, and consider windows in the same
|
||||
# group focused at the same time. This usually means windows from the same application
|
||||
# will be considered focused or unfocused at the same time.
|
||||
# 'WM_TRANSIENT_FOR' has higher priority if detect-transient is enabled, too.
|
||||
#
|
||||
# detect-client-leader = false
|
||||
|
||||
# Resize damaged region by a specific number of pixels.
|
||||
# A positive value enlarges it while a negative one shrinks it.
|
||||
# If the value is positive, those additional pixels will not be actually painted
|
||||
# to screen, only used in blur calculation, and such. (Due to technical limitations,
|
||||
# with use-damage, those pixels will still be incorrectly painted to screen.)
|
||||
# Primarily used to fix the line corruption issues of blur,
|
||||
# in which case you should use the blur radius value here
|
||||
# (e.g. with a 3x3 kernel, you should use `--resize-damage 1`,
|
||||
# with a 5x5 one you use `--resize-damage 2`, and so on).
|
||||
# May or may not work with *--glx-no-stencil*. Shrinking doesn't function correctly.
|
||||
#
|
||||
# resize-damage = 1
|
||||
|
||||
# Specify a list of conditions of windows that should be painted with inverted color.
|
||||
# Resource-hogging, and is not well tested.
|
||||
#
|
||||
# invert-color-include = []
|
||||
|
||||
# GLX backend: Avoid using stencil buffer, useful if you don't have a stencil buffer.
|
||||
# Might cause incorrect opacity when rendering transparent content (but never
|
||||
# practically happened) and may not work with blur-background.
|
||||
# My tests show a 15% performance boost. Recommended.
|
||||
#
|
||||
# glx-no-stencil = false
|
||||
|
||||
# GLX backend: Avoid rebinding pixmap on window damage.
|
||||
# Probably could improve performance on rapid window content changes,
|
||||
# but is known to break things on some drivers (LLVMpipe, xf86-video-intel, etc.).
|
||||
# Recommended if it works.
|
||||
#
|
||||
# glx-no-rebind-pixmap = false
|
||||
|
||||
# Disable the use of damage information.
|
||||
# This cause the whole screen to be redrawn every time, instead of the part of the screen
|
||||
# has actually changed. Potentially degrades the performance, but might fix some artifacts.
|
||||
# The opposing option is use-damage
|
||||
#
|
||||
# no-use-damage = false
|
||||
use-damage = true;
|
||||
|
||||
# Use X Sync fence to sync clients' draw calls, to make sure all draw
|
||||
# calls are finished before picom starts drawing. Needed on nvidia-drivers
|
||||
# with GLX backend for some users.
|
||||
#
|
||||
# xrender-sync-fence = false
|
||||
|
||||
# GLX backend: Use specified GLSL fragment shader for rendering window
|
||||
# contents. Read the man page for a detailed explanation of the interface.
|
||||
#
|
||||
# window-shader-fg = "default"
|
||||
|
||||
# Use rules to set per-window shaders. Syntax is SHADER_PATH:PATTERN, similar
|
||||
# to opacity-rule. SHADER_PATH can be "default". This overrides window-shader-fg.
|
||||
#
|
||||
# window-shader-fg-rule = [
|
||||
# "my_shader.frag:window_type != 'dock'"
|
||||
# ]
|
||||
|
||||
# Force all windows to be painted with blending. Useful if you
|
||||
# have a glx-fshader-win that could turn opaque pixels transparent.
|
||||
#
|
||||
# force-win-blend = false
|
||||
|
||||
# Do not use EWMH to detect fullscreen windows.
|
||||
# Reverts to checking if a window is fullscreen based only on its size and coordinates.
|
||||
#
|
||||
# no-ewmh-fullscreen = false
|
||||
|
||||
# Dimming bright windows so their brightness doesn't exceed this set value.
|
||||
# Brightness of a window is estimated by averaging all pixels in the window,
|
||||
# so this could comes with a performance hit.
|
||||
# Setting this to 1.0 disables this behaviour. Requires --use-damage to be disabled. (default: 1.0)
|
||||
#
|
||||
# max-brightness = 1.0
|
||||
|
||||
# Make transparent windows clip other windows like non-transparent windows do,
|
||||
# instead of blending on top of them.
|
||||
#
|
||||
# transparent-clipping = false
|
||||
|
||||
# Specify a list of conditions of windows that should never have transparent
|
||||
# clipping applied. Useful for screenshot tools, where you need to be able to
|
||||
# see through transparent parts of the window.
|
||||
#
|
||||
# transparent-clipping-exclude = []
|
||||
|
||||
# Set the log level. Possible values are:
|
||||
# "trace", "debug", "info", "warn", "error"
|
||||
# in increasing level of importance. Case doesn't matter.
|
||||
# If using the "TRACE" log level, it's better to log into a file
|
||||
# using *--log-file*, since it can generate a huge stream of logs.
|
||||
#
|
||||
# log-level = "debug"
|
||||
log-level = "warn";
|
||||
|
||||
# Set the log file.
|
||||
# If *--log-file* is never specified, logs will be written to stderr.
|
||||
# Otherwise, logs will to written to the given file, though some of the early
|
||||
# logs might still be written to the stderr.
|
||||
# When setting this option from the config file, it is recommended to use an absolute path.
|
||||
#
|
||||
# log-file = "/path/to/your/log/file"
|
||||
|
||||
# Show all X errors (for debugging)
|
||||
# show-all-xerrors = false
|
||||
|
||||
# Write process ID to a file.
|
||||
# write-pid-path = "/path/to/your/log/file"
|
||||
|
||||
# Window type settings
|
||||
#
|
||||
# 'WINDOW_TYPE' is one of the 15 window types defined in EWMH standard:
|
||||
# "unknown", "desktop", "dock", "toolbar", "menu", "utility",
|
||||
# "splash", "dialog", "normal", "dropdown_menu", "popup_menu",
|
||||
# "tooltip", "notification", "combo", and "dnd".
|
||||
#
|
||||
# Following per window-type options are available: ::
|
||||
#
|
||||
# fade, shadow:::
|
||||
# Controls window-type-specific shadow and fade settings.
|
||||
#
|
||||
# opacity:::
|
||||
# Controls default opacity of the window type.
|
||||
#
|
||||
# focus:::
|
||||
# Controls whether the window of this type is to be always considered focused.
|
||||
# (By default, all window types except "normal" and "dialog" has this on.)
|
||||
#
|
||||
# full-shadow:::
|
||||
# Controls whether shadow is drawn under the parts of the window that you
|
||||
# normally won't be able to see. Useful when the window has parts of it
|
||||
# transparent, and you want shadows in those areas.
|
||||
#
|
||||
# clip-shadow-above:::
|
||||
# Controls whether shadows that would have been drawn above the window should
|
||||
# be clipped. Useful for dock windows that should have no shadow painted on top.
|
||||
#
|
||||
# redir-ignore:::
|
||||
# Controls whether this type of windows should cause screen to become
|
||||
# redirected again after been unredirected. If you have unredir-if-possible
|
||||
# set, and doesn't want certain window to cause unnecessary screen redirection,
|
||||
# you can set this to `true`.
|
||||
#
|
||||
|
||||
wintypes:
|
||||
{
|
||||
normal = { fade = false; }
|
||||
tooltip = { fade = true; shadow = true; opacity = 0.9; focus = true; full-shadow = false; };
|
||||
dock = { shadow = false; clip-shadow-above = true; }
|
||||
dnd = { shadow = false; }
|
||||
};
|
@ -1,27 +0,0 @@
|
||||
# :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;
|
||||
}
|
@ -1,349 +0,0 @@
|
||||
config.load_autoconfig()
|
||||
|
||||
# c.tabs.tabs_are_windows = True
|
||||
#
|
||||
# c.content.autoplay.global = False
|
||||
|
||||
c.tabs.tabs_are_windows = True
|
||||
c.tabs.show = "never"
|
||||
|
||||
c.content.autoplay = False
|
||||
|
||||
# c.colors.webpage.preferred_color_scheme
|
||||
|
||||
config.bind('h', 'back')
|
||||
config.bind('l', 'forward')
|
||||
config.bind('j', 'scroll-page 0 1')
|
||||
config.bind('k', 'scroll-page 0 -1')
|
||||
|
||||
config.bind('gp', 'mode-enter passthrough')
|
||||
|
||||
c.hints.selectors["bookmarks"] = [
|
||||
"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
|
||||
|
||||
# Text color of the completion widget. May be a single color to use for
|
||||
# all columns or a list of three colors, one for each column.
|
||||
c.colors.completion.fg = base05
|
||||
|
||||
# Background color of the completion widget for odd rows.
|
||||
c.colors.completion.odd.bg = base01
|
||||
|
||||
# Background color of the completion widget for even rows.
|
||||
c.colors.completion.even.bg = base00
|
||||
|
||||
# Foreground color of completion widget category headers.
|
||||
c.colors.completion.category.fg = base0A
|
||||
|
||||
# Background color of the completion widget category headers.
|
||||
c.colors.completion.category.bg = base00
|
||||
|
||||
# Top border color of the completion widget category headers.
|
||||
c.colors.completion.category.border.top = base00
|
||||
|
||||
# Bottom border color of the completion widget category headers.
|
||||
c.colors.completion.category.border.bottom = base00
|
||||
|
||||
# Foreground color of the selected completion item.
|
||||
c.colors.completion.item.selected.fg = base05
|
||||
|
||||
# Background color of the selected completion item.
|
||||
c.colors.completion.item.selected.bg = base02
|
||||
|
||||
# Top border color of the selected completion item.
|
||||
c.colors.completion.item.selected.border.top = base02
|
||||
|
||||
# Bottom border color of the selected completion item.
|
||||
c.colors.completion.item.selected.border.bottom = base02
|
||||
|
||||
# Foreground color of the matched text in the selected completion item.
|
||||
c.colors.completion.item.selected.match.fg = base0B
|
||||
|
||||
# Foreground color of the matched text in the completion.
|
||||
c.colors.completion.match.fg = base0B
|
||||
|
||||
# Color of the scrollbar handle in the completion view.
|
||||
c.colors.completion.scrollbar.fg = base05
|
||||
|
||||
# Color of the scrollbar in the completion view.
|
||||
c.colors.completion.scrollbar.bg = base00
|
||||
|
||||
# Background color of disabled items in the context menu.
|
||||
c.colors.contextmenu.disabled.bg = base01
|
||||
|
||||
# Foreground color of disabled items in the context menu.
|
||||
c.colors.contextmenu.disabled.fg = base04
|
||||
|
||||
# Background color of the context menu. If set to null, the Qt default is used.
|
||||
c.colors.contextmenu.menu.bg = base00
|
||||
|
||||
# Foreground color of the context menu. If set to null, the Qt default is used.
|
||||
c.colors.contextmenu.menu.fg = base05
|
||||
|
||||
# Background color of the context menu’s selected item. If set to null, the Qt default is used.
|
||||
c.colors.contextmenu.selected.bg = base02
|
||||
|
||||
#Foreground color of the context menu’s selected item. If set to null, the Qt default is used.
|
||||
c.colors.contextmenu.selected.fg = base05
|
||||
|
||||
# Background color for the download bar.
|
||||
c.colors.downloads.bar.bg = base00
|
||||
|
||||
# Color gradient start for download text.
|
||||
c.colors.downloads.start.fg = base00
|
||||
|
||||
# Color gradient start for download backgrounds.
|
||||
c.colors.downloads.start.bg = base0D
|
||||
|
||||
# Color gradient end for download text.
|
||||
c.colors.downloads.stop.fg = base00
|
||||
|
||||
# Color gradient stop for download backgrounds.
|
||||
c.colors.downloads.stop.bg = base0C
|
||||
|
||||
# Foreground color for downloads with errors.
|
||||
c.colors.downloads.error.fg = base08
|
||||
|
||||
# Font color for hints.
|
||||
c.colors.hints.fg = base00
|
||||
|
||||
# Background color for hints. Note that you can use a `rgba(...)` value
|
||||
# for transparency.
|
||||
c.colors.hints.bg = base0A
|
||||
|
||||
# Font color for the matched part of hints.
|
||||
c.colors.hints.match.fg = base05
|
||||
|
||||
# Text color for the keyhint widget.
|
||||
c.colors.keyhint.fg = base05
|
||||
|
||||
# Highlight color for keys to complete the current keychain.
|
||||
c.colors.keyhint.suffix.fg = base05
|
||||
|
||||
# Background color of the keyhint widget.
|
||||
c.colors.keyhint.bg = base00
|
||||
|
||||
# Foreground color of an error message.
|
||||
c.colors.messages.error.fg = base00
|
||||
|
||||
# Background color of an error message.
|
||||
c.colors.messages.error.bg = base08
|
||||
|
||||
# Border color of an error message.
|
||||
c.colors.messages.error.border = base08
|
||||
|
||||
# Foreground color of a warning message.
|
||||
c.colors.messages.warning.fg = base00
|
||||
|
||||
# Background color of a warning message.
|
||||
c.colors.messages.warning.bg = base0E
|
||||
|
||||
# Border color of a warning message.
|
||||
c.colors.messages.warning.border = base0E
|
||||
|
||||
# Foreground color of an info message.
|
||||
c.colors.messages.info.fg = base05
|
||||
|
||||
# Background color of an info message.
|
||||
c.colors.messages.info.bg = base00
|
||||
|
||||
# Border color of an info message.
|
||||
c.colors.messages.info.border = base00
|
||||
|
||||
# Foreground color for prompts.
|
||||
c.colors.prompts.fg = base05
|
||||
|
||||
# Border used around UI elements in prompts.
|
||||
c.colors.prompts.border = base00
|
||||
|
||||
# Background color for prompts.
|
||||
c.colors.prompts.bg = base00
|
||||
|
||||
# Background color for the selected item in filename prompts.
|
||||
c.colors.prompts.selected.bg = base02
|
||||
|
||||
# Foreground color for the selected item in filename prompts.
|
||||
c.colors.prompts.selected.fg = base05
|
||||
|
||||
# Foreground color of the statusbar.
|
||||
c.colors.statusbar.normal.fg = base0B
|
||||
|
||||
# Background color of the statusbar.
|
||||
c.colors.statusbar.normal.bg = base00
|
||||
|
||||
# Foreground color of the statusbar in insert mode.
|
||||
c.colors.statusbar.insert.fg = base00
|
||||
|
||||
# Background color of the statusbar in insert mode.
|
||||
c.colors.statusbar.insert.bg = base0D
|
||||
|
||||
# Foreground color of the statusbar in passthrough mode.
|
||||
c.colors.statusbar.passthrough.fg = base00
|
||||
|
||||
# Background color of the statusbar in passthrough mode.
|
||||
c.colors.statusbar.passthrough.bg = base0C
|
||||
|
||||
# Foreground color of the statusbar in private browsing mode.
|
||||
c.colors.statusbar.private.fg = base00
|
||||
|
||||
# Background color of the statusbar in private browsing mode.
|
||||
c.colors.statusbar.private.bg = base01
|
||||
|
||||
# Foreground color of the statusbar in command mode.
|
||||
c.colors.statusbar.command.fg = base05
|
||||
|
||||
# Background color of the statusbar in command mode.
|
||||
c.colors.statusbar.command.bg = base00
|
||||
|
||||
# Foreground color of the statusbar in private browsing + command mode.
|
||||
c.colors.statusbar.command.private.fg = base05
|
||||
|
||||
# Background color of the statusbar in private browsing + command mode.
|
||||
c.colors.statusbar.command.private.bg = base00
|
||||
|
||||
# Foreground color of the statusbar in caret mode.
|
||||
c.colors.statusbar.caret.fg = base00
|
||||
|
||||
# Background color of the statusbar in caret mode.
|
||||
c.colors.statusbar.caret.bg = base0E
|
||||
|
||||
# Foreground color of the statusbar in caret mode with a selection.
|
||||
c.colors.statusbar.caret.selection.fg = base00
|
||||
|
||||
# Background color of the statusbar in caret mode with a selection.
|
||||
c.colors.statusbar.caret.selection.bg = base0D
|
||||
|
||||
# Background color of the progress bar.
|
||||
c.colors.statusbar.progress.bg = base0D
|
||||
|
||||
# Default foreground color of the URL in the statusbar.
|
||||
c.colors.statusbar.url.fg = base05
|
||||
|
||||
# Foreground color of the URL in the statusbar on error.
|
||||
c.colors.statusbar.url.error.fg = base08
|
||||
|
||||
# Foreground color of the URL in the statusbar for hovered links.
|
||||
c.colors.statusbar.url.hover.fg = base05
|
||||
|
||||
# Foreground color of the URL in the statusbar on successful load
|
||||
# (http).
|
||||
c.colors.statusbar.url.success.http.fg = base0C
|
||||
|
||||
# Foreground color of the URL in the statusbar on successful load
|
||||
# (https).
|
||||
c.colors.statusbar.url.success.https.fg = base0B
|
||||
|
||||
# Foreground color of the URL in the statusbar when there's a warning.
|
||||
c.colors.statusbar.url.warn.fg = base0E
|
||||
|
||||
# Background color of the tab bar.
|
||||
c.colors.tabs.bar.bg = base00
|
||||
|
||||
# Color gradient start for the tab indicator.
|
||||
c.colors.tabs.indicator.start = base0D
|
||||
|
||||
# Color gradient end for the tab indicator.
|
||||
c.colors.tabs.indicator.stop = base0C
|
||||
|
||||
# Color for the tab indicator on errors.
|
||||
c.colors.tabs.indicator.error = base08
|
||||
|
||||
# Foreground color of unselected odd tabs.
|
||||
c.colors.tabs.odd.fg = base05
|
||||
|
||||
# Background color of unselected odd tabs.
|
||||
c.colors.tabs.odd.bg = base01
|
||||
|
||||
# Foreground color of unselected even tabs.
|
||||
c.colors.tabs.even.fg = base05
|
||||
|
||||
# Background color of unselected even tabs.
|
||||
c.colors.tabs.even.bg = base00
|
||||
|
||||
# Background color of pinned unselected even tabs.
|
||||
c.colors.tabs.pinned.even.bg = base0C
|
||||
|
||||
# Foreground color of pinned unselected even tabs.
|
||||
c.colors.tabs.pinned.even.fg = base07
|
||||
|
||||
# Background color of pinned unselected odd tabs.
|
||||
c.colors.tabs.pinned.odd.bg = base0B
|
||||
|
||||
# Foreground color of pinned unselected odd tabs.
|
||||
c.colors.tabs.pinned.odd.fg = base07
|
||||
|
||||
# Background color of pinned selected even tabs.
|
||||
c.colors.tabs.pinned.selected.even.bg = base02
|
||||
|
||||
# Foreground color of pinned selected even tabs.
|
||||
c.colors.tabs.pinned.selected.even.fg = base05
|
||||
|
||||
# Background color of pinned selected odd tabs.
|
||||
c.colors.tabs.pinned.selected.odd.bg = base02
|
||||
|
||||
# Foreground color of pinned selected odd tabs.
|
||||
c.colors.tabs.pinned.selected.odd.fg = base05
|
||||
|
||||
# Foreground color of selected odd tabs.
|
||||
c.colors.tabs.selected.odd.fg = base05
|
||||
|
||||
# Background color of selected odd tabs.
|
||||
c.colors.tabs.selected.odd.bg = base02
|
||||
|
||||
# Foreground color of selected even tabs.
|
||||
c.colors.tabs.selected.even.fg = base05
|
||||
|
||||
# Background color of selected even tabs.
|
||||
c.colors.tabs.selected.even.bg = base02
|
||||
|
||||
# Background color for webpages if unset (or empty to use the theme's
|
||||
# color).
|
||||
# c.colors.webpage.bg = base00
|
||||
|
||||
#END SHCHEMES BLOCK
|
@ -1,57 +0,0 @@
|
||||
// ==UserScript==
|
||||
// @name Cinny Theme
|
||||
// @match *://app.cinny.in/*
|
||||
{let style = document.createElement('style');style.innerHTML = `body,
|
||||
.dark-theme,
|
||||
.butter-theme,
|
||||
.silver-theme {
|
||||
--bg-surface: #0f0f0f;
|
||||
--bg-surface-transparent: rgba(15, 15, 15, 0);
|
||||
--bg-surface-low: #1a1a1a;
|
||||
--bg-surface-low-transparent: rgba(26, 26, 26, 0);
|
||||
--bg-surface-extra-low: #242424;
|
||||
--bg-surface-extra-low-transparent: rgba(36, 36, 36, 0);
|
||||
--bg-surface-hover: #242424;
|
||||
--bg-surface-active: #333333;
|
||||
--bg-surface-border: #333333;
|
||||
--bg-primary: hsl(180, 42%, 70%);
|
||||
--bg-primary-hover: hsl(180, 42%, 70%);
|
||||
--bg-primary-active: hsl(180, 42%, 70%);
|
||||
--bg-primary-border: hsl(180, 42%, 70%);
|
||||
--bg-tooltip: #000;
|
||||
--bg-badge: hsl(180, 30%, 90%);
|
||||
--bg-ping: hsl(180, 30%, 90%);
|
||||
--bg-ping-hover: hsl(180, 30%, 90%);
|
||||
--bg-divider: #1a1a1a;
|
||||
--tc-surface-high: hsl(180, 30%, 90%);
|
||||
--tc-surface-normal: hsl(180, 16%, 83%);
|
||||
--tc-surface-normal-low: hsl(180, 10%, 77%);
|
||||
--tc-surface-low: hsl(180, 10%, 77%);
|
||||
--tc-primary-high: hsl(180, 30%, 90%);
|
||||
--tc-primary-normal: hsl(180, 16%, 83%);
|
||||
--tc-primary-low: hsl(180, 10%, 77%);
|
||||
--tc-code: #e565b1;
|
||||
--tc-link: hsl(180, 42%, 70%);
|
||||
--tc-badge: black;
|
||||
--ic-surface-high: hsl(180, 30%, 90%);
|
||||
--ic-surface-normal: hsl(180, 30%, 90%);
|
||||
--ic-surface-low: hsl(180, 30%, 90%);
|
||||
--ic-primary-normal: #ffffff;
|
||||
--bg-overlay: rgba(0, 0, 0, 0.6);
|
||||
--bg-overlay-low: rgba(0, 0, 0, 0.8);
|
||||
--bs-popup: 0 0 16px rgba(0, 0, 0, 0.25);
|
||||
--bs-surface-border: inset 0 0 0 1px var(--bg-surface-border);
|
||||
--bs-surface-outline: 0 0 0 2px var(--bg-surface-border);
|
||||
--bs-primary-border: inset 0 0 0 1px var(--bg-primary-border);
|
||||
--bs-primary-outline: 0 0 0 2px var(--bg-primary-border);
|
||||
--fs-h1: 35.6px;
|
||||
--fs-h2: 23.6px;
|
||||
--fs-s1: 17.6px;
|
||||
--fs-b1: 14.6px;
|
||||
--ls-b1: 0.14px;
|
||||
--fs-b2: 13.2px;
|
||||
--fs-b3: 11.2px;
|
||||
--fw-normal: 350;
|
||||
--font-primary: sans-serif;
|
||||
--font-secondary: sans-serif;
|
||||
}`; document.head.appendChild(style); }
|
@ -1,2 +0,0 @@
|
||||
lessc $1 out.css
|
||||
echo -e "// ==UserScript==\n// @name Cinny Theme\n// @match *://app.cinny.in/*\n{let style = document.createElement('style');style.innerHTML = \`$(cat out.css)\`; document.head.appendChild(style); }" > ../greasemonkey/cinny-theme.js
|
@ -1,67 +0,0 @@
|
||||
|
||||
|
||||
@hue: 180;
|
||||
|
||||
@f_high: hsl(@hue, 30%, 90%);
|
||||
@f_med: hsl(@hue, 16%, 83%);
|
||||
@f_low: hsl(@hue, 10%, 77%);
|
||||
|
||||
|
||||
@b_high: #333333;
|
||||
@b_med: #242424;
|
||||
@b_low: #1a1a1a;
|
||||
@background: #0f0f0f;
|
||||
|
||||
@b_inv: hsl(@hue, 42%, 70%);
|
||||
|
||||
body, .dark-theme, .butter-theme, .silver-theme {
|
||||
--bg-surface: @background;
|
||||
--bg-surface-transparent: fade(@background, 0);
|
||||
--bg-surface-low: @b_low;
|
||||
--bg-surface-low-transparent: fade(@b_low, 0);
|
||||
--bg-surface-extra-low: @b_med;
|
||||
--bg-surface-extra-low-transparent: fade(@b_med, 0);
|
||||
--bg-surface-hover: @b_med;
|
||||
--bg-surface-active: @b_high;
|
||||
--bg-surface-border: @b_high;
|
||||
--bg-primary: @b_inv;
|
||||
--bg-primary-hover: @b_inv;
|
||||
--bg-primary-active: @b_inv;
|
||||
--bg-primary-border: @b_inv;
|
||||
--bg-tooltip: #000;
|
||||
--bg-badge: @f_high;
|
||||
--bg-ping: @f_high;
|
||||
--bg-ping-hover: @f_high;
|
||||
--bg-divider: @b_low;
|
||||
--tc-surface-high: @f_high;
|
||||
--tc-surface-normal: @f_med;
|
||||
--tc-surface-normal-low: @f_low;
|
||||
--tc-surface-low: @f_low;
|
||||
--tc-primary-high: @f_high;
|
||||
--tc-primary-normal: @f_med;
|
||||
--tc-primary-low: @f_low;
|
||||
--tc-code: #e565b1;
|
||||
--tc-link: @b_inv;
|
||||
--tc-badge: black;
|
||||
--ic-surface-high: @f_high;
|
||||
--ic-surface-normal: @f_high;
|
||||
--ic-surface-low: @f_high;
|
||||
--ic-primary-normal: #ffffff;
|
||||
--bg-overlay: rgba(0, 0, 0, 60%);
|
||||
--bg-overlay-low: rgba(0, 0, 0, 80%);
|
||||
--bs-popup: 0 0 16px rgba(0, 0, 0, 25%);
|
||||
--bs-surface-border: inset 0 0 0 1px var(--bg-surface-border);
|
||||
--bs-surface-outline: 0 0 0 2px var(--bg-surface-border);
|
||||
--bs-primary-border: inset 0 0 0 1px var(--bg-primary-border);
|
||||
--bs-primary-outline: 0 0 0 2px var(--bg-primary-border);
|
||||
--fs-h1: 35.6px;
|
||||
--fs-h2: 23.6px;
|
||||
--fs-s1: 17.6px;
|
||||
--fs-b1: 14.6px;
|
||||
--ls-b1: .14px;
|
||||
--fs-b2: 13.2px;
|
||||
--fs-b3: 11.2px;
|
||||
--fw-normal: 350;
|
||||
--font-primary: sans-serif;
|
||||
--font-secondary: sans-serif;
|
||||
}
|
@ -1,3 +0,0 @@
|
||||
echo "$(node process.js $1)$(cat tea.less)" > temp.less
|
||||
lessc temp.less out.css
|
||||
echo "document.head.innerHTML += \`<style>$(cat out.css)</style>\`" | xclip -selection c
|
@ -1,400 +0,0 @@
|
||||
// @background: #eff;
|
||||
// @f_high: #100;
|
||||
// @f_med: #211;
|
||||
// @f_low: #322;
|
||||
// @b_high: #bcc;
|
||||
// @b_med: #cdd;
|
||||
// @b_low: #dee;
|
||||
// @b_inv: #0aa;
|
||||
|
||||
// @f_high: hsl(180, 100%, 95%);
|
||||
// @f_med: hsl(180, 90%, 90%);
|
||||
// @f_low: hsl(180, 75%, 85%);
|
||||
// @background: #111;
|
||||
// @b_high: #2f2f2f;
|
||||
// @b_med: #202020;
|
||||
// @b_low: #1f1f1f;
|
||||
// @b_high: #333;
|
||||
// @b_med: @b_low;
|
||||
// @b_low: #222;
|
||||
|
||||
@f_high: #220000;
|
||||
@f_med: #441100;
|
||||
@f_low: #662200;
|
||||
|
||||
// @b_high: hsl(0, 0%, 84%);
|
||||
// @b_med: hsl(0,0%,88%);
|
||||
// @b_low: hsl(0,0%,90%);
|
||||
// @background: hsl(0,0%,94%);
|
||||
@b_high: #d6d6d6;
|
||||
@b_med: #e0e0e0;
|
||||
@b_low: #e6e6e6;
|
||||
@background: #f0f0f0;
|
||||
|
||||
@b_inv: #b40;
|
||||
|
||||
@primary: @f_high; // primary color used in main texts
|
||||
@secondary: @f_med; // secondary color used in some texts and text based buttons
|
||||
@tertiary: @f_med; // tertiary color used in other colored texts
|
||||
@fg: @f_high;
|
||||
@bg0: @background;
|
||||
@bg1: @b_low;
|
||||
@bg2: @b_med;
|
||||
@bg3: @b_med;
|
||||
@bg4: @b_high;
|
||||
@red: hwb(357 45% 7%);
|
||||
@orange: hwb(39 45% 13%);
|
||||
@yellow: hwb(39 45% 13%);
|
||||
@green: hwb(94 51% 21%);
|
||||
@cyan: hwb(184 36% 24%);
|
||||
@blue: #6cb6eb;
|
||||
@purple: #d38aea;
|
||||
@grey: #758094;
|
||||
@red-bg: #55393d;
|
||||
@green-bg: #394634;
|
||||
@blue-bg: #354157;
|
||||
@yellow-bg: #4e432f;
|
||||
@button1: @b_inv;
|
||||
@button2: @b_inv;
|
||||
@button-red: @red;
|
||||
@key: @red;
|
||||
@operator: @purple;
|
||||
@string: @green;
|
||||
@value: @green;
|
||||
@type: @yellow;
|
||||
@function: @blue;
|
||||
@special: @cyan;
|
||||
|
||||
:root {
|
||||
--is-dark-theme: true;
|
||||
--color-primary: @primary;
|
||||
--color-primary-contrast: @bg0;
|
||||
--color-primary-dark-1: @primary;
|
||||
--color-primary-dark-2: mix(@fg, @primary, 16.7%);
|
||||
--color-primary-dark-3: mix(@fg, @primary, 33.3%);
|
||||
--color-primary-dark-4: mix(@fg, @primary, 50%);
|
||||
--color-primary-dark-5: mix(@fg, @primary, 66.6%);
|
||||
--color-primary-dark-6: mix(@fg, @primary, 83.3%);
|
||||
--color-primary-dark-7: @fg;
|
||||
--color-primary-light-1: @primary;
|
||||
--color-primary-light-2: mix(@bg2, @primary, 16.7%);
|
||||
--color-primary-light-3: mix(@bg2, @primary, 33.3%);
|
||||
--color-primary-light-4: mix(@bg2, @primary, 50%);
|
||||
--color-primary-light-5: mix(@bg2, @primary, 66.6%);
|
||||
--color-primary-light-6: mix(@bg2, @primary, 83.3%);
|
||||
--color-primary-light-7: @bg2;
|
||||
--color-primary-alpha-10: fade(@primary, 10%);
|
||||
--color-primary-alpha-20: fade(@primary, 20%);
|
||||
--color-primary-alpha-30: fade(@primary, 30%);
|
||||
--color-primary-alpha-40: fade(@primary, 40%);
|
||||
--color-primary-alpha-50: fade(@primary, 50%);
|
||||
--color-primary-alpha-60: fade(@primary, 60%);
|
||||
--color-primary-alpha-70: fade(@primary, 70%);
|
||||
--color-primary-alpha-80: fade(@primary, 80%);
|
||||
--color-primary-alpha-90: fade(@primary, 90%);
|
||||
--color-secondary: @bg4;
|
||||
--color-secondary-dark-1: @bg4;
|
||||
--color-secondary-dark-2: mix(@fg, @bg4, 8.3%);
|
||||
--color-secondary-dark-3: mix(@fg, @bg4, 16.7%);
|
||||
--color-secondary-dark-4: mix(@fg, @bg4, 25%);
|
||||
--color-secondary-dark-5: mix(@fg, @bg4, 33.3%);
|
||||
--color-secondary-dark-6: mix(@fg, @bg4, 41.7%);
|
||||
--color-secondary-dark-7: mix(@fg, @bg4, 50%);
|
||||
--color-secondary-dark-8: mix(@fg, @bg4, 58.3%);
|
||||
--color-secondary-dark-9: mix(@fg, @bg4, 66.7%);
|
||||
--color-secondary-dark-10: mix(@fg, @bg4, 75%);
|
||||
--color-secondary-dark-11: mix(@fg, @bg4, 83.3%);
|
||||
--color-secondary-dark-12: mix(@fg, @bg4, 91.7%);
|
||||
--color-secondary-dark-13: @fg;
|
||||
--color-secondary-light-1: @bg4;
|
||||
--color-secondary-light-2: @bg3;
|
||||
--color-secondary-light-3: @bg2;
|
||||
--color-secondary-light-4: @bg1;
|
||||
--color-secondary-alpha-10: fade(@bg4, 10%);
|
||||
--color-secondary-alpha-20: fade(@bg4, 20%);
|
||||
--color-secondary-alpha-30: fade(@bg4, 30%);
|
||||
--color-secondary-alpha-40: fade(@bg4, 40%);
|
||||
--color-secondary-alpha-50: fade(@bg4, 50%);
|
||||
--color-secondary-alpha-60: fade(@bg4, 60%);
|
||||
--color-secondary-alpha-70: fade(@bg4, 70%);
|
||||
--color-secondary-alpha-80: fade(@bg4, 80%);
|
||||
--color-secondary-alpha-90: fade(@bg4, 90%);
|
||||
/* colors */
|
||||
--color-red: @red;
|
||||
--color-orange: @orange;
|
||||
--color-yellow: @yellow;
|
||||
--color-olive: @green;
|
||||
--color-green: @green;
|
||||
--color-teal: @cyan;
|
||||
--color-blue: @blue;
|
||||
--color-violet: @purple;
|
||||
--color-purple: @purple;
|
||||
--color-pink: @purple;
|
||||
--color-brown: @orange;
|
||||
--color-grey: @grey;
|
||||
/* light variants */
|
||||
--color-red-light: @red;
|
||||
--color-orange-light: @orange;
|
||||
--color-yellow-light: @yellow;
|
||||
--color-olive-light: @green;
|
||||
--color-green-light: @green;
|
||||
--color-teal-light: @cyan;
|
||||
--color-blue-light: @blue;
|
||||
--color-violet-light: @purple;
|
||||
--color-purple-light: @purple;
|
||||
--color-pink-light: @purple;
|
||||
--color-brown-light: @orange;
|
||||
--color-grey-light: @grey;
|
||||
/* other colors */
|
||||
--color-black: @bg2;
|
||||
--color-gold: @orange;
|
||||
--color-white: @bg0;
|
||||
--color-diff-removed-word-bg: mix(@red-bg, @red, 70%);
|
||||
--color-diff-added-word-bg: mix(@green-bg, @green, 70%);
|
||||
--color-diff-removed-row-bg: @red-bg;
|
||||
--color-diff-moved-row-bg: @blue-bg;
|
||||
--color-diff-added-row-bg: @green-bg;
|
||||
--color-diff-removed-row-border: mix(@red-bg, @red, 50%);
|
||||
--color-diff-moved-row-border: mix(@blue-bg, @blue, 50%);
|
||||
--color-diff-added-row-border: mix(@green-bg, @green, 50%);
|
||||
--color-diff-inactive: @bg2;
|
||||
--color-error-border: mix(@red-bg, @red, 50%);
|
||||
--color-error-bg: @red-bg;
|
||||
--color-error-text: @red;
|
||||
--color-success-border: mix(@green-bg, @green, 50%);
|
||||
--color-success-bg: @green-bg;
|
||||
--color-success-text: @green;
|
||||
--color-warning-border: mix(@yellow-bg, @yellow, 50%);
|
||||
--color-warning-bg: @yellow-bg;
|
||||
--color-warning-text: @yellow;
|
||||
--color-info-border: mix(@blue-bg, @blue, 50%);
|
||||
--color-info-bg: @blue-bg;
|
||||
--color-info-text: @blue;
|
||||
/* target-based colors */
|
||||
--color-body: @bg0;
|
||||
--color-box-header: @bg3;
|
||||
// --color-box-header: @bg3;
|
||||
--color-box-body: @bg1;
|
||||
--color-box-body-highlight: @bg2;
|
||||
--color-text-dark: @secondary;
|
||||
--color-text: @fg;
|
||||
--color-text-hover: fade(@fg, 80%);
|
||||
--color-text-light: @tertiary;
|
||||
--color-text-light-1: @tertiary;
|
||||
--color-text-light-2: @secondary;
|
||||
--color-text-light-3: @secondary;
|
||||
--color-footer: @bg1;
|
||||
--color-timeline: @bg4;
|
||||
--color-input-text: @fg;
|
||||
--color-input-background: @bg0;
|
||||
--color-input-toggle-background: @bg1;
|
||||
--color-input-border: @bg4;
|
||||
--color-input-border-hover: mix(@bg4, @grey, 50%);
|
||||
--color-navbar: @bg1;
|
||||
--color-navbar-transparent: @bg1;
|
||||
--color-nav-bg: @bg1;
|
||||
--color-nav-hover-bg: @bg3;
|
||||
--color-light: @bg1;
|
||||
--color-light-mimic-enabled: rgba(0, 0, 0, calc(40 / 255 * 222 / 255 / var(--opacity-disabled)));
|
||||
--color-light-border: @bg4;
|
||||
--color-hover: fade(@bg4, 50%);
|
||||
--color-active: fade(@bg4, 50%);
|
||||
--color-menu: @bg1;
|
||||
--color-card: @bg1;
|
||||
--color-markup-table-row: @bg3;
|
||||
--color-markup-code-block: @bg0;
|
||||
--color-button: @bg3;
|
||||
--color-code-bg: @bg0;
|
||||
--color-code-sidebar-bg: @bg1;
|
||||
--color-shadow: #00000060;
|
||||
--color-secondary-bg: @bg1;
|
||||
--color-text-focus: #fff;
|
||||
--color-expand-button: @bg2;
|
||||
--color-placeholder-text: @tertiary;
|
||||
--color-editor-line-highlight: @bg1;
|
||||
--color-project-board-bg: @bg0;
|
||||
--color-project-board-light-label: @primary;
|
||||
--color-caret: var(--color-text); /* should ideally be --color-text-dark, see #15651 */
|
||||
--color-reaction-bg: #ffffff12;
|
||||
--color-reaction-active-bg: var(--color-primary-alpha-40);
|
||||
--color-header-bar: @bg1;
|
||||
--color-label-bg: @bg4;
|
||||
--color-label-text: @tertiary;
|
||||
--color-label-active-bg: @bg4;
|
||||
--color-accent: var(--color-primary-light-1);
|
||||
--color-small-accent: var(--color-primary-light-5);
|
||||
--color-active-line: @bg1;
|
||||
--color-header-wrapper: @bg2;
|
||||
|
||||
accent-color: var(--color-accent);
|
||||
color-scheme: light;
|
||||
}
|
||||
|
||||
.chroma .nx {
|
||||
color: @fg;
|
||||
}
|
||||
.chroma .c, .chroma .c1, .chroma .ch, .chroma .cm, .chroma .sd {
|
||||
color: @grey;
|
||||
}
|
||||
.chroma .k, .chroma .kc, .chroma .kd, .chroma .kn, .chroma .kp, .chroma .kr {
|
||||
color: @key;
|
||||
}
|
||||
.chroma .o, .chroma .ow {
|
||||
color: @operator;
|
||||
}
|
||||
.chroma .s, .chroma .s1, .chroma .s2, .chroma .sa, .chroma .sb, .chroma .sc, .chroma .sh, .chroma .si, .chroma .sr, .chroma .ss, .chroma .sx, .chroma .nt, .chroma .cpf {
|
||||
color: @string;
|
||||
}
|
||||
.chroma .m, .chroma .mb, .chroma .mf, .chroma .mh, .chroma .mi, .chroma .mo, .chroma .nl {
|
||||
color: @value;
|
||||
}
|
||||
.chroma .kt, .chroma .nc, .chroma .nn, .chroma .nv {
|
||||
color: @type;
|
||||
}
|
||||
.chroma .nf, .chroma .nb, .chroma .na {
|
||||
color: @function;
|
||||
}
|
||||
.chroma .bp, .chroma .cp, .chroma .ne, .chroma .nd, .chroma .se {
|
||||
color: @special;
|
||||
}
|
||||
|
||||
/* primary buttons */
|
||||
.ui.primary.button, .ui.primary.buttons .button {
|
||||
background: @button1;
|
||||
background-color: @button1 !important;
|
||||
color: @bg0;
|
||||
}
|
||||
|
||||
.ui.primary.button:hover, .ui.primary.buttons .button:hover {
|
||||
background: fade(@button1, 80%);
|
||||
background-color: fade(@button1, 80%) !important;
|
||||
color: @bg0;
|
||||
}
|
||||
|
||||
.ui.grey.labels .label, .ui.ui.ui.grey.label, .ui.grey.button, .ui.grey.buttons .button {
|
||||
color: @bg0;
|
||||
background-color: @button1;
|
||||
border-color: @button1;
|
||||
}
|
||||
|
||||
.ui.grey.labels .label:hover, .ui.ui.ui.grey.label:hover, .ui.grey.button:hover, .ui.grey.buttons .button:hover {
|
||||
color: @bg0;
|
||||
background-color: @button1;
|
||||
border-color: @button1;
|
||||
}
|
||||
|
||||
/* secondary buttons */
|
||||
.ui.green.buttons .button, .ui.green.button {
|
||||
background: @button2;
|
||||
background-color: @button2;
|
||||
color: @bg0;
|
||||
}
|
||||
|
||||
.ui.green.buttons .button:hover, .ui.green.button:hover {
|
||||
background: fade(@button2, 80%);
|
||||
background-color: fade(@button2, 80%);
|
||||
color: @bg0;
|
||||
}
|
||||
|
||||
/* text based buttons (purple) */
|
||||
.ui.labeled.button.disabled>.button, .ui.basic.buttons .button, .ui.basic.button {
|
||||
color: @secondary;
|
||||
}
|
||||
|
||||
.ui.labeled.button.disabled>.button:hover, .ui.basic.buttons .button:hover, .ui.basic.button:hover {
|
||||
color: @secondary;
|
||||
}
|
||||
|
||||
/* repo title && header */
|
||||
.repo-title {
|
||||
color: @secondary;
|
||||
}
|
||||
|
||||
/* star number && fork number */
|
||||
.repo-buttons button[disabled] ~ .label,
|
||||
.repo-buttons .ui.labeled.button.disabled > .label {
|
||||
color: @primary;
|
||||
}
|
||||
|
||||
.ui.basic.labels .label, .ui.basic.label {
|
||||
color: @primary;
|
||||
}
|
||||
|
||||
/* hover on commits, branch, tags in project home page */
|
||||
.repository .ui.segment.sub-menu .list .item a:hover,
|
||||
.ui.tabular.menu .item:hover {
|
||||
color: var(--color-text-hover);
|
||||
}
|
||||
|
||||
/* commit label */
|
||||
.ui.primary.labels .label, .ui.ui.ui.primary.label {
|
||||
color: @bg0;
|
||||
}
|
||||
|
||||
/* issue label */
|
||||
.ui.green.labels .label, .ui.ui.ui.green.label {
|
||||
color: @bg0;
|
||||
}
|
||||
|
||||
/* grey button (rss feed button in repository home page) */
|
||||
i.grey.icon.icon.icon.icon {
|
||||
color: @grey
|
||||
}
|
||||
|
||||
/* scroll bar */
|
||||
* {
|
||||
scrollbar-color: @secondary transparent !important;
|
||||
}
|
||||
::-webkit-scrollbar {
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
}
|
||||
::-webkit-scrollbar-thumb {
|
||||
box-shadow: inset 0 0 0 6px @secondary !important;
|
||||
border: 2px solid transparent;
|
||||
border-radius: 5px !important;
|
||||
}
|
||||
::-webkit-scrollbar-thumb:window-inactive {
|
||||
box-shadow: inset 0 0 0 6px @secondary !important;
|
||||
}
|
||||
::-webkit-scrollbar-thumb:hover {
|
||||
box-shadow: inset 0 0 0 6px @secondary !important;
|
||||
}
|
||||
::-webkit-scrollbar-corner {
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
/* red buttons */
|
||||
.ui.red.labels .label, .ui.ui.ui.red.label, .ui.red.button, .ui.red.buttons .button {
|
||||
background: @button-red;
|
||||
background-color: @button-red;
|
||||
color: @bg0;
|
||||
}
|
||||
|
||||
.ui.red.labels .label:hover, .ui.ui.ui.red.label:hover, .ui.red.button:hover, .ui.red.buttons .button:hover {
|
||||
background: fade(@button-red, 80%);
|
||||
background-color: fade(@button-red, 80%);
|
||||
color: @bg0;
|
||||
}
|
||||
|
||||
/* grey buttons */
|
||||
.ui.labels a.label, a.ui.label {
|
||||
background-color: @bg1;
|
||||
}
|
||||
|
||||
.ui.labels a.label:hover, a.ui.label:hover {
|
||||
background-color: @bg0;
|
||||
}
|
||||
|
||||
/* orange buttons */
|
||||
.ui.orange.labels .label, .ui.ui.ui.orange.label, .ui.orange.button, .ui.orange.buttons .button {
|
||||
background: @orange;
|
||||
background-color: @orange;
|
||||
color: @bg0;
|
||||
}
|
||||
|
||||
.ui.orange.labels .label:hover, .ui.ui.ui.orange.label:hover, .ui.orange.button:hover, .ui.orange.buttons .button:hover {
|
||||
background: fade(@orange, 80%);
|
||||
background-color: fade(@orange, 80%);
|
||||
color: @bg0;
|
||||
}
|
@ -1,54 +0,0 @@
|
||||
body,
|
||||
.dark-theme,
|
||||
.butter-theme,
|
||||
.silver-theme {
|
||||
--bg-surface: #0f0f0f;
|
||||
--bg-surface-transparent: rgba(15, 15, 15, 0);
|
||||
--bg-surface-low: #1a1a1a;
|
||||
--bg-surface-low-transparent: rgba(26, 26, 26, 0);
|
||||
--bg-surface-extra-low: #242424;
|
||||
--bg-surface-extra-low-transparent: rgba(36, 36, 36, 0);
|
||||
--bg-surface-hover: #242424;
|
||||
--bg-surface-active: #333333;
|
||||
--bg-surface-border: #333333;
|
||||
--bg-primary: hsl(180, 42%, 70%);
|
||||
--bg-primary-hover: hsl(180, 42%, 70%);
|
||||
--bg-primary-active: hsl(180, 42%, 70%);
|
||||
--bg-primary-border: hsl(180, 42%, 70%);
|
||||
--bg-tooltip: #000;
|
||||
--bg-badge: hsl(180, 30%, 90%);
|
||||
--bg-ping: hsl(180, 30%, 90%);
|
||||
--bg-ping-hover: hsl(180, 30%, 90%);
|
||||
--bg-divider: #1a1a1a;
|
||||
--tc-surface-high: hsl(180, 30%, 90%);
|
||||
--tc-surface-normal: hsl(180, 16%, 83%);
|
||||
--tc-surface-normal-low: hsl(180, 10%, 77%);
|
||||
--tc-surface-low: hsl(180, 10%, 77%);
|
||||
--tc-primary-high: hsl(180, 30%, 90%);
|
||||
--tc-primary-normal: hsl(180, 16%, 83%);
|
||||
--tc-primary-low: hsl(180, 10%, 77%);
|
||||
--tc-code: #e565b1;
|
||||
--tc-link: hsl(180, 42%, 70%);
|
||||
--tc-badge: black;
|
||||
--ic-surface-high: hsl(180, 30%, 90%);
|
||||
--ic-surface-normal: hsl(180, 30%, 90%);
|
||||
--ic-surface-low: hsl(180, 30%, 90%);
|
||||
--ic-primary-normal: #ffffff;
|
||||
--bg-overlay: rgba(0, 0, 0, 0.6);
|
||||
--bg-overlay-low: rgba(0, 0, 0, 0.8);
|
||||
--bs-popup: 0 0 16px rgba(0, 0, 0, 0.25);
|
||||
--bs-surface-border: inset 0 0 0 1px var(--bg-surface-border);
|
||||
--bs-surface-outline: 0 0 0 2px var(--bg-surface-border);
|
||||
--bs-primary-border: inset 0 0 0 1px var(--bg-primary-border);
|
||||
--bs-primary-outline: 0 0 0 2px var(--bg-primary-border);
|
||||
--fs-h1: 35.6px;
|
||||
--fs-h2: 23.6px;
|
||||
--fs-s1: 17.6px;
|
||||
--fs-b1: 14.6px;
|
||||
--ls-b1: 0.14px;
|
||||
--fs-b2: 13.2px;
|
||||
--fs-b3: 11.2px;
|
||||
--fw-normal: 350;
|
||||
--font-primary: sans-serif;
|
||||
--font-secondary: sans-serif;
|
||||
}
|
@ -1,14 +0,0 @@
|
||||
const Path = require('path')
|
||||
const fs = require('fs')
|
||||
|
||||
let target = process.argv[2]
|
||||
|
||||
let path = Path.isAbsolute(target) ? target : Path.join(process.cwd(), target)
|
||||
|
||||
let out = fs.readFileSync(path).toString('utf-8').replaceAll(
|
||||
/ <\w+ .*? id='([a-z_]+)' fill='#([A-Za-z0-9]+)'><\/\w+>/g,
|
||||
'@$1: #$2;'
|
||||
)
|
||||
.split('\n').filter(line => line.startsWith('@')).join('\n')
|
||||
|
||||
console.log(out)
|
@ -1,389 +0,0 @@
|
||||
// <circle .*? id='([a-z_]+)' fill='#([A-Za-z0-9]+)'></circle>
|
||||
// to
|
||||
// @$1: #$2;
|
||||
|
||||
// @background: #0A0F14;
|
||||
// @f_high: #FFFFFF;
|
||||
// @f_med: #98D1CE;
|
||||
// @f_low: #EDB54B;
|
||||
// @f_inv: #C33027;
|
||||
// @b_high: #093748;
|
||||
// @b_med: #081F2D;
|
||||
// @b_low: #10151B;
|
||||
// @b_inv: #8FAF9F;
|
||||
|
||||
// @background: #E0B1CB;
|
||||
// @f_high: #231942;
|
||||
// @f_med: #48416d;
|
||||
// @f_low: #917296;
|
||||
// @f_inv: #E0B1CB;
|
||||
// @b_high: #5E548E;
|
||||
// @b_med: #FFFFFF;
|
||||
// @b_low: #BE95C4;
|
||||
// @b_inv: #9F86C0;
|
||||
|
||||
@primary: @f_high; // primary color used in main texts
|
||||
@secondary: @f_med; // secondary color used in some texts and text based buttons
|
||||
@tertiary: @f_med; // tertiary color used in other colored texts
|
||||
@fg: @f_high;
|
||||
@bg0: @background;
|
||||
@bg1: @b_low;
|
||||
@bg2: @b_med;
|
||||
@bg3: @b_high;
|
||||
@bg4: @b_high;
|
||||
@red: #ec7279;
|
||||
@orange: #deb974;
|
||||
@yellow: #deb974;
|
||||
@green: #a0c980;
|
||||
@cyan: #5dbbc1;
|
||||
@blue: #6cb6eb;
|
||||
@purple: #d38aea;
|
||||
@grey: #758094;
|
||||
@red-bg: #55393d;
|
||||
@green-bg: #394634;
|
||||
@blue-bg: #354157;
|
||||
@yellow-bg: #4e432f;
|
||||
@button1: @b_inv;
|
||||
@button2: @b_inv;
|
||||
@button-red: @red;
|
||||
@key: @red;
|
||||
@operator: @purple;
|
||||
@string: @green;
|
||||
@value: @green;
|
||||
@type: @yellow;
|
||||
@function: @blue;
|
||||
@special: @cyan;
|
||||
|
||||
:root {
|
||||
--is-dark-theme: true;
|
||||
--color-primary: @primary;
|
||||
--color-primary-contrast: @bg0;
|
||||
--color-primary-dark-1: @primary;
|
||||
--color-primary-dark-2: mix(@fg, @primary, 16.7%);
|
||||
--color-primary-dark-3: mix(@fg, @primary, 33.3%);
|
||||
--color-primary-dark-4: mix(@fg, @primary, 50%);
|
||||
--color-primary-dark-5: mix(@fg, @primary, 66.6%);
|
||||
--color-primary-dark-6: mix(@fg, @primary, 83.3%);
|
||||
--color-primary-dark-7: @fg;
|
||||
--color-primary-light-1: @primary;
|
||||
--color-primary-light-2: mix(@bg2, @primary, 16.7%);
|
||||
--color-primary-light-3: mix(@bg2, @primary, 33.3%);
|
||||
--color-primary-light-4: mix(@bg2, @primary, 50%);
|
||||
--color-primary-light-5: mix(@bg2, @primary, 66.6%);
|
||||
--color-primary-light-6: mix(@bg2, @primary, 83.3%);
|
||||
--color-primary-light-7: @bg2;
|
||||
--color-primary-alpha-10: fade(@primary, 10%);
|
||||
--color-primary-alpha-20: fade(@primary, 20%);
|
||||
--color-primary-alpha-30: fade(@primary, 30%);
|
||||
--color-primary-alpha-40: fade(@primary, 40%);
|
||||
--color-primary-alpha-50: fade(@primary, 50%);
|
||||
--color-primary-alpha-60: fade(@primary, 60%);
|
||||
--color-primary-alpha-70: fade(@primary, 70%);
|
||||
--color-primary-alpha-80: fade(@primary, 80%);
|
||||
--color-primary-alpha-90: fade(@primary, 90%);
|
||||
--color-secondary: @bg4;
|
||||
--color-secondary-dark-1: @bg4;
|
||||
--color-secondary-dark-2: mix(@fg, @bg4, 8.3%);
|
||||
--color-secondary-dark-3: mix(@fg, @bg4, 16.7%);
|
||||
--color-secondary-dark-4: mix(@fg, @bg4, 25%);
|
||||
--color-secondary-dark-5: mix(@fg, @bg4, 33.3%);
|
||||
--color-secondary-dark-6: mix(@fg, @bg4, 41.7%);
|
||||
--color-secondary-dark-7: mix(@fg, @bg4, 50%);
|
||||
--color-secondary-dark-8: mix(@fg, @bg4, 58.3%);
|
||||
--color-secondary-dark-9: mix(@fg, @bg4, 66.7%);
|
||||
--color-secondary-dark-10: mix(@fg, @bg4, 75%);
|
||||
--color-secondary-dark-11: mix(@fg, @bg4, 83.3%);
|
||||
--color-secondary-dark-12: mix(@fg, @bg4, 91.7%);
|
||||
--color-secondary-dark-13: @fg;
|
||||
--color-secondary-light-1: @bg4;
|
||||
--color-secondary-light-2: @bg3;
|
||||
--color-secondary-light-3: @bg2;
|
||||
--color-secondary-light-4: @bg1;
|
||||
--color-secondary-alpha-10: fade(@bg4, 10%);
|
||||
--color-secondary-alpha-20: fade(@bg4, 20%);
|
||||
--color-secondary-alpha-30: fade(@bg4, 30%);
|
||||
--color-secondary-alpha-40: fade(@bg4, 40%);
|
||||
--color-secondary-alpha-50: fade(@bg4, 50%);
|
||||
--color-secondary-alpha-60: fade(@bg4, 60%);
|
||||
--color-secondary-alpha-70: fade(@bg4, 70%);
|
||||
--color-secondary-alpha-80: fade(@bg4, 80%);
|
||||
--color-secondary-alpha-90: fade(@bg4, 90%);
|
||||
/* colors */
|
||||
--color-red: @red;
|
||||
--color-orange: @orange;
|
||||
--color-yellow: @yellow;
|
||||
--color-olive: @green;
|
||||
--color-green: @green;
|
||||
--color-teal: @cyan;
|
||||
--color-blue: @blue;
|
||||
--color-violet: @purple;
|
||||
--color-purple: @purple;
|
||||
--color-pink: @purple;
|
||||
--color-brown: @orange;
|
||||
--color-grey: @grey;
|
||||
/* light variants */
|
||||
--color-red-light: @red;
|
||||
--color-orange-light: @orange;
|
||||
--color-yellow-light: @yellow;
|
||||
--color-olive-light: @green;
|
||||
--color-green-light: @green;
|
||||
--color-teal-light: @cyan;
|
||||
--color-blue-light: @blue;
|
||||
--color-violet-light: @purple;
|
||||
--color-purple-light: @purple;
|
||||
--color-pink-light: @purple;
|
||||
--color-brown-light: @orange;
|
||||
--color-grey-light: @grey;
|
||||
/* other colors */
|
||||
--color-black: @bg2;
|
||||
--color-gold: @orange;
|
||||
--color-white: @bg0;
|
||||
--color-diff-removed-word-bg: mix(@red-bg, @red, 70%);
|
||||
--color-diff-added-word-bg: mix(@green-bg, @green, 70%);
|
||||
--color-diff-removed-row-bg: @red-bg;
|
||||
--color-diff-moved-row-bg: @blue-bg;
|
||||
--color-diff-added-row-bg: @green-bg;
|
||||
--color-diff-removed-row-border: mix(@red-bg, @red, 50%);
|
||||
--color-diff-moved-row-border: mix(@blue-bg, @blue, 50%);
|
||||
--color-diff-added-row-border: mix(@green-bg, @green, 50%);
|
||||
--color-diff-inactive: @bg2;
|
||||
--color-error-border: mix(@red-bg, @red, 50%);
|
||||
--color-error-bg: @red-bg;
|
||||
--color-error-text: @red;
|
||||
--color-success-border: mix(@green-bg, @green, 50%);
|
||||
--color-success-bg: @green-bg;
|
||||
--color-success-text: @green;
|
||||
--color-warning-border: mix(@yellow-bg, @yellow, 50%);
|
||||
--color-warning-bg: @yellow-bg;
|
||||
--color-warning-text: @yellow;
|
||||
--color-info-border: mix(@blue-bg, @blue, 50%);
|
||||
--color-info-bg: @blue-bg;
|
||||
--color-info-text: @blue;
|
||||
/* target-based colors */
|
||||
--color-body: @bg0;
|
||||
--color-box-header: @bg3;
|
||||
// --color-box-header: @bg3;
|
||||
--color-box-body: @bg1;
|
||||
--color-box-body-highlight: @bg2;
|
||||
--color-text-dark: @secondary;
|
||||
--color-text: @fg;
|
||||
--color-text-hover: fade(@fg, 80%);
|
||||
--color-text-light: @tertiary;
|
||||
--color-text-light-1: @tertiary;
|
||||
--color-text-light-2: @secondary;
|
||||
--color-text-light-3: @secondary;
|
||||
--color-footer: @bg1;
|
||||
--color-timeline: @bg4;
|
||||
--color-input-text: @fg;
|
||||
--color-input-background: @bg0;
|
||||
--color-input-toggle-background: @bg1;
|
||||
--color-input-border: @bg4;
|
||||
--color-input-border-hover: mix(@bg4, @grey, 50%);
|
||||
--color-navbar: @bg1;
|
||||
--color-navbar-transparent: @bg1;
|
||||
--color-nav-bg: @bg1;
|
||||
--color-nav-hover-bg: @bg3;
|
||||
--color-light: @bg1;
|
||||
--color-light-mimic-enabled: rgba(0, 0, 0, calc(40 / 255 * 222 / 255 / var(--opacity-disabled)));
|
||||
--color-light-border: @bg4;
|
||||
--color-hover: fade(@bg4, 50%);
|
||||
--color-active: fade(@bg4, 50%);
|
||||
--color-menu: @bg1;
|
||||
--color-card: @bg1;
|
||||
--color-markup-table-row: @bg3;
|
||||
--color-markup-code-block: @bg0;
|
||||
--color-button: @bg3;
|
||||
--color-code-bg: @bg0;
|
||||
--color-code-sidebar-bg: @bg1;
|
||||
--color-shadow: #00000060;
|
||||
--color-secondary-bg: @bg1;
|
||||
--color-text-focus: #fff;
|
||||
--color-expand-button: @bg2;
|
||||
--color-placeholder-text: @tertiary;
|
||||
--color-editor-line-highlight: @bg1;
|
||||
--color-project-board-bg: @bg0;
|
||||
--color-project-board-light-label: @primary;
|
||||
--color-caret: var(--color-text); /* should ideally be --color-text-dark, see #15651 */
|
||||
--color-reaction-bg: #ffffff12;
|
||||
--color-reaction-active-bg: var(--color-primary-alpha-40);
|
||||
--color-header-bar: @bg1;
|
||||
--color-label-bg: @bg4;
|
||||
--color-label-text: @tertiary;
|
||||
--color-label-active-bg: @bg4;
|
||||
--color-accent: var(--color-primary-light-1);
|
||||
--color-small-accent: var(--color-primary-light-5);
|
||||
--color-active-line: @bg1;
|
||||
--color-header-wrapper: @bg2;
|
||||
|
||||
accent-color: var(--color-accent);
|
||||
color-scheme: dark;
|
||||
}
|
||||
|
||||
.chroma .nx {
|
||||
color: @fg;
|
||||
}
|
||||
.chroma .c, .chroma .c1, .chroma .ch, .chroma .cm, .chroma .sd {
|
||||
color: @grey;
|
||||
}
|
||||
.chroma .k, .chroma .kc, .chroma .kd, .chroma .kn, .chroma .kp, .chroma .kr {
|
||||
color: @key;
|
||||
}
|
||||
.chroma .o, .chroma .ow {
|
||||
color: @operator;
|
||||
}
|
||||
.chroma .s, .chroma .s1, .chroma .s2, .chroma .sa, .chroma .sb, .chroma .sc, .chroma .sh, .chroma .si, .chroma .sr, .chroma .ss, .chroma .sx, .chroma .nt, .chroma .cpf {
|
||||
color: @string;
|
||||
}
|
||||
.chroma .m, .chroma .mb, .chroma .mf, .chroma .mh, .chroma .mi, .chroma .mo, .chroma .nl {
|
||||
color: @value;
|
||||
}
|
||||
.chroma .kt, .chroma .nc, .chroma .nn, .chroma .nv {
|
||||
color: @type;
|
||||
}
|
||||
.chroma .nf, .chroma .nb, .chroma .na {
|
||||
color: @function;
|
||||
}
|
||||
.chroma .bp, .chroma .cp, .chroma .ne, .chroma .nd, .chroma .se {
|
||||
color: @special;
|
||||
}
|
||||
|
||||
/* primary buttons */
|
||||
.ui.primary.button, .ui.primary.buttons .button {
|
||||
background: @button1;
|
||||
background-color: @button1 !important;
|
||||
color: @bg0;
|
||||
}
|
||||
|
||||
.ui.primary.button:hover, .ui.primary.buttons .button:hover {
|
||||
background: fade(@button1, 80%);
|
||||
background-color: fade(@button1, 80%) !important;
|
||||
color: @bg0;
|
||||
}
|
||||
|
||||
.ui.grey.labels .label, .ui.ui.ui.grey.label, .ui.grey.button, .ui.grey.buttons .button {
|
||||
color: @bg0;
|
||||
background-color: @button1;
|
||||
border-color: @button1;
|
||||
}
|
||||
|
||||
.ui.grey.labels .label:hover, .ui.ui.ui.grey.label:hover, .ui.grey.button:hover, .ui.grey.buttons .button:hover {
|
||||
color: @bg0;
|
||||
background-color: @button1;
|
||||
border-color: @button1;
|
||||
}
|
||||
|
||||
/* secondary buttons */
|
||||
.ui.green.buttons .button, .ui.green.button {
|
||||
background: @button2;
|
||||
background-color: @button2;
|
||||
color: @bg0;
|
||||
}
|
||||
|
||||
.ui.green.buttons .button:hover, .ui.green.button:hover {
|
||||
background: fade(@button2, 80%);
|
||||
background-color: fade(@button2, 80%);
|
||||
color: @bg0;
|
||||
}
|
||||
|
||||
/* text based buttons (purple) */
|
||||
.ui.labeled.button.disabled>.button, .ui.basic.buttons .button, .ui.basic.button {
|
||||
color: @secondary;
|
||||
}
|
||||
|
||||
.ui.labeled.button.disabled>.button:hover, .ui.basic.buttons .button:hover, .ui.basic.button:hover {
|
||||
color: @secondary;
|
||||
}
|
||||
|
||||
/* repo title && header */
|
||||
.repo-title {
|
||||
color: @secondary;
|
||||
}
|
||||
|
||||
/* star number && fork number */
|
||||
.repo-buttons button[disabled] ~ .label,
|
||||
.repo-buttons .ui.labeled.button.disabled > .label {
|
||||
color: @primary;
|
||||
}
|
||||
|
||||
.ui.basic.labels .label, .ui.basic.label {
|
||||
color: @primary;
|
||||
}
|
||||
|
||||
/* hover on commits, branch, tags in project home page */
|
||||
.repository .ui.segment.sub-menu .list .item a:hover,
|
||||
.ui.tabular.menu .item:hover {
|
||||
color: var(--color-text-hover);
|
||||
}
|
||||
|
||||
/* commit label */
|
||||
.ui.primary.labels .label, .ui.ui.ui.primary.label {
|
||||
color: @bg0;
|
||||
}
|
||||
|
||||
/* issue label */
|
||||
.ui.green.labels .label, .ui.ui.ui.green.label {
|
||||
color: @bg0;
|
||||
}
|
||||
|
||||
/* grey button (rss feed button in repository home page) */
|
||||
i.grey.icon.icon.icon.icon {
|
||||
color: @grey
|
||||
}
|
||||
|
||||
/* scroll bar */
|
||||
* {
|
||||
scrollbar-color: @secondary transparent !important;
|
||||
}
|
||||
::-webkit-scrollbar {
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
}
|
||||
::-webkit-scrollbar-thumb {
|
||||
box-shadow: inset 0 0 0 6px @secondary !important;
|
||||
border: 2px solid transparent;
|
||||
border-radius: 5px !important;
|
||||
}
|
||||
::-webkit-scrollbar-thumb:window-inactive {
|
||||
box-shadow: inset 0 0 0 6px @secondary !important;
|
||||
}
|
||||
::-webkit-scrollbar-thumb:hover {
|
||||
box-shadow: inset 0 0 0 6px @secondary !important;
|
||||
}
|
||||
::-webkit-scrollbar-corner {
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
/* red buttons */
|
||||
.ui.red.labels .label, .ui.ui.ui.red.label, .ui.red.button, .ui.red.buttons .button {
|
||||
background: @button-red;
|
||||
background-color: @button-red;
|
||||
color: @bg0;
|
||||
}
|
||||
|
||||
.ui.red.labels .label:hover, .ui.ui.ui.red.label:hover, .ui.red.button:hover, .ui.red.buttons .button:hover {
|
||||
background: fade(@button-red, 80%);
|
||||
background-color: fade(@button-red, 80%);
|
||||
color: @bg0;
|
||||
}
|
||||
|
||||
/* grey buttons */
|
||||
.ui.labels a.label, a.ui.label {
|
||||
background-color: @bg1;
|
||||
}
|
||||
|
||||
.ui.labels a.label:hover, a.ui.label:hover {
|
||||
background-color: @bg0;
|
||||
}
|
||||
|
||||
/* orange buttons */
|
||||
.ui.orange.labels .label, .ui.ui.ui.orange.label, .ui.orange.button, .ui.orange.buttons .button {
|
||||
background: @orange;
|
||||
background-color: @orange;
|
||||
color: @bg0;
|
||||
}
|
||||
|
||||
.ui.orange.labels .label:hover, .ui.ui.ui.orange.label:hover, .ui.orange.button:hover, .ui.orange.buttons .button:hover {
|
||||
background: fade(@orange, 80%);
|
||||
background-color: fade(@orange, 80%);
|
||||
color: @bg0;
|
||||
}
|
@ -1,397 +0,0 @@
|
||||
@background: #d09090;
|
||||
@f_high: #000000;
|
||||
@f_med: #fffafa;
|
||||
@f_low: #6ea2a1;
|
||||
@f_inv: #ff1493;
|
||||
@b_high: #7fffd4;
|
||||
@b_med: #6ADEDC;
|
||||
@b_low: #b08686;
|
||||
@b_inv: #7fffd4;// <circle .*? id='([a-z_]+)' fill='#([A-Za-z0-9]+)'></circle>
|
||||
// to
|
||||
// @$1: #$2;
|
||||
|
||||
// @background: #0A0F14;
|
||||
// @f_high: #FFFFFF;
|
||||
// @f_med: #98D1CE;
|
||||
// @f_low: #EDB54B;
|
||||
// @f_inv: #C33027;
|
||||
// @b_high: #093748;
|
||||
// @b_med: #081F2D;
|
||||
// @b_low: #10151B;
|
||||
// @b_inv: #8FAF9F;
|
||||
|
||||
// @background: #E0B1CB;
|
||||
// @f_high: #231942;
|
||||
// @f_med: #48416d;
|
||||
// @f_low: #917296;
|
||||
// @f_inv: #E0B1CB;
|
||||
// @b_high: #5E548E;
|
||||
// @b_med: #FFFFFF;
|
||||
// @b_low: #BE95C4;
|
||||
// @b_inv: #9F86C0;
|
||||
|
||||
@primary: @f_high; // primary color used in main texts
|
||||
@secondary: @f_med; // secondary color used in some texts and text based buttons
|
||||
@tertiary: @f_med; // tertiary color used in other colored texts
|
||||
@fg: @f_high;
|
||||
@bg0: @background;
|
||||
@bg1: @b_low;
|
||||
@bg2: @b_med;
|
||||
@bg3: @b_high;
|
||||
@bg4: @b_high;
|
||||
@red: #ec7279;
|
||||
@orange: #deb974;
|
||||
@yellow: #deb974;
|
||||
@green: #a0c980;
|
||||
@cyan: #5dbbc1;
|
||||
@blue: #6cb6eb;
|
||||
@purple: #d38aea;
|
||||
@grey: #758094;
|
||||
@red-bg: #55393d;
|
||||
@green-bg: #394634;
|
||||
@blue-bg: #354157;
|
||||
@yellow-bg: #4e432f;
|
||||
@button1: @b_inv;
|
||||
@button2: @b_inv;
|
||||
@button-red: @red;
|
||||
@key: @red;
|
||||
@operator: @purple;
|
||||
@string: @green;
|
||||
@value: @green;
|
||||
@type: @yellow;
|
||||
@function: @blue;
|
||||
@special: @cyan;
|
||||
|
||||
:root {
|
||||
--is-dark-theme: true;
|
||||
--color-primary: @primary;
|
||||
--color-primary-contrast: @bg0;
|
||||
--color-primary-dark-1: @primary;
|
||||
--color-primary-dark-2: mix(@fg, @primary, 16.7%);
|
||||
--color-primary-dark-3: mix(@fg, @primary, 33.3%);
|
||||
--color-primary-dark-4: mix(@fg, @primary, 50%);
|
||||
--color-primary-dark-5: mix(@fg, @primary, 66.6%);
|
||||
--color-primary-dark-6: mix(@fg, @primary, 83.3%);
|
||||
--color-primary-dark-7: @fg;
|
||||
--color-primary-light-1: @primary;
|
||||
--color-primary-light-2: mix(@bg2, @primary, 16.7%);
|
||||
--color-primary-light-3: mix(@bg2, @primary, 33.3%);
|
||||
--color-primary-light-4: mix(@bg2, @primary, 50%);
|
||||
--color-primary-light-5: mix(@bg2, @primary, 66.6%);
|
||||
--color-primary-light-6: mix(@bg2, @primary, 83.3%);
|
||||
--color-primary-light-7: @bg2;
|
||||
--color-primary-alpha-10: fade(@primary, 10%);
|
||||
--color-primary-alpha-20: fade(@primary, 20%);
|
||||
--color-primary-alpha-30: fade(@primary, 30%);
|
||||
--color-primary-alpha-40: fade(@primary, 40%);
|
||||
--color-primary-alpha-50: fade(@primary, 50%);
|
||||
--color-primary-alpha-60: fade(@primary, 60%);
|
||||
--color-primary-alpha-70: fade(@primary, 70%);
|
||||
--color-primary-alpha-80: fade(@primary, 80%);
|
||||
--color-primary-alpha-90: fade(@primary, 90%);
|
||||
--color-secondary: @bg4;
|
||||
--color-secondary-dark-1: @bg4;
|
||||
--color-secondary-dark-2: mix(@fg, @bg4, 8.3%);
|
||||
--color-secondary-dark-3: mix(@fg, @bg4, 16.7%);
|
||||
--color-secondary-dark-4: mix(@fg, @bg4, 25%);
|
||||
--color-secondary-dark-5: mix(@fg, @bg4, 33.3%);
|
||||
--color-secondary-dark-6: mix(@fg, @bg4, 41.7%);
|
||||
--color-secondary-dark-7: mix(@fg, @bg4, 50%);
|
||||
--color-secondary-dark-8: mix(@fg, @bg4, 58.3%);
|
||||
--color-secondary-dark-9: mix(@fg, @bg4, 66.7%);
|
||||
--color-secondary-dark-10: mix(@fg, @bg4, 75%);
|
||||
--color-secondary-dark-11: mix(@fg, @bg4, 83.3%);
|
||||
--color-secondary-dark-12: mix(@fg, @bg4, 91.7%);
|
||||
--color-secondary-dark-13: @fg;
|
||||
--color-secondary-light-1: @bg4;
|
||||
--color-secondary-light-2: @bg3;
|
||||
--color-secondary-light-3: @bg2;
|
||||
--color-secondary-light-4: @bg1;
|
||||
--color-secondary-alpha-10: fade(@bg4, 10%);
|
||||
--color-secondary-alpha-20: fade(@bg4, 20%);
|
||||
--color-secondary-alpha-30: fade(@bg4, 30%);
|
||||
--color-secondary-alpha-40: fade(@bg4, 40%);
|
||||
--color-secondary-alpha-50: fade(@bg4, 50%);
|
||||
--color-secondary-alpha-60: fade(@bg4, 60%);
|
||||
--color-secondary-alpha-70: fade(@bg4, 70%);
|
||||
--color-secondary-alpha-80: fade(@bg4, 80%);
|
||||
--color-secondary-alpha-90: fade(@bg4, 90%);
|
||||
/* colors */
|
||||
--color-red: @red;
|
||||
--color-orange: @orange;
|
||||
--color-yellow: @yellow;
|
||||
--color-olive: @green;
|
||||
--color-green: @green;
|
||||
--color-teal: @cyan;
|
||||
--color-blue: @blue;
|
||||
--color-violet: @purple;
|
||||
--color-purple: @purple;
|
||||
--color-pink: @purple;
|
||||
--color-brown: @orange;
|
||||
--color-grey: @grey;
|
||||
/* light variants */
|
||||
--color-red-light: @red;
|
||||
--color-orange-light: @orange;
|
||||
--color-yellow-light: @yellow;
|
||||
--color-olive-light: @green;
|
||||
--color-green-light: @green;
|
||||
--color-teal-light: @cyan;
|
||||
--color-blue-light: @blue;
|
||||
--color-violet-light: @purple;
|
||||
--color-purple-light: @purple;
|
||||
--color-pink-light: @purple;
|
||||
--color-brown-light: @orange;
|
||||
--color-grey-light: @grey;
|
||||
/* other colors */
|
||||
--color-black: @bg2;
|
||||
--color-gold: @orange;
|
||||
--color-white: @bg0;
|
||||
--color-diff-removed-word-bg: mix(@red-bg, @red, 70%);
|
||||
--color-diff-added-word-bg: mix(@green-bg, @green, 70%);
|
||||
--color-diff-removed-row-bg: @red-bg;
|
||||
--color-diff-moved-row-bg: @blue-bg;
|
||||
--color-diff-added-row-bg: @green-bg;
|
||||
--color-diff-removed-row-border: mix(@red-bg, @red, 50%);
|
||||
--color-diff-moved-row-border: mix(@blue-bg, @blue, 50%);
|
||||
--color-diff-added-row-border: mix(@green-bg, @green, 50%);
|
||||
--color-diff-inactive: @bg2;
|
||||
--color-error-border: mix(@red-bg, @red, 50%);
|
||||
--color-error-bg: @red-bg;
|
||||
--color-error-text: @red;
|
||||
--color-success-border: mix(@green-bg, @green, 50%);
|
||||
--color-success-bg: @green-bg;
|
||||
--color-success-text: @green;
|
||||
--color-warning-border: mix(@yellow-bg, @yellow, 50%);
|
||||
--color-warning-bg: @yellow-bg;
|
||||
--color-warning-text: @yellow;
|
||||
--color-info-border: mix(@blue-bg, @blue, 50%);
|
||||
--color-info-bg: @blue-bg;
|
||||
--color-info-text: @blue;
|
||||
/* target-based colors */
|
||||
--color-body: @bg0;
|
||||
--color-box-header: @bg3;
|
||||
// --color-box-header: @bg3;
|
||||
--color-box-body: @bg1;
|
||||
--color-box-body-highlight: @bg2;
|
||||
--color-text-dark: @secondary;
|
||||
--color-text: @fg;
|
||||
--color-text-hover: fade(@fg, 80%);
|
||||
--color-text-light: @tertiary;
|
||||
--color-text-light-1: @tertiary;
|
||||
--color-text-light-2: @secondary;
|
||||
--color-text-light-3: @secondary;
|
||||
--color-footer: @bg1;
|
||||
--color-timeline: @bg4;
|
||||
--color-input-text: @fg;
|
||||
--color-input-background: @bg0;
|
||||
--color-input-toggle-background: @bg1;
|
||||
--color-input-border: @bg4;
|
||||
--color-input-border-hover: mix(@bg4, @grey, 50%);
|
||||
--color-navbar: @bg1;
|
||||
--color-navbar-transparent: @bg1;
|
||||
--color-nav-bg: @bg1;
|
||||
--color-nav-hover-bg: @bg3;
|
||||
--color-light: @bg1;
|
||||
--color-light-mimic-enabled: rgba(0, 0, 0, calc(40 / 255 * 222 / 255 / var(--opacity-disabled)));
|
||||
--color-light-border: @bg4;
|
||||
--color-hover: fade(@bg4, 50%);
|
||||
--color-active: fade(@bg4, 50%);
|
||||
--color-menu: @bg1;
|
||||
--color-card: @bg1;
|
||||
--color-markup-table-row: @bg3;
|
||||
--color-markup-code-block: @bg0;
|
||||
--color-button: @bg3;
|
||||
--color-code-bg: @bg0;
|
||||
--color-code-sidebar-bg: @bg1;
|
||||
--color-shadow: #00000060;
|
||||
--color-secondary-bg: @bg1;
|
||||
--color-text-focus: #fff;
|
||||
--color-expand-button: @bg2;
|
||||
--color-placeholder-text: @tertiary;
|
||||
--color-editor-line-highlight: @bg1;
|
||||
--color-project-board-bg: @bg0;
|
||||
--color-project-board-light-label: @primary;
|
||||
--color-caret: var(--color-text); /* should ideally be --color-text-dark, see #15651 */
|
||||
--color-reaction-bg: #ffffff12;
|
||||
--color-reaction-active-bg: var(--color-primary-alpha-40);
|
||||
--color-header-bar: @bg1;
|
||||
--color-label-bg: @bg4;
|
||||
--color-label-text: @tertiary;
|
||||
--color-label-active-bg: @bg4;
|
||||
--color-accent: var(--color-primary-light-1);
|
||||
--color-small-accent: var(--color-primary-light-5);
|
||||
--color-active-line: @bg1;
|
||||
--color-header-wrapper: @bg2;
|
||||
|
||||
accent-color: var(--color-accent);
|
||||
color-scheme: dark;
|
||||
}
|
||||
|
||||
.chroma .nx {
|
||||
color: @fg;
|
||||
}
|
||||
.chroma .c, .chroma .c1, .chroma .ch, .chroma .cm, .chroma .sd {
|
||||
color: @grey;
|
||||
}
|
||||
.chroma .k, .chroma .kc, .chroma .kd, .chroma .kn, .chroma .kp, .chroma .kr {
|
||||
color: @key;
|
||||
}
|
||||
.chroma .o, .chroma .ow {
|
||||
color: @operator;
|
||||
}
|
||||
.chroma .s, .chroma .s1, .chroma .s2, .chroma .sa, .chroma .sb, .chroma .sc, .chroma .sh, .chroma .si, .chroma .sr, .chroma .ss, .chroma .sx, .chroma .nt, .chroma .cpf {
|
||||
color: @string;
|
||||
}
|
||||
.chroma .m, .chroma .mb, .chroma .mf, .chroma .mh, .chroma .mi, .chroma .mo, .chroma .nl {
|
||||
color: @value;
|
||||
}
|
||||
.chroma .kt, .chroma .nc, .chroma .nn, .chroma .nv {
|
||||
color: @type;
|
||||
}
|
||||
.chroma .nf, .chroma .nb, .chroma .na {
|
||||
color: @function;
|
||||
}
|
||||
.chroma .bp, .chroma .cp, .chroma .ne, .chroma .nd, .chroma .se {
|
||||
color: @special;
|
||||
}
|
||||
|
||||
/* primary buttons */
|
||||
.ui.primary.button, .ui.primary.buttons .button {
|
||||
background: @button1;
|
||||
background-color: @button1 !important;
|
||||
color: @bg0;
|
||||
}
|
||||
|
||||
.ui.primary.button:hover, .ui.primary.buttons .button:hover {
|
||||
background: fade(@button1, 80%);
|
||||
background-color: fade(@button1, 80%) !important;
|
||||
color: @bg0;
|
||||
}
|
||||
|
||||
.ui.grey.labels .label, .ui.ui.ui.grey.label, .ui.grey.button, .ui.grey.buttons .button {
|
||||
color: @bg0;
|
||||
background-color: @button1;
|
||||
border-color: @button1;
|
||||
}
|
||||
|
||||
.ui.grey.labels .label:hover, .ui.ui.ui.grey.label:hover, .ui.grey.button:hover, .ui.grey.buttons .button:hover {
|
||||
color: @bg0;
|
||||
background-color: @button1;
|
||||
border-color: @button1;
|
||||
}
|
||||
|
||||
/* secondary buttons */
|
||||
.ui.green.buttons .button, .ui.green.button {
|
||||
background: @button2;
|
||||
background-color: @button2;
|
||||
color: @bg0;
|
||||
}
|
||||
|
||||
.ui.green.buttons .button:hover, .ui.green.button:hover {
|
||||
background: fade(@button2, 80%);
|
||||
background-color: fade(@button2, 80%);
|
||||
color: @bg0;
|
||||
}
|
||||
|
||||
/* text based buttons (purple) */
|
||||
.ui.labeled.button.disabled>.button, .ui.basic.buttons .button, .ui.basic.button {
|
||||
color: @secondary;
|
||||
}
|
||||
|
||||
.ui.labeled.button.disabled>.button:hover, .ui.basic.buttons .button:hover, .ui.basic.button:hover {
|
||||
color: @secondary;
|
||||
}
|
||||
|
||||
/* repo title && header */
|
||||
.repo-title {
|
||||
color: @secondary;
|
||||
}
|
||||
|
||||
/* star number && fork number */
|
||||
.repo-buttons button[disabled] ~ .label,
|
||||
.repo-buttons .ui.labeled.button.disabled > .label {
|
||||
color: @primary;
|
||||
}
|
||||
|
||||
.ui.basic.labels .label, .ui.basic.label {
|
||||
color: @primary;
|
||||
}
|
||||
|
||||
/* hover on commits, branch, tags in project home page */
|
||||
.repository .ui.segment.sub-menu .list .item a:hover,
|
||||
.ui.tabular.menu .item:hover {
|
||||
color: var(--color-text-hover);
|
||||
}
|
||||
|
||||
/* commit label */
|
||||
.ui.primary.labels .label, .ui.ui.ui.primary.label {
|
||||
color: @bg0;
|
||||
}
|
||||
|
||||
/* issue label */
|
||||
.ui.green.labels .label, .ui.ui.ui.green.label {
|
||||
color: @bg0;
|
||||
}
|
||||
|
||||
/* grey button (rss feed button in repository home page) */
|
||||
i.grey.icon.icon.icon.icon {
|
||||
color: @grey
|
||||
}
|
||||
|
||||
/* scroll bar */
|
||||
* {
|
||||
scrollbar-color: @secondary transparent !important;
|
||||
}
|
||||
::-webkit-scrollbar {
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
}
|
||||
::-webkit-scrollbar-thumb {
|
||||
box-shadow: inset 0 0 0 6px @secondary !important;
|
||||
border: 2px solid transparent;
|
||||
border-radius: 5px !important;
|
||||
}
|
||||
::-webkit-scrollbar-thumb:window-inactive {
|
||||
box-shadow: inset 0 0 0 6px @secondary !important;
|
||||
}
|
||||
::-webkit-scrollbar-thumb:hover {
|
||||
box-shadow: inset 0 0 0 6px @secondary !important;
|
||||
}
|
||||
::-webkit-scrollbar-corner {
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
/* red buttons */
|
||||
.ui.red.labels .label, .ui.ui.ui.red.label, .ui.red.button, .ui.red.buttons .button {
|
||||
background: @button-red;
|
||||
background-color: @button-red;
|
||||
color: @bg0;
|
||||
}
|
||||
|
||||
.ui.red.labels .label:hover, .ui.ui.ui.red.label:hover, .ui.red.button:hover, .ui.red.buttons .button:hover {
|
||||
background: fade(@button-red, 80%);
|
||||
background-color: fade(@button-red, 80%);
|
||||
color: @bg0;
|
||||
}
|
||||
|
||||
/* grey buttons */
|
||||
.ui.labels a.label, a.ui.label {
|
||||
background-color: @bg1;
|
||||
}
|
||||
|
||||
.ui.labels a.label:hover, a.ui.label:hover {
|
||||
background-color: @bg0;
|
||||
}
|
||||
|
||||
/* orange buttons */
|
||||
.ui.orange.labels .label, .ui.ui.ui.orange.label, .ui.orange.button, .ui.orange.buttons .button {
|
||||
background: @orange;
|
||||
background-color: @orange;
|
||||
color: @bg0;
|
||||
}
|
||||
|
||||
.ui.orange.labels .label:hover, .ui.ui.ui.orange.label:hover, .ui.orange.button:hover, .ui.orange.buttons .button:hover {
|
||||
background: fade(@orange, 80%);
|
||||
background-color: fade(@orange, 80%);
|
||||
color: @bg0;
|
||||
}
|
@ -1,25 +0,0 @@
|
||||
configuration {
|
||||
modes: [ combi ];
|
||||
combi-modes: [ window, drun, run, dmenu ];
|
||||
font: "Inconsolata 13";
|
||||
}
|
||||
|
||||
@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;
|
||||
}
|
@ -1,150 +0,0 @@
|
||||
/**
|
||||
* Base16 ROFI Color theme
|
||||
*
|
||||
* Authors
|
||||
* Scheme:
|
||||
* Template: Tinted Theming (https://github.com/tinted-theming)
|
||||
*/
|
||||
|
||||
* {
|
||||
red: rgba ( 255, 41, 168, 100 % );
|
||||
blue: rgba ( 0, 234, 255, 100 % );
|
||||
lightfg: rgba ( 178, 191, 217, 100 % );
|
||||
lightbg: rgba ( 34, 38, 45, 100 % );
|
||||
foreground: rgba ( 139, 156, 190, 100 % );
|
||||
background: rgba ( 23, 25, 30, 100 % );
|
||||
background-color: rgba ( 23, 25, 30, 0 % );
|
||||
separatorcolor: @foreground;
|
||||
border-color: @foreground;
|
||||
selected-normal-foreground: @lightbg;
|
||||
selected-normal-background: @lightfg;
|
||||
selected-active-foreground: @background;
|
||||
selected-active-background: @blue;
|
||||
selected-urgent-foreground: @background;
|
||||
selected-urgent-background: @red;
|
||||
normal-foreground: @foreground;
|
||||
normal-background: @background;
|
||||
active-foreground: @blue;
|
||||
active-background: @background;
|
||||
urgent-foreground: @red;
|
||||
urgent-background: @background;
|
||||
alternate-normal-foreground: @foreground;
|
||||
alternate-normal-background: @lightbg;
|
||||
alternate-active-foreground: @blue;
|
||||
alternate-active-background: @lightbg;
|
||||
alternate-urgent-foreground: @red;
|
||||
alternate-urgent-background: @lightbg;
|
||||
spacing: 2;
|
||||
}
|
||||
window {
|
||||
background-color: @background;
|
||||
border: 1;
|
||||
padding: 5;
|
||||
}
|
||||
mainbox {
|
||||
border: 0;
|
||||
padding: 0;
|
||||
}
|
||||
message {
|
||||
border: 1px dash 0px 0px ;
|
||||
border-color: @separatorcolor;
|
||||
padding: 1px ;
|
||||
}
|
||||
textbox {
|
||||
text-color: @foreground;
|
||||
}
|
||||
listview {
|
||||
fixed-height: 0;
|
||||
border: 2px dash 0px 0px ;
|
||||
border-color: @separatorcolor;
|
||||
spacing: 2px ;
|
||||
scrollbar: true;
|
||||
padding: 2px 0px 0px ;
|
||||
}
|
||||
element-text, element-icon {
|
||||
background-color: inherit;
|
||||
text-color: inherit;
|
||||
}
|
||||
element {
|
||||
border: 0;
|
||||
padding: 1px ;
|
||||
}
|
||||
element normal.normal {
|
||||
background-color: @normal-background;
|
||||
text-color: @normal-foreground;
|
||||
}
|
||||
element normal.urgent {
|
||||
background-color: @urgent-background;
|
||||
text-color: @urgent-foreground;
|
||||
}
|
||||
element normal.active {
|
||||
background-color: @active-background;
|
||||
text-color: @active-foreground;
|
||||
}
|
||||
element selected.normal {
|
||||
background-color: @selected-normal-background;
|
||||
text-color: @selected-normal-foreground;
|
||||
}
|
||||
element selected.urgent {
|
||||
background-color: @selected-urgent-background;
|
||||
text-color: @selected-urgent-foreground;
|
||||
}
|
||||
element selected.active {
|
||||
background-color: @selected-active-background;
|
||||
text-color: @selected-active-foreground;
|
||||
}
|
||||
element alternate.normal {
|
||||
background-color: @alternate-normal-background;
|
||||
text-color: @alternate-normal-foreground;
|
||||
}
|
||||
element alternate.urgent {
|
||||
background-color: @alternate-urgent-background;
|
||||
text-color: @alternate-urgent-foreground;
|
||||
}
|
||||
element alternate.active {
|
||||
background-color: @alternate-active-background;
|
||||
text-color: @alternate-active-foreground;
|
||||
}
|
||||
scrollbar {
|
||||
width: 4px ;
|
||||
border: 0;
|
||||
handle-color: @normal-foreground;
|
||||
handle-width: 8px ;
|
||||
padding: 0;
|
||||
}
|
||||
sidebar {
|
||||
border: 2px dash 0px 0px ;
|
||||
border-color: @separatorcolor;
|
||||
}
|
||||
button {
|
||||
spacing: 0;
|
||||
text-color: @normal-foreground;
|
||||
}
|
||||
button selected {
|
||||
background-color: @selected-normal-background;
|
||||
text-color: @selected-normal-foreground;
|
||||
}
|
||||
inputbar {
|
||||
spacing: 0px;
|
||||
text-color: @normal-foreground;
|
||||
padding: 1px ;
|
||||
children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
|
||||
}
|
||||
case-indicator {
|
||||
spacing: 0;
|
||||
text-color: @normal-foreground;
|
||||
}
|
||||
entry {
|
||||
spacing: 0;
|
||||
text-color: @normal-foreground;
|
||||
}
|
||||
prompt {
|
||||
spacing: 0;
|
||||
text-color: @normal-foreground;
|
||||
}
|
||||
textbox-prompt-colon {
|
||||
expand: false;
|
||||
str: ":";
|
||||
margin: 0px 0.3000em 0.0000em 0.0000em ;
|
||||
text-color: inherit;
|
||||
}
|
@ -1,2 +0,0 @@
|
||||
r
|
||||
sxhkd-mode-exit
|
@ -1,73 +0,0 @@
|
||||
#!/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
|
@ -1,221 +0,0 @@
|
||||
#
|
||||
# wm independent hotkeys
|
||||
#
|
||||
|
||||
# Open kitty
|
||||
super + Return
|
||||
xfce4-terminal
|
||||
|
||||
# Open floating kitty
|
||||
super + shift + Return
|
||||
bsp-float xfce4-terminal
|
||||
|
||||
# launch program (drun)
|
||||
super + @space
|
||||
rofi -show drun -show-icons
|
||||
|
||||
# launch program (standard run)
|
||||
super + shift + @space
|
||||
rofi -show run
|
||||
|
||||
# make sxhkd reload its configuration files:
|
||||
super + Escape
|
||||
pkill -USR1 -x sxhkd && notify-send 'Key daemon reloaded'
|
||||
|
||||
super + alt + Menu
|
||||
le-keyboard && notify-send 'Remapped Keyboard'
|
||||
|
||||
# Start a qutebrowser search
|
||||
super + o
|
||||
qutesearch
|
||||
|
||||
# Preselect below and start a qutebrowser search
|
||||
super + p
|
||||
bspc node -p south -o 0.01 \
|
||||
&& qutesearch \
|
||||
|| bspc node -p cancel
|
||||
|
||||
# Grab color
|
||||
Print
|
||||
grabc | xclip -sel clipboard
|
||||
|
||||
# Show keybinds
|
||||
super + slash
|
||||
sxhkd-help
|
||||
|
||||
# Show clipmenu
|
||||
super + v
|
||||
xfce4-popup-clipman
|
||||
|
||||
# Exit session
|
||||
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
|
||||
#
|
||||
|
||||
# quit/restart bspwm
|
||||
super + shift + {q,r}
|
||||
bspc {quit,wm -r}
|
||||
|
||||
# close and kill
|
||||
super + {_,shift + }w
|
||||
bspc node -{c,k}
|
||||
|
||||
# superernate between the tiled and monocle layout
|
||||
super + m
|
||||
bspc desktop -l next
|
||||
|
||||
# swap the current node and the biggest window
|
||||
super + g
|
||||
bspc node -s biggest.window
|
||||
|
||||
#
|
||||
# state/flags
|
||||
#
|
||||
|
||||
# toggle window state
|
||||
super + c
|
||||
bspc node 'focused.!tiled' -t tiled || bspc node 'focused.!floating' -t floating
|
||||
# bspc node 'focused.!pseudo_tiled' -t pseudo_tiled
|
||||
|
||||
# toggle window fullscreen
|
||||
super + f
|
||||
bspc node 'focused.!tiled' -t tiled || bspc node 'focused.!fullscreen' -t fullscreen
|
||||
|
||||
|
||||
# set the node flags
|
||||
super + ctrl + {m,x,y,z}
|
||||
bspc node -g {marked,locked,sticky,private}
|
||||
|
||||
#
|
||||
# focus/swap
|
||||
#
|
||||
|
||||
# Focus the node in the given direction
|
||||
super + {h,j,k,l,Left,Down,Up,Right}
|
||||
bspc node -{f} {west,south,north,east,west,south,north,east}
|
||||
|
||||
# Rotate focus clockwise/counterclockwise
|
||||
super + {d,a}
|
||||
bspc node -f {next,prev}.local.window
|
||||
|
||||
# focus the last node/desktop
|
||||
super + {grave,Tab}
|
||||
bspc {node,desktop} -f last
|
||||
|
||||
# focus or send to the given desktop
|
||||
super + {_,shift + }{1-6}
|
||||
bspc {desktop -f,node -d} '^{1-6}'
|
||||
|
||||
#
|
||||
# preselect
|
||||
#
|
||||
|
||||
# preselect the direction
|
||||
super + ctrl + shift {h,j,k,l,Left,Down,Up,Right}
|
||||
bspc node -p {west,south,north,east,west,south,north,east}
|
||||
|
||||
# cancel the preselection for the focused node
|
||||
super + ctrl + space
|
||||
bspc node -p cancel
|
||||
|
||||
# cancel the preselection for the focused desktop
|
||||
super + ctrl + shift + space
|
||||
bspc query -N -d | xargs -I id -n 1 bspc node id -p cancel
|
||||
|
||||
# swap current window with preselection
|
||||
super + s
|
||||
bspc node -n last.\!automatic -t tiled
|
||||
|
||||
#
|
||||
# move/resize
|
||||
#
|
||||
|
||||
# Resize a window by moving one of its side outward/inward
|
||||
super + s ; {h,j,k,l,Left,Down,Up,Right}
|
||||
STEP=20; SELECTION={1,2,3,4,1,2,3,4}; \
|
||||
bspc node -z $(echo "left -$STEP 0,bottom 0 $STEP,top 0 -$STEP,right $STEP 0" | cut -d',' -f$SELECTION) || \
|
||||
bspc node -z $(echo "right -$STEP 0,top 0 $STEP,bottom 0 -$STEP,left $STEP 0" | cut -d',' -f$SELECTION)
|
||||
|
||||
# move a floating window
|
||||
super + {h,j,k,l}
|
||||
bspc node -v {-30 0,0 20,0 -30,20 0}
|
||||
|
||||
# move a window
|
||||
super + shift + {h,j,k,l,Left,Down,Up,Right}
|
||||
bsp-smove {west,south,north,east,west,south,north,east}
|
||||
|
||||
# minimize current window, move down
|
||||
super + {z,bracketleft}
|
||||
bspc node -f 'focused.tiled' \
|
||||
&& bspc node -f north; \
|
||||
bspc node -z bottom 0 9999
|
||||
|
||||
# minimize current window, move up
|
||||
super + {x,bracketright}
|
||||
bspc node -f 'focused.tiled' \
|
||||
&& bspc node -f south; \
|
||||
bspc node -z top 0 -9999
|
||||
|
||||
super + backslash
|
||||
bspc node -e
|
||||
|
||||
#
|
||||
# Program launching binds
|
||||
#
|
||||
|
||||
super + 8
|
||||
vesktop
|
||||
|
||||
super + 9
|
||||
bitwarden
|
||||
|
||||
super + 0
|
||||
kitty -e micro
|
||||
|
||||
#
|
||||
# Media
|
||||
#
|
||||
|
||||
# Play/pause track
|
||||
XF86AudioPlay
|
||||
playerctl play-pause
|
||||
|
||||
# Play/pause track
|
||||
Pause
|
||||
playerctl play-pause
|
||||
|
||||
# Previus track
|
||||
XF86AudioNext
|
||||
playerctl next
|
||||
|
||||
# Previous track
|
||||
XF86AudioPrev
|
||||
playerctl previous
|
||||
|
||||
# Stop track
|
||||
XF86AudioStop
|
||||
playerctl stop
|
@ -1,162 +0,0 @@
|
||||
#
|
||||
# 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
|
@ -1,121 +0,0 @@
|
||||
#
|
||||
# wm independent hotkeys
|
||||
#
|
||||
|
||||
# terminal emulator
|
||||
super + Return
|
||||
kitty
|
||||
|
||||
# program launcher
|
||||
super + @space
|
||||
|
||||
|
||||
# make sxhkd reload its configuration files:
|
||||
super + Escape
|
||||
pkill -USR1 -x sxhkd
|
||||
|
||||
#
|
||||
# bspwm hotkeys
|
||||
#
|
||||
|
||||
# quit/restart bspwm
|
||||
super + alt + {q,r}
|
||||
bspc {quit,wm -r}
|
||||
|
||||
# close and kill
|
||||
super + {_,shift + }w
|
||||
bspc node -{c,k}
|
||||
|
||||
# alternate between the tiled and monocle layout
|
||||
super + m
|
||||
bspc desktop -l next
|
||||
|
||||
# send the newest marked node to the newest preselected node
|
||||
super + y
|
||||
bspc node newest.marked.local -n newest.!automatic.local
|
||||
|
||||
# swap the current node and the biggest window
|
||||
super + g
|
||||
bspc node -s biggest.window
|
||||
|
||||
#
|
||||
# state/flags
|
||||
#
|
||||
|
||||
# set the window state
|
||||
super + {t,shift + t,s,f}
|
||||
bspc node -t {tiled,pseudo_tiled,floating,fullscreen}
|
||||
|
||||
# set the node flags
|
||||
super + ctrl + {m,x,y,z}
|
||||
bspc node -g {marked,locked,sticky,private}
|
||||
|
||||
#
|
||||
# focus/swap
|
||||
#
|
||||
|
||||
# focus the node in the given direction
|
||||
super + {_,shift + }{h,j,k,l}
|
||||
bspc node -{f,s} {west,south,north,east}
|
||||
|
||||
# focus the node for the given path jump
|
||||
super + {p,b,comma,period}
|
||||
bspc node -f @{parent,brother,first,second}
|
||||
|
||||
# focus the next/previous window in the current desktop
|
||||
super + {_,shift + }c
|
||||
bspc node -f {next,prev}.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 the older or newer node in the focus history
|
||||
super + {o,i}
|
||||
bspc wm -h off; \
|
||||
bspc node {older,newer} -f; \
|
||||
bspc wm -h on
|
||||
|
||||
# focus or send to the given desktop
|
||||
super + {_,shift + }{1-9,0}
|
||||
bspc {desktop -f,node -d} '^{1-9,10}'
|
||||
|
||||
#
|
||||
# preselect
|
||||
#
|
||||
|
||||
# preselect the direction
|
||||
super + ctrl + {h,j,k,l}
|
||||
bspc node -p {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
|
||||
#
|
||||
|
||||
# expand a window by moving one of its side outward
|
||||
super + alt + {h,j,k,l}
|
||||
bspc node -z {left -20 0,bottom 0 20,top 0 -20,right 20 0}
|
||||
|
||||
# contract a window by moving one of its side inward
|
||||
super + alt + shift + {h,j,k,l}
|
||||
bspc node -z {right -20 0,top 0 20,bottom 0 -20,left 20 0}
|
||||
|
||||
# move a floating window
|
||||
super + {Left,Down,Up,Right}
|
||||
bspc node -v {-20 0,0 20,0 -20,20 0}
|
@ -1,52 +0,0 @@
|
||||
#
|
||||
# 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
|
@ -1,110 +0,0 @@
|
||||
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
|
@ -1,6 +0,0 @@
|
||||
@media screen and (max-width: 1280px) {
|
||||
/* Hide guild members sidebar */
|
||||
.container_cbd271 {
|
||||
display: none;
|
||||
}
|
||||
}
|
@ -1,587 +0,0 @@
|
||||
{
|
||||
"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
|
||||
}
|
||||
}
|
@ -1,2 +0,0 @@
|
||||
auto-online=false
|
||||
|
@ -1,2 +0,0 @@
|
||||
WebBrowser=custom-WebBrowser
|
||||
|
@ -1,44 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<actions>
|
||||
<action>
|
||||
<name>Bugz</name>
|
||||
<regex>bug\s*#?\s*([0-9]+)</regex>
|
||||
<group>0</group>
|
||||
<commands>
|
||||
<command>
|
||||
<name>GNOME Bug</name>
|
||||
<exec>exo-open http://bugzilla.gnome.org/show_bug.cgi?id=\1</exec>
|
||||
</command>
|
||||
<command>
|
||||
<name>Xfce Bug</name>
|
||||
<exec>exo-open http://bugzilla.xfce.org/show_bug.cgi?id=\1</exec>
|
||||
</command>
|
||||
</commands>
|
||||
</action>
|
||||
<action>
|
||||
<name>Image</name>
|
||||
<regex>(http|ftp).+\.(jpg|png|gif)</regex>
|
||||
<group>0</group>
|
||||
<commands>
|
||||
<command>
|
||||
<name>View with Ristretto</name>
|
||||
<exec>ristretto "\0"</exec>
|
||||
</command>
|
||||
<command>
|
||||
<name>Edit with Gimp</name>
|
||||
<exec>gimp-remote "\0"</exec>
|
||||
</command>
|
||||
</commands>
|
||||
</action>
|
||||
<action>
|
||||
<name>Long URL</name>
|
||||
<regex>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>
|
@ -1,40 +0,0 @@
|
||||
[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
|
||||
|
@ -1,13 +0,0 @@
|
||||
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
|
||||
|
@ -1,79 +0,0 @@
|
||||
<?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"">
|
||||
<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"">
|
||||
<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>
|
@ -1,7 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<channel name="keyboard-layout" version="1.0">
|
||||
<property name="Default" type="empty">
|
||||
<property name="XkbDisable" type="bool" value="true"/>
|
||||
</property>
|
||||
</channel>
|
@ -1,8 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<channel name="keyboards" version="1.0">
|
||||
<property name="Default" type="empty">
|
||||
<property name="Numlock" type="bool" value="true"/>
|
||||
<property name="KeyRepeat" type="bool" value="true"/>
|
||||
</property>
|
||||
</channel>
|
@ -1,22 +0,0 @@
|
||||
<?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>
|
@ -1,42 +0,0 @@
|
||||
<?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>
|
@ -1,79 +0,0 @@
|
||||
<?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>
|
@ -1,194 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<channel name="xfce4-keyboard-shortcuts" version="1.0">
|
||||
<property name="commands" type="empty">
|
||||
<property name="default" type="empty">
|
||||
<property name="<Alt>F1" type="empty"/>
|
||||
<property name="<Alt>F2" type="empty">
|
||||
<property name="startup-notify" type="empty"/>
|
||||
</property>
|
||||
<property name="<Alt>F3" type="empty">
|
||||
<property name="startup-notify" type="empty"/>
|
||||
</property>
|
||||
<property name="<Primary><Alt>Delete" type="empty"/>
|
||||
<property name="<Primary><Alt>l" type="empty"/>
|
||||
<property name="<Primary><Alt>t" type="empty"/>
|
||||
<property name="XF86Display" type="empty"/>
|
||||
<property name="<Super>p" type="empty"/>
|
||||
<property name="<Primary>Escape" type="empty"/>
|
||||
<property name="XF86WWW" type="empty"/>
|
||||
<property name="HomePage" type="empty"/>
|
||||
<property name="XF86Mail" type="empty"/>
|
||||
<property name="Print" type="empty"/>
|
||||
<property name="<Alt>Print" type="empty"/>
|
||||
<property name="<Shift>Print" type="empty"/>
|
||||
<property name="<Super>e" type="empty"/>
|
||||
<property name="<Primary><Alt>f" type="empty"/>
|
||||
<property name="<Primary><Alt>Escape" type="empty"/>
|
||||
<property name="<Primary><Shift>Escape" type="empty"/>
|
||||
<property name="<Super>r" type="empty">
|
||||
<property name="startup-notify" type="empty"/>
|
||||
</property>
|
||||
<property name="<Alt><Super>s" type="empty"/>
|
||||
<property name="<Super>l" type="empty"/>
|
||||
<property name="<Alt>Pause" type="empty"/>
|
||||
<property name="XF86HomePage" type="empty"/>
|
||||
<property name="<Super>w" type="empty"/>
|
||||
<property name="<Super>m" type="empty"/>
|
||||
<property name="XF86Explorer" type="empty"/>
|
||||
<property name="<Super>f" type="empty"/>
|
||||
<property name="<Super>F1" type="empty"/>
|
||||
<property name="<Super>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="<Primary><Alt>Delete" type="string" value="xfce4-session-logout"/>
|
||||
<property name="HomePage" type="string" value="exo-open --launch WebBrowser"/>
|
||||
<property name="override" type="bool" value="true"/>
|
||||
</property>
|
||||
</property>
|
||||
<property name="xfwm4" type="empty">
|
||||
<property name="default" type="empty">
|
||||
<property name="<Alt>Insert" type="empty"/>
|
||||
<property name="Escape" type="empty"/>
|
||||
<property name="Left" type="empty"/>
|
||||
<property name="Right" type="empty"/>
|
||||
<property name="Up" type="empty"/>
|
||||
<property name="Down" type="empty"/>
|
||||
<property name="<Alt>Tab" type="empty"/>
|
||||
<property name="<Alt><Shift>Tab" type="empty"/>
|
||||
<property name="<Alt>Delete" type="empty"/>
|
||||
<property name="<Primary><Alt>Down" type="empty"/>
|
||||
<property name="<Primary><Alt>Left" type="empty"/>
|
||||
<property name="<Shift><Alt>Page_Down" type="empty"/>
|
||||
<property name="<Alt>F4" type="empty"/>
|
||||
<property name="<Alt>F6" type="empty"/>
|
||||
<property name="<Alt>F7" type="empty"/>
|
||||
<property name="<Alt>F8" type="empty"/>
|
||||
<property name="<Alt>F9" type="empty"/>
|
||||
<property name="<Alt>F10" type="empty"/>
|
||||
<property name="<Alt>F11" type="empty"/>
|
||||
<property name="<Alt>F12" type="empty"/>
|
||||
<property name="<Primary><Shift><Alt>Left" type="empty"/>
|
||||
<property name="<Primary><Alt>End" type="empty"/>
|
||||
<property name="<Primary><Alt>Home" type="empty"/>
|
||||
<property name="<Primary><Shift><Alt>Right" type="empty"/>
|
||||
<property name="<Primary><Shift><Alt>Up" type="empty"/>
|
||||
<property name="<Primary><Alt>KP_1" type="empty"/>
|
||||
<property name="<Primary><Alt>KP_2" type="empty"/>
|
||||
<property name="<Primary><Alt>KP_3" type="empty"/>
|
||||
<property name="<Primary><Alt>KP_4" type="empty"/>
|
||||
<property name="<Primary><Alt>KP_5" type="empty"/>
|
||||
<property name="<Primary><Alt>KP_6" type="empty"/>
|
||||
<property name="<Primary><Alt>KP_7" type="empty"/>
|
||||
<property name="<Primary><Alt>KP_8" type="empty"/>
|
||||
<property name="<Primary><Alt>KP_9" type="empty"/>
|
||||
<property name="<Alt>space" type="empty"/>
|
||||
<property name="<Shift><Alt>Page_Up" type="empty"/>
|
||||
<property name="<Primary><Alt>Right" type="empty"/>
|
||||
<property name="<Primary><Alt>d" type="empty"/>
|
||||
<property name="<Primary><Alt>Up" type="empty"/>
|
||||
<property name="<Super>Tab" type="empty"/>
|
||||
<property name="<Primary>F1" type="empty"/>
|
||||
<property name="<Primary>F2" type="empty"/>
|
||||
<property name="<Primary>F3" type="empty"/>
|
||||
<property name="<Primary>F4" type="empty"/>
|
||||
<property name="<Primary>F5" type="empty"/>
|
||||
<property name="<Primary>F6" type="empty"/>
|
||||
<property name="<Primary>F7" type="empty"/>
|
||||
<property name="<Primary>F8" type="empty"/>
|
||||
<property name="<Primary>F9" type="empty"/>
|
||||
<property name="<Primary>F10" type="empty"/>
|
||||
<property name="<Primary>F11" type="empty"/>
|
||||
<property name="<Primary>F12" type="empty"/>
|
||||
<property name="<Super>KP_Left" type="empty"/>
|
||||
<property name="<Super>KP_Right" type="empty"/>
|
||||
<property name="<Super>KP_Down" type="empty"/>
|
||||
<property name="<Super>KP_Up" type="empty"/>
|
||||
<property name="<Super>KP_Page_Up" type="empty"/>
|
||||
<property name="<Super>KP_Home" type="empty"/>
|
||||
<property name="<Super>KP_End" type="empty"/>
|
||||
<property name="<Super>KP_Next" type="empty"/>
|
||||
<property name="<Alt>F5" type="empty"/>
|
||||
<property name="<Super>KP_1" type="empty"/>
|
||||
<property name="<Super>Down" type="empty"/>
|
||||
<property name="<Super>KP_3" type="empty"/>
|
||||
<property name="<Super>Left" type="empty"/>
|
||||
<property name="<Super>Right" type="empty"/>
|
||||
<property name="<Super>KP_7" type="empty"/>
|
||||
<property name="<Super>Up" type="empty"/>
|
||||
<property name="<Super>KP_9" type="empty"/>
|
||||
<property name="<Super>d" type="empty"/>
|
||||
</property>
|
||||
<property name="custom" type="empty">
|
||||
<property name="<Primary>F12" type="string" value="workspace_12_key"/>
|
||||
<property name="<Super>KP_Down" type="string" value="tile_down_key"/>
|
||||
<property name="<Alt>F4" type="string" value="close_window_key"/>
|
||||
<property name="<Primary><Alt>KP_3" type="string" value="move_window_workspace_3_key"/>
|
||||
<property name="<Primary>F2" type="string" value="workspace_2_key"/>
|
||||
<property name="<Primary>F6" type="string" value="workspace_6_key"/>
|
||||
<property name="<Primary><Alt>Down" type="string" value="down_workspace_key"/>
|
||||
<property name="<Primary><Alt>KP_9" type="string" value="move_window_workspace_9_key"/>
|
||||
<property name="<Super>KP_Up" type="string" value="tile_up_key"/>
|
||||
<property name="<Primary><Alt>End" type="string" value="move_window_next_workspace_key"/>
|
||||
<property name="<Primary>F8" type="string" value="workspace_8_key"/>
|
||||
<property name="<Primary><Shift><Alt>Left" type="string" value="move_window_left_key"/>
|
||||
<property name="<Super>KP_Right" type="string" value="tile_right_key"/>
|
||||
<property name="<Primary><Alt>KP_4" type="string" value="move_window_workspace_4_key"/>
|
||||
<property name="Right" type="string" value="right_key"/>
|
||||
<property name="Down" type="string" value="down_key"/>
|
||||
<property name="<Primary>F3" type="string" value="workspace_3_key"/>
|
||||
<property name="<Shift><Alt>Page_Down" type="string" value="lower_window_key"/>
|
||||
<property name="<Primary>F9" type="string" value="workspace_9_key"/>
|
||||
<property name="<Alt>Tab" type="string" value="cycle_windows_key"/>
|
||||
<property name="<Primary><Shift><Alt>Right" type="string" value="move_window_right_key"/>
|
||||
<property name="<Primary><Alt>Right" type="string" value="right_workspace_key"/>
|
||||
<property name="<Alt>F6" type="string" value="stick_window_key"/>
|
||||
<property name="<Primary><Alt>KP_5" type="string" value="move_window_workspace_5_key"/>
|
||||
<property name="<Primary>F11" type="string" value="workspace_11_key"/>
|
||||
<property name="<Alt>F10" type="string" value="maximize_window_key"/>
|
||||
<property name="<Alt>Delete" type="string" value="del_workspace_key"/>
|
||||
<property name="<Super>Tab" type="string" value="switch_window_key"/>
|
||||
<property name="<Primary><Alt>d" type="string" value="show_desktop_key"/>
|
||||
<property name="<Primary>F4" type="string" value="workspace_4_key"/>
|
||||
<property name="<Super>KP_Page_Up" type="string" value="tile_up_right_key"/>
|
||||
<property name="<Alt>F7" type="string" value="move_window_key"/>
|
||||
<property name="Up" type="string" value="up_key"/>
|
||||
<property name="<Primary><Alt>KP_6" type="string" value="move_window_workspace_6_key"/>
|
||||
<property name="<Alt>F11" type="string" value="fullscreen_key"/>
|
||||
<property name="<Alt>space" type="string" value="popup_menu_key"/>
|
||||
<property name="<Super>KP_Home" type="string" value="tile_up_left_key"/>
|
||||
<property name="Escape" type="string" value="cancel_key"/>
|
||||
<property name="<Primary><Alt>KP_1" type="string" value="move_window_workspace_1_key"/>
|
||||
<property name="<Super>KP_Next" type="string" value="tile_down_right_key"/>
|
||||
<property name="<Super>KP_Left" type="string" value="tile_left_key"/>
|
||||
<property name="<Shift><Alt>Page_Up" type="string" value="raise_window_key"/>
|
||||
<property name="<Primary><Alt>Home" type="string" value="move_window_prev_workspace_key"/>
|
||||
<property name="<Alt><Shift>Tab" type="string" value="cycle_reverse_windows_key"/>
|
||||
<property name="<Primary><Alt>Left" type="string" value="left_workspace_key"/>
|
||||
<property name="<Alt>F12" type="string" value="above_key"/>
|
||||
<property name="<Primary><Shift><Alt>Up" type="string" value="move_window_up_key"/>
|
||||
<property name="<Primary>F5" type="string" value="workspace_5_key"/>
|
||||
<property name="<Alt>F8" type="string" value="resize_window_key"/>
|
||||
<property name="<Primary><Alt>KP_7" type="string" value="move_window_workspace_7_key"/>
|
||||
<property name="<Primary><Alt>KP_2" type="string" value="move_window_workspace_2_key"/>
|
||||
<property name="<Super>KP_End" type="string" value="tile_down_left_key"/>
|
||||
<property name="<Primary><Alt>Up" type="string" value="up_workspace_key"/>
|
||||
<property name="<Alt>F9" type="string" value="hide_window_key"/>
|
||||
<property name="<Primary>F7" type="string" value="workspace_7_key"/>
|
||||
<property name="<Primary>F10" type="string" value="workspace_10_key"/>
|
||||
<property name="Left" type="string" value="left_key"/>
|
||||
<property name="<Primary><Alt>KP_8" type="string" value="move_window_workspace_8_key"/>
|
||||
<property name="<Alt>Insert" type="string" value="add_workspace_key"/>
|
||||
<property name="<Primary>F1" type="string" value="workspace_1_key"/>
|
||||
<property name="override" type="bool" value="true"/>
|
||||
</property>
|
||||
</property>
|
||||
<property name="providers" type="array">
|
||||
<value type="string" value="xfwm4"/>
|
||||
<value type="string" value="commands"/>
|
||||
</property>
|
||||
</channel>
|
@ -1,36 +0,0 @@
|
||||
<?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>
|
@ -1,130 +0,0 @@
|
||||
<?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>
|
@ -1,25 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<channel name="xfce4-power-manager" version="1.0">
|
||||
<property name="xfce4-power-manager" type="empty">
|
||||
<property name="power-button-action" type="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>
|
@ -1,7 +0,0 @@
|
||||
<?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>
|
@ -1,44 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<channel name="xfce4-session" version="1.0">
|
||||
<property name="general" type="empty">
|
||||
<property name="FailsafeSessionName" type="empty"/>
|
||||
<property name="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>
|
@ -1,9 +0,0 @@
|
||||
<?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>
|
@ -1,8 +0,0 @@
|
||||
<?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>
|
@ -1,10 +0,0 @@
|
||||
<?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>
|
@ -1,97 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<channel name="xfwm4" version="1.0">
|
||||
<property name="general" type="empty">
|
||||
<property name="activate_action" type="string" value="bring"/>
|
||||
<property name="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>
|
@ -1,49 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<channel name="xsettings" version="1.0">
|
||||
<property name="Net" type="empty">
|
||||
<property name="ThemeName" type="string" value="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>
|
@ -1,66 +0,0 @@
|
||||
// aurora
|
||||
let left = `color0 #14191e
|
||||
color8 #454459
|
||||
color1 #e55c7a
|
||||
color9 #cd5c60
|
||||
color2 #31E183
|
||||
color10 #7CF083
|
||||
color3 #f5c791
|
||||
color11 #dbac66
|
||||
color4 #4ca6e8
|
||||
color12 #91b9c7
|
||||
color5 #9d81ba
|
||||
color13 #6E6884
|
||||
color6 #49bdb0
|
||||
color14 #0D9C94
|
||||
color7 #e6e6e8
|
||||
color15 #f2f2f2`
|
||||
.replaceAll(/\s+/g, ':')
|
||||
.split('\n')
|
||||
.map(e => e.toUpperCase().split(':') )
|
||||
|
||||
// normal
|
||||
let right = `color0 #4B5254
|
||||
color8 #879193
|
||||
color1 #CD5C60
|
||||
color9 #E36D5B
|
||||
color2 #6FB593
|
||||
color10 #72CCBA
|
||||
color3 #DBAC66
|
||||
color11 #F2C866
|
||||
color4 #91B9C7
|
||||
color12 #97B8DE
|
||||
color5 #845A84
|
||||
color13 #8C629C
|
||||
color6 #4D9391
|
||||
color14 #5096AB
|
||||
color7 #E4E4E8
|
||||
color15 #EFEFF1`
|
||||
.replaceAll(/\s+/g, ':')
|
||||
.split('\n')
|
||||
.map(e => e.toUpperCase().split(':') )
|
||||
|
||||
left = new Map(left)
|
||||
|
||||
let source = `base00 = "#18181B"
|
||||
base01 = "#222225"
|
||||
base02 = "#4B5254"
|
||||
base03 = "#545C5E"
|
||||
base04 = "#879193"
|
||||
base05 = "#9ba5a7"
|
||||
base06 = "#d0d0d4"
|
||||
base07 = "#E4E4E8"
|
||||
base08 = "#CD5C60"
|
||||
base09 = "#DBAC66"
|
||||
base0A = "#F2C866"
|
||||
base0B = "#6FB593"
|
||||
base0C = "#4D9391"
|
||||
base0D = "#91B9C7"
|
||||
base0E = "#845A84"
|
||||
base0F = "#E36D5B"`
|
||||
|
||||
for(let [ name, value ] of right) {
|
||||
source = source.replaceAll(value, left.get(name))
|
||||
}
|
||||
|
||||
console.log(source)
|
48
flake.lock
generated
Normal file
48
flake.lock
generated
Normal file
@ -0,0 +1,48 @@
|
||||
{
|
||||
"nodes": {
|
||||
"home-manager": {
|
||||
"inputs": {
|
||||
"nixpkgs": [
|
||||
"nixpkgs"
|
||||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1705708511,
|
||||
"narHash": "sha256-3f4BkRY70Fj7yvuo87c4QQPAjnt571g2wJ50jY7hnYc=",
|
||||
"owner": "nix-community",
|
||||
"repo": "home-manager",
|
||||
"rev": "ce4b88c465d928f4f8b75d0920f1788d5b65ca94",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "nix-community",
|
||||
"repo": "home-manager",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"nixpkgs": {
|
||||
"locked": {
|
||||
"lastModified": 1705496572,
|
||||
"narHash": "sha256-rPIe9G5EBLXdBdn9ilGc0nq082lzQd0xGGe092R/5QE=",
|
||||
"owner": "nixos",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "842d9d80cfd4560648c785f8a4e6f3b096790e19",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "nixos",
|
||||
"ref": "nixos-unstable",
|
||||
"repo": "nixpkgs",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"root": {
|
||||
"inputs": {
|
||||
"home-manager": "home-manager",
|
||||
"nixpkgs": "nixpkgs"
|
||||
}
|
||||
}
|
||||
},
|
||||
"root": "root",
|
||||
"version": 7
|
||||
}
|
50
flake.nix
Normal file
50
flake.nix
Normal file
@ -0,0 +1,50 @@
|
||||
{
|
||||
description = "Nixos config flake";
|
||||
|
||||
inputs = {
|
||||
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
||||
|
||||
home-manager = {
|
||||
url = "github:nix-community/home-manager";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
# newmpkgs = {
|
||||
# url = "github:EpsilonKu/newm-atha";
|
||||
# inputs.nixpkgs.follows = "nixpkgs";
|
||||
# };
|
||||
};
|
||||
|
||||
outputs = { self, nixpkgs, ... }@inputs:
|
||||
let
|
||||
system = "x86_64-linux";
|
||||
pkgs = nixpkgs.legacyPackages.${system};
|
||||
specialArgs = {
|
||||
inherit system;
|
||||
helpers = import ./common/helpers.nix {
|
||||
inherit inputs;
|
||||
lib = nixpkgs.lib;
|
||||
};
|
||||
};
|
||||
in
|
||||
{
|
||||
nixpkgs.hostPlatform = "x86_64-linux";
|
||||
|
||||
nixosConfigurations.vulpes = nixpkgs.lib.nixosSystem {
|
||||
inherit specialArgs;
|
||||
modules = [
|
||||
./hosts/vulpes/configuration.nix
|
||||
inputs.home-manager.nixosModules.default
|
||||
];
|
||||
};
|
||||
|
||||
nixosConfigurations.vinegar = nixpkgs.lib.nixosSystem {
|
||||
inherit specialArgs;
|
||||
modules = [
|
||||
./hosts/vinegar/configuration.nix
|
||||
inputs.home-manager.nixosModules.default
|
||||
];
|
||||
};
|
||||
|
||||
};
|
||||
}
|
67
hosts/vinegar/configuration.nix
Normal file
67
hosts/vinegar/configuration.nix
Normal file
@ -0,0 +1,67 @@
|
||||
# Edit this configuration file to define what should be installed on
|
||||
# your system. Help is available in the configuration.nix(5) man page, on
|
||||
# https://search.nixos.org/options and in the NixOS manual (`nixos-help`).
|
||||
|
||||
# NixOS-WSL specific options are documented on the NixOS-WSL repository:
|
||||
# https://github.com/nix-community/NixOS-WSL
|
||||
|
||||
args@{ config, lib, pkgs, helpers, ... }:
|
||||
|
||||
let
|
||||
username = "nixos";
|
||||
in {
|
||||
imports =
|
||||
helpers.getModules "/default.nix" (import ./modules.nix) ++ [
|
||||
# include NixOS-WSL modules
|
||||
<nixos-wsl/modules>
|
||||
];
|
||||
|
||||
home-manager.users."${username}" = {
|
||||
imports = helpers.getModules "/home.nix" (import ./modules.nix) ++ [
|
||||
../../common/home.nix
|
||||
./home.nix
|
||||
];
|
||||
|
||||
config.custom.username = username;
|
||||
};
|
||||
|
||||
wsl = {
|
||||
enable = true;
|
||||
defaultUser = username;
|
||||
};
|
||||
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
||||
|
||||
services.xserver = {
|
||||
layout = "us";
|
||||
xkb.options = "caps:swapescape,altwin:swap_alt_win";
|
||||
};
|
||||
|
||||
services.xserver.enable = true;
|
||||
services.xserver.displayManager.sddm.enable = true;
|
||||
services.xserver.desktopManager.plasma5.enable = true;
|
||||
|
||||
services.xrdp.enable = true;
|
||||
services.xrdp.defaultWindowManager = "dbus-run-session bspwm";
|
||||
# services.xrdp.defaultWindowManager = "Hyprland";
|
||||
services.xrdp.openFirewall = true;
|
||||
services.xrdp.port = 3390;
|
||||
|
||||
environment.systemPackages = [
|
||||
pkgs.vscodium
|
||||
pkgs.git
|
||||
pkgs.wget
|
||||
pkgs.micro
|
||||
];
|
||||
|
||||
fonts.packages = [
|
||||
pkgs.ubuntu_font_family
|
||||
];
|
||||
|
||||
# This value determines the NixOS release from which the default
|
||||
# settings for stateful data, like file locations and database versions
|
||||
# on your system were taken. It's perfectly fine and recommended to leave
|
||||
# this value at the release version of the first install of this system.
|
||||
# Before changing this value read the documentation for this option
|
||||
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
|
||||
system.stateVersion = "23.11"; # Did you read the comment?
|
||||
}
|
45
hosts/vinegar/home.nix
Normal file
45
hosts/vinegar/home.nix
Normal file
@ -0,0 +1,45 @@
|
||||
{ pkgs, helpers, ... }:
|
||||
|
||||
{
|
||||
imports =
|
||||
# helpers.getModules "/home.nix" (import ./modules.nix) ++
|
||||
[
|
||||
../../colors/monokai-dark
|
||||
./start-session/home.nix
|
||||
];
|
||||
custom.wallpaper = ../../wallpapers/blip-blip-blip-blip.jpg;
|
||||
|
||||
xsession.windowManager.bspwm.extraConfig = ''
|
||||
pgrep -x sxhkd > /dev/null || sxhkd &
|
||||
'';
|
||||
|
||||
home = {
|
||||
sessionVariables = {
|
||||
EDITOR = "codium";
|
||||
BROWSER = "qutebrowser";
|
||||
TERMINAL = "kitty";
|
||||
TERM = "kitty";
|
||||
FILEMANAGER = "kitty lf";
|
||||
|
||||
# Tell Electron apps it's wayland
|
||||
NIXOS_OZONE_WL = 1;
|
||||
};
|
||||
|
||||
sessionPath = [
|
||||
"$HOME/.local/bin"
|
||||
];
|
||||
|
||||
stateVersion = "23.11";
|
||||
};
|
||||
|
||||
# Defaults
|
||||
xdg.mimeApps.enable = true;
|
||||
xdg.mimeApps.defaultApplications = {
|
||||
"inode/directory" = [
|
||||
# "lf.desktop"
|
||||
"kitty-open.desktop"
|
||||
];
|
||||
};
|
||||
|
||||
|
||||
}
|
10
hosts/vinegar/modules.nix
Normal file
10
hosts/vinegar/modules.nix
Normal file
@ -0,0 +1,10 @@
|
||||
[
|
||||
../../modules/fish
|
||||
../../modules/kitty
|
||||
../../modules/lf
|
||||
|
||||
../../modules/ncspot
|
||||
|
||||
../../modules/bspwm
|
||||
../../modules/qutebrowser
|
||||
]
|
6
hosts/vinegar/start-session.nix
Normal file
6
hosts/vinegar/start-session.nix
Normal file
@ -0,0 +1,6 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
home.file.".local/bin/qutesearch".source = ./start-session
|
||||
environment.systemPackages = [ startSession ];
|
||||
}
|
12
hosts/vinegar/start-session/home.nix
Normal file
12
hosts/vinegar/start-session/home.nix
Normal file
@ -0,0 +1,12 @@
|
||||
{ pkgs, ... }: {
|
||||
home.file.".local/bin/start-session" = {
|
||||
source = ./start-session;
|
||||
executable = true;
|
||||
};
|
||||
|
||||
home.packages = [
|
||||
pkgs.xwayland
|
||||
pkgs.xorg.xrandr
|
||||
pkgs.gawk
|
||||
];
|
||||
}
|
5
hosts/vinegar/start-session/start-session
Normal file
5
hosts/vinegar/start-session/start-session
Normal file
@ -0,0 +1,5 @@
|
||||
#!/bin/sh
|
||||
Xwayland :1 -geometry $(xrandr -q | gawk 'match($0, /([0-9]+x[0-9]+)/, ary) {print ary[1]; exit}') -fullscreen &
|
||||
xw_pid=$!
|
||||
WAYLAND_DISPLAY= DISPLAY=:1 dbus-launch $1
|
||||
kill $xw_pid
|
146
hosts/vulpes/configuration.nix
Normal file
146
hosts/vulpes/configuration.nix
Normal file
@ -0,0 +1,146 @@
|
||||
# Edit this configuration file to define what should be installed on
|
||||
# your system. Help is available in the configuration.nix(5) man page
|
||||
# and in the NixOS manual (accessible by running ‘nixos-help’).
|
||||
|
||||
{ config, pkgs, inputs, ... }:
|
||||
|
||||
let
|
||||
username = "dakedres";
|
||||
in {
|
||||
custom.username = username;
|
||||
|
||||
imports = [
|
||||
# Include the results of the hardware scan.
|
||||
./hardware-configuration.nix
|
||||
inputs.home-manager.nixosModules.default
|
||||
./user.nix
|
||||
];
|
||||
|
||||
users.users.${username} = {
|
||||
isNormalUser = true;
|
||||
description = "Dakedres";
|
||||
extraGroups = [ "networkmanager" "wheel" ];
|
||||
shell = pkgs.fish;
|
||||
};
|
||||
|
||||
# We live in a society
|
||||
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
||||
|
||||
# Bootloader.
|
||||
boot.loader.systemd-boot.enable = true;
|
||||
boot.loader.efi.canTouchEfiVariables = true;
|
||||
|
||||
# That's what it's called
|
||||
networking.hostName = "vulpes";
|
||||
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
|
||||
|
||||
# I don't need no fig leaves
|
||||
security.sudo.wheelNeedsPassword = false;
|
||||
|
||||
# Configure network proxy if necessary
|
||||
# networking.proxy.default = "http://user:password@proxy:port/";
|
||||
# networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain";
|
||||
|
||||
# Enable networking
|
||||
networking.networkmanager.enable = true;
|
||||
|
||||
# Set your time zone.
|
||||
time.timeZone = "America/Boise";
|
||||
|
||||
# Select internationalisation properties.
|
||||
i18n.defaultLocale = "en_US.UTF-8";
|
||||
i18n.extraLocaleSettings = {
|
||||
LC_ADDRESS = "en_US.UTF-8";
|
||||
LC_IDENTIFICATION = "en_US.UTF-8";
|
||||
LC_MEASUREMENT = "en_US.UTF-8";
|
||||
LC_MONETARY = "en_US.UTF-8";
|
||||
LC_NAME = "en_US.UTF-8";
|
||||
LC_NUMERIC = "en_US.UTF-8";
|
||||
LC_PAPER = "en_US.UTF-8";
|
||||
LC_TELEPHONE = "en_US.UTF-8";
|
||||
LC_TIME = "en_US.UTF-8";
|
||||
};
|
||||
|
||||
# Enable the X11 windowing system.
|
||||
services.xserver.enable = true;
|
||||
|
||||
# Enable the KDE Plasma Desktop Environment.
|
||||
services.xserver.displayManager.sddm.enable = true;
|
||||
services.xserver.desktopManager.plasma5.enable = true;
|
||||
|
||||
# Configure keymap in X11
|
||||
services.xserver = {
|
||||
layout = "us";
|
||||
xkb.options = "caps:swapescape,altwin:swap_alt_win";
|
||||
};
|
||||
|
||||
# Enable CUPS to print documents.
|
||||
services.printing.enable = true;
|
||||
|
||||
# Enable bluetooth
|
||||
hardware.bluetooth.enable = true;
|
||||
hardware.bluetooth.powerOnBoot = true;
|
||||
# Blueman
|
||||
services.blueman.enable = true;
|
||||
|
||||
# Enable sound with pipewire.
|
||||
sound.enable = true;
|
||||
hardware.pulseaudio.enable = false;
|
||||
security.rtkit.enable = true;
|
||||
services.pipewire = {
|
||||
enable = true;
|
||||
alsa.enable = true;
|
||||
alsa.support32Bit = true;
|
||||
pulse.enable = true;
|
||||
# If you want to use JACK applications, uncomment this
|
||||
#jack.enable = true;
|
||||
|
||||
# use the example session manager (no others are packaged yet so this is enabled by default,
|
||||
# no need to redefine it in your config for now)
|
||||
#media-session.enable = true;
|
||||
};
|
||||
|
||||
# Enable touchpad support (enabled default in most desktopManager).
|
||||
# services.xserver.libinput.enable = true;
|
||||
|
||||
services.flatpak.enable = true;
|
||||
|
||||
# List packages installed in system profile. To search, run:
|
||||
# $ nix search wget
|
||||
environment.systemPackages = with pkgs; [
|
||||
# vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
|
||||
git
|
||||
wget
|
||||
micro
|
||||
openconnect
|
||||
btop
|
||||
];
|
||||
|
||||
# Some programs need SUID wrappers, can be configured further or are
|
||||
# started in user sessions.
|
||||
# programs.mtr.enable = true;
|
||||
# programs.gnupg.agent = {
|
||||
# enable = true;
|
||||
# enableSSHSupport = true;
|
||||
# };
|
||||
|
||||
# List services that you want to enable:
|
||||
|
||||
# Enable the OpenSSH daemon.
|
||||
# services.openssh.enable = true;
|
||||
|
||||
# Open ports in the firewall.
|
||||
# networking.firewall.allowedTCPPorts = [ ... ];
|
||||
# networking.firewall.allowedUDPPorts = [ ... ];
|
||||
# Or disable the firewall altogether.
|
||||
# networking.firewall.enable = false;
|
||||
|
||||
# This value determines the NixOS release from which the default
|
||||
# settings for stateful data, like file locations and database versions
|
||||
# on your system were taken. It‘s perfectly fine and recommended to leave
|
||||
# this value at the release version of the first install of this system.
|
||||
# Before changing this value read the documentation for this option
|
||||
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
|
||||
system.stateVersion = "23.11"; # Did you read the comment?
|
||||
|
||||
}
|
39
hosts/vulpes/hardware-configuration.nix
Normal file
39
hosts/vulpes/hardware-configuration.nix
Normal file
@ -0,0 +1,39 @@
|
||||
# Do not modify this file! It was generated by ‘nixos-generate-config’
|
||||
# and may be overwritten by future invocations. Please make changes
|
||||
# to /etc/nixos/configuration.nix instead.
|
||||
{ config, lib, pkgs, modulesPath, ... }:
|
||||
|
||||
{
|
||||
imports =
|
||||
[ (modulesPath + "/installer/scan/not-detected.nix")
|
||||
];
|
||||
|
||||
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" ];
|
||||
boot.initrd.kernelModules = [ ];
|
||||
boot.kernelModules = [ "kvm-intel" ];
|
||||
boot.extraModulePackages = [ ];
|
||||
|
||||
fileSystems."/" =
|
||||
{ device = "/dev/disk/by-uuid/81248e4c-95cf-4427-9df1-57f39b62a5a3";
|
||||
fsType = "ext4";
|
||||
};
|
||||
|
||||
fileSystems."/boot" =
|
||||
{ device = "/dev/disk/by-uuid/E50D-8471";
|
||||
fsType = "vfat";
|
||||
};
|
||||
|
||||
swapDevices =
|
||||
[ { device = "/dev/disk/by-uuid/25b9170e-c60a-49c1-929a-0fe6fc1e15ea"; }
|
||||
];
|
||||
|
||||
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
|
||||
# (the default) this is the recommended approach. When using systemd-networkd it's
|
||||
# still possible to use this option, but it's recommended to use it in conjunction
|
||||
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
|
||||
networking.useDHCP = lib.mkDefault true;
|
||||
# networking.interfaces.wlp2s0.useDHCP = lib.mkDefault true;
|
||||
|
||||
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
||||
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
||||
}
|
81
hosts/vulpes/home.nix
Normal file
81
hosts/vulpes/home.nix
Normal file
@ -0,0 +1,81 @@
|
||||
{ pkgs, lib, ... }:
|
||||
|
||||
# let
|
||||
|
||||
# terminal = "kitty";
|
||||
# # newm = inputs.newmpkgs.packages.${system}.newm-atha;
|
||||
|
||||
# in {
|
||||
{
|
||||
custom.colors = import ../themes/colors/base16-monokai.nix;
|
||||
custom.wallpaper = ../wallpapers/blip-blip-blip-blip.jpg;
|
||||
|
||||
home = {
|
||||
sessionVariables = {
|
||||
EDITOR = "kate";
|
||||
BROWSER = "qutebrowser";
|
||||
TERMINAL = "kitty";
|
||||
TERM = "kitty";
|
||||
FILEMANAGER = "kitty lf";
|
||||
|
||||
# Tell Electron apps it's wayland time
|
||||
NIXOS_OZONE_WL = 1;
|
||||
};
|
||||
|
||||
sessionPath = [
|
||||
"$HOME/.local/bin"
|
||||
];
|
||||
|
||||
stateVersion = "23.11";
|
||||
};
|
||||
|
||||
home.packages = [
|
||||
# Utility
|
||||
pkgs.bitwarden
|
||||
pkgs.vimiv-qt
|
||||
|
||||
# Visual
|
||||
pkgs.imagemagick
|
||||
pkgs.kate
|
||||
pkgs.helix
|
||||
pkgs.vscodium
|
||||
|
||||
#Games
|
||||
pkgs.prismlauncher-qt5
|
||||
|
||||
# Env
|
||||
pkgs.eww-wayland
|
||||
pkgs.socat
|
||||
pkgs.jq
|
||||
];
|
||||
|
||||
custom.nonFreePackages = [
|
||||
"discord"
|
||||
];
|
||||
|
||||
# Directories
|
||||
xdg.userDirs = {
|
||||
createDirectories = false;
|
||||
download = "$HOME/downloads";
|
||||
music = "$HOME/music";
|
||||
};
|
||||
|
||||
# Openers
|
||||
xdg.mimeApps.enable = true;
|
||||
xdg.mimeApps.defaultApplications = {
|
||||
"inode/directory" = [
|
||||
# "lf.desktop"
|
||||
"kitty-open.desktop"
|
||||
];
|
||||
};
|
||||
|
||||
# Standard programs
|
||||
programs.bat = {
|
||||
enable = true;
|
||||
config = {
|
||||
paging = "never";
|
||||
};
|
||||
};
|
||||
|
||||
services.blueman-applet.enable = true;
|
||||
}
|
11
hosts/vulpes/modules.nix
Normal file
11
hosts/vulpes/modules.nix
Normal file
@ -0,0 +1,11 @@
|
||||
[
|
||||
../modules/fish
|
||||
../modules/qutebrowser
|
||||
../modules/kitty
|
||||
../modules/lf
|
||||
|
||||
../modules/ncspot
|
||||
|
||||
../modules/bspwm
|
||||
../modules/blueman
|
||||
]
|
176
hosts/vulpes/swhkdrc
Normal file
176
hosts/vulpes/swhkdrc
Normal file
@ -0,0 +1,176 @@
|
||||
#
|
||||
# wm independent hotkeys
|
||||
#
|
||||
|
||||
# Open kitty
|
||||
alt + Return
|
||||
kitty
|
||||
|
||||
# Open floating kitty
|
||||
alt + shift + Return
|
||||
bsp-float kitty
|
||||
|
||||
# launch program
|
||||
alt + @space
|
||||
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:
|
||||
alt + Escape
|
||||
pkill -USR1 -x sxhkd; notify-send 'Key daemon reloaded'
|
||||
|
||||
# Start a qutebrowser search
|
||||
alt + o
|
||||
qutesearch
|
||||
|
||||
# Show keybinds
|
||||
alt + slash
|
||||
sxhkd-help
|
||||
|
||||
# Show clipmenu
|
||||
alt + v
|
||||
rofi -modi "clipboard:greenclip print" -show clipboard -run-command '{cmd}'
|
||||
|
||||
alt + shift + v
|
||||
greenclip clear
|
||||
|
||||
#
|
||||
# bspwm hotkeys
|
||||
#
|
||||
|
||||
# quit/restart bspwm
|
||||
alt + shift + {q,r}
|
||||
bspc {quit,wm -r}
|
||||
|
||||
# close and kill
|
||||
alt + {_,shift + }w
|
||||
bspc node -{c,k}
|
||||
|
||||
alt + q
|
||||
bspc node -c
|
||||
|
||||
# alternate between the tiled and monocle layout
|
||||
alt + m
|
||||
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
|
||||
alt + g
|
||||
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
|
||||
#
|
||||
|
||||
# set the window state
|
||||
alt + {z,shift + z,x,f}
|
||||
bspc node -t {tiled,pseudo_tiled,floating,fullscreen}
|
||||
|
||||
# set the node flags
|
||||
alt + ctrl + {m,x,y,z}
|
||||
bspc node -g {marked,locked,sticky,private}
|
||||
|
||||
#
|
||||
# focus/swap
|
||||
#
|
||||
|
||||
# focus the node in the given direction
|
||||
alt + {h,j,k,l,Left,Down,Up,Right}
|
||||
bspc node -{f} {west,south,north,east,west,south,north,east}
|
||||
|
||||
# focus the node for the given path jump
|
||||
alt + {p,b,comma,period}
|
||||
bspc node -f @{parent,brother,first,second}
|
||||
|
||||
# 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
|
||||
alt + {grave,Tab}
|
||||
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
|
||||
alt + {_,shift + }{1-9,0}
|
||||
bspc {desktop -f,node -d} '^{1-9,10}'
|
||||
|
||||
#
|
||||
# preselect
|
||||
#
|
||||
|
||||
# preselect the direction
|
||||
alt + ctrl + shift {h,j,k,l,Left,Down,Up,Right}
|
||||
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
|
||||
alt + ctrl + space
|
||||
bspc node -p cancel
|
||||
|
||||
# cancel the preselection for the focused desktop
|
||||
alt + 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
|
||||
alt + s ; {h,j,k,l,Left,Down,Up,Right}
|
||||
STEP=20; SELECTION={1,2,3,4,1,2,3,4}; \
|
||||
bspc node -z $(echo "left -$STEP 0,bottom 0 $STEP,top 0 -$STEP,right $STEP 0" | cut -d',' -f$SELECTION) || \
|
||||
bspc node -z $(echo "right -$STEP 0,top 0 $STEP,bottom 0 -$STEP,left $STEP 0" | cut -d',' -f$SELECTION)
|
||||
|
||||
# move a floating window
|
||||
alt + {h,j,k,l}
|
||||
bspc node -v {-30 0,0 20,0 -30,20 0}
|
||||
|
||||
# move a not-floating window
|
||||
alt + shift + {h,j,k,l,Left,Down,Up,Right}
|
||||
bsp-smove {west,south,north,east,west,south,north,east}
|
||||
|
||||
#
|
||||
# tabs
|
||||
#
|
||||
|
||||
# move in/out of tabbed container
|
||||
alt + ctrl + {h,j,k,l,Left,Down,Up,Right}
|
||||
tabc-smart-detach {west,south,north,east,west,south,north,east}
|
||||
|
||||
# tab/untab window
|
||||
alt + t
|
||||
id=$(bspc query -N -n); \
|
||||
[[ "$(tabc printclass $id)" == "tabbed" ]] \
|
||||
&& tabc detach $id \
|
||||
|| tabc create $id
|
||||
|
||||
# toggle autoattach in tabbed container
|
||||
alt + shift + t
|
||||
tabc autoattach $(bspc query -N -n)
|
@ -1,9 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
printf %s '
|
||||
#START SHCHEMES BLOCK : printf "SCHEME=\"%s\"\n" "$SCHEME"
|
||||
SCHEME="horizon-terminal-dark"
|
||||
|
||||
#END SHCHEMES BLOCK
|
||||
' >> ~/.profile
|
||||
change-scheme
|
@ -1,18 +0,0 @@
|
||||
#!/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
|
@ -1,4 +0,0 @@
|
||||
sudo apt install \
|
||||
socat \
|
||||
sqlite3 \
|
||||
suckless-tools # wmname primarily
|
3
modules/blueman/default.nix
Normal file
3
modules/blueman/default.nix
Normal file
@ -0,0 +1,3 @@
|
||||
{ ... }: {
|
||||
services.blueman.enable = true;
|
||||
}
|
3
modules/blueman/home.nix
Normal file
3
modules/blueman/home.nix
Normal file
@ -0,0 +1,3 @@
|
||||
{ ... }: {
|
||||
services.blueman-applet.enable = true;
|
||||
}
|
3
modules/bspwm/default.nix
Normal file
3
modules/bspwm/default.nix
Normal file
@ -0,0 +1,3 @@
|
||||
{ ... }: {
|
||||
services.xserver.windowManager.bspwm.enable = true;
|
||||
}
|
90
modules/bspwm/home.nix
Normal file
90
modules/bspwm/home.nix
Normal file
@ -0,0 +1,90 @@
|
||||
{ pkgs, lib, config, ... }: {
|
||||
options.custom.bspwm.enable = lib.mkEnable "bspwm";
|
||||
|
||||
imports = [
|
||||
../qutesearch/home.nix
|
||||
../tint2/home.nix
|
||||
../rofi/home.nix
|
||||
];
|
||||
|
||||
config = {
|
||||
# programs.qutebrowser.enable = true;
|
||||
# custom.qutesearch.enable = true;
|
||||
# programs.tint2.enable = true;
|
||||
# programs.rofi.enable = true;
|
||||
|
||||
home.packages = [
|
||||
pkgs.feh
|
||||
pkgs.flameshot
|
||||
];
|
||||
|
||||
services.network-manager-applet.enable = true;
|
||||
|
||||
xdg.portal = {
|
||||
enable = true;
|
||||
extraPortals = [
|
||||
pkgs.xdg-desktop-portal-kde
|
||||
];
|
||||
configPackages = [
|
||||
pkgs.xdg-desktop-portal-kde
|
||||
];
|
||||
};
|
||||
|
||||
# handled by home manager
|
||||
# home.sessionVariables = {
|
||||
# # Tell java it's in no-reparenting land
|
||||
# "_JAVA_AWT_WM_NONREPARENTING" = 1;
|
||||
# };
|
||||
|
||||
services.sxhkd.enable = true;
|
||||
xdg.configFile."sxhkd/sxhkdrc" = {
|
||||
source = ./sxhkdrc;
|
||||
executable = true;
|
||||
};
|
||||
|
||||
home.file.".local/bin" = {
|
||||
source = ./scripts;
|
||||
recursive = true;
|
||||
executable = true;
|
||||
};
|
||||
|
||||
xsession.windowManager.bspwm = {
|
||||
enable = true;
|
||||
|
||||
# monitors = {
|
||||
# "eDP-1" = [ "I" "II" "III" "IV" "V" ];
|
||||
# };
|
||||
|
||||
extraConfigEarly = ''
|
||||
bspc monitor -d I II III IV V
|
||||
'';
|
||||
|
||||
settings = {
|
||||
border_width = 1;
|
||||
window_gap = 4;
|
||||
split_ratio = 0.52;
|
||||
|
||||
pointer_modifier = "super";
|
||||
pointer_action1 = "move";
|
||||
pointer_action2 = "resize_corner";
|
||||
|
||||
focus_follows_pointer = true;
|
||||
pointer_follows_focus = true;
|
||||
};
|
||||
|
||||
rules = {
|
||||
Gimp = {
|
||||
state = "floating";
|
||||
};
|
||||
};
|
||||
|
||||
startupPrograms = [
|
||||
# "pgrep -x sxhkd > /dev/null || sxhkd &"
|
||||
"wmname LG3D"
|
||||
# "xsetroot -cursor_name left_ptr &"
|
||||
"tint2"
|
||||
"feh --bg-scale ${config.custom.wallpaper}"
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
3
modules/bspwm/scripts/bsp-float
Executable file
3
modules/bspwm/scripts/bsp-float
Executable file
@ -0,0 +1,3 @@
|
||||
#!/bin/sh
|
||||
# Open an app in float mode
|
||||
bspc rule -a \* -o state=floating && $@
|
@ -1,4 +1,4 @@
|
||||
#!/bin/bash
|
||||
#!/bin/sh
|
||||
|
||||
if [ ! -z $1 ]; then
|
||||
# FLOATING_DESKTOP_ID=$(bspc query -D -d '^3')
|
||||
@ -11,4 +11,4 @@ if [ ! -z $1 ]; then
|
||||
done
|
||||
else
|
||||
echo "No desktop provided"
|
||||
fi
|
||||
fi
|
@ -1,4 +1,4 @@
|
||||
#!/bin/bash
|
||||
#!/bin/sh
|
||||
|
||||
# A more fluid way of moving windows with BSPWM, which is meant to be
|
||||
# implemented in SXHKD. If there is a window in the given direction,
|
@ -1,4 +1,4 @@
|
||||
#!/bin/bash
|
||||
#!/bin/sh
|
||||
|
||||
declare -A layout_symbols
|
||||
|
||||
@ -14,4 +14,4 @@ send_symbol $(bspc query -T --desktop focused | jq -r '.layout')
|
||||
|
||||
bspc subscribe desktop_layout | while read -a msg ; do
|
||||
send_symbol ${msg[3]}
|
||||
done
|
||||
done
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user