This commit is contained in:
davedatum 2019-10-18 17:38:59 +01:00
parent 384c7f1bc0
commit 0899cf4ead
3 changed files with 69 additions and 5 deletions

View File

@ -1,10 +1,6 @@
[org.gnome.system.locale]
region='en_US.utf-8'
[org.gnome.shell.extensions.notifications-alert]
blinkrate=0
color='#279079'
[ca.desrt.dconf-editor]
saved-pathbar-path='/org/gnome/desktop/background/'
saved-view='/'
@ -347,7 +343,7 @@ overrides={'Gtk/ShellShowsAppMenu': <1>}
[org.gnome.shell]
app-picker-view=uint32 1
command-history=['', 'r']
enabled-extensions=['dash-to-dock@micxgx.gmail.com', 'gnomenu@panacier.gmail.com', 'drive-menu@gnome-shell-extensions.gcampax.github.com', 'user-theme@gnome-shell-extensions.gcampax.github.com', 'manjaro-update@Chrysostomus', 'audio-output-switcher@anduchs', 'extensions@abteil.org', 'donotdisturb-button@nls1729', 'do-not-disturb-time@catbo.net', 'apps-menu@gnome-shell-extensions.gcampax.github.com', 'show_applications_instead_of_overview@fawtytoo', 'bluetooth-quick-connect@bjarosze.gmail.com', 'volume_scroll@qord.si', 'workspace-indicator@gnome-shell-extensions.gcampax.github.com', 'dash-to-panel@jderose9.github.com', 'nohotcorner@azuri.free.fr', 'System_Monitor@bghome.gmail.com', 'better-osd', 'unite@hardpixel.eu', 'notifications-alert-on-user-menu@hackedbellini.gmail.com', 'donotdisturb@kylecorry31.github.io', 'tweaks-system-menu@extensions.gnome-shell.fifi.org', 'todo.txt@bart.libert.gmail.com', 'appfolders-manager@maestroschan.fr', 'pamac-updates@manjaro.org']
enabled-extensions=['dash-to-dock@micxgx.gmail.com', 'gnomenu@panacier.gmail.com', 'drive-menu@gnome-shell-extensions.gcampax.github.com', 'user-theme@gnome-shell-extensions.gcampax.github.com', 'manjaro-update@Chrysostomus', 'audio-output-switcher@anduchs', 'extensions@abteil.org', 'donotdisturb-button@nls1729', 'apps-menu@gnome-shell-extensions.gcampax.github.com', 'show_applications_instead_of_overview@fawtytoo', 'bluetooth-quick-connect@bjarosze.gmail.com', 'volume_scroll@qord.si', 'workspace-indicator@gnome-shell-extensions.gcampax.github.com', 'dash-to-panel@jderose9.github.com', 'nohotcorner@azuri.free.fr', 'System_Monitor@bghome.gmail.com', 'better-osd', 'unite@hardpixel.eu', 'notifications-alert-on-user-menu@hackedbellini.gmail.com', 'donotdisturb@kylecorry31.github.io', 'tweaks-system-menu@extensions.gnome-shell.fifi.org', 'todo.txt@bart.libert.gmail.com', 'appfolders-manager@maestroschan.fr', 'pamac-updates@manjaro.org']
favorite-apps=['firefox.desktop', 'org.gnome.Nautilus.desktop', 'pamac-manager.desktop', 'org.gnome.gedit.desktop', 'org.gnome.Terminal.desktop', 'gnome-control-center.desktop']
[org.gnome.shell.extensions.TaskBar]

2
skel/.profile Normal file
View File

@ -0,0 +1,2 @@
export QT_QPA_PLATFORMTHEME="qt5ct"
export EDITOR=/usr/bin/nano

66
skel/.xinitrc Normal file
View File

@ -0,0 +1,66 @@
#!/bin/sh
#
# ~/.xinitrc
#
# Executed by startx (run your window manager from here)
userresources=$HOME/.Xresources
usermodmap=$HOME/.Xmodmap
sysresources=/etc/X11/xinit/.Xresources
sysmodmap=/etc/X11/xinit/.Xmodmap
DEFAULT_SESSION=gnome-session
# merge in defaults and keymaps
if [ -f $sysresources ]; then
xrdb -merge $sysresources
fi
if [ -f $sysmodmap ]; then
xmodmap $sysmodmap
fi
if [ -f "$userresources" ]; then
xrdb -merge "$userresources"
fi
if [ -f "$usermodmap" ]; then
xmodmap "$usermodmap"
fi
# start some nice programs
if [ -d /etc/X11/xinit/xinitrc.d ] ; then
for f in /etc/X11/xinit/xinitrc.d/?*.sh ; do
[ -x "$f" ] && . "$f"
done
unset f
fi
get_session(){
local dbus_args=(--sh-syntax --exit-with-session)
case $1 in
awesome) dbus_args+=(awesome) ;;
bspwm) dbus_args+=(bspwm-session) ;;
budgie) dbus_args+=(budgie-desktop) ;;
cinnamon) dbus_args+=(cinnamon-session) ;;
deepin) dbus_args+=(startdde) ;;
enlightenment) dbus_args+=(enlightenment_start) ;;
fluxbox) dbus_args+=(startfluxbox) ;;
gnome) dbus_args+=(gnome-session) ;;
i3|i3wm) dbus_args+=(i3 --shmlog-size 0) ;;
jwm) dbus_args+=(jwm) ;;
kde) dbus_args+=(startkde) ;;
lxde) dbus_args+=(startlxde) ;;
lxqt) dbus_args+=(lxqt-session) ;;
mate) dbus_args+=(mate-session) ;;
xfce) dbus_args+=(xfce4-session) ;;
openbox) dbus_args+=(openbox-session) ;;
*) dbus_args+=($DEFAULT_SESSION) ;;
esac
echo "dbus-launch ${dbus_args[*]}"
}
exec $(get_session)