Skip to content

Commit 56c364a

Browse files
committed
redshift user service
1 parent c7f7c19 commit 56c364a

File tree

7 files changed

+24
-7
lines changed

7 files changed

+24
-7
lines changed

.Xresources

+4-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@
66

77
/*st.font: JetBrainsMono:style:Regular:pixelsize=19*/
88
!st.font: UbuntuMono:style:Bront:pixelsize=19
9-
st.font: FiraCodeNerdFont:style:Medium:pixelsize=19
9+
!st.font: FiraCodeNerdFont:style:Medium:pixelsize=19
10+
!st.font: HackNerdFont:style:Medium:pixelsize=19
11+
st.font: BlexMonoNerdFontPropo:style:Medium:pixelsize=19
12+
!st.font: M+CodeLat50NerdFont:style:Regular:pixelsize=25
1013
/*st.font: UbuntuMono:style:Bront:pixelsize=20*/
1114
/*st.font: UbuntuMono:style:Bront:pixelsize=25*/
1215

.bash_profile

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ if [[ -z $DISPLAY ]] && [[ $(tty) = /dev/tty1 ]]; then
55
# setxkbmap -layout us,latam
66
# setxkbmap -option 'grp:alt_shift_toggle'
77
fi
8-
. "/home/ming/.deno/env"
8+
#. "/home/ming/.deno/env"

.bashrc

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ alias ls='lsd --color=auto'
99
# PS1='[\u@\h \W]\$ '
1010
eval "$(starship init bash)"
1111
set -o vi
12-
export EDITOR=nvim
12+
export EDITOR=vim
1313
export CAPACITOR_ANDROID_STUDIO_PATH=/opt/android-studio/bin/studio.sh
1414
export ANDROID_HOME=$HOME/android-sdk
1515
export JAVA_HOME=/usr/lib/jvm/java-17-openjdk
1616
export DEFAULT_RECIPIENT="[email protected]"
1717
alias rel="xrdb merge ~/.Xresources && kill -USR1 $(pidof st)"
18-
. "/home/ming/.deno/env"
18+
#. "/home/ming/.deno/env"
1919
export PATH=$PATH:$ANDROID_HOME/platform-tools
2020
export PATH=~/bin:$PATH
2121

.config/i3/config

+2-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ client.background $bg
3939
set $mod Mod4
4040

4141
# font pango:Fira Code 10
42-
font pango:Hack Nerd Font 9
42+
#font pango:Hack Nerd Font 9
43+
font pango:BlexMonoNerdFontMedium 9
4344

4445
##### i3-gaps ##############
4546
for_window [class=".*"] border pixel 0 #*

.config/rofi/config.rasi

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ configuration {
22
font: "JetBrainsMono Bold 10";
33

44
}
5-
@theme "/home/ming/Dotfiles/default.rasi"
5+
@theme "/home/ecc/Dotfiles/default.rasi"

.config/systemd/user/redshift.service

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
[Unit]
2+
Description=Redshift - Adjusts the color temperature of your screen
3+
Documentation=man:redshift(1)
4+
After=graphical.target
5+
6+
[Service]
7+
ExecStart=/usr/bin/redshift
8+
Restart=on-failure
9+
RestartSec=5
10+
Environment=DISPLAY=:0
11+
12+
[Install]
13+
WantedBy=default.target

.gitconfig

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
sign = commit -a -S -m
1212
undo = reset --soft HEAD~1
1313
[core]
14-
editor = nvim
14+
editor = vim
1515
[color]
1616
ui = true
1717
[pull]

0 commit comments

Comments
 (0)