aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorclarkzjw <[email protected]>2022-11-23 13:55:56 -0800
committerclarkzjw <[email protected]>2022-11-23 13:55:56 -0800
commitea795e932b3edf04ef74b1566dbbf6aa0efc5853 (patch)
tree176a7655e3fefdbd6798978786b8bcf746408f82
parentc84d72d382516c7571f68ba6b13599e6899c3452 (diff)
downloaddotfiles-ea795e932b3edf04ef74b1566dbbf6aa0efc5853.tar.gz
HiDPI: set GDK_SCALE=2 for thunar
-rw-r--r--dot_config/i3/config4
-rw-r--r--dot_config/picom.conf4
-rw-r--r--dot_zshrc2
3 files changed, 5 insertions, 5 deletions
diff --git a/dot_config/i3/config b/dot_config/i3/config
index 6116923..e06b562 100644
--- a/dot_config/i3/config
+++ b/dot_config/i3/config
@@ -268,7 +268,7 @@ bindsym XF86AudioPrev exec --no-startup-id playerctl previous
268 268
269# App shortcuts 269# App shortcuts
270bindsym $mod+w exec /usr/bin/firefox 270bindsym $mod+w exec /usr/bin/firefox
271bindsym $mod+n exec /usr/bin/thunar 271bindsym $mod+n exec env GDK_SCALE=2 /usr/bin/thunar
272 272
273# Screenshot 273# Screenshot
274bindsym Print exec --no-startup-id flameshot gui 274bindsym Print exec --no-startup-id flameshot gui
@@ -389,7 +389,7 @@ exec --no-startup-id dunst --config ~/.config/dunst/dunstrc
389#exec_always --no-startup-id autotiling 389#exec_always --no-startup-id autotiling
390 390
391# Autostart apps as you like 391# Autostart apps as you like
392exec --no-startup-id sleep 1 && thunderbird 392exec --no-startup-id sleep 5 && thunderbird
393 393
394################## 394##################
395# floating rules # 395# floating rules #
diff --git a/dot_config/picom.conf b/dot_config/picom.conf
index 2ec14a9..bdfe7f2 100644
--- a/dot_config/picom.conf
+++ b/dot_config/picom.conf
@@ -10,8 +10,8 @@
10# Specify the backend to use: `xrender`, `glx`, or `xr_glx_hybrid`. 10# Specify the backend to use: `xrender`, `glx`, or `xr_glx_hybrid`.
11# `xrender` is the default one. 11# `xrender` is the default one.
12# GLX backend is typically much faster but depends on a sane driver. 12# GLX backend is typically much faster but depends on a sane driver.
13#backend = "xrender"; 13backend = "xrender";
14backend = "glx"; 14#backend = "glx";
15#backend = "xr_glx_hybrid" 15#backend = "xr_glx_hybrid"
16 16
17################################# 17#################################
diff --git a/dot_zshrc b/dot_zshrc
index 9121ba8..502e9e0 100644
--- a/dot_zshrc
+++ b/dot_zshrc
@@ -122,7 +122,7 @@ function addPATHBefore {
122 122
123[[ -s /etc/profile.d/autojump.sh ]] && source /etc/profile.d/autojump.sh 123[[ -s /etc/profile.d/autojump.sh ]] && source /etc/profile.d/autojump.sh
124 124
125addPATH /Users/clarkzjw/.local/bin 125addPATH $HOME/.local/bin
126addPATH $GOPATH/bin 126addPATH $GOPATH/bin
127 127
128alias emacs="emacs -nw" 128alias emacs="emacs -nw"
Powered by cgit v1.2.3 (git 2.41.0)