Merge branch 'dark_theme'
This commit is contained in:
commit
e7b4bb9a4b
@ -1,13 +1,11 @@
|
|||||||
# Disable CPUTYPE optimizations when compiling gcc48 because tigerlake is not included in gcc4.8
|
# Disable CPUTYPE optimizations when compiling gcc48 because tigerlake is not included in gcc4.8
|
||||||
#
|
#
|
||||||
# Disable CPUTYPE optimizations when compiling ripgrep because the build is failing https://github.com/BurntSushi/ripgrep/issues/1721
|
# Disable CPUTYPE optimizations for qt6-base because FreeBSD 13 is on Clang 14 which does not yet support zen4 (added in Clang 16) so qt6 is incorrectly flagging my CPU as not supporting AVX512.
|
||||||
#
|
|
||||||
# Disable CPUTYPE optimizations for firefox due to failing build.
|
|
||||||
#
|
#
|
||||||
# Example from bottom of /usr/share/examples/etc/make.conf
|
# Example from bottom of /usr/share/examples/etc/make.conf
|
||||||
.if ${.CURDIR:N*/lang/gcc48*} && ${.CURDIR:N*/lang/gcc10*} && ${.CURDIR:N*/textproc/ripgrep*} && ${.CURDIR:N*/www/firefox*}
|
.if ${.CURDIR:N*/lang/gcc48*} && ${.CURDIR:N*/lang/gcc10*} && ${.CURDIR:N*/devel/qt6-base*}
|
||||||
CPUTYPE?=tigerlake
|
CPUTYPE?=tigerlake
|
||||||
#CPUTYPE?=x86-64-v3
|
# CPUTYPE?=x86-64-v4
|
||||||
.endif
|
.endif
|
||||||
OPTIMIZED_CFLAGS=YES
|
OPTIMIZED_CFLAGS=YES
|
||||||
BUILD_OPTIMIZED=YES
|
BUILD_OPTIMIZED=YES
|
||||||
|
@ -40,8 +40,8 @@ multimedia/libva-utils
|
|||||||
multimedia/libvdpau-va-gl
|
multimedia/libvdpau-va-gl
|
||||||
multimedia/mpv
|
multimedia/mpv
|
||||||
multimedia/pwcview
|
multimedia/pwcview
|
||||||
multimedia/v4l_compat
|
|
||||||
multimedia/v4l-utils
|
multimedia/v4l-utils
|
||||||
|
multimedia/v4l_compat
|
||||||
multimedia/vdpauinfo
|
multimedia/vdpauinfo
|
||||||
multimedia/webcamd
|
multimedia/webcamd
|
||||||
multimedia/wf-recorder
|
multimedia/wf-recorder
|
||||||
@ -57,6 +57,7 @@ ports-mgmt/pkg-provides
|
|||||||
ports-mgmt/portshaker
|
ports-mgmt/portshaker
|
||||||
ports-mgmt/poudriere
|
ports-mgmt/poudriere
|
||||||
print/texlive-full
|
print/texlive-full
|
||||||
|
security/cfssl
|
||||||
security/doas
|
security/doas
|
||||||
security/git-crypt
|
security/git-crypt
|
||||||
security/gnupg
|
security/gnupg
|
||||||
@ -112,6 +113,8 @@ x11-fonts/noto-emoji
|
|||||||
x11-fonts/noto-extra
|
x11-fonts/noto-extra
|
||||||
x11-fonts/source-sans-ttf
|
x11-fonts/source-sans-ttf
|
||||||
x11-fonts/sourcecodepro-ttf
|
x11-fonts/sourcecodepro-ttf
|
||||||
|
x11-themes/adwaita-qt5
|
||||||
|
x11-themes/adwaita-qt6
|
||||||
x11-wm/sway
|
x11-wm/sway
|
||||||
x11/alacritty
|
x11/alacritty
|
||||||
x11/grim
|
x11/grim
|
||||||
|
@ -9,6 +9,10 @@ http {
|
|||||||
include mime.types;
|
include mime.types;
|
||||||
default_type application/octet-stream;
|
default_type application/octet-stream;
|
||||||
|
|
||||||
|
types {
|
||||||
|
text/plain log;
|
||||||
|
}
|
||||||
|
|
||||||
sendfile on;
|
sendfile on;
|
||||||
tcp_nopush on;
|
tcp_nopush on;
|
||||||
tcp_nodelay on;
|
tcp_nodelay on;
|
||||||
|
@ -11,6 +11,9 @@ export WLR_RENDERER=vulkan
|
|||||||
# Enable wayland support for firefox
|
# Enable wayland support for firefox
|
||||||
export MOZ_ENABLE_WAYLAND=1
|
export MOZ_ENABLE_WAYLAND=1
|
||||||
|
|
||||||
|
# Enable dark theme
|
||||||
|
# export QT_STYLE_OVERRIDE=adwaita-dark
|
||||||
|
|
||||||
# Wayland seems enabled by default for qt5 with qt5-wayland installed but if a proprietary program bundles their own qt then I may have to set QT_QPA_PLATFORM="wayland;xcb"
|
# Wayland seems enabled by default for qt5 with qt5-wayland installed but if a proprietary program bundles their own qt then I may have to set QT_QPA_PLATFORM="wayland;xcb"
|
||||||
# Wayland does not seem enabled for gtk apps and setting GDK_BACKEND=wayland did not change that.
|
# Wayland does not seem enabled for gtk apps and setting GDK_BACKEND=wayland did not change that.
|
||||||
|
|
||||||
|
@ -9,4 +9,7 @@ export XDG_CURRENT_DESKTOP=sway
|
|||||||
export MOZ_ENABLE_WAYLAND=1
|
export MOZ_ENABLE_WAYLAND=1
|
||||||
#export WLR_RENDERER=vulkan
|
#export WLR_RENDERER=vulkan
|
||||||
|
|
||||||
|
# Enable dark theme
|
||||||
|
# export QT_STYLE_OVERRIDE=adwaita-dark
|
||||||
|
|
||||||
exec sway -d &> $HOME/.config/swaylog
|
exec sway -d &> $HOME/.config/swaylog
|
||||||
|
2
ansible/roles/sway/files/settings.ini
Normal file
2
ansible/roles/sway/files/settings.ini
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
[Settings]
|
||||||
|
gtk-application-prefer-dark-theme=1
|
@ -20,6 +20,8 @@
|
|||||||
- dbus # for desktop notifications
|
- dbus # for desktop notifications
|
||||||
- jq
|
- jq
|
||||||
- vulkan-validation-layers # For vulkan support in sway
|
- vulkan-validation-layers # For vulkan support in sway
|
||||||
|
# - adwaita-qt5 # For dark theme
|
||||||
|
# - adwaita-qt6 # For dark theme
|
||||||
state: present
|
state: present
|
||||||
|
|
||||||
- name: Install scripts
|
- name: Install scripts
|
||||||
|
@ -14,6 +14,7 @@
|
|||||||
- ".config/xdg-desktop-portal-wlr"
|
- ".config/xdg-desktop-portal-wlr"
|
||||||
- ".config/mako"
|
- ".config/mako"
|
||||||
- ".config/wlogout"
|
- ".config/wlogout"
|
||||||
|
- .config/gtk-3.0
|
||||||
|
|
||||||
- name: Copy files
|
- name: Copy files
|
||||||
copy:
|
copy:
|
||||||
@ -35,6 +36,8 @@
|
|||||||
dest: .config/electron-flags.conf
|
dest: .config/electron-flags.conf
|
||||||
- src: mako_config
|
- src: mako_config
|
||||||
dest: .config/mako/config
|
dest: .config/mako/config
|
||||||
|
- src: settings.ini
|
||||||
|
dest: .config/gtk-3.0/settings.ini
|
||||||
|
|
||||||
- name: Configure dotfiles (conf directory)
|
- name: Configure dotfiles (conf directory)
|
||||||
copy:
|
copy:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user