mirror of
https://github.com/elkowar/dots-of-war.git
synced 2024-11-05 19:02:24 +00:00
Disable gtk
This commit is contained in:
parent
227954f664
commit
6d1e0348b1
6 changed files with 16 additions and 6 deletions
|
@ -5,6 +5,7 @@
|
|||
window {
|
||||
background: #282828;
|
||||
color: #ebdbb2;
|
||||
font-size: 14px;
|
||||
|
||||
& > * {
|
||||
margin: 3px;
|
||||
|
|
|
@ -39,7 +39,7 @@ in
|
|||
|
||||
|
||||
elkowar.desktop = {
|
||||
gtk.enable = true;
|
||||
gtk.enable = false;
|
||||
};
|
||||
|
||||
elkowar.programs = {
|
||||
|
@ -106,7 +106,7 @@ in
|
|||
"Xft.antialias" = "1";
|
||||
"Xft.hinting" = "true";
|
||||
"Xft.hintstyle" = "hintslight";
|
||||
"Xft.dpi" = "110";
|
||||
"Xft.dpi" = "96";
|
||||
"Xft.rgba" = "rgb";
|
||||
"Xft.lcdfilter" = "lcddefault";
|
||||
|
||||
|
|
|
@ -10,7 +10,8 @@ in
|
|||
config = lib.mkIf cfg.enable {
|
||||
gtk = {
|
||||
enable = true;
|
||||
theme.name = "elkowars_phocus";
|
||||
#theme.name = "elkowars_phocus";
|
||||
theme.name = "gruvbox-phocus";
|
||||
iconTheme.name = "oomox-materia-dark";
|
||||
#iconTheme.name = "Numix";
|
||||
#font.name = "Terminus (TTF) 12";
|
||||
|
|
|
@ -121,8 +121,11 @@
|
|||
:ray-x/lsp_signature.nvim {:events [:BufEnter]}
|
||||
:weilbith/nvim-code-action-menu {}
|
||||
|
||||
:folke/lsp-trouble.nvim {:opt false :config #(require "dots.plugins.trouble")
|
||||
:cmd ["Trouble" "TroubleClose" "TroubleRefresh" "TroubleToggle"]}
|
||||
;:folke/trouble.nvim {:opt false}
|
||||
:elkowar/trouble.nvim {:branch "fix_error_on_nil_window"
|
||||
:opt false
|
||||
:config #(require "dots.plugins.trouble")
|
||||
:cmd ["Trouble" "TroubleClose" "TroubleRefresh" "TroubleToggle"]}
|
||||
|
||||
:simrat39/symbols-outline.nvim {:opt false :config #(require "dots.plugins.symbols-outline")}
|
||||
|
||||
|
|
|
@ -115,7 +115,10 @@
|
|||
:autoSetHints false}
|
||||
:dap {:adapter (rust-tools-dap.get_codelldb_adapter codelldb-path liblldb-path)}
|
||||
:server {:on_attach on_attach
|
||||
:capabilities default-capabilities}}))
|
||||
:capabilities default-capabilities
|
||||
:settings {:rust-analyzer {:cargo {:loadOutDirsFromCheck true}
|
||||
:procMacro {:enable true}}}}}))
|
||||
|
||||
;:cmd ["/home/leon/coding/prs/rust-analyzer/target/release/rust-analyzer"]}}))
|
||||
|
||||
(let [sumneko_root_path (.. vim.env.HOME "/.local/share/lua-language-server")
|
||||
|
|
|
@ -264,6 +264,8 @@ myStartupHook = do
|
|||
spawnOnce "mailnag"
|
||||
spawn "flashfocus"
|
||||
spawnOnce "dunst"
|
||||
-- This supposedly fixes slow startup of gtk applications???
|
||||
spawn "dbus-update-activation-environment --systemd DBUS_SESSION_BUS_ADDRESS DISPLAY XAUTHORITY"
|
||||
for_ ["led1", "led2"] $ \led -> safeSpawn "sudo" ["liquidctl", "set", led, "color", "fixed", "00ffff"]
|
||||
setGtkFrameExtents
|
||||
|
||||
|
|
Loading…
Reference in a new issue