Config+Packages: Implement machine specific configuration
This commit is contained in:
@@ -10,7 +10,13 @@ indicate_hidden = false
|
||||
padding = 10
|
||||
shrink = false
|
||||
|
||||
frame_width = 3
|
||||
# >>> hostname=arch-desktop
|
||||
frame_width = 2
|
||||
# <<<
|
||||
# >>> hostname=arch-laptop
|
||||
# frame_width = 3
|
||||
# <<<
|
||||
|
||||
separator_height = 3
|
||||
separator_color = frame
|
||||
|
||||
|
||||
@@ -1,4 +1,9 @@
|
||||
#!/hint/bash
|
||||
|
||||
# Make Flags: use 4 threads
|
||||
MAKEFLAGS="-j4"
|
||||
# Amount of threads the use with the make command
|
||||
# >>> hostname=arch-desktop
|
||||
MAKEFLAGS="-j8"
|
||||
# <<<
|
||||
# >>> hostname=arch-laptop
|
||||
# MAKEFLAGS="-j4"
|
||||
# <<<
|
||||
|
||||
@@ -1,6 +1,13 @@
|
||||
[redshift]
|
||||
temp-day=5700
|
||||
temp-night=3000
|
||||
|
||||
; >>> hostname=arch-desktop
|
||||
temp-night=3500
|
||||
; <<<
|
||||
; >>> hostname=arch-laptop
|
||||
; temp-night=3000
|
||||
; <<<
|
||||
|
||||
fade=1
|
||||
|
||||
brightness-day=1.0
|
||||
|
||||
@@ -11,6 +11,10 @@ configuration {
|
||||
/* Layout */
|
||||
font: "DejaVu Sans Mono, Font Awesome 6 Free 12";
|
||||
|
||||
/* >>> hostname=arch-laptop */
|
||||
/* dpi: 192; */
|
||||
/* <<< */
|
||||
|
||||
/* Icons */
|
||||
icon-theme: "Arc";
|
||||
show-icons: true;
|
||||
|
||||
+17
-3
@@ -49,11 +49,25 @@ WmWorkSpace.ws9: 九
|
||||
WmWorkSpace.ws0: 十
|
||||
|
||||
Xcursor.theme: capitaine-cursors-light
|
||||
Xcursor.size: 48
|
||||
|
||||
! >>> hostname=arch-desktop
|
||||
Xcursor.size: 24
|
||||
! <<<
|
||||
! >>> hostname=arch-laptop
|
||||
! Xcursor.size: 48
|
||||
! <<<
|
||||
|
||||
! Font config
|
||||
*dpi: 192
|
||||
Xft.dpi: 192
|
||||
|
||||
! >>> hostname=arch-desktop
|
||||
*dpi: 96
|
||||
Xft.dpi: 96
|
||||
! <<<
|
||||
! >>> hostname=arch-laptop
|
||||
! *dpi: 192
|
||||
! Xft.dpi: 192
|
||||
! <<<
|
||||
|
||||
Xft.autohint: 0
|
||||
Xft.lcdfilter: lcddefault
|
||||
Xft.hintstyle: hintslight
|
||||
|
||||
@@ -3,7 +3,13 @@
|
||||
xrdb "$XDG_CONFIG_HOME/xorg/Xresources"
|
||||
|
||||
# Setup display
|
||||
|
||||
# >>> hostname=arch-desktop
|
||||
monctl primary DP-1 &
|
||||
# <<<
|
||||
# >>> hostname=arch-laptop
|
||||
# monctl auto 3000 2000 48 eDP-1 &
|
||||
# <<<
|
||||
|
||||
# Set default X cursor to arrow
|
||||
xsetroot -cursor_name left_ptr
|
||||
|
||||
@@ -20,7 +20,10 @@ export PLATFORMIO_HOME_DIR="$XDG_DATA_HOME/platformio"
|
||||
export R_ENVIRON_USER="$XDG_CONFIG_HOME/R/Renviron"
|
||||
|
||||
# HiDPI screen
|
||||
export HIDPI=true
|
||||
|
||||
# >>> hostname=arch-laptop
|
||||
# export HIDPI=true
|
||||
# <<<
|
||||
|
||||
# GPG
|
||||
export GNUPGHOME="$XDG_CONFIG_HOME/gnupg"
|
||||
|
||||
Reference in New Issue
Block a user