Skip to content

Commit

Permalink
add a default color for Media category
Browse files Browse the repository at this point in the history
  • Loading branch information
0xbrayo committed Jun 18, 2024
1 parent 2f3d1e8 commit 9fd6513
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/util/classes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,11 @@ export const defaultCategories: Category[] = [
{ name: ['Work', 'Video'], rule: { type: 'regex', regex: 'Kdenlive' } },
{ name: ['Work', 'Audio'], rule: { type: 'regex', regex: 'Audacity' } },
{ name: ['Work', '3D'], rule: { type: 'regex', regex: 'Blender' } },
{
name: ['Media'],
rule: { type: null },
data: { color: '#F33' },
},
{
name: ['Media', 'Games'],
rule: { type: 'regex', regex: 'Minecraft|RimWorld' },
Expand Down

2 comments on commit 9fd6513

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Here are screenshots of this commit:

Screenshots using aw-server v0.12.3b18 (click to expand)

Screenshots using aw-server-rust master (click to expand)

Screenshots using aw-server-rust v0.12.3b18 (click to expand)

@0xbrayo
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is awesome never seen a gh action like this one before.

Please sign in to comment.