Parcourir la source

Fixed initial window title

master
Bert il y a 13 ans
Parent
révision
eeb58886a5
1 fichiers modifiés avec 5 ajouts et 2 suppressions
  1. +5
    -2
      window.c

+ 5
- 2
window.c Voir le fichier

@@ -72,9 +72,12 @@ void win_open(win_t *win) {
XSelectInput(e->dpy, win->xwin, XSelectInput(e->dpy, win->xwin,
StructureNotifyMask | ExposureMask | KeyPressMask); StructureNotifyMask | ExposureMask | KeyPressMask);


XStoreName(e->dpy, win->xwin, "sxiv");
XSetIconName(e->dpy, win->xwin, "Sxiv");

if ((classhint = XAllocClassHint())) { if ((classhint = XAllocClassHint())) {
classhint->res_name = "sxvi";
classhint->res_class = "sxvi";
classhint->res_name = "sxiv";
classhint->res_class = "sxiv";
XSetClassHint(e->dpy, win->xwin, classhint); XSetClassHint(e->dpy, win->xwin, classhint);
XFree(classhint); XFree(classhint);
} }


Chargement…
Annuler
Enregistrer