Move to chezmoi

This commit is contained in:
Grafcube 2022-09-07 15:20:03 +05:30
parent e04887e649
commit 89602d7b52
Signed by: grafcube
GPG Key ID: 0319A84E926CA1DD
72 changed files with 4209 additions and 260 deletions

1
.gitattributes vendored
View File

@ -1 +0,0 @@
*.so filter=lfs diff=lfs merge=lfs -text

1
.gitignore vendored
View File

@ -1 +0,0 @@
!*.so

View File

@ -1,202 +0,0 @@
# Configuration file for libinput-gestures.
# Mark Blakeney, Sep 2015
#
# The default configuration file exists at /etc/libinput-gestures.conf
# but a user can create a personal custom configuration file at
# ~/.config/libinput-gestures.conf.
#
# Lines starting with '#' and blank lines are ignored. Currently
# "gesture" and "device" configuration keywords are supported as
# described below. The keyword can optionally be appended with a ":" (to
# maintain compatibility with original format configuration files).
#
# Each gesture line has 3 [or 4] arguments separated by whitespace:
#
# action motion [finger_count] command
#
# where action and motion is either:
# swipe up
# swipe down
# swipe left
# swipe right
# swipe left_up
# swipe left_down
# swipe right_up
# swipe right_down
# pinch in
# pinch out
# pinch clockwise
# pinch anticlockwise
# hold on (hold gesture available since libinput 1.19)
#
# command is the remainder of the line and is any valid shell command +
# arguments.
#
# finger_count is a single numeric digit and is optional (and is
# typically 3 or 4). If specified then the command is executed when
# exactly that number of fingers is used in the gesture. If not
# specified then the command is executed when that gesture is executed
# with any number of fingers. Gesture lines specified with finger_count
# have priority over the same gesture specified without any
# finger_count.
#
# Typically command will be _internal, or xdotool. See "man xdotool" for
# the many things you can action with that tool. Note that unfortunately
# xdotool does not work with native Wayland clients.
###############################################################################
# SWIPE GESTURES:
###############################################################################
# Note the default is an "internal" command that uses wmctrl to switch
# workspaces and, unlike xdotool, works on both Xorg and Wayland (via
# XWayland). It also can be configured for vertical and horizontal
# switching over tabular workspaces, as per the example below. You can
# also add "-w" to the internal command to allow wrapping workspaces.
# Ensure you install wmctrl if you use _internal.
# Move to next workspace (works for GNOME/KDE/etc on Wayland and Xorg)
# gesture swipe up _internal ws_up
gesture swipe left 4 swaymsg workspace next
gesture swipe right 4 swaymsg workspace prev
# NOTE ABOUT FINGER COUNT:
# The above command will configure this command for all fingers (i.e. 3
# for 4) but to configure it for 3 fingers only, change it to:
# gesture swipe up 3 _internal ws_up
# Then you can configure something else for 4 fingers or leave 4 fingers
# unconfigured. You can configure an explicit finger count like this for
# all example commands in this configuration file.
#
# gesture swipe up xdotool key super+Page_Down
# Move to prev workspace (works for GNOME/KDE/etc on Wayland and Xorg)
# gesture swipe down _internal ws_down
# gesture swipe down xdotool key super+Page_Up
# Browser go forward (works only for Xorg, and Xwayland clients)
# gesture swipe left xdotool key alt+Right
# gesture swipe left 3 ydotool key alt+Right
# Browser go back (works only for Xorg, and Xwayland clients)
# gesture swipe right xdotool key alt+Left
# gesture swipe right 3 ydotool key alt+Left
# Open new browser tag ("hold on" available since libinput 1.19)
# gesture hold on 4 xdotool key control+t
# NOTE: If you don't use "natural" scrolling direction for your touchpad
# then you may want to swap the above default left/right and up/down
# configurations.
# Optional extended swipe gestures, e.g. for browser tab navigation:
#
# Jump to next open browser tab
# gesture swipe right_up xdotool key control+Tab
#
# Jump to previous open browser tab
# gesture swipe left_up xdotool key control+shift+Tab
#
# Close current browser tab
# gesture swipe left_down xdotool key control+w
#
# Reopen and jump to last closed browser tab
# gesture swipe right_down xdotool key control+shift+t
# Example of 8 static workspaces, e.g. using KDE virtual-desktops,
# arranged in 2 rows of 4 columns across using swipe up/down/left/right
# to navigate in fixed planes. You can also add the "-w/--wrap" option
# to allow wrapping in any direction. You must configure your virtual
# desktops with the same column dimension.
# gesture swipe up _internal --cols 4 ws_up
# gesture swipe down _internal --cols 4 ws_down
# gesture swipe left _internal --cols 4 ws_left
# gesture swipe right _internal --cols 4 ws_right
#
# Example of 16 static workspaces, e.g. using KDE virtual-desktops,
# arranged in 4 rows of 4 columns across using swipe up/down/left/right
# to navigate in fixed planes, and also using swipe
# left_up/left_down/right_up/right_down to navigate diagonally. You can
# also add the "-w/--wrap" option to allow wrapping in any direction
# and/or diagonally. You must configure your virtual desktops with the
# same column dimension.
# gesture swipe up _internal --cols 4 ws_up
# gesture swipe down _internal --cols 4 ws_down
# gesture swipe left _internal --cols 4 ws_left
# gesture swipe right _internal --cols 4 ws_right
# gesture swipe left_up _internal --cols 4 ws_left_up
# gesture swipe left_down _internal --cols 4 ws_left_down
# gesture swipe right_up _internal --cols 4 ws_right_up
# gesture swipe right_down _internal --cols 4 ws_right_down
# Example virtual desktop switching for Ubuntu Unity/Compiz. The
# _internal command does not work for Compiz but you can explicitly
# configure the swipe commands to work for a Compiz virtual 2
# dimensional desktop as follows:
# gesture swipe up xdotool key ctrl+alt+Up
# gesture swipe down xdotool key ctrl+alt+Down
# gesture swipe left xdotool key ctrl+alt+Left
# gesture swipe right xdotool key ctrl+alt+Right
# Example to change audio volume:
# Note this only works on an Xorg desktop (not Wayland).
# gesture swipe up xdotool key XF86AudioRaiseVolume
# gesture swipe down xdotool key XF86AudioLowerVolume
###############################################################################
# PINCH GESTURES:
###############################################################################
# GNOME SHELL open/close overview (works for GNOME on Xorg only)
# gesture pinch in xdotool key super+s
# gesture pinch out xdotool key super+s
# KDE Plasma open/close overview
# gesture pinch in xdotool key ctrl+F9
# gesture pinch out xdotool key ctrl+F9
# GNOME SHELL open/close overview (works for GNOME on Wayland and Xorg)
# Note since GNOME 3.24 on Wayland this is implemented natively so no
# real point configuring for Wayland.
# gesture pinch in dbus-send --session --type=method_call --dest=org.gnome.Shell /org/gnome/Shell org.gnome.Shell.Eval string:'Main.overview.toggle();'
# gesture pinch out dbus-send --session --type=method_call --dest=org.gnome.Shell /org/gnome/Shell org.gnome.Shell.Eval string:'Main.overview.toggle();'
# Optional extended pinch gestures:
# gesture pinch clockwise <whatever command>
# gesture pinch anticlockwise <whatever command>
###############################################################################
# This application normally determines your touchpad device
# automatically. Some users may have multiple touchpads but by default
# we use only the first one found. However, you can choose to specify
# the explicit device name to use. Run "libinput list-devices" to work
# out the name of your device (from the "Device:" field). Then add a
# device line specifying that name, e.g:
#
# device DLL0665:01 06CB:76AD Touchpad
#
# If the device name starts with a '/' then it is instead considered as
# the explicit device path although since device paths can change
# through reboots this is best to be a symlink. E.g. instead of specifying
# /dev/input/event12, you should use the corresponding full path link
# under /dev/input/by-path/ or /dev/input/by-id/.
#
# You can choose to use ALL touchpad devices by setting the device name
# to "all". E.g. Do this if you have multiple touchpads which you want
# to use in parallel. This reduces performance slightly so only set this
# if you have to.
#
# device all
###############################################################################
# You can set a minimum travel distance threshold before swipe gestures
# are actioned using the swipe_threshold configuration command.
# Specify this value in dots. The default is 0.
# E.g. set it to 100 dots with "swipe_threshold 100".
# swipe_threshold 0
###############################################################################
# You can set a timeout on gestures from start to end. The default is
# the value commented below. It can be any value in float secs >= 0.
# 0 = no timeout. E.g. set it to 2 secs with "timeout 2".
# timeout 1.5

View File

View File

@ -1,7 +1,8 @@
{
"output": {
"blocklist": [
"mpv"
"mpv",
"Chromium"
],
"convolver": {
"autogain": true,

View File

@ -4,7 +4,7 @@
"input-gain": 0.0,
"output-gain": 0.0,
"reference": "Geometric Mean",
"target": -18.0
"target": -20.00000000000003
},
"bass_enhancer": {
"amount": 3.0,

View File

@ -0,0 +1,653 @@
{
"output": {
"autogain": {
"target": -12.0
},
"blocklist": [],
"equalizer": {
"input-gain": -0.3,
"left": {
"band0": {
"frequency": 22.59,
"gain": 0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.3600000000000003,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band1": {
"frequency": 28.440000000000001,
"gain": 0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.3600000000000003,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band2": {
"frequency": 35.799999999999997,
"gain": 0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.3600000000000003,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band3": {
"frequency": 45.07,
"gain": 0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.3600000000000003,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band4": {
"frequency": 56.740000000000002,
"gain": 0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.3600000000000003,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band5": {
"frequency": 71.430000000000007,
"gain": 0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.3600000000000003,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band6": {
"frequency": 89.930000000000007,
"gain": 0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.3600000000000003,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band7": {
"frequency": 113.20999999999999,
"gain": 4,
"mode": "RLC (BT)",
"mute": false,
"q": 4.3600000000000003,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band8": {
"frequency": 142.53,
"gain": 4,
"mode": "RLC (BT)",
"mute": false,
"q": 4.3600000000000003,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band9": {
"frequency": 179.43000000000001,
"gain": 4,
"mode": "RLC (BT)",
"mute": false,
"q": 4.3600000000000003,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band10": {
"frequency": 225.88999999999999,
"gain": 4,
"mode": "RLC (BT)",
"mute": false,
"q": 4.3600000000000003,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band11": {
"frequency": 284.38,
"gain": 4,
"mode": "RLC (BT)",
"mute": false,
"q": 4.3600000000000003,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band12": {
"frequency": 358.01999999999998,
"gain": 4,
"mode": "RLC (BT)",
"mute": false,
"q": 4.3600000000000003,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band13": {
"frequency": 450.72000000000003,
"gain": 0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.3600000000000003,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band14": {
"frequency": 567.41999999999996,
"gain": 0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.3600000000000003,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band15": {
"frequency": 714.34000000000003,
"gain": -1,
"mode": "RLC (BT)",
"mute": false,
"q": 4.3600000000000003,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band16": {
"frequency": 899.28999999999996,
"gain": -2,
"mode": "RLC (BT)",
"mute": false,
"q": 4.3600000000000003,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band17": {
"frequency": 1132.1500000000001,
"gain": -3.6000000000000001,
"mode": "RLC (BT)",
"mute": false,
"q": 4.3600000000000003,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band18": {
"frequency": 1425.29,
"gain": -2.5,
"mode": "RLC (BT)",
"mute": false,
"q": 4.3600000000000003,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band19": {
"frequency": 1794.3299999999999,
"gain": -1.5,
"mode": "RLC (BT)",
"mute": false,
"q": 4.3600000000000003,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band20": {
"frequency": 2258.9299999999998,
"gain": 0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.3600000000000003,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band21": {
"frequency": 2843.8200000000002,
"gain": 0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.3600000000000003,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band22": {
"frequency": 3580.1599999999999,
"gain": 0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.3600000000000003,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band23": {
"frequency": 4507.1499999999996,
"gain": 0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.3600000000000003,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band24": {
"frequency": 5674.1599999999999,
"gain": 0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.3600000000000003,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band25": {
"frequency": 7143.3500000000004,
"gain": 0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.3600000000000003,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band26": {
"frequency": 8992.9400000000005,
"gain": 0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.3600000000000003,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band27": {
"frequency": 11321.450000000001,
"gain": 0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.3600000000000003,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band28": {
"frequency": 14252.860000000001,
"gain": 0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.3600000000000003,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band29": {
"frequency": 17943.279999999999,
"gain": 0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.3600000000000003,
"slope": "x1",
"solo": false,
"type": "Bell"
}
},
"mode": "IIR",
"num-bands": 30,
"output-gain": -6.5,
"right": {
"band0": {
"frequency": 22.59,
"gain": 0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.3600000000000003,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band1": {
"frequency": 28.440000000000001,
"gain": 0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.3600000000000003,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band2": {
"frequency": 35.799999999999997,
"gain": 0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.3600000000000003,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band3": {
"frequency": 45.07,
"gain": 0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.3600000000000003,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band4": {
"frequency": 56.740000000000002,
"gain": 0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.3600000000000003,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band5": {
"frequency": 71.430000000000007,
"gain": 0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.3600000000000003,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band6": {
"frequency": 89.930000000000007,
"gain": 0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.3600000000000003,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band7": {
"frequency": 113.20999999999999,
"gain": 4,
"mode": "RLC (BT)",
"mute": false,
"q": 4.3600000000000003,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band8": {
"frequency": 142.53,
"gain": 4,
"mode": "RLC (BT)",
"mute": false,
"q": 4.3600000000000003,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band9": {
"frequency": 179.43000000000001,
"gain": 4,
"mode": "RLC (BT)",
"mute": false,
"q": 4.3600000000000003,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band10": {
"frequency": 225.88999999999999,
"gain": 4,
"mode": "RLC (BT)",
"mute": false,
"q": 4.3600000000000003,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band11": {
"frequency": 284.38,
"gain": 4,
"mode": "RLC (BT)",
"mute": false,
"q": 4.3600000000000003,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band12": {
"frequency": 358.01999999999998,
"gain": 4,
"mode": "RLC (BT)",
"mute": false,
"q": 4.3600000000000003,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band13": {
"frequency": 450.72000000000003,
"gain": 0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.3600000000000003,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band14": {
"frequency": 567.41999999999996,
"gain": 0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.3600000000000003,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band15": {
"frequency": 714.34000000000003,
"gain": -1,
"mode": "RLC (BT)",
"mute": false,
"q": 4.3600000000000003,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band16": {
"frequency": 899.28999999999996,
"gain": -2,
"mode": "RLC (BT)",
"mute": false,
"q": 4.3600000000000003,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band17": {
"frequency": 1132.1500000000001,
"gain": -3.6000000000000001,
"mode": "RLC (BT)",
"mute": false,
"q": 4.3600000000000003,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band18": {
"frequency": 1425.29,
"gain": -2.5,
"mode": "RLC (BT)",
"mute": false,
"q": 4.3600000000000003,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band19": {
"frequency": 1794.3299999999999,
"gain": -1.5,
"mode": "RLC (BT)",
"mute": false,
"q": 4.3600000000000003,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band20": {
"frequency": 2258.9299999999998,
"gain": 0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.3600000000000003,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band21": {
"frequency": 2843.8200000000002,
"gain": 0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.3600000000000003,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band22": {
"frequency": 3580.1599999999999,
"gain": 0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.3600000000000003,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band23": {
"frequency": 4507.1499999999996,
"gain": 0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.3600000000000003,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band24": {
"frequency": 5674.1599999999999,
"gain": 0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.3600000000000003,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band25": {
"frequency": 7143.3500000000004,
"gain": 0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.3600000000000003,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band26": {
"frequency": 8992.9400000000005,
"gain": 0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.3600000000000003,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band27": {
"frequency": 11321.450000000001,
"gain": 0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.3600000000000003,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band28": {
"frequency": 14252.860000000001,
"gain": 0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.3600000000000003,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band29": {
"frequency": 17943.279999999999,
"gain": 0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.3600000000000003,
"slope": "x1",
"solo": false,
"type": "Bell"
}
},
"split-channels": false
},
"exciter": {
"amount": 6.0,
"blend": 0.0,
"ceil": 16000.0,
"ceil-active": false,
"harmonics": 8.000000000000002,
"input-gain": -2.0,
"output-gain": 0.0,
"scope": 5500.0
},
"limiter": {
"alr": false,
"alr-attack": 5.0,
"alr-knee": 0.0,
"alr-release": 50.0,
"attack": 5.0,
"dithering": "None",
"gain-boost": true,
"input-gain": 0.0,
"lookahead": 10.0,
"mode": "Herm Thin",
"output-gain": 0.0,
"oversampling": "Half x4(3L)",
"release": 5.0,
"sidechain-preamp": 0.0,
"stereo-link": 100.0,
"threshold": 0.0
},
"plugins_order": [
"equalizer",
"exciter",
"autogain",
"limiter"
]
}
}

View File

@ -0,0 +1,250 @@
{
"output": {
"bass_enhancer": {
"amount": 5.0,
"blend": 0.0,
"floor": 20.0,
"floor-active": false,
"harmonics": 8.5,
"input-gain": 0.0,
"output-gain": 0.0,
"scope": 80.0
},
"blocklist": [],
"convolver": {
"input-gain": -2.0,
"ir-width": 100,
"kernel-path": "<PRESETS_DIRECTORY>/irs/Razor Surround ((48k Z-Edition)) 2.Stereo +20 bass.irs",
"output-gain": 0.0
},
"crossfeed": {
"fcut": 700,
"feed": 4.5,
"input-gain": 0.0,
"output-gain": 0.0
},
"equalizer": {
"input-gain": -2.0,
"left": {
"band0": {
"frequency": 32.0,
"gain": 4.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.504760237537245,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band1": {
"frequency": 64.0,
"gain": 2.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.5047602375372453,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band2": {
"frequency": 125.0,
"gain": 1.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.504760237537245,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band3": {
"frequency": 250.0,
"gain": 0.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.504760237537245,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band4": {
"frequency": 500.0,
"gain": -1.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.5047602375372453,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band5": {
"frequency": 1000.0,
"gain": -2.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.504760237537245,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band6": {
"frequency": 2000.0,
"gain": 0.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.5047602375372449,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band7": {
"frequency": 4000.0,
"gain": 2.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.5047602375372449,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band8": {
"frequency": 8000.0,
"gain": 3.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.5047602375372453,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band9": {
"frequency": 16000.0,
"gain": 3.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.504760237537245,
"slope": "x1",
"solo": false,
"type": "Bell"
}
},
"mode": "IIR",
"num-bands": 10,
"output-gain": 0.0,
"right": {
"band0": {
"frequency": 32.0,
"gain": 4.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.504760237537245,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band1": {
"frequency": 64.0,
"gain": 2.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.5047602375372453,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band2": {
"frequency": 125.0,
"gain": 1.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.504760237537245,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band3": {
"frequency": 250.0,
"gain": 0.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.504760237537245,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band4": {
"frequency": 500.0,
"gain": -1.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.5047602375372453,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band5": {
"frequency": 1000.0,
"gain": -2.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.504760237537245,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band6": {
"frequency": 2000.0,
"gain": 0.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.5047602375372449,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band7": {
"frequency": 4000.0,
"gain": 2.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.5047602375372449,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band8": {
"frequency": 8000.0,
"gain": 3.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.5047602375372453,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band9": {
"frequency": 16000.0,
"gain": 3.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.504760237537245,
"slope": "x1",
"solo": false,
"type": "Bell"
}
},
"split-channels": false
},
"maximizer": {
"ceiling": 0.0,
"release": 3.149999999999997,
"threshold": -3.0000000000000013
},
"plugins_order": [
"equalizer",
"convolver",
"bass_enhancer",
"crossfeed",
"maximizer"
]
}
}

View File

@ -0,0 +1,226 @@
{
"output": {
"blocklist": [],
"convolver": {
"input-gain": -2.0,
"ir-width": 100,
"kernel-path": "/home/kirthi/.config/easyeffects/irs/Razor Surround ((48k Z-Edition)) 2.Stereo +20 bass.irs",
"output-gain": 0.0
},
"equalizer": {
"input-gain": -2.0,
"left": {
"band0": {
"frequency": 32.0,
"gain": 4.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.504760237537245,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band1": {
"frequency": 64.0,
"gain": 2.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.5047602375372453,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band2": {
"frequency": 125.0,
"gain": 1.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.504760237537245,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band3": {
"frequency": 250.0,
"gain": 0.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.504760237537245,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band4": {
"frequency": 500.0,
"gain": -1.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.5047602375372453,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band5": {
"frequency": 1000.0,
"gain": -2.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.504760237537245,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band6": {
"frequency": 2000.0,
"gain": 0.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.5047602375372449,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band7": {
"frequency": 4000.0,
"gain": 2.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.5047602375372449,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band8": {
"frequency": 8000.0,
"gain": 3.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.5047602375372453,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band9": {
"frequency": 16000.0,
"gain": 3.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.504760237537245,
"slope": "x1",
"solo": false,
"type": "Bell"
}
},
"mode": "IIR",
"num-bands": 10,
"output-gain": 0.0,
"right": {
"band0": {
"frequency": 32.0,
"gain": 4.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.504760237537245,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band1": {
"frequency": 64.0,
"gain": 2.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.5047602375372453,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band2": {
"frequency": 125.0,
"gain": 1.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.504760237537245,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band3": {
"frequency": 250.0,
"gain": 0.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.504760237537245,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band4": {
"frequency": 500.0,
"gain": -1.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.5047602375372453,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band5": {
"frequency": 1000.0,
"gain": -2.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.504760237537245,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band6": {
"frequency": 2000.0,
"gain": 0.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.5047602375372449,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band7": {
"frequency": 4000.0,
"gain": 2.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.5047602375372449,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band8": {
"frequency": 8000.0,
"gain": 3.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.5047602375372453,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band9": {
"frequency": 16000.0,
"gain": 3.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.504760237537245,
"slope": "x1",
"solo": false,
"type": "Bell"
}
},
"split-channels": false
},
"plugins_order": [
"equalizer",
"convolver"
]
}
}

View File

@ -0,0 +1,219 @@
{
"output": {
"blocklist": [],
"equalizer": {
"input-gain": -2.0,
"left": {
"band0": {
"frequency": 32.0,
"gain": 5.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.504760237537245,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band1": {
"frequency": 64.0,
"gain": 5.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.5047602375372453,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band2": {
"frequency": 125.0,
"gain": 0.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.504760237537245,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band3": {
"frequency": 250.0,
"gain": 0.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.504760237537245,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band4": {
"frequency": 500.0,
"gain": 1.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.5047602375372453,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band5": {
"frequency": 1000.0,
"gain": 1.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.504760237537245,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band6": {
"frequency": 2000.0,
"gain": 2.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.5047602375372449,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band7": {
"frequency": 4000.0,
"gain": 4.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.5047602375372449,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band8": {
"frequency": 8000.0,
"gain": 3.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.5047602375372453,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band9": {
"frequency": 16000.0,
"gain": 2.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.504760237537245,
"slope": "x1",
"solo": false,
"type": "Bell"
}
},
"mode": "IIR",
"num-bands": 10,
"output-gain": 0.0,
"right": {
"band0": {
"frequency": 32.0,
"gain": 5.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.504760237537245,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band1": {
"frequency": 64.0,
"gain": 5.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.5047602375372453,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band2": {
"frequency": 125.0,
"gain": 0.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.504760237537245,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band3": {
"frequency": 250.0,
"gain": 0.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.504760237537245,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band4": {
"frequency": 500.0,
"gain": 1.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.5047602375372453,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band5": {
"frequency": 1000.0,
"gain": 1.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.504760237537245,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band6": {
"frequency": 2000.0,
"gain": 2.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.5047602375372449,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band7": {
"frequency": 4000.0,
"gain": 4.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.5047602375372449,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band8": {
"frequency": 8000.0,
"gain": 3.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.5047602375372453,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band9": {
"frequency": 16000.0,
"gain": 2.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.504760237537245,
"slope": "x1",
"solo": false,
"type": "Bell"
}
},
"split-channels": false
},
"plugins_order": [
"equalizer"
]
}
}

View File

@ -0,0 +1,402 @@
{
"output": {
"blocklist": [],
"compressor": {
"attack": 130.0,
"boost-amount": 6.0,
"boost-threshold": -60.0,
"hpf-frequency": 10.0,
"hpf-mode": "off",
"input-gain": 0.0,
"knee": -23.9,
"lpf-frequency": 20000.0,
"lpf-mode": "off",
"makeup": 0.0,
"mode": "Upward",
"output-gain": 0.0,
"ratio": 5.0,
"release": 600.0,
"release-threshold": -120.0,
"sidechain": {
"lookahead": 0.0,
"mode": "RMS",
"preamp": 0.0,
"reactivity": 10.0,
"source": "Middle",
"type": "Feed-forward"
},
"threshold": -10.0
},
"equalizer": {
"input-gain": 0.0,
"left": {
"band0": {
"frequency": 32.0,
"gain": 3.5,
"mode": "RLC (BT)",
"mute": false,
"q": 1.6,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band1": {
"frequency": 64.0,
"gain": 2.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.6,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band2": {
"frequency": 128.0,
"gain": 1.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.6,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band3": {
"frequency": 256.0,
"gain": 0.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.6,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band4": {
"frequency": 512.0,
"gain": -0.5,
"mode": "RLC (BT)",
"mute": false,
"q": 1.6,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band5": {
"frequency": 1024.0,
"gain": -1.5,
"mode": "RLC (BT)",
"mute": false,
"q": 1.6,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band6": {
"frequency": 2048.0,
"gain": -0.25,
"mode": "RLC (BT)",
"mute": false,
"q": 1.6,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band7": {
"frequency": 4096.0,
"gain": 1.25,
"mode": "RLC (BT)",
"mute": false,
"q": 1.6,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band8": {
"frequency": 8192.0,
"gain": 2.75,
"mode": "RLC (BT)",
"mute": false,
"q": 1.6,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band9": {
"frequency": 16384.0,
"gain": 3.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.6,
"slope": "x1",
"solo": false,
"type": "Bell"
}
},
"mode": "IIR",
"num-bands": 10,
"output-gain": 0.0,
"right": {
"band0": {
"frequency": 32.0,
"gain": 3.5,
"mode": "RLC (BT)",
"mute": false,
"q": 1.6,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band1": {
"frequency": 64.0,
"gain": 2.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.6,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band2": {
"frequency": 128.0,
"gain": 1.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.6,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band3": {
"frequency": 256.0,
"gain": 0.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.6,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band4": {
"frequency": 512.0,
"gain": -0.5,
"mode": "RLC (BT)",
"mute": false,
"q": 1.6,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band5": {
"frequency": 1024.0,
"gain": -1.5,
"mode": "RLC (BT)",
"mute": false,
"q": 1.6,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band6": {
"frequency": 2048.0,
"gain": -0.25,
"mode": "RLC (BT)",
"mute": false,
"q": 1.6,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band7": {
"frequency": 4096.0,
"gain": 1.25,
"mode": "RLC (BT)",
"mute": false,
"q": 1.6,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band8": {
"frequency": 8192.0,
"gain": 2.75,
"mode": "RLC (BT)",
"mute": false,
"q": 1.6,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band9": {
"frequency": 16384.0,
"gain": 3.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.6,
"slope": "x1",
"solo": false,
"type": "Bell"
}
},
"split-channels": false
},
"gate": {
"attack": 2000.0,
"detection": "Peak",
"input-gain": 0.0,
"knee": 18.0,
"makeup": 0.0,
"output-gain": 0.0,
"range": -30.0,
"ratio": 2.0,
"release": 2000.0,
"stereo-link": "Average",
"threshold": -50.0
},
"limiter": {
"alr": false,
"attack": 5.0,
"dithering": "None",
"external-sidechain": false,
"gain-boost": false,
"input-gain": 0.0,
"lookahead": 5.0,
"mode": "Herm Thin",
"output-gain": 0.0,
"oversampling": "Half x4(3L)",
"release": 10.0,
"sidechain-preamp": 0.0,
"stereo-link": 100.0,
"threshold": -1.0
},
"multiband_compressor": {
"band0": {
"attack-threshold": -30.0,
"attack-time": 50.0,
"boost-amount": 6.0,
"boost-threshold": -72.0,
"compression-mode": "Downward",
"compressor-enable": true,
"external-sidechain": false,
"knee": -24.0,
"makeup": 0.0,
"mute": false,
"ratio": 1.7,
"release-threshold": -120.0,
"release-time": 600.0,
"sidechain-custom-highcut-filter": false,
"sidechain-custom-lowcut-filter": false,
"sidechain-highcut-frequency": 250.0,
"sidechain-lookahead": 0.0,
"sidechain-lowcut-frequency": 10.0,
"sidechain-mode": "RMS",
"sidechain-preamp": 0.0,
"sidechain-reactivity": 10.0,
"sidechain-source": "Middle",
"solo": false
},
"band1": {
"attack-threshold": -30.0,
"attack-time": 30.0,
"boost-amount": 6.0,
"boost-threshold": -72.0,
"compression-mode": "Downward",
"compressor-enable": true,
"enable-band": true,
"external-sidechain": false,
"knee": -24.0,
"makeup": 0.0,
"mute": false,
"ratio": 1.7,
"release-threshold": -120.0,
"release-time": 450.0,
"sidechain-custom-highcut-filter": false,
"sidechain-custom-lowcut-filter": false,
"sidechain-highcut-frequency": 1250.0,
"sidechain-lookahead": 0.0,
"sidechain-lowcut-frequency": 250.0,
"sidechain-mode": "RMS",
"sidechain-preamp": 0.0,
"sidechain-reactivity": 10.0,
"sidechain-source": "Middle",
"solo": false,
"split-frequency": 250.0
},
"band2": {
"attack-threshold": -30.0,
"attack-time": 10.0,
"boost-amount": 6.0,
"boost-threshold": -72.0,
"compression-mode": "Downward",
"compressor-enable": true,
"enable-band": true,
"external-sidechain": false,
"knee": -24.0,
"makeup": 0.0,
"mute": false,
"ratio": 1.7,
"release-threshold": -120.0,
"release-time": 250.0,
"sidechain-custom-highcut-filter": false,
"sidechain-custom-lowcut-filter": false,
"sidechain-highcut-frequency": 5000.0,
"sidechain-lookahead": 0.0,
"sidechain-lowcut-frequency": 1250.0,
"sidechain-mode": "RMS",
"sidechain-preamp": 0.0,
"sidechain-reactivity": 10.0,
"sidechain-source": "Middle",
"solo": false,
"split-frequency": 1250.0
},
"band3": {
"attack-threshold": -30.0,
"attack-time": 5.0,
"boost-amount": 6.0,
"boost-threshold": -72.0,
"compression-mode": "Downward",
"compressor-enable": true,
"enable-band": true,
"external-sidechain": false,
"knee": -24.0,
"makeup": 0.0,
"mute": false,
"ratio": 1.7,
"release-threshold": -120.0,
"release-time": 100.0,
"sidechain-custom-highcut-filter": false,
"sidechain-custom-lowcut-filter": false,
"sidechain-highcut-frequency": 20000.0,
"sidechain-lookahead": 0.0,
"sidechain-lowcut-frequency": 5000.0,
"sidechain-mode": "RMS",
"sidechain-preamp": 0.0,
"sidechain-reactivity": 10.0,
"sidechain-source": "Middle",
"solo": false,
"split-frequency": 5000.0
},
"band4": {
"enable-band": false
},
"band5": {
"enable-band": false
},
"band6": {
"enable-band": false
},
"band7": {
"enable-band": false
},
"compressor-mode": "Modern",
"envelope-boost": "None",
"input-gain": 0.0,
"output-gain": 0.0
},
"plugins_order": [
"gate",
"compressor",
"multiband_compressor",
"equalizer",
"limiter"
]
}
}

View File

@ -0,0 +1,219 @@
{
"output": {
"blocklist": [],
"equalizer": {
"input-gain": -2.0,
"left": {
"band0": {
"frequency": 32.0,
"gain": 4.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.504760237537245,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band1": {
"frequency": 64.0,
"gain": 2.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.5047602375372453,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band2": {
"frequency": 125.0,
"gain": 1.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.504760237537245,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band3": {
"frequency": 250.0,
"gain": 0.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.504760237537245,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band4": {
"frequency": 500.0,
"gain": -1.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.5047602375372453,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band5": {
"frequency": 1000.0,
"gain": -2.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.504760237537245,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band6": {
"frequency": 2000.0,
"gain": 0.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.5047602375372449,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band7": {
"frequency": 4000.0,
"gain": 2.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.5047602375372449,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band8": {
"frequency": 8000.0,
"gain": 3.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.5047602375372453,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band9": {
"frequency": 16000.0,
"gain": 3.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.504760237537245,
"slope": "x1",
"solo": false,
"type": "Bell"
}
},
"mode": "IIR",
"num-bands": 10,
"output-gain": 0.0,
"right": {
"band0": {
"frequency": 32.0,
"gain": 4.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.504760237537245,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band1": {
"frequency": 64.0,
"gain": 2.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.5047602375372453,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band2": {
"frequency": 125.0,
"gain": 1.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.504760237537245,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band3": {
"frequency": 250.0,
"gain": 0.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.504760237537245,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band4": {
"frequency": 500.0,
"gain": -1.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.5047602375372453,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band5": {
"frequency": 1000.0,
"gain": -2.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.504760237537245,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band6": {
"frequency": 2000.0,
"gain": 0.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.5047602375372449,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band7": {
"frequency": 4000.0,
"gain": 2.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.5047602375372449,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band8": {
"frequency": 8000.0,
"gain": 3.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.5047602375372453,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band9": {
"frequency": 16000.0,
"gain": 3.0,
"mode": "RLC (BT)",
"mute": false,
"q": 1.504760237537245,
"slope": "x1",
"solo": false,
"type": "Bell"
}
},
"split-channels": false
},
"plugins_order": [
"equalizer"
]
}
}

View File

@ -0,0 +1,708 @@
{
"output": {
"autogain": {
"input-gain": 0.0,
"output-gain": 0.0,
"reference": "Geometric Mean (MSI)",
"target": -12.0
},
"bass_enhancer": {
"amount": 2.0,
"blend": 0.0,
"floor": 20.0,
"floor-active": false,
"harmonics": 8.5,
"input-gain": 0.0,
"output-gain": 0.0,
"scope": 100.0
},
"blocklist": [],
"equalizer": {
"input-gain": -0.3,
"left": {
"band0": {
"frequency": 22.4,
"gain": 0.0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.36,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band1": {
"frequency": 27.8,
"gain": 0.0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.36,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band10": {
"frequency": 194.06,
"gain": 4.0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.36,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band11": {
"frequency": 240.81,
"gain": 4.0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.36,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band12": {
"frequency": 298.834,
"gain": 4.0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.36,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band13": {
"frequency": 370.834,
"gain": 4.0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.36,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band14": {
"frequency": 460.182,
"gain": 4.0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.36,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band15": {
"frequency": 571.057,
"gain": 0.0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.36,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band16": {
"frequency": 708.647,
"gain": -1.0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.36,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band17": {
"frequency": 879.387,
"gain": -2.0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.36,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band18": {
"frequency": 1091.26,
"gain": -3.0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.36,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band19": {
"frequency": 1354.19,
"gain": -2.0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.36,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band2": {
"frequency": 34.51,
"gain": 0.0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.36,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band20": {
"frequency": 1680.47,
"gain": -1.0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.36,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band21": {
"frequency": 2085.35,
"gain": 0.0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.36,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band22": {
"frequency": 2587.79,
"gain": 0.0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.36,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band23": {
"frequency": 3211.29,
"gain": 0.0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.36,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band24": {
"frequency": 3985.01,
"gain": 0.0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.36,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band25": {
"frequency": 4945.15,
"gain": 0.0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.36,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band26": {
"frequency": 6136.63,
"gain": 0.0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.36,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band27": {
"frequency": 7615.17,
"gain": 0.0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.36,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band28": {
"frequency": 9449.96,
"gain": 0.0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.36,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band29": {
"frequency": 11726.8,
"gain": 0.0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.36,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band3": {
"frequency": 42.82,
"gain": 0.0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.36,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band30": {
"frequency": 14552.2,
"gain": 0.0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.36,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band31": {
"frequency": 18058.4,
"gain": 0.0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.36,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band4": {
"frequency": 53.14,
"gain": 0.0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.36,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band5": {
"frequency": 65.95,
"gain": 0.0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.36,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band6": {
"frequency": 81.83,
"gain": 0.0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.36,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band7": {
"frequency": 101.55,
"gain": 4.0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.36,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band8": {
"frequency": 126.0,
"gain": 4.0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.36,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band9": {
"frequency": 156.38,
"gain": 4.0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.36,
"slope": "x1",
"solo": false,
"type": "Bell"
}
},
"mode": "IIR",
"num-bands": 32,
"output-gain": -6.5,
"right": {
"band0": {
"frequency": 22.4,
"gain": 0.0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.36,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band1": {
"frequency": 27.8,
"gain": 0.0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.36,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band10": {
"frequency": 194.06,
"gain": 4.0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.36,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band11": {
"frequency": 240.81,
"gain": 4.0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.36,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band12": {
"frequency": 298.834,
"gain": 4.0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.36,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band13": {
"frequency": 370.834,
"gain": 4.0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.36,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band14": {
"frequency": 460.182,
"gain": 4.0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.36,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band15": {
"frequency": 571.057,
"gain": 0.0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.36,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band16": {
"frequency": 708.647,
"gain": -1.0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.36,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band17": {
"frequency": 879.387,
"gain": -2.0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.36,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band18": {
"frequency": 1091.26,
"gain": -3.0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.36,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band19": {
"frequency": 1354.19,
"gain": -2.0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.36,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band2": {
"frequency": 34.51,
"gain": 0.0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.36,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band20": {
"frequency": 1680.47,
"gain": -1.0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.36,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band21": {
"frequency": 2085.35,
"gain": 0.0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.36,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band22": {
"frequency": 2587.79,
"gain": 0.0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.36,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band23": {
"frequency": 3211.29,
"gain": 0.0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.36,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band24": {
"frequency": 3985.01,
"gain": 0.0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.36,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band25": {
"frequency": 4945.15,
"gain": 0.0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.36,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band26": {
"frequency": 6136.63,
"gain": 0.0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.36,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band27": {
"frequency": 7615.17,
"gain": 0.0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.36,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band28": {
"frequency": 9449.96,
"gain": 0.0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.36,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band29": {
"frequency": 11726.8,
"gain": 0.0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.36,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band3": {
"frequency": 42.82,
"gain": 0.0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.36,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band30": {
"frequency": 14552.2,
"gain": 0.0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.36,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band31": {
"frequency": 18058.4,
"gain": 0.0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.36,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band4": {
"frequency": 53.14,
"gain": 0.0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.36,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band5": {
"frequency": 65.95,
"gain": 0.0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.36,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band6": {
"frequency": 81.83,
"gain": 0.0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.36,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band7": {
"frequency": 101.55,
"gain": 4.0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.36,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band8": {
"frequency": 126.0,
"gain": 4.0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.36,
"slope": "x1",
"solo": false,
"type": "Bell"
},
"band9": {
"frequency": 156.38,
"gain": 4.0,
"mode": "RLC (BT)",
"mute": false,
"q": 4.36,
"slope": "x1",
"solo": false,
"type": "Bell"
}
},
"split-channels": false
},
"exciter": {
"amount": 10.0,
"blend": 0.0,
"ceil": 16000.0,
"ceil-active": false,
"harmonics": 8.5,
"input-gain": -2.0,
"output-gain": 0.0,
"scope": 7500.0
},
"limiter": {
"alr": false,
"alr-attack": 5.0,
"alr-knee": 0.0,
"alr-release": 50.0,
"attack": 5.0,
"dithering": "None",
"external-sidechain": false,
"gain-boost": true,
"input-gain": 0.0,
"lookahead": 5.0,
"mode": "Herm Thin",
"output-gain": 0.0,
"oversampling": "None",
"release": 5.0,
"sidechain-preamp": 0.0,
"stereo-link": 100.0,
"threshold": 0.0
},
"plugins_order": [
"equalizer",
"bass_enhancer",
"exciter",
"autogain",
"limiter"
]
}
}

View File

@ -0,0 +1,289 @@
{
"output": {
"bass_enhancer": {
"amount": 26.0000000000001,
"blend": 0.0,
"floor": 10.0,
"floor-active": true,
"harmonics": 9.999999999999995,
"input-gain": 0.0,
"output-gain": 0.0,
"scope": 200.0
},
"blocklist": [],
"filter": {
"frequency": 145.0,
"inertia": 20.0,
"input-gain": 0.0,
"mode": "36dB/oct Highpass",
"output-gain": 0.0,
"resonance": -3.0
},
"limiter": {
"alr": false,
"alr-attack": 5.0,
"alr-knee": 0.0,
"alr-release": 50.0,
"attack": 2.0,
"dithering": "None",
"external-sidechain": false,
"gain-boost": true,
"input-gain": 0.0,
"lookahead": 4.000000000000021,
"mode": "Herm Thin",
"output-gain": 0.0,
"oversampling": "Half x4(3L)",
"release": 8.0,
"sidechain-preamp": 0.0,
"stereo-link": 100.0,
"threshold": 0.0
},
"multiband_compressor": {
"band0": {
"attack-threshold": -16.0,
"attack-time": 150.0,
"boost-amount": 6.0,
"boost-threshold": -72.0,
"compression-mode": "Downward",
"compressor-enable": true,
"external-sidechain": false,
"knee": -12.0,
"makeup": 4.0,
"mute": false,
"ratio": 5.0,
"release-threshold": -120.0,
"release-time": 300.0,
"sidechain-custom-highcut-filter": false,
"sidechain-custom-lowcut-filter": false,
"sidechain-highcut-frequency": 500.0,
"sidechain-lookahead": 0.0,
"sidechain-lowcut-frequency": 10.0,
"sidechain-mode": "RMS",
"sidechain-preamp": 0.0,
"sidechain-reactivity": 10.0,
"sidechain-source": "Middle",
"solo": false
},
"band1": {
"attack-threshold": -24.0,
"attack-time": 150.0,
"boost-amount": 6.0,
"boost-threshold": -72.0,
"compression-mode": "Downward",
"compressor-enable": true,
"enable-band": true,
"external-sidechain": false,
"knee": -9.0,
"makeup": 4.0,
"mute": false,
"ratio": 3.0,
"release-threshold": -120.0,
"release-time": 200.0,
"sidechain-custom-highcut-filter": false,
"sidechain-custom-lowcut-filter": false,
"sidechain-highcut-frequency": 1000.0,
"sidechain-lookahead": 0.0,
"sidechain-lowcut-frequency": 500.0,
"sidechain-mode": "RMS",
"sidechain-preamp": 0.0,
"sidechain-reactivity": 10.0,
"sidechain-source": "Middle",
"solo": false,
"split-frequency": 250.0
},
"band2": {
"attack-threshold": -24.0,
"attack-time": 100.0,
"boost-amount": 6.0,
"boost-threshold": -72.0,
"compression-mode": "Downward",
"compressor-enable": true,
"enable-band": true,
"external-sidechain": false,
"knee": -9.0,
"makeup": 6.0,
"mute": false,
"ratio": 3.0,
"release-threshold": -120.0,
"release-time": 150.0,
"sidechain-custom-highcut-filter": false,
"sidechain-custom-lowcut-filter": false,
"sidechain-highcut-frequency": 2000.0,
"sidechain-lookahead": 0.0,
"sidechain-lowcut-frequency": 1000.0,
"sidechain-mode": "RMS",
"sidechain-preamp": 0.0,
"sidechain-reactivity": 10.0,
"sidechain-source": "Middle",
"solo": false,
"split-frequency": 1250.0
},
"band3": {
"attack-threshold": -24.0,
"attack-time": 80.0,
"boost-amount": 6.0,
"boost-threshold": -72.0,
"compression-mode": "Downward",
"compressor-enable": true,
"enable-band": true,
"external-sidechain": false,
"knee": -9.0,
"makeup": 6.0,
"mute": false,
"ratio": 4.0,
"release-threshold": -120.0,
"release-time": 120.0,
"sidechain-custom-highcut-filter": false,
"sidechain-custom-lowcut-filter": false,
"sidechain-highcut-frequency": 4000.0,
"sidechain-lookahead": 0.0,
"sidechain-lowcut-frequency": 2000.0,
"sidechain-mode": "RMS",
"sidechain-preamp": 0.0,
"sidechain-reactivity": 10.0,
"sidechain-source": "Middle",
"solo": false,
"split-frequency": 5000.0
},
"band4": {
"attack-threshold": -12.0,
"attack-time": 20.0,
"boost-amount": 6.0,
"boost-threshold": -72.0,
"compression-mode": "Downward",
"compressor-enable": true,
"enable-band": false,
"external-sidechain": false,
"knee": -6.0,
"makeup": 0.0,
"mute": false,
"ratio": 1.0,
"release-threshold": -120.0,
"release-time": 100.0,
"sidechain-custom-highcut-filter": false,
"sidechain-custom-lowcut-filter": false,
"sidechain-highcut-frequency": 8000.0,
"sidechain-lookahead": 0.0,
"sidechain-lowcut-frequency": 4000.0,
"sidechain-mode": "RMS",
"sidechain-preamp": 0.0,
"sidechain-reactivity": 10.0,
"sidechain-source": "Middle",
"solo": false,
"split-frequency": 4000.0
},
"band5": {
"attack-threshold": -12.0,
"attack-time": 20.0,
"boost-amount": 6.0,
"boost-threshold": -72.0,
"compression-mode": "Downward",
"compressor-enable": true,
"enable-band": false,
"external-sidechain": false,
"knee": -6.0,
"makeup": 0.0,
"mute": false,
"ratio": 1.0,
"release-threshold": -120.0,
"release-time": 100.0,
"sidechain-custom-highcut-filter": false,
"sidechain-custom-lowcut-filter": false,
"sidechain-highcut-frequency": 12000.0,
"sidechain-lookahead": 0.0,
"sidechain-lowcut-frequency": 8000.0,
"sidechain-mode": "RMS",
"sidechain-preamp": 0.0,
"sidechain-reactivity": 10.0,
"sidechain-source": "Middle",
"solo": false,
"split-frequency": 8000.0
},
"band6": {
"attack-threshold": -12.0,
"attack-time": 20.0,
"boost-amount": 6.0,
"boost-threshold": -72.0,
"compression-mode": "Downward",
"compressor-enable": true,
"enable-band": false,
"external-sidechain": false,
"knee": -6.0,
"makeup": 0.0,
"mute": false,
"ratio": 1.0,
"release-threshold": -120.0,
"release-time": 100.0,
"sidechain-custom-highcut-filter": false,
"sidechain-custom-lowcut-filter": false,
"sidechain-highcut-frequency": 16000.0,
"sidechain-lookahead": 0.0,
"sidechain-lowcut-frequency": 12000.0,
"sidechain-mode": "RMS",
"sidechain-preamp": 0.0,
"sidechain-reactivity": 10.0,
"sidechain-source": "Middle",
"solo": false,
"split-frequency": 12000.0
},
"band7": {
"attack-threshold": -12.0,
"attack-time": 20.0,
"boost-amount": 6.0,
"boost-threshold": -72.0,
"compression-mode": "Downward",
"compressor-enable": true,
"enable-band": false,
"external-sidechain": false,
"knee": -6.0,
"makeup": 0.0,
"mute": false,
"ratio": 1.0,
"release-threshold": -120.0,
"release-time": 100.0,
"sidechain-custom-highcut-filter": false,
"sidechain-custom-lowcut-filter": false,
"sidechain-highcut-frequency": 20000.0,
"sidechain-lookahead": 0.0,
"sidechain-lowcut-frequency": 16000.0,
"sidechain-mode": "RMS",
"sidechain-preamp": 0.0,
"sidechain-reactivity": 10.0,
"sidechain-source": "Middle",
"solo": false,
"split-frequency": 16000.0
},
"compressor-mode": "Modern",
"envelope-boost": "None",
"input-gain": -4.0,
"output-gain": 0.0
},
"plugins_order": [
"filter",
"bass_enhancer",
"multiband_compressor",
"stereo_tools",
"limiter"
],
"stereo_tools": {
"balance-in": 0.0,
"balance-out": 0.0,
"delay": 0.0,
"input-gain": 0.0,
"middle-level": 0.0,
"middle-panorama": 0.0,
"mode": "LR > LR (Stereo Default)",
"mutel": false,
"muter": false,
"output-gain": 0.0,
"phasel": false,
"phaser": false,
"sc-level": 1.0,
"side-balance": 0.0,
"side-level": 0.0,
"softclip": false,
"stereo-base": 0.30000000000000004,
"stereo-phase": 0.0
}
}
}

View File

Before

Width:  |  Height:  |  Size: 216 KiB

After

Width:  |  Height:  |  Size: 216 KiB

View File

Before

Width:  |  Height:  |  Size: 30 KiB

After

Width:  |  Height:  |  Size: 30 KiB

24
dot_ideavimrc Normal file
View File

@ -0,0 +1,24 @@
set number
set relativenumber
set ignorecase
set smartcase
set clipboard+=unnamedplus
set whichwrap+=<,>,[,],b,h,l,s
set showcmd
set scroll=6
autocmd InsertEnter * :set norelativenumber
autocmd InsertLeave * :set relativenumber
nnoremap <Space> :nohl<CR>
nnoremap <C-j> 12<C-e>
nnoremap <C-k> 12<C-y>
nnoremap <C-h> 26zh
nnoremap <C-l> 26zl
autocmd InsertEnter * set norelativenumber
autocmd InsertLeave * set relativenumber
Plug 'tpope/vim-surround'
Plug 'machakann/vim-highlightedyank'
let g:highlightedyank_highlight_duration = "400"

View File

@ -0,0 +1,58 @@
#webrtcIndicator {
display: none;
}
/* hides the native tabs */
#TabsToolbar {
visibility: collapse;
}
/* Hide sidebar header, when using Tree Style Tab. */
#sidebar-box[sidebarcommand="treestyletab_piro_sakura_ne_jp-sidebar-action"]
#sidebar-header {
visibility: collapse;
}
/* Hide splitter, when using Tree Style Tab. */
#sidebar-box[sidebarcommand="treestyletab_piro_sakura_ne_jp-sidebar-action"]
+ #sidebar-splitter {
display: none !important;
}
/* Sidebar min and max width removal */
#sidebar {
max-width: none !important;
min-width: 5px !important;
}
/* Shrink sidebar until hovered, when using Tree Style Tab. */
:root {
--thin-tab-width: 40px;
--wide-tab-width: 250px;
}
#sidebar-box:not([sidebarcommand="treestyletab_piro_sakura_ne_jp-sidebar-action"]) {
min-width: var(--wide-tab-width) !important;
max-width: none !important;
}
#sidebar-box[sidebarcommand="treestyletab_piro_sakura_ne_jp-sidebar-action"] {
position: relative !important;
transition: all 100ms !important;
min-width: var(--thin-tab-width) !important;
max-width: var(--thin-tab-width) !important;
transition: all 50ms cubic-bezier(0.075, 0.82, 0.165, 1);
}
#sidebar-box[sidebarcommand="treestyletab_piro_sakura_ne_jp-sidebar-action"]:hover {
transition: all 100ms !important;
min-width: var(--wide-tab-width) !important;
max-width: var(--wide-tab-width) !important;
/* Negative right-margin to keep page from being pushed to the side. */
margin-right: calc(
(var(--wide-tab-width) - var(--thin-tab-width)) * -1
) !important;
z-index: 1;
transition: all 50ms cubic-bezier(0.075, 0.82, 0.165, 1);
}

View File

@ -0,0 +1 @@
alias yarn="yarn --use-yarnrc "$XDG_CONFIG_HOME/yarn/config""

View File

@ -0,0 +1,23 @@
export PERL_MB_OPT="--install_base \"${XDG_DATA_HOME}/perl\""
export _Z_DATA="${XDG_CACHE_HOME}/z"
export CABAL_CONFIG="${XDG_CONFIG_HOME}/cabal/config"
export INPUTRC="${XDG_CONFIG_HOME}/readline/inputrc"
export JULIA_DEPOT_PATH="${XDG_DATA_HOME}/julia:${JULIA_DEPOT_PATH}"
export GTK2_RC_FILES="${XDG_CONFIG_HOME}/gtk-2.0/gtkrc"
export PERL_LOCAL_LIB_ROOT="${XDG_DATA_HOME}/perl${PERL_LOCAL_LIB_ROOT:+:${PERL_LOCAL_LIB_ROOT}}"
export RUSTUP_HOME="${XDG_DATA_HOME}/rustup"
export CABAL_DIR="${XDG_CACHE_HOME}/cabal/"
export CARGO_HOME="${XDG_DATA_HOME}/cargo"
export GNUPGHOME="${XDG_DATA_HOME}/gnupg"
export PATH="${XDG_DATA_HOME}/perl/bin${PATH:+:${PATH}}"
export PERL_CPANM_HOME="${XDG_DATA_HOME}/cpanm"
export STACK_ROOT="${XDG_DATA_HOME}/stack"
export LESSKEY="${XDG_CONFIG_HOME}/less/lesskey"
export PERL5LIB="${XDG_DATA_HOME}/perl/lib/perl5${PERL5LIB:+:${PERL5LIB}}"
export PERL_MM_OPT="INSTALL_BASE=${XDG_DATA_HOME}/perl"
export SOLARGRAPH_CACHE="${XDG_CACHE_HOME}/solargraph"
export _JAVA_OPTIONS="-Djava.util.prefs.userRoot="$XDG_CONFIG_HOME"/java"
export GOPATH="${XDG_DATA_HOME}/go"
export HISTFILE="${XDG_CACHE_HOME}/bash/history"
export LESSHISTFILE="${XDG_CACHE_HOME}/less/history"
export npm_config_cache="${XDG_CACHE_HOME}/npm"

View File

@ -0,0 +1,31 @@
{
"env": {
"CABAL_CONFIG": "${XDG_CONFIG_HOME}/cabal/config",
"CABAL_DIR": "${XDG_CACHE_HOME}/cabal/",
"CARGO_HOME": "${XDG_DATA_HOME}/cargo",
"GNUPGHOME": "${XDG_DATA_HOME}/gnupg",
"GOPATH": "${XDG_DATA_HOME}/go",
"GTK2_RC_FILES": "${XDG_CONFIG_HOME}/gtk-2.0/gtkrc",
"HISTFILE": "${XDG_CACHE_HOME}/bash/history",
"INPUTRC": "${XDG_CONFIG_HOME}/readline/inputrc",
"JULIA_DEPOT_PATH": "${XDG_DATA_HOME}/julia:${JULIA_DEPOT_PATH}",
"LESSHISTFILE": "${XDG_CACHE_HOME}/less/history",
"LESSKEY": "${XDG_CONFIG_HOME}/less/lesskey",
"PATH": "${XDG_DATA_HOME}/perl/bin${PATH:+:${PATH}}",
"PERL5LIB": "${XDG_DATA_HOME}/perl/lib/perl5${PERL5LIB:+:${PERL5LIB}}",
"PERL_CPANM_HOME": "${XDG_DATA_HOME}/cpanm",
"PERL_LOCAL_LIB_ROOT": "${XDG_DATA_HOME}/perl${PERL_LOCAL_LIB_ROOT:+:${PERL_LOCAL_LIB_ROOT}}",
"PERL_MB_OPT": "--install_base \\\"${XDG_DATA_HOME}/perl\\\"",
"PERL_MM_OPT": "INSTALL_BASE=${XDG_DATA_HOME}/perl",
"RUSTUP_HOME": "${XDG_DATA_HOME}/rustup",
"SOLARGRAPH_CACHE": "${XDG_CACHE_HOME}/solargraph",
"STACK_ROOT": "${XDG_DATA_HOME}/stack",
"_JAVA_OPTIONS": "-Djava.util.prefs.userRoot=\"$XDG_CONFIG_HOME\"/java",
"_Z_DATA": "${XDG_CACHE_HOME}/z",
"npm_config_cache": "${XDG_CACHE_HOME}/npm"
},
"alias": {
"x2goclient": "x2goclient --home=$XDG_CONFIG_HOME",
"yarn": "yarn --use-yarnrc \"$XDG_CONFIG_HOME/yarn/config\""
}
}

File diff suppressed because it is too large Load Diff

56
dot_profile Normal file
View File

@ -0,0 +1,56 @@
# ~/.profile: executed by the command interpreter for login shells.
# This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
# exists.
# see /usr/share/doc/bash/examples/startup-files for examples.
# the files are located in the bash-doc package.
# the default umask is set in /etc/profile; for setting the umask
# for ssh logins, install and configure the libpam-umask package.
#umask 022
# Antidot
eval "$(antidot init)"
# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/bin" ]; then
PATH="$HOME/bin:$PATH"
fi
# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/.local/bin" ]; then
PATH="$HOME/.local/bin:$PATH"
fi
# set PATH so it includes user's private ~/.local/bin if it exists
if [ -d "$HOME/.local/bin" ]; then
PATH="$HOME/.local/bin:$PATH"
fi
export SSH_AUTH_SOCK="$XDG_RUNTIME_DIR/keyring/ssh"
export GTK_IM_MODULE=fcitx
export QT_IM_MODULE=fcitx
export XMODIFIERS="@im=fcitx"
export GLFW_IM_MODULE=fcitx
export INPUT_METHOD=fcitx
export IMSETTINGS_MODULE=fcitx
export QT_QPA_PLATFORMTHEME=qt5ct
if [[ "$XDG_SESSION_TYPE" == 'wayland' ]]; then
export MOZ_ENABLE_WAYLAND=1
export CLUTTER_BACKEND=wayland
export QT_QPA_PLATFORM="wayland;xcb"
export XCURSOR_SIZE=1
export ECORE_EVAS_ENGINE=wayland
export ELM_ENGINE=wayland_egl
export SDL_VIDEODRIVER=wayland
export _JAVA_AWT_WM_NONREPARENTING=1
export NO_AT_BRIDGE=1
fi
# export https_proxy=http://127.0.0.1:8080/
# export no_proxy="localhost,127.0.0.1,127.0.1.1"
if [[ -z $DISPLAY ]] && [[ $(tty) = /dev/tty2 ]]; then
tmux
fi

View File

View File

@ -1,54 +0,0 @@
#webrtcIndicator {
display: none;
}
/* hides the native tabs */
#TabsToolbar {
visibility: collapse;
}
/* Hide sidebar header, when using Tree Style Tab. */
#sidebar-box[sidebarcommand="treestyletab_piro_sakura_ne_jp-sidebar-action"] #sidebar-header {
visibility: collapse;
}
/* Hide splitter, when using Tree Style Tab. */
#sidebar-box[sidebarcommand="treestyletab_piro_sakura_ne_jp-sidebar-action"]+#sidebar-splitter {
display: none !important;
}
/* Sidebar min and max width removal */
#sidebar {
max-width: none !important;
min-width: 5px !important;
}
/* Shrink sidebar until hovered, when using Tree Style Tab. */
:root {
--thin-tab-width: 40px;
--wide-tab-width: 250px;
}
#sidebar-box:not([sidebarcommand="treestyletab_piro_sakura_ne_jp-sidebar-action"]) {
min-width: var(--wide-tab-width) !important;
max-width: none !important;
}
#sidebar-box[sidebarcommand="treestyletab_piro_sakura_ne_jp-sidebar-action"] {
position: relative !important;
transition: all 100ms !important;
min-width: var(--thin-tab-width) !important;
max-width: var(--thin-tab-width) !important;
transition: all 50ms cubic-bezier(0.075, 0.820, 0.165, 1.000);
}
#sidebar-box[sidebarcommand="treestyletab_piro_sakura_ne_jp-sidebar-action"]:hover {
transition: all 100ms !important;
min-width: var(--wide-tab-width) !important;
max-width: var(--wide-tab-width) !important;
/* Negative right-margin to keep page from being pushed to the side. */
margin-right: calc((var(--wide-tab-width) - var(--thin-tab-width)) * -1) !important;
z-index: 1;
transition: all 50ms cubic-bezier(0.075, 0.820, 0.165, 1.000);
}