Desktop-notes: Difference between revisions

From Alpine Linux
(Created page with "These are my personal xfce4 desktop notes. # Do a minimal Alpine install # Enable community repo in repositories # setup-xorg-base # apk add xfce4 # apk add chromium # apk ad...")
 
No edit summary
Line 7: Line 7:
# apk add chromium
# apk add chromium
# apk add slim
# apk add slim
# rc-update add slim
# apk add paper-icon-theme paper-gtk-theme
# apk add paper-icon-theme paper-gtk-theme
# apk add font-noto
# apk add font-noto
Line 13: Line 12:
# apk add xf86-input-keyboard xf86-input-evdev
# apk add xf86-input-keyboard xf86-input-evdev
# add local user and add to sudo list
# add local user and add to sudo list
 
# Add /etc/X11/xorg.conf.d/30-intel.conf to have tear free scrolling:
Add /etc/X11/xorg.conf.d/30-intel.conf:
<pre>
<pre>
Section "Device"
Section "Device"
   Identifier  "Intel Graphics"
   Identifier  "Intel Graphics"
   Driver      "intel"
   Driver      "intel"
   Option      "TearFree"    "true"
   Option      "TearFree"    "true"
EndSection
EndSection
</pre>
</pre>
 
# reboot system
# rc-service start slim
# verify xorg starts correctly and you can login to slim
# rc-update add slim

Revision as of 09:02, 27 September 2017

These are my personal xfce4 desktop notes.

  1. Do a minimal Alpine install
  2. Enable community repo in repositories
  3. setup-xorg-base
  4. apk add xfce4
  5. apk add chromium
  6. apk add slim
  7. apk add paper-icon-theme paper-gtk-theme
  8. apk add font-noto
  9. apk add xf86-video-intel (for intel video only)
  10. apk add xf86-input-keyboard xf86-input-evdev
  11. add local user and add to sudo list
  12. Add /etc/X11/xorg.conf.d/30-intel.conf to have tear free scrolling:
 Section "Device"
   Identifier  "Intel Graphics"
   Driver      "intel"
   Option      "TearFree"    "true"
 EndSection
 
  1. reboot system
  2. rc-service start slim
  3. verify xorg starts correctly and you can login to slim
  4. rc-update add slim