diff options
| author | Jake Koroman <jake@jakekoroman.com> | 2026-05-03 11:02:31 -0400 |
|---|---|---|
| committer | Jake Koroman <jake@jakekoroman.com> | 2026-05-03 11:02:31 -0400 |
| commit | 3655898e38f03f489aa7b1169a9b6bcba598fe25 (patch) | |
| tree | 5c53068d1b2a280af8803ee87e170b928f0b8963 | |
| parent | be002f4d0294f706a4a43925caea84379670f93b (diff) | |
some more ricing.
| -rw-r--r-- | MANIFEST | 1 | ||||
| -rw-r--r-- | fuzzel/fuzzel.ini | 21 | ||||
| -rw-r--r-- | i3status/config | 9 | ||||
| -rwxr-xr-x | scripts/bookmarks | 7 | ||||
| -rwxr-xr-x | scripts/rdpmenu | 3 | ||||
| -rw-r--r-- | sway/config | 16 |
6 files changed, 43 insertions, 14 deletions
@@ -20,3 +20,4 @@ kak|.config alacritty|.config foot|.config sway|.config +fuzzel|.config diff --git a/fuzzel/fuzzel.ini b/fuzzel/fuzzel.ini new file mode 100644 index 0000000..6e65af2 --- /dev/null +++ b/fuzzel/fuzzel.ini @@ -0,0 +1,21 @@ +[main] +font=Iosevka:size=12 +dpi-aware=auto +minimal-lines=yes +width=50 +vertical-pad=10 + +[colors] +background=FFFFECFF +text=424242FF +prompt=D95468FF +placeholder=8c8fa1ff +input=4c4f69ff +match=D95468FF +selection=57864EFF +selection-text=FFFFECFF +selection-match=424242FF +border=57864EFF + +[border] +radius=0 diff --git a/i3status/config b/i3status/config index 3f6f576..13ebb27 100644 --- a/i3status/config +++ b/i3status/config @@ -1,7 +1,12 @@ general { colors = true - color_good = "#8bd49c" - color_bad = "#d95468" + # color_good = "#8bd49c" + # color_bad = "#d95468" + + color_good = "#57864E" + color_bad = "#D95468" + color_degraded = "#539AFC" + interval = 5 } diff --git a/scripts/bookmarks b/scripts/bookmarks index 718c381..0f44727 100755 --- a/scripts/bookmarks +++ b/scripts/bookmarks @@ -1,7 +1,4 @@ -#!/usr/bin/env bash - -readarray -t bookmarks < $MENULAUNCHER_DIR/bookmarks - -url=$(printf '%s\n' "${bookmarks[@]}" | dmenu -p "Bookmark: " -i -l 16 | sed 's/^.*: //g') +#!/bin/sh +url=$(cat $MENULAUNCHER_DIR/bookmarks | fuzzel --dmenu -p "Bookmark: " | sed 's/^.*: //g') [[ ! -z "$url" ]] && $BROWSER --new-tab $url & diff --git a/scripts/rdpmenu b/scripts/rdpmenu index 0e5da33..9c62f0f 100755 --- a/scripts/rdpmenu +++ b/scripts/rdpmenu @@ -1,5 +1,4 @@ #!/bin/sh -server=$(ls "$XDG_DATA_HOME/rdp" | dmenu -p "Server: " -i -l 16) - +server=$(ls "$XDG_DATA_HOME/rdp" | fuzzel --dmenu -p "Server: ") [ ! -z "$server" ] && rdp "$server" diff --git a/sway/config b/sway/config index f533f3d..aa70298 100644 --- a/sway/config +++ b/sway/config @@ -16,26 +16,32 @@ output * { exec pipewire exec mpd - exec_always import-gsettings font pango:Iosevka 10 floating_modifier $mod bindsym $mod+Return exec $TERMINAL -bindsym $mod+p exec --no-startup-id fuzzel +bindsym $mod+p exec fuzzel + set $refresh_i3status killall -SIGUSR1 i3status bindsym XF86AudioRaiseVolume exec wpctl set-volume @DEFAULT_SINK@ 2%+ && $refresh_i3status bindsym XF86AudioLowerVolume exec wpctl set-volume @DEFAULT_SINK@ 2%- && $refresh_i3status -bindsym XF86AudioMute exec wpctl set-mute @DEFAULT_SINK@ toggle && $refresh_i3status -bindsym XF86AudioMicMute exec pactl set-source-mute @DEFAULT_SOURCE@ toggle && $refresh_i3status +bindsym XF86AudioMute exec wpctl set-mute @DEFAULT_SINK@ toggle && $refresh_i3status +bindsym XF86AudioMicMute exec pactl set-source-mute @DEFAULT_SOURCE@ toggle && $refresh_i3status -bindsym XF86AudioPlay exec mpc toggle +bindsym XF86AudioPlay exec mpc toggle bindsym Shift+XF86AudioPlay exec playerctl play-pause bindsym Shift+Control+Mod1+s exec grimshot copy anything bindsym Shift+Control+Mod1+p exec passmenu-otp +bindsym Shift+Control+Mod1+slash exec bookmarks +bindsym Shift+Control+Mod1+period exec rdpmenu + +bindsym XF86MonBrightnessUp exec brightnessctl set 5%+ +bindsym XF86MonBrightnessDown exec brightnessctl set 5%- + # kill focused window bindsym $mod+q kill |
