diff options
| -rw-r--r-- | .config/environment.d/GTK_VULKAN.conf | 4 | ||||
| -rw-r--r-- | .config/environment.d/firefox.conf | 1 | ||||
| -rw-r--r-- | .config/kitty/kitty.conf | 8 | ||||
| -rw-r--r-- | .config/mako/config | 8 | ||||
| -rw-r--r-- | .config/sway/config.d/apps | 2 | ||||
| -rw-r--r-- | .config/sway/config.d/mediakeys | 8 | ||||
| -rw-r--r-- | .config/waybar/config.jsonc | 6 | ||||
| -rwxr-xr-x | .local/bin/uwuload | 6 | ||||
| -rwxr-xr-x | .local/bin/uwupass | 2 |
9 files changed, 27 insertions, 18 deletions
diff --git a/.config/environment.d/GTK_VULKAN.conf b/.config/environment.d/GTK_VULKAN.conf index 466af2d..8ffd995 100644 --- a/.config/environment.d/GTK_VULKAN.conf +++ b/.config/environment.d/GTK_VULKAN.conf @@ -1,2 +1,2 @@ -GDK_DISABLE=vulkan -GSK_RENDERER=gl +#GDK_DISABLE=vulkan +GDK_RENDERER=vulkan diff --git a/.config/environment.d/firefox.conf b/.config/environment.d/firefox.conf index b49e081..aee7417 100644 --- a/.config/environment.d/firefox.conf +++ b/.config/environment.d/firefox.conf @@ -1,2 +1,3 @@ GDK_BACKEND=wayland MOZ_ENABLE_WAYLAND=1 +XRE_PROFILE_PATH=$HOME/.mozilla/firefox/rm30ek78.dev-edition-default diff --git a/.config/kitty/kitty.conf b/.config/kitty/kitty.conf index 2bbad0d..069bfa9 100644 --- a/.config/kitty/kitty.conf +++ b/.config/kitty/kitty.conf @@ -10,5 +10,11 @@ cursor_shape block text_fg_override_threshold 10 include ~/.cache/wal/colors-kitty.conf -background_opacity 0.6 +background_opacity 0.95 background_blur 16 + + +# BEGIN_KITTY_THEME +# Noctalia +include current-theme.conf +# END_KITTY_THEME
\ No newline at end of file diff --git a/.config/mako/config b/.config/mako/config index b428c62..4337434 100644 --- a/.config/mako/config +++ b/.config/mako/config @@ -11,15 +11,17 @@ format=<b>%a </b> %s\n%b max-icon-size=64 padding=0,8,0,0 group-by=summary - -# include the non-tracked host.config +markup=1 include=~/.config/mako/host.config +[actionable] +on-button-left=invoke-default-action + [app-name="uwupass"] group-by=none [app-name="RuneLite"] -on-notify=exec play -v 0.3 /home/ewout/.config/mako/Magic_Dart.mp3 +on-notify=exec play -v 0.3 ~/.config/mako/Magic_Dart.mp3 [app-name="Nicotine+"] group-by=app-name diff --git a/.config/sway/config.d/apps b/.config/sway/config.d/apps index 243f626..224fe44 100644 --- a/.config/sway/config.d/apps +++ b/.config/sway/config.d/apps @@ -1,3 +1,3 @@ bindsym $mod+alt+n exec --no-repeat dolphin bindsym $mod+alt+c exec --no-repeat gnome-calendar -exec XDG_MENU_PREFIX=plasma- kbuildsycoca6 +exec XDG_MENU_PREFIX=arch- kbuildsycoca6 --noincremental diff --git a/.config/sway/config.d/mediakeys b/.config/sway/config.d/mediakeys index 628035e..f1cf31f 100644 --- a/.config/sway/config.d/mediakeys +++ b/.config/sway/config.d/mediakeys @@ -3,7 +3,7 @@ bindsym XF86AudioPrev exec playerctl previous bindsym XF86AudioNext exec playerctl next bindsym XF86MonBrightnessUp exec xbacklight -inc 10 -fps 10 bindsym XF86MonBrightnessDown exec xbacklight -dec 10 -fps 10 -bindsym --locked XF86AudioMute exec pactl set-sink-mute \@DEFAULT_SINK@ toggle -bindsym --locked XF86AudioLowerVolume exec pactl set-sink-volume \@DEFAULT_SINK@ -5% -bindsym --locked XF86AudioRaiseVolume exec pactl set-sink-volume \@DEFAULT_SINK@ +5% -bindsym --locked XF86AudioMicMute exec pactl set-source-mute \@DEFAULT_SOURCE@ toggle +bindsym --locked XF86AudioMute exec wpctl set-volume \@DEFAULT_SINK@ toggle +bindsym --locked XF86AudioLowerVolume exec wpctl set-volume \@DEFAULT_SINK@ 0.05- --limit 1 +bindsym --locked XF86AudioRaiseVolume exec wpctl set-volume \@DEFAULT_SINK@ 0.05+ --limit 1 +bindsym --locked XF86AudioMicMute exec wpctl set-mute \@DEFAULT_SOURCE@ toggle diff --git a/.config/waybar/config.jsonc b/.config/waybar/config.jsonc index d2e5c0d..45f4d06 100644 --- a/.config/waybar/config.jsonc +++ b/.config/waybar/config.jsonc @@ -10,10 +10,10 @@ "modules-left": [ "sway/workspaces", "sway/mode", - "sway/scratchpad", + "sway/scratchpad" ], "modules-center": [ - "sway/window", + "sway/window" ], "modules-right": [ "mpris", @@ -104,7 +104,7 @@ "critical-threshold": 80, // "format-critical": "{temperatureC}°C {icon}", "format": "{icon} {temperatureC}°", - "format-icons": ["", "", ""] + "format-icons": [" ", " ", " "] }, "network": { // "interface": "wlp2*", // (Optional) To force the use of this interface diff --git a/.local/bin/uwuload b/.local/bin/uwuload index effdb39..63a1d04 100755 --- a/.local/bin/uwuload +++ b/.local/bin/uwuload @@ -1,9 +1,9 @@ #!/usr/bin/env bash set -euox pipefail -file=$1 -filename="$(basename $1)" +file="$*" +filename=$(basename "$file") rsync -r --progress --stats "$file" "ewout@ewy.one:/srv/uwu/$filename" url="https://uwu.ewy.one/$filename" -echo "$url" | wl-copy +echo -n "$url" | wl-copy message="Uploaded $filename to uwu; copied result URL to clipboard." notify-send -a uwuload -i /usr/share/icons/Papirus-Dark/128x128/devices/network-server.svg "$message" diff --git a/.local/bin/uwupass b/.local/bin/uwupass index 348214a..c6ce9e1 100755 --- a/.local/bin/uwupass +++ b/.local/bin/uwupass @@ -60,7 +60,7 @@ target=$(echo "$pass" | eval "$(dbQuery show -s)" -a Password \"$entry\") # Write the password -echo "$target" | wl-copy +echo -n "$target" | wl-copy message "Copied password for $entry to selection buffer." # Copy TOTP ~~to clipboard~~ |
