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