Move even more files to .config
Signed-off-by: Severin Kaderli <severin.kaderli@gmail.com>
This commit is contained in:
parent
e0e3ad0135
commit
005c4f29b6
11 changed files with 26 additions and 56 deletions
15
system/.config/X11/xinitrc
Normal file
15
system/.config/X11/xinitrc
Normal file
|
@ -0,0 +1,15 @@
|
|||
#!/bin/bash
|
||||
#
|
||||
# SCRIPT NAME:
|
||||
# .config/X11/xinitrc
|
||||
#
|
||||
# AUTHOR:
|
||||
# Severin Kaderli <severin.kaderli@gmail.com>
|
||||
#
|
||||
# DESCRIPTION:
|
||||
# This is the startup script when you start the x-server.
|
||||
#
|
||||
# USAGE:
|
||||
# This script is executed when you start the x-server.
|
||||
. "${XDG_CONFIG_HOME}/X11/xsetup"
|
||||
i3
|
21
system/.config/X11/xresources
Normal file
21
system/.config/X11/xresources
Normal file
|
@ -0,0 +1,21 @@
|
|||
! SCRIPT NAME:
|
||||
! .Xresources
|
||||
!
|
||||
! AUTHOR:
|
||||
! Severin Kaderli <severin.kaderli@gmail.com>
|
||||
!
|
||||
! DESCRIPTION:
|
||||
! This contains my Rofi color configuration.
|
||||
!
|
||||
! USAGE:
|
||||
! This file is merged on boot.
|
||||
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
! ROFI Color theme
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
rofi.color-enabled: true
|
||||
rofi.color-window: #273238, #273238, #1e2529
|
||||
rofi.color-normal: #273238, #c1c1c1, #273238, #394249, #ffffff
|
||||
rofi.color-active: #273238, #80cbc4, #273238, #394249, #80cbc4
|
||||
rofi.color-urgent: #273238, #ff1844, #273238, #394249, #ff1844
|
||||
rofi.seperator-style: solid
|
34
system/.config/X11/xsetup
Normal file
34
system/.config/X11/xsetup
Normal file
|
@ -0,0 +1,34 @@
|
|||
#!/bin/bash
|
||||
#
|
||||
# SCRIPT NAME:
|
||||
# .config/X11/xsetup
|
||||
#
|
||||
# AUTHOR:
|
||||
# Severin Kaderli <severin.kaderli@gmail.com>
|
||||
#
|
||||
# DESCRIPTION:
|
||||
# This file setups things that should by started by the x-server like the
|
||||
# ibus-daemon and the keyboard layout.
|
||||
#
|
||||
# USAGE:
|
||||
# This script is sourced by both .xinitrc and .xprofile
|
||||
xset s off
|
||||
xset -dpms
|
||||
xset s noblank
|
||||
|
||||
# Set keyboard layout
|
||||
setxkbmap -model pc105 -layout ch
|
||||
|
||||
# Start network manager
|
||||
nm-applet &
|
||||
|
||||
# Start redshift
|
||||
redshift &
|
||||
|
||||
# Merge .Xresources on boot
|
||||
xrdb -merge "${XDG_CONFIG_HOME}/X11/xresources"
|
||||
|
||||
# Start ibus
|
||||
#ibus-daemon -drx
|
||||
|
||||
. "${HOME}/bin/resolution.sh"
|
Loading…
Add table
Add a link
Reference in a new issue