wip
This commit is contained in:
parent
e1a6e5f083
commit
0f5321f5d9
@ -2,4 +2,4 @@
|
|||||||
pacman -S --needed brightnessctl intel-media-driver intel-ucode mesa tlp libreoffice-still
|
pacman -S --needed brightnessctl intel-media-driver intel-ucode mesa tlp libreoffice-still
|
||||||
cp_chown custom/laptop-tlp.conf /etc/tlp.conf root:root 644
|
cp_chown custom/laptop-tlp.conf /etc/tlp.conf root:root 644
|
||||||
systemctl restart tlp
|
systemctl restart tlp
|
||||||
file_has_line "/etc/profile" "FEAT_BRIGHTNESS=brightnessctl"
|
file_has_line "/etc/profile" "export FEAT_BRIGHTNESS=brightnessctl"
|
||||||
|
@ -9,11 +9,15 @@ export BEMENU_OPTS="\
|
|||||||
--border-radius 4 \
|
--border-radius 4 \
|
||||||
--bdr #$THEME_COLOR_FG_ACCENT$THEME_OPACITY_MID_HEX \
|
--bdr #$THEME_COLOR_FG_ACCENT$THEME_OPACITY_MID_HEX \
|
||||||
--scf #$THEME_COLOR_FG_ACCENT$THEME_OPACITY_MID_HEX \
|
--scf #$THEME_COLOR_FG_ACCENT$THEME_OPACITY_MID_HEX \
|
||||||
|
--scb #$THEME_COLOR_BG$THEME_OPACITY_HIGH_HEX \
|
||||||
--nb #$THEME_COLOR_BG$THEME_OPACITY_HIGH_HEX \
|
--nb #$THEME_COLOR_BG$THEME_OPACITY_HIGH_HEX \
|
||||||
--ab #$THEME_COLOR_BG$THEME_OPACITY_HIGH_HEX \
|
--ab #$THEME_COLOR_BG$THEME_OPACITY_HIGH_HEX \
|
||||||
--hb #$THEME_COLOR_BG$THEME_OPACITY_HIGH_HEX \
|
--hb #$THEME_COLOR_BG$THEME_OPACITY_HIGH_HEX \
|
||||||
|
--fb #$THEME_COLOR_BG$THEME_OPACITY_HIGH_HEX \
|
||||||
|
--tb #$THEME_COLOR_BG$THEME_OPACITY_HIGH_HEX \
|
||||||
--nf #$THEME_COLOR_FG \
|
--nf #$THEME_COLOR_FG \
|
||||||
--af #$THEME_COLOR_FG \
|
--af #$THEME_COLOR_FG \
|
||||||
|
--cf #$THEME_COLOR_FG \
|
||||||
--hf #$THEME_COLOR_FG_ACCENT \
|
--hf #$THEME_COLOR_FG_ACCENT \
|
||||||
--tf #$THEME_COLOR_FG_ACCENT \
|
--tf #$THEME_COLOR_FG_ACCENT \
|
||||||
--ff #$THEME_COLOR_FG_ACCENT \
|
--ff #$THEME_COLOR_FG_ACCENT \
|
||||||
|
@ -3,6 +3,6 @@ font=Roboto 10
|
|||||||
background-color=#$THEME_COLOR_BG_ACCENT_DARK$THEME_OPACITY_HIGH_HEX
|
background-color=#$THEME_COLOR_BG_ACCENT_DARK$THEME_OPACITY_HIGH_HEX
|
||||||
border-size=2
|
border-size=2
|
||||||
border-radius=4
|
border-radius=4
|
||||||
border-color=#$THEME_COLOR_FG_ACCENT
|
border-color=#$THEME_COLOR_FG_ACCENT$THEME_OPACITY_MID_HEX
|
||||||
padding=5,10
|
padding=5,10
|
||||||
width=400
|
width=400
|
||||||
|
@ -1,7 +1,14 @@
|
|||||||
|
# vim: filetype=python
|
||||||
|
|
||||||
config.load_autoconfig(False)
|
config.load_autoconfig(False)
|
||||||
|
# actions
|
||||||
config.set('tabs.tabs_are_windows', True)
|
config.set('tabs.tabs_are_windows', True)
|
||||||
config.set('tabs.show', 'never')
|
config.set('tabs.show', 'never')
|
||||||
for mode in ['normal','insert','hint','passthrough','command','prompt','yesno','register']:
|
for mode in ['normal','insert','hint','passthrough','command','prompt','yesno','register']:
|
||||||
config.bind('<Cut>', 'fake-key -g <Ctrl-x>', mode)
|
config.bind('<Cut>', 'fake-key -g <Ctrl-x>', mode)
|
||||||
config.bind('<Copy>', 'fake-key -g <Ctrl-c>', mode)
|
config.bind('<Copy>', 'fake-key -g <Ctrl-c>', mode)
|
||||||
config.bind('<Paste>', 'fake-key -g <Ctrl-v>', mode)
|
config.bind('<Paste>', 'fake-key -g <Ctrl-v>', mode)
|
||||||
|
# colors
|
||||||
|
config.set('colors.webpage.preferred_color_scheme','dark')
|
||||||
|
config.set('colors.webpage.darkmode.enabled', True)
|
||||||
|
config.set('colors.webpage.bg','#$THEME_COLOR_BG')
|
@ -28,7 +28,6 @@ cp -rf config/i3blocks ~/.config
|
|||||||
cp -rf config/git ~/.config
|
cp -rf config/git ~/.config
|
||||||
cp -rf config/vim ~/.config
|
cp -rf config/vim ~/.config
|
||||||
cp -rf config/xkb ~/.config
|
cp -rf config/xkb ~/.config
|
||||||
cp -rf config/qutebrowser ~/.config
|
|
||||||
|
|
||||||
# non-xdg
|
# non-xdg
|
||||||
cp -rf config/bash/bashrc ~/.bashrc
|
cp -rf config/bash/bashrc ~/.bashrc
|
||||||
@ -37,6 +36,7 @@ cp -rf config/bash/bashrc ~/.bashrc
|
|||||||
cp_subst config/sway/config.tmpl ~/.config/sway/config
|
cp_subst config/sway/config.tmpl ~/.config/sway/config
|
||||||
cp_subst config/foot/foot.ini.tmpl ~/.config/foot/foot.ini
|
cp_subst config/foot/foot.ini.tmpl ~/.config/foot/foot.ini
|
||||||
cp_subst config/mako/config.tmpl ~/.config/mako/config
|
cp_subst config/mako/config.tmpl ~/.config/mako/config
|
||||||
|
cp_subst config/qutebrowser/config.py.tmpl ~/.config/qutebrowser/config.py
|
||||||
|
|
||||||
# dynamic
|
# dynamic
|
||||||
cp -rf config/profile ~/.profile
|
cp -rf config/profile ~/.profile
|
||||||
|
Loading…
Reference in New Issue
Block a user