diff options
| author | la-ninpre <leobrekalini@gmail.com> | 2022-06-17 10:31:51 +0300 |
|---|---|---|
| committer | la-ninpre <leobrekalini@gmail.com> | 2022-06-17 10:31:51 +0300 |
| commit | 9007df35415f157ba32e554256b2248860d0103d (patch) | |
| tree | ed9eee627d3a8e9d6b214627f9dd52e9656e115b /xmobar/trayer-padding-icon.sh | |
| parent | ea5f798edea14b362c498d87b46e708a46d13dff (diff) | |
| download | xmonad-config-9007df35415f157ba32e554256b2248860d0103d.tar.gz xmonad-config-9007df35415f157ba32e554256b2248860d0103d.zip | |
rewrite config from scratch and remove xmobar config
xmobar config is now written in haskell instead of it's own weird config
format and it will be available on my dotfiles repo.
Diffstat (limited to 'xmobar/trayer-padding-icon.sh')
| -rwxr-xr-x | xmobar/trayer-padding-icon.sh | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/xmobar/trayer-padding-icon.sh b/xmobar/trayer-padding-icon.sh deleted file mode 100755 index efb8ef6..0000000 --- a/xmobar/trayer-padding-icon.sh +++ /dev/null @@ -1,48 +0,0 @@ -#!/bin/sh -# Copied from https://github.com/jaor/xmobar/issues/239#issuecomment-233206552 -# Detects the width of running trayer-srg window (xprop name 'panel') -# and creates an XPM icon of that width, 1px height, and transparent. -# Outputs an <icon>-tag for use in xmobar to display the generated -# XPM icon. -# -# Run script from xmobar: -# `Run Com "/where/ever/trayer-padding-icon.sh" [] "trayerpad" 10` -# and use `%trayerpad%` in your template. - - -# Function to create a transparent Wx1 px XPM icon -create_xpm_icon () { - timestamp=$(date) - pixels=$(for i in `seq $1`; do echo -n "."; done) - - cat << EOF > "$2" -/* XPM * -static char * trayer_pad_xpm[] = { -/* This XPM icon is used for padding in xmobar to */ -/* leave room for trayer-srg. It is dynamically */ -/* updated by by trayer-padding-icon.sh which is run */ -/* by xmobar. */ -/* Created: ${timestamp} */ -/* <w/cols> <h/rows> <colors> <chars per pixel> */ -"$1 1 1 1", -/* Colors (none: transparent) */ -". c none", -/* Pixels */ -"$pixels" -}; -EOF -} - -# Width of the trayer window -width=$(xprop -name panel | grep 'program specified minimum size' | cut -d ' ' -f 5) - -# Icon file name -iconfile="$HOME/.xmonad/xpm/tmp/trayer-padding-${width}px.xpm" - -# If the desired icon does not exist create it -if [ ! -f $iconfile ]; then - create_xpm_icon $width $iconfile -fi - -# Output the icon tag for xmobar -echo "<icon=${iconfile}/>" |
