My configurations for the software I use
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add additional special tags for halloy and fluxer

yemou 15e7f912 7d21e3c8

+14 -6
+14 -6
config/river/init.roc
··· 24 24 Eight -> tag_to_rtag 8 25 25 Nine -> tag_to_rtag 9 26 26 Discord -> tag_to_rtag 10 27 - Games -> tag_to_rtag 11 28 - Hide -> tag_to_rtag 12 29 - KeePassXC -> tag_to_rtag 13 30 - Signal -> tag_to_rtag 14 31 - Steam -> tag_to_rtag 15 32 - Thunderbird -> tag_to_rtag 16 27 + Fluxer -> tag_to_rtag 11 28 + Games -> tag_to_rtag 12 29 + Halloy -> tag_to_rtag 13 30 + Hide -> tag_to_rtag 14 31 + KeePassXC -> tag_to_rtag 15 32 + Signal -> tag_to_rtag 16 33 + Steam -> tag_to_rtag 17 34 + Thunderbird -> tag_to_rtag 18 33 35 All -> Num.to_str ((Num.shift_left_by 1 32) - 1) 34 36 35 37 autostart = [ ··· 60 62 ] 61 63 62 64 rules = [ 65 + { id: "app.fluxer.Fluxer", title: "", action: "output", args: ["LG Electronics LG HDR WFHD 0x0000B11B"] }, 66 + { id: "app.fluxer.Fluxer", title: "", action: "tags", args: [named_tag_to_rtag Fluxer] }, 63 67 { id: "discord", title: "", action: "output", args: ["LG Electronics LG HDR WFHD 0x0000B11B"] }, 64 68 { id: "discord", title: "", action: "tags", args: [named_tag_to_rtag Discord] }, 65 69 { id: "org.gnome.Nautilus", title: "", action: "float", args: [] }, ··· 69 73 { id: "org.keepassxc.KeePassXC", title: "KeyChain.kdbx [Locked] - KeePassXC", action: "tags", args: [named_tag_to_rtag KeePassXC] }, 70 74 { id: "org.mozilla.Thunderbird", title: "", action: "output", args: ["AOC 2460G4 0x0000075E"] }, 71 75 { id: "org.mozilla.Thunderbird", title: "", action: "tags", args: [named_tag_to_rtag Thunderbird] }, 76 + { id: "org.squidowl.halloy", title: "", action: "output", args: ["LG Electronics LG HDR WFHD 0x0000B11B"] }, 77 + { id: "org.squidowl.halloy", title: "", action: "tags", args: [named_tag_to_rtag Halloy] }, 72 78 { id: "signal", title: "", action: "output", args: ["LG Electronics LG HDR WFHD 0x0000B11B"] }, 73 79 { id: "signal", title: "", action: "tags", args: [named_tag_to_rtag Signal] }, 74 80 { id: "steam", title: "", action: "output", args: ["AOC 2460G4 0x0000075E"] }, ··· 238 244 keybind_cmds = 239 245 tag_binds 240 246 |> List.concat (special_tag_binds Discord "D") 247 + |> List.concat (special_tag_binds Fluxer "F") 241 248 |> List.concat (special_tag_binds Games "G") 249 + |> List.concat (special_tag_binds Halloy "H") 242 250 |> List.concat (special_tag_binds KeePassXC "K") 243 251 |> List.concat (special_tag_binds Signal "M") 244 252 |> List.concat (special_tag_binds Steam "S")