added docker for non-root and shuffled dep list

This commit is contained in:
Rick van Lieshout 2024-12-08 13:52:26 +01:00
parent 5aac22cb6d
commit 1511a5c1a5
6 changed files with 23 additions and 9 deletions

View File

@ -20,7 +20,7 @@ application/x-extension-xht=firefox.desktop
#--------------
x-scheme-handler/postman=Postman.desktop
x-scheme-handler/ssh=ktelnetservice5.desktop
x-scheme-handler/msteams=teams-insiders.desktop
x-scheme-handler/msteams=teams.desktop
x-scheme-handler/discord-478576776990425110=discord-478576776990425110.desktop
x-scheme-handler/mailspring=Mailspring.desktop
x-scheme-handler/etcher=balena-etcher-electron.desktop

View File

@ -0,0 +1 @@
/home/mastermindzh/dotfiles/config/terminalrc

View File

@ -3,8 +3,8 @@
<channel name="thunar" version="1.0">
<property name="last-view" type="string" value="ThunarIconView"/>
<property name="last-icon-view-zoom-level" type="string" value="THUNAR_ZOOM_LEVEL_100_PERCENT"/>
<property name="last-window-width" type="int" value="2560"/>
<property name="last-window-height" type="int" value="1392"/>
<property name="last-window-width" type="int" value="1898"/>
<property name="last-window-height" type="int" value="2095"/>
<property name="last-window-maximized" type="bool" value="true"/>
<property name="last-separator-position" type="int" value="229"/>
<property name="misc-single-click" type="bool" value="false"/>

View File

@ -3,7 +3,7 @@
<channel name="xfce4-terminal" version="1.0">
<property name="background-darkness" type="double" value="0.90000000000000002"/>
<property name="color-background" type="string" value="#1e1e1e1e1e1e"/>
<property name="font-name" type="string" value="Ubuntu Mono 13"/>
<property name="font-name" type="string" value="Ubuntu Mono 18"/>
<property name="misc-always-show-tabs" type="bool" value="false"/>
<property name="misc-bell" type="bool" value="false"/>
<property name="misc-bell-urgent" type="bool" value="false"/>
@ -36,5 +36,6 @@
<property name="scrolling-unlimited" type="bool" value="true"/>
<property name="title-initial" type="string" value=""/>
<property name="background-mode" type="string" value="TERMINAL_BACKGROUND_TRANSPARENT"/>
<property name="color-use-theme" type="bool" value="true"/>
<property name="color-use-theme" type="bool" value="false"/>
<property name="font-use-system" type="bool" value="false"/>
</channel>

View File

@ -8,10 +8,8 @@ oh-my-posh
dive
gnome-text-editor
chili-sddm-theme
greenclip
seafile
seafile-client
awf-gtk4
seafile
networkmanager-l2tp
xorg-xev
notify-osd-customizable
@ -20,6 +18,8 @@ dotnet-host-bin
keychain
nomachine
pulseaudio-ctl
sysmontask
otf-droid-sans-mono-powerline-git
seafile-client
sysmontask
azure-cli
greenclip

View File

@ -99,6 +99,13 @@ function install_gtk {
ln -sf "$PWD"/config/gtk/settings.ini ~/.config/gtk-4.0/settings.ini
}
function install_docker {
systemctl enable docker
groupadd docker
usermod -aG docker $USER
newgrp docker
}
# install other configs
function install_config {
@ -253,6 +260,11 @@ if ask "Do you want to install the fonts?" Y; then
install_fonts
fi
# Autostart docker and add user
if ask "Do you want to set up docker for this user?" Y; then
install_docker
fi
# ask to enable the display manager
if ask "Do you want to enable sddm?" Y; then
sudo systemctl set-default graphical.target