This website works better with JavaScript.
Home
Explore
Help
Sign In
Linux
/
st
generated from
gmarx/git-template
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
Browse Source
Use MODBIT in xseturgency.
master
noname
10 years ago
committed by
Roberto E. Vargas Caballero
parent
17fa1493ee
commit
a48f2be7f5
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
st.c
+ 1
- 1
st.c
View File
@ -3570,7 +3570,7 @@ void
xseturgency
(
int
add
)
{
XWMHints
*
h
=
XGetWMHints
(
xw
.
dpy
,
xw
.
win
)
;
h
-
>
flags
=
add
?
(
h
-
>
flags
|
XUrgencyHint
)
:
(
h
-
>
flags
&
~
XUrgencyHint
)
;
MODBIT
(
h
-
>
flags
,
add
,
XUrgencyHint
)
;
XSetWMHints
(
xw
.
dpy
,
xw
.
win
,
h
)
;
XFree
(
h
)
;
}
Write
Preview
Loading…
Cancel
Save