31 lines
1.1 KiB
Bash
Executable file
31 lines
1.1 KiB
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
. "$DOTFILES_PATH/apps/de/polybar/run" --just-vars
|
|
|
|
LAUNCHER_FONT="$BAR_FONT"
|
|
LAUNCHER_FONT_SIZE="$BAR_FONT_SIZE"
|
|
HIGHLIGHT_COLOR="$(xrq color4)"
|
|
HIGHLIGHT_FOREGROUND_COLOR="$(xrq background)"
|
|
BACKGROUND_COLOR=$(xrq background)
|
|
FOREGROUND_COLOR=$(xrq foreground)
|
|
GAP=$(xrq internalBorder)
|
|
|
|
. maybe_source_env_file app-launcher
|
|
|
|
rofi \
|
|
-combi-modi run,window \
|
|
-show combi \
|
|
-modi combi \
|
|
-font "$LAUNCHER_FONT $LAUNCHER_FONT_SIZE" \
|
|
-padding $GAP \
|
|
-bw "$BORDER_WIDTH" \
|
|
-color-enabled \
|
|
-color-window "$BACKGROUND_COLOR","$HIGHLIGHT_COLOR","$FOREGROUND_COLOR","$BACKGROUND_COLOR" \
|
|
-color-normal "$BACKGROUND_COLOR","$FOREGROUND_COLOR","$BACKGROUND_COLOR","$HIGHLIGHT_COLOR","$HIGHLIGHT_FOREGROUND_COLOR" \
|
|
-color-normal "$BACKGROUND_COLOR","$FOREGROUND_COLOR","$BACKGROUND_COLOR","$HIGHLIGHT_COLOR","$HIGHLIGHT_FOREGROUND_COLOR" \
|
|
-color-active "$BACKGROUND_COLOR","$FOREGROUND_COLOR","$BACKGROUND_COLOR","$HIGHLIGHT_COLOR","$HIGHLIGHT_FOREGROUND_COLOR" \
|
|
-color-urgent "$BACKGROUND_COLOR","$FOREGROUND_COLOR","$BACKGROUND_COLOR","$HIGHLIGHT_COLOR","$HIGHLIGHT_FOREGROUND_COLOR" \
|
|
-monitor -4 \
|
|
-width 600 \
|
|
"$@"
|