diff options
| -rw-r--r-- | .config/fontconfig/fonts.conf | 2 | ||||
| -rw-r--r-- | .config/kwalletrc | 4 | ||||
| -rw-r--r-- | .config/mpd/mpd.conf##default | 2 | ||||
| -rw-r--r-- | .config/rofi/config.rasi##template | 2 | ||||
| -rw-r--r-- | .config/xbindkeys/main | 2 | ||||
| -rw-r--r-- | .config/yadm/root/etc/X11/xorg.conf.d/00-keyboard.conf | 5 | ||||
| -rwxr-xr-x | .local/share/bin/brave | 7 |
7 files changed, 16 insertions, 8 deletions
diff --git a/.config/fontconfig/fonts.conf b/.config/fontconfig/fonts.conf index b3897e9..955c797 100644 --- a/.config/fontconfig/fonts.conf +++ b/.config/fontconfig/fonts.conf @@ -12,7 +12,7 @@ </alias> <alias binding="strong"> <family>monospace</family> - <prefer><family>JetBrainsMono Nerd Font</family></prefer> + <prefer><family>JetBrains Mono</family></prefer> </alias> <alias binding="strong"> <family>system-ui</family> diff --git a/.config/kwalletrc b/.config/kwalletrc new file mode 100644 index 0000000..6f0a8f5 --- /dev/null +++ b/.config/kwalletrc @@ -0,0 +1,4 @@ +[Wallet] +Default Wallet=Default keyring +Enabled=false +First Use=false diff --git a/.config/mpd/mpd.conf##default b/.config/mpd/mpd.conf##default index a374418..f999a2b 100644 --- a/.config/mpd/mpd.conf##default +++ b/.config/mpd/mpd.conf##default @@ -4,7 +4,7 @@ playlist_directory "/mnt/mpd/playlists" pid_file "/mnt/mpd/mpd.pid" state_file "/mnt/mpd/mpdstate" -bind_to_address "*" +bind_to_address "0.0.0.0" port "6600" restore_paused "yes" diff --git a/.config/rofi/config.rasi##template b/.config/rofi/config.rasi##template index c6bf9c4..e080d45 100644 --- a/.config/rofi/config.rasi##template +++ b/.config/rofi/config.rasi##template @@ -57,7 +57,7 @@ listview { element { margin: -2px 0px; - padding: 6px 10px 3px 10px; + padding: 6px 10px; background-color: transparent; text-color: ${fg}; } diff --git a/.config/xbindkeys/main b/.config/xbindkeys/main index fb64a20..14c5c30 100644 --- a/.config/xbindkeys/main +++ b/.config/xbindkeys/main @@ -115,3 +115,5 @@ "fcitx5-remote -s mozc" XF86Launch7 + Release +"autorandr --change" + XF86Display diff --git a/.config/yadm/root/etc/X11/xorg.conf.d/00-keyboard.conf b/.config/yadm/root/etc/X11/xorg.conf.d/00-keyboard.conf index 6c7cfad..d4f95ff 100644 --- a/.config/yadm/root/etc/X11/xorg.conf.d/00-keyboard.conf +++ b/.config/yadm/root/etc/X11/xorg.conf.d/00-keyboard.conf @@ -1,6 +1,9 @@ Section "InputClass" - Identifier "default keyboard repeat speed" + Identifier "system-keyboard" MatchIsKeyboard "on" + Option "XkbLayout" "us" + Option "XkbModel" "pc105" + Option "XkbOptions" "ctrl:nocaps" Option "AutoRepeat" "250 40" EndSection diff --git a/.local/share/bin/brave b/.local/share/bin/brave index 1dea360..5089377 100755 --- a/.local/share/bin/brave +++ b/.local/share/bin/brave @@ -1,8 +1,7 @@ #!/bin/sh -# the remote debugging is so brave can be hooked into by -# ~/.local/share/mode/reload.d/brave. this is probaby bad for security if -# you're not the only user on the system -# --remote-debugging-port=9222 \ +# - make brave automatically load the `mode` theme +# - don't use kwallet (i don't save passwords in chrome anyways) /usr/bin/brave \ --load-extension="$XDG_CACHE_HOME/mode/chromium" \ + --password-store=basic \ "$@" |