|
Tag: Redirect target changed |
(7 intermediate revisions by 3 users not shown) |
Line 1: |
Line 1: |
| {{Merge |XFCE Setup |date=December 2018}}
| | #REDIRECT [[Xfce]] |
| | |
| | |
| These are my personal xfce4 desktop notes.
| |
| | |
| Remaining differences to [[Xfce_Setup]] (need to be checked):
| |
| | |
| == Base system ==
| |
| | |
| # apk add slim (had no graphical shutdown/suspend support)
| |
| | |
| | |
| | |
| # add user to specific groups
| |
| ## adduser (username) audio
| |
| ## adduser (username) video
| |
| ## adduser (username) dialout
| |
| | |
| | |
| # Add /etc/X11/xorg.conf.d/30-intel.conf to have tear free scrolling:
| |
| <pre>
| |
| Section "Device"
| |
| Identifier "Intel Graphics"
| |
| Driver "intel"
| |
| Option "TearFree" "true"
| |
| EndSection
| |
| </pre>
| |
| | |
| | |
| == Changing cosmetics ==
| |
| | |
| # apk add paper-gtk-theme # gtk2 !?
| |
| # change xfce4 style/icons to paper: Settings -> Appearance -> Style and Icons
| |
| # change window manager theme to Paper: Settings -> Window Manager -> Style
| |
| # set custom desktop background picture
| |
| | |
| # Settings - > Appearance -> Fonts: Turn on Anti-aliasing (is the default) and enable Sub-Pixel order -> RGB
| |
| | |
| | |
| === obsolete? ===
| |
| | |
| # apk add paper-icon-theme # ~500MB
| |
| # apk add font-noto
| |
| | |
| # Change mouse Theme to Paper: Settings -> Mouse and Trackpad -> Theme
| |
| # enable all Composer Shadows: Settings -> Window Manager Tweaks -> Composer
| |
| # change fonts to noto
| |
| ## Settings - > Appearance -> Fonts: Set to Noto Sans UI
| |
| ### Turn on Anti-aliasing (is the default) and enable Sub-Pixel order -> RGB
| |
| | |
| == Setting up Alsa audio ==
| |
| | |
| # apk add alsa-utils
| |
| # rc-update add alsa
| |
| # rc-service alsa start
| |
| # Set the default sound device
| |
| ## List sound devices: <code>cat /proc/asound/card*/id</code>
| |
| ## Depending on your setup select the proper device
| |
| ### create a /etc/asound.conf with following content where PCH is sound card name.
| |
| <pre>
| |
| pcm.!default {
| |
| type plug
| |
| slave.pcm {
| |
| @func getenv
| |
| vars [ ALSAPCM ]
| |
| default "hw:PCH"
| |
| }
| |
| }
| |
| </pre>
| |
| | |
| == additional software ==
| |
| | |
| # apk add geany
| |
| # apk add thunar-archive-plugin
| |
| # apk add xarchiver
| |
| | |
| == Tweaks ==
| |
| | |
| Enable webgl on chromium when running on hardened kernel:
| |
| | |
| Edit: <code>/boot/extlinux.conf</code>
| |
| | |
| Add: <code>grsec_sysfs_restrict=0</code> to the end of the of the APPEND line.
| |
| | |
| Don't forget to add it to your update-extlinux.conf
| |
| | |
| [[Category:Installation]]
| |
| [[Category:Desktop]] | |