Updated config

This commit is contained in:
Eduard Urbach 2025-05-31 23:51:11 +02:00
parent 621516a7fe
commit 7749319b2b
Signed by: eduard
GPG key ID: 49226B848C78F6C8
11 changed files with 27 additions and 37 deletions

View file

@ -3,7 +3,7 @@ theme_background = False
truecolor = True truecolor = True
force_tty = False force_tty = False
presets = "proc:0:default,cpu:1:default mem:0:default net:0:tty" presets = "proc:0:default,cpu:1:default mem:0:default net:0:tty"
vim_keys = False vim_keys = True
rounded_corners = True rounded_corners = True
graph_symbol = "braille" graph_symbol = "braille"
graph_symbol_cpu = "default" graph_symbol_cpu = "default"

View file

@ -0,0 +1,6 @@
{
"device": "alsa_input.pci-0000_00_1f.3.analog-stereo",
"device-description": "Built-in Audio Analog Stereo",
"device-profile": "",
"preset-name": "default"
}

View file

@ -0,0 +1,6 @@
{
"device": "alsa_output.pci-0000_00_1f.3.analog-stereo",
"device-description": "Built-in Audio Analog Stereo",
"device-profile": "analog-output-lineout",
"preset-name": "default"
}

View file

@ -22,7 +22,6 @@
"threshold": -1.0 "threshold": -1.0
}, },
"plugins_order": [ "plugins_order": [
"stereo_tools#0",
"rnnoise#0", "rnnoise#0",
"speex#0", "speex#0",
"limiter#0" "limiter#0"
@ -50,27 +49,6 @@
"probability-continue": 90, "probability-continue": 90,
"probability-start": 95 "probability-start": 95
} }
},
"stereo_tools#0": {
"balance-in": 0.0,
"balance-out": 0.0,
"bypass": false,
"delay": 0.0,
"input-gain": 0.0,
"middle-level": 0.0,
"middle-panorama": 0.0,
"mode": "LR > LL (Mono Left Channel)",
"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.25,
"stereo-phase": 0.0
} }
} }
} }

View file

@ -1,15 +1,15 @@
{ {
"output": { "output": {
"bass_enhancer#0": { "bass_enhancer#0": {
"amount": 3.0, "amount": 0.0,
"blend": 0.0, "blend": 0.0,
"bypass": false, "bypass": false,
"floor": 12.0, "floor": 12.0,
"floor-active": true, "floor-active": true,
"harmonics": 10.0, "harmonics": 8.5,
"input-gain": 0.0, "input-gain": 0.0,
"output-gain": 0.0, "output-gain": 0.0,
"scope": 150.0 "scope": 100.0
}, },
"blocklist": [], "blocklist": [],
"filter#0": { "filter#0": {

View file

@ -11,8 +11,8 @@ function init_session
if command -q journalctl if command -q journalctl
tmux split-window -v -l 10 journalctl -f tmux split-window -v -l 10 journalctl -f
else else if command -q logread
tmux split-window -v -l 10 tail -f /var/log/messages tmux split-window -v -l 10 logread -f
end end
tmux select-pane -t 0 tmux select-pane -t 0

View file

@ -1,10 +1,10 @@
#!/usr/bin/fish #!/usr/bin/fish
set DIRECTORIES documents music pictures projects videos set DIRECTORIES documents music pictures projects videos
set EXCLUDES node_modules .cache .godot .svelte-kit set EXCLUDES node_modules .cache .godot .svelte-kit
set FLAGS --archive --compress --delete --quiet set FLAGS --archive --compress --delete --human-readable --progress
set HOSTS $argv set HOSTS $argv
set USER (whoami) set USER (whoami)
set DESTINATION "~/files/" set DESTINATION "~/"
for exclude in $EXCLUDES for exclude in $EXCLUDES
set -a FLAGS --exclude $exclude set -a FLAGS --exclude $exclude

View file

@ -3,6 +3,7 @@ exec-once = swaybg -i ~/pictures/wallpapers/01.png
exec-once = wl-paste --watch cliphist store exec-once = wl-paste --watch cliphist store
exec-once = /usr/libexec/pipewire-launcher exec-once = /usr/libexec/pipewire-launcher
exec-once = $statusbar exec-once = $statusbar
exec-once = ssh-agent -D -a $SSH_AUTH_SOCK
# Disabled # Disabled
#exec-once = dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP #exec-once = dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP

View file

@ -1,4 +0,0 @@
[[manager.prepend_keymap]]
on = [ "<C-s>" ]
run = 'shell "$SHELL" --block --confirm'
desc = "Open shell here"

View file

@ -1,2 +0,0 @@
[manager]
show_hidden = true

7
.env
View file

@ -22,4 +22,9 @@ LANG=en_US.UTF-8
PAGER=less PAGER=less
SSH_AUTH_SOCK=$XDG_RUNTIME_DIR/ssh-agent.socket SSH_AUTH_SOCK=$XDG_RUNTIME_DIR/ssh-agent.socket
TERMINAL=foot TERMINAL=foot
PATH=$XDG_CONFIG_HOME/fish/scripts:$XDG_BIN_HOME:$CARGO_HOME/bin:$GOPATH/bin:/usr/lib/ccache/bin:/usr/sbin:/usr/bin:/sbin:/bin PATH="/usr/sbin:/usr/bin:/sbin:/bin"
PATH="/usr/lib/ccache/bin:$PATH"
PATH="$GOPATH/bin:$PATH"
PATH="$CARGO_HOME/bin:$PATH"
PATH="$XDG_BIN_HOME:$PATH"
PATH="$XDG_CONFIG_HOME/fish/scripts:$PATH"