Merge branch 'master' of gitlab.com:severinkaderli/dotfiles

This commit is contained in:
Severin Kaderli 2019-07-15 16:42:52 +02:00
commit 911e20dbb4
12 changed files with 73 additions and 3 deletions

9
.gitignore vendored
View file

@ -39,3 +39,12 @@ system/.config/phpstorm/config/options/updates.xml
system/.config/phpstorm/config/options/usage.statistics.xml
system/.config/phpstorm/config/options/recentProjectDirectories.xml
system/.config/phpstorm/config/options/window.manager.xml
system/.config/phpstorm/config/consoles
system/.config/phpstorm/config/extensions/com.intellij.database/
system/.config/phpstorm/config/jdbc-drivers
system/.config/phpstorm/config/phpstorm64.vmoptions
system/.config/phpstorm/config/options/window.state.xml
system/.config/phpstorm/config/terminal/history/history-
system/.config/phpstorm/config/options/runner.layout.xml
system/.config/phpstorm/config/options/extensionsRootType.xml
system/.config/phpstorm/config/options/databaseDrivers.xml

View file

@ -143,6 +143,7 @@ COMPOSER_PACKAGES=(
declare -A COPY_ROOT_FILES
COPY_ROOT_FILES=(
["/etc/docker/daemon.json"]="644"
["/etc/gemrc"]="644"
["/etc/mkinitcpio.conf"]="644"
["/etc/NetworkManager/conf.d/dns.conf"]="644"
["/etc/pacman.conf"]="644"

View file

@ -110,7 +110,6 @@ export PATH="${PATH}:${CARGO_HOME}/bin"
export PATH="${PATH}:${XDG_DATA_HOME}/npm/bin"
export PATH="${PATH}:${GOPATH}/bin"
export PATH="${PATH}:${GEM_HOME}/bin"
export PATH="${PATH}:${HOME}/.gem/ruby/2.6.0/bin"
export PATH="${PATH}:${XDG_CONFIG_HOME}/composer/vendor/bin"
export PATH="${HOME}/.local/bin:${PATH}"

View file

@ -0,0 +1,5 @@
<application>
<component name="DockerSettings">
<option name="dockerMachinePath" value="docker-machine" />
</component>
</application>

View file

@ -0,0 +1,9 @@
<application>
<component name="FindSettings">
<option name="customScope" value="All Places" />
<option name="defaultScopeName" value="All Places" />
<option name="wholeWordsOnly" value="true" />
<option name="WHOLE_WORDS_ONLY" value="true" />
<option name="SEARCH_SCOPE" value="All Places" />
</component>
</application>

View file

@ -1,6 +1,7 @@
<application>
<component name="GeneralSettings">
<option name="confirmExit" value="false" />
<option name="searchInBackground" value="true" />
<option name="showTipsOnStartup" value="false" />
</component>
</application>

View file

@ -0,0 +1,5 @@
<application>
<component name="MarkdownApplicationSettings">
<MarkdownCssSettings />
</component>
</application>

View file

@ -0,0 +1,10 @@
<application>
<component name="RemoteServers">
<remote-server name="Docker" type="docker">
<configuration>
<option name="apiUrl" value="unix:///var/run/docker.sock" />
<option name="certificatesPath" />
</configuration>
</remote-server>
</component>
</application>

View file

@ -43,7 +43,7 @@ module-margin = 2
modules-left = i3
modules-center =
modules-right = update gmail battery volume backlight vpn wlan ethernet date power
modules-right = update gmail battery battery2 volume backlight vpn wlan ethernet date power
tray-position = none
separator = |
@ -172,6 +172,10 @@ animation-charging-framerate = 500
interval = 5
poll-interval = 5
[module/battery2]
battery = BAT0
inherit = module/battery
##############################################################################
# Volume indicator #

23
system/.local/bin/clean Executable file
View file

@ -0,0 +1,23 @@
#!/usr/bin/env bash
#
# SCRIPT NAME:
# clean
#
# AUTHOR:
# Severin Kaderli <severin@kaderli.dev>
#
# DESCRIPTION:
# This script cleans the system.
#
# USAGE:
# ./clean
. utils
print_section "Remove unneeded dependencies"
yay -R $(yay -Qdtq)
print_section "Clean yay cache"
yay -Sc
print_section "Clean docker"
docker system prune

View file

@ -23,5 +23,8 @@ npm update -g
print_section "Update composer packages"
composer global update
print_section "Update ruby gems"
gem update
print_section "Update Rust components"
rustup update

1
system/etc/gemrc Normal file
View file

@ -0,0 +1 @@
gem: --no-user-install