aboutsummaryrefslogtreecommitdiffstats
path: root/gtk3/README
blob: 980b1d7bbbb3d4939536c2bbcc24f3f90047600e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
wf-clock
========

wf-clock implemented using Ruby/GNOME. Ruby and Bundler must be installed.

Usage:

	$ bundle install
	$ ./wf-clock

Unlike the Windows version, there is currently no configuration. Edit the
program directly to make any changes.

You also probably have to configure your window manager to disable borders,
shadows, window titles, background blue, etc., for windows with role
'no-border-pop-up'. I use the following settings on my computer.

awesome's rc.lua:

	awful.rules.rules = {
	    -- [snip]
	    { rule = {
		role = { "no-border-pop-up" }
	      }, properties = { floating = true,
				border_width = 0 } },

picom.conf:

	shadow-exclude = [ "[snip]", "role = 'no-border-pop-up'" ];
	blur-background-exclude = [ "[snip]", "role = 'no-border-pop-up'" ];

I think there is a better way, but whatever, it works for me.