diff options
| author | Leonard Kugis <leonard@kug.is> | 2026-01-28 23:31:19 +0100 |
|---|---|---|
| committer | Leonard Kugis <leonard@kug.is> | 2026-01-28 23:31:19 +0100 |
| commit | 4122b37d07015b2b670643e6bdf861613d143cbc (patch) | |
| tree | 531c75399dc232476546f770052609b904fd28d5 | |
| parent | c70505d7c7b7b48600f273357694b56ccf5d2a15 (diff) | |
| download | dotfiles-4122b37d07015b2b670643e6bdf861613d143cbc.tar.gz | |
Refinements
| -rw-r--r-- | .bashrc | 15 | ||||
| -rw-r--r-- | .config/fontconfig/conf.d/10-terminus-nerd.conf | 11 | ||||
| -rw-r--r-- | .config/qt6ct/style-colors.conf | 4 | ||||
| l--------- | .config/systemd/user/pipewire-session-manager.service | 1 | ||||
| l--------- | .config/systemd/user/pipewire.service.wants/wireplumber.service | 1 | ||||
| -rw-r--r-- | .config/waybar/config.jsonc | 4 |
6 files changed, 33 insertions, 3 deletions
@@ -11,6 +11,7 @@ alias grep='grep --color=auto' export PS1="\w > " export PATH=${PATH}:~/.local/bin:~/.cargo/bin #export QT_QPA_PLATFORMTHEME=qt6ct +export XDG_DATA_DIRS="$XDG_DATA_DIRS:/var/lib/flatpak/exports/share:/home/lk/.local/share/flatpak/exports/share" if [ -z "${XDG_RUNTIME_DIR}" ]; then export XDG_RUNTIME_DIR=/tmp/$(id -u)-runtime-dir @@ -21,5 +22,17 @@ if [ -z "${XDG_RUNTIME_DIR}" ]; then fi if [ -z "${WAYLAND_DISPLAY}" ] && [ "$(tty)" = "/dev/tty1" ]; then - dwl -s .local/bin/dwl-startup.sh + export XDG_SESSION_TYPE=wayland + export MOZ_ENABLE_WAYLAND=1 + export QT_QPA_PLATFORM=wayland + export SDL_VIDEODRIVER=wayland + export _JAVA_OPTIONS="-Dawt.useSystemAAFontSettings=on -Dswing.aatext=true -Dsun.java2d.xrender=true" + export _JAVA_AWT_WM_NONREPARENTING=1 + + wlr-randr --output DP-2 --mode 1920x1080@144.001007 + wlr-randr --output HDMI-A-1 --mode 1920x1080@60.000000 + wlr-randr --output DP-2 --pos 0,0 + wlr-randr --output HDMI-A-1 --right-of DP-2 + + dwl -s .local/bin/dwl-startup.sh fi diff --git a/.config/fontconfig/conf.d/10-terminus-nerd.conf b/.config/fontconfig/conf.d/10-terminus-nerd.conf new file mode 100644 index 0000000..378474a --- /dev/null +++ b/.config/fontconfig/conf.d/10-terminus-nerd.conf @@ -0,0 +1,11 @@ +<?xml version="1.0"?> +<!DOCTYPE fontconfig SYSTEM "fonts.dtd"> +<fontconfig> + <!-- Fallback für Terminus --> + <match> + <test name="family"><string>Terminus</string></test> + <edit name="family" mode="append"> + <string>Symbols Nerd Font</string> + </edit> + </match> +</fontconfig> diff --git a/.config/qt6ct/style-colors.conf b/.config/qt6ct/style-colors.conf new file mode 100644 index 0000000..7274fde --- /dev/null +++ b/.config/qt6ct/style-colors.conf @@ -0,0 +1,4 @@ +[ColorScheme] +active_colors=#ff000000, #ffefefef, #ffffffff, #ffcacaca, #ff9f9f9f, #ffb8b8b8, #ff000000, #ffffffff, #ff000000, #ffffffff, #ffefefef, #ff767676, #ff308cc6, #ffffffff, #ff0000ff, #ffff00ff, #fff7f7f7, #ff000000, #ffffffdc, #ff000000, #80000000, #ff308cc6 +disabled_colors=#ffbebebe, #ffefefef, #ffffffff, #ffcacaca, #ffbebebe, #ffb8b8b8, #ffbebebe, #ffffffff, #ffbebebe, #ffefefef, #ffefefef, #ffb1b1b1, #ff919191, #ffffffff, #ff0000ff, #ffff00ff, #fff7f7f7, #ff000000, #ffffffdc, #ff000000, #80000000, #ff919191 +inactive_colors=#ff000000, #ffefefef, #ffffffff, #ffcacaca, #ff9f9f9f, #ffb8b8b8, #ff000000, #ffffffff, #ff000000, #ffffffff, #ffefefef, #ff767676, #ff308cc6, #ffffffff, #ff0000ff, #ffff00ff, #fff7f7f7, #ff000000, #ffffffdc, #ff000000, #80000000, #ff308cc6 diff --git a/.config/systemd/user/pipewire-session-manager.service b/.config/systemd/user/pipewire-session-manager.service new file mode 120000 index 0000000..a092a62 --- /dev/null +++ b/.config/systemd/user/pipewire-session-manager.service @@ -0,0 +1 @@ +/usr/lib/systemd/user/wireplumber.service
\ No newline at end of file diff --git a/.config/systemd/user/pipewire.service.wants/wireplumber.service b/.config/systemd/user/pipewire.service.wants/wireplumber.service new file mode 120000 index 0000000..a092a62 --- /dev/null +++ b/.config/systemd/user/pipewire.service.wants/wireplumber.service @@ -0,0 +1 @@ +/usr/lib/systemd/user/wireplumber.service
\ No newline at end of file diff --git a/.config/waybar/config.jsonc b/.config/waybar/config.jsonc index 1d35efa..f52c663 100644 --- a/.config/waybar/config.jsonc +++ b/.config/waybar/config.jsonc @@ -86,8 +86,8 @@ }, "clock": { - "format": " {:%H:%M}", - "format-alt": " {:%Y-%m-%d}", + "format": "🕒{:%H:%M}", + "format-alt": "🕒{:%Y-%m-%d}", "tooltip-format": "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>", "calendar": { "mode" : "month", |
