1PICOM-TRANS(1) User Commands PICOM-TRANS(1)
2
3
4
6 picom-trans - an opacity setter tool
7
9 picom-trans [-w WINDOW_ID] [-n WINDOW_NAME] [-c] [-s] OPACITY
10
12 picom-trans is a bash script that sets _NET_WM_WINDOW_OPACITY attribute
13 of a window using standard X11 command-line utilities, including
14 xprop(1) and xwininfo(1). It is similar to transset(1) or
15 transset-df(1).
16
18 -w WINDOW_ID
19 Specify the window id of the target window.
20
21 -n WINDOW_NAME
22 Specify and try to match a window name.
23
24 -c
25 Specify the currently active window as target. Only works if EWMH
26 _NET_ACTIVE_WINDOW property exists on root window.
27
28 -s
29 Select target window with mouse cursor. This is the default if no
30 window has been specified.
31
32 -o OPACITY
33 Specify the new opacity value for the window. This value can be
34 anywhere from 1-100. If it is prefixed with a plus or minus (+/-),
35 this will increment or decrement from the target window’s current
36 opacity instead.
37
39 · Set the opacity of the window with specific window ID to 75%:
40
41 picom-trans -w "$WINDOWID" 75
42
43 · Set the opacity of the window with the name "urxvt" to 75%:
44
45 picom-trans -n "urxvt" 75
46
47 · Set current window to opacity of 75%:
48
49 picom-trans -c 75
50
51 · Select target window and set opacity to 75%:
52
53 picom-trans -s 75
54
55 · Increment opacity of current active window by 5%:
56
57 picom-trans -c +5
58
59 · Decrement opacity of current active window by 5%:
60
61 picom-trans -c -- -5
62
64 Please submit bug reports to https://github.com/yshui/compton.
65
67 picom(1), xprop(1), xwininfo(1)
68
69
70
71picom v7.5 12/06/2019 PICOM-TRANS(1)