ifreund changed the topic of #river to: river - a dynamic tiling wayland compositor || https://github.com/riverwm/river || channel logs: https://libera.irclog.whitequark.org/river/
Pound_Hash has quit [Quit: Pound_Hash]
talismanick has joined #river
talismanick has quit [Remote host closed the connection]
hill has joined #river
eShaev9z has joined #river
eShaev9z_ has quit [Ping timeout: 268 seconds]
hill has quit [Remote host closed the connection]
snakedye has quit [Ping timeout: 252 seconds]
hill has joined #river
hspak6 has quit [Quit: The Lounge - https://thelounge.chat]
hspak6 has joined #river
Nulo has quit [Ping timeout: 245 seconds]
Nulo has joined #river
Nulo has quit [Ping timeout: 240 seconds]
Nulo has joined #river
hill has quit [Quit: leaving]
hill has joined #river
fitrh has joined #river
Pound_Hash has joined #river
notzmv has joined #river
Pound_Hash has quit [Quit: Pound_Hash]
snakedye has joined #river
hill has quit [Remote host closed the connection]
fitrh has quit [Read error: Connection reset by peer]
fitrh has joined #river
fitrh_ has joined #river
fitrh has quit [Ping timeout: 240 seconds]
Guest86 has joined #river
gwizon has joined #river
<Guest86> Hi, has anyone created a "main and deck" layout yet?
kragacles has quit [Quit: ZNC 1.8.2 - https://znc.in]
kragacles has joined #river
Guest86 has quit [Ping timeout: 252 seconds]
gwizon has quit [Quit: Lost terminal]
fitrh_ has quit [Read error: Connection reset by peer]
fitrh has joined #river
fitrh has quit [Quit: fitrh]
aryak has quit [Read error: Connection reset by peer]
snakedye has quit [Remote host closed the connection]
snakedye has joined #river
notzmv has quit [Ping timeout: 268 seconds]
waleee has joined #river
unixguy has joined #river
unixguy has quit [Quit: Client closed]
elshize1 has joined #river
Nulo_ has joined #river
kitty4 has joined #river
ghostpepper has joined #river
Nulo has quit [*.net *.split]
kitty3 has quit [*.net *.split]
Nulo_ is now known as Nulo
Pound_Hash has joined #river
elshize has quit [Ping timeout: 240 seconds]
gh0stbuster has quit [Ping timeout: 240 seconds]
Pound_Hash has quit [Quit: Pound_Hash]
notzmv has joined #river
waleee has quit [Ping timeout: 240 seconds]
waleee has joined #river
_whitelogger_ has joined #river
DemiMarie has quit [Ping timeout: 240 seconds]
^[ has quit [Ping timeout: 240 seconds]
_whitelogger has quit [Ping timeout: 240 seconds]
^[ has joined #river
DemiMarie1 has joined #river
<NickH> Guest86: Not exactly sure what is meant by "main and deck", but it does sound a bit like "stacktile --primary_count 1 --secondary_count 0 --remainder-sublayout stack".
elshize1 has quit [Quit: WeeChat 3.5]
groknull has joined #river
groknull has quit [Remote host closed the connection]
elshize has joined #river
Pound_Hash has joined #river
<Pound_Hash> Hello
<Pound_Hash> I'm trying to set river's colors based on time of day
<Pound_Hash> I've created a wrapper script for river's `init` and in that wrapper I've defined a function
<Pound_Hash> declare -x river-color() {
<Pound_Hash> riverctl border-color-unfocused 0xc7c7c7
<Pound_Hash> riverctl border-color-focused 0x804db3
<Pound_Hash> }
<Pound_Hash> riverctl background-color 0xe5d4c3
<Pound_Hash> In river's init, I simply run the function via `river-color`
<Pound_Hash> But it's not working
<Pound_Hash> I've tried without the `declare -x` also
<Pound_Hash> I could get this to work by defining a variable with the requisite commands and then running `eval variable` in river's init
<Pound_Hash> But I read that using `eval` is bad practice
<Pound_Hash> So I'm trying to do it with a function