7 lines
216 B
Bash
7 lines
216 B
Bash
|
#!/bin/sh
|
||
|
# if wal exists
|
||
|
# Import colorscheme from 'wal' asynchronously
|
||
|
# & # Run the process in the background.
|
||
|
# ( ) # Hide shell job control messages.
|
||
|
type wal >/dev/null 2>&1 && (cat ~/.cache/wal/sequences &)
|