Manjaro Difference between revisions of "Translations:Proper ~/.xinitrc File/8/ru"

Difference between revisions of "Translations:Proper ~/.xinitrc File/8/ru"

From Manjaro
(Created page with "#!/bin/sh # # ~/.xinitrc # # Executed by startx (run your window manager from here) if [ -d /etc/X11/xinit/xinitrc.d ]; then for f in /etc/X11/xinit/xinitrc.d/*; do...")
 
(No difference)

Latest revision as of 08:45, 19 January 2023

Information about message (contribute)
This message has no documentation. If you know where or how this message is used, you can help other translators by adding documentation to this message.
Message definition (Proper ~/.xinitrc File)
#!/bin/sh
 #
 # ~/.xinitrc
 #
 # Executed by startx (run your window manager from here)
 
 if [ -d /etc/X11/xinit/xinitrc.d ]; then
   for f in /etc/X11/xinit/xinitrc.d/*; do
     [ -x "$f" ] && . "$f"
   done
   unset f
 fi
 
 # exec enlightenment_start
 # exec i3
 # exec mate-session
 # exec xmonad
 # exec startlxqt
 # exec startlxde
 # exec awesome
 # exec bspwm
 # exec gnome-session
 # exec gnome-session --session=gnome-classic
 # exec startplasma-x11
 # exec startplasma-wayland
 # exec startxfce4
 # exec startfluxbox
 # exec openbox-session
 # exec cinnamon-session
 # exec pekwm
 # exec catwm
 # exec dwm
 # exec startede
 # exec icewm-session
 # exec jwm
 # exec monsterwm
 # exec notion
 # exec startdde      # deepin-session
  1. !/bin/sh
#
# ~/.xinitrc
#
# Executed by startx (run your window manager from here)

if [ -d /etc/X11/xinit/xinitrc.d ]; then
  for f in /etc/X11/xinit/xinitrc.d/*; do
    [ -x "$f" ] && . "$f"
  done
  unset f
fi

# exec enlightenment_start
# exec i3
# exec mate-session
# exec xmonad
# exec startlxqt
# exec startlxde
# exec awesome
# exec bspwm
# exec gnome-session
# exec gnome-session --session=gnome-classic
# exec startplasma-x11
# exec startplasma-wayland
# exec startxfce4
# exec startfluxbox
# exec openbox-session
# exec cinnamon-session
# exec pekwm
# exec catwm
# exec dwm
# exec startede
# exec icewm-session
# exec jwm
# exec monsterwm
# exec notion
# exec startdde       # deepin-session
Cookies help us deliver our services. By using our services, you agree to our use of cookies.