NOTE: This was unintentionally squashed so some details were lost * Major updates to build_linux to support the current archiso scripts * Most customize_airootfs.sh code has been moved elsewhere * Using static files or links where possible * Generating other files as needed in build_linux * Syslinux configuration has been simplified * Dropped i3 * Dropped rxvt-unicode in favor of termite * Font rendering broke one too many times * Dropped NetworkManager in favor of iwd/systemd-networkd
15 lines
383 B
Bash
Executable file
15 lines
383 B
Bash
Executable file
#!/bin/bash
|
|
#
|
|
|
|
# Magic numbers:
|
|
## Width: | 20 | term_x | 20 | 180 (conky) | 20 |
|
|
## Height: | 24 | 10 (titlebar) | term_y | 24 | 30 (Tint2) |
|
|
## X Offset: 20 - 5 (shadow?)
|
|
## Y Offset: 24 - 5 (shadow?)
|
|
|
|
source ~/.screen_data
|
|
|
|
term_width="$(echo "$width_px - 240" | bc)"
|
|
term_height="$(echo "$height_px - 88" | bc)"
|
|
|
|
wmctrl -r :ACTIVE: -e "0,15,19,$term_width,$term_height" && "$@"
|