8 lines
320 B
Plaintext
8 lines
320 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
ob_file=$HOME/.config/openbox/rc.xml
|
||
|
[[ -f $ob_file ]] && wm_theme=$(awk '/<theme>/ {while (getline n) {if (match(n, /<name>/)){l=n; exit}}} END {split(l, a, "[<>]"); print a[3]}' "$ob_file")
|
||
|
|
||
|
jgmenu_run init --apply-obtheme
|
||
|
cp $HOME/.config/jgmenu/jgmenurc $HOME/.config/mabox/jgobthemes/$wm_theme.colorrc
|