Merge branch 'master' of gitlab.com:severinkaderli/dotfiles
This commit is contained in:
commit
911e20dbb4
12 changed files with 73 additions and 3 deletions
|
@ -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}"
|
||||
|
||||
|
|
5
system/.config/phpstorm/config/options/docker.xml
Normal file
5
system/.config/phpstorm/config/options/docker.xml
Normal file
|
@ -0,0 +1,5 @@
|
|||
<application>
|
||||
<component name="DockerSettings">
|
||||
<option name="dockerMachinePath" value="docker-machine" />
|
||||
</component>
|
||||
</application>
|
9
system/.config/phpstorm/config/options/find.xml
Normal file
9
system/.config/phpstorm/config/options/find.xml
Normal 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>
|
|
@ -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>
|
5
system/.config/phpstorm/config/options/markdown.xml
Normal file
5
system/.config/phpstorm/config/options/markdown.xml
Normal file
|
@ -0,0 +1,5 @@
|
|||
<application>
|
||||
<component name="MarkdownApplicationSettings">
|
||||
<MarkdownCssSettings />
|
||||
</component>
|
||||
</application>
|
10
system/.config/phpstorm/config/options/remote-servers.xml
Normal file
10
system/.config/phpstorm/config/options/remote-servers.xml
Normal 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>
|
|
@ -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
23
system/.local/bin/clean
Executable 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
|
|
@ -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
1
system/etc/gemrc
Normal file
|
@ -0,0 +1 @@
|
|||
gem: --no-user-install
|
Loading…
Add table
Add a link
Reference in a new issue