forked from colonelpanic/dotfiles
Merge branch 'master' of github.com:IvanMalison/dotfiles
This commit is contained in:
@@ -112,7 +112,6 @@ inactive-opacity = 1;
|
||||
active-opacity = 1;
|
||||
frame-opacity = 1;
|
||||
inactive-opacity-override = false;
|
||||
alpha-step = 0.06;
|
||||
|
||||
# Dim inactive windows. (0.0 - 1.0)
|
||||
# inactive-dim = 0.2;
|
||||
@@ -190,8 +189,6 @@ vsync = "opengl";
|
||||
# Enable DBE painting mode, intended to use with VSync to (hopefully) eliminate tearing.
|
||||
# Reported to have no effect, though.
|
||||
dbe = false;
|
||||
# Painting on X Composite overlay window. Recommended.
|
||||
paint-on-overlay = true;
|
||||
|
||||
# Limit compton to repaint at most once every 1 / refresh_rate second to boost performance.
|
||||
# This should not be used with --vsync drm/opengl/opengl-oml as they essentially does --sw-opti's job already,
|
||||
|
@@ -1,19 +1,7 @@
|
||||
(import ./taffybar/nixpkgs.nix) {
|
||||
pkgs: pkgs {
|
||||
overlays = [
|
||||
(import ./taffybar/overlay.nix)
|
||||
(import ../xmonad/overlay.nix)
|
||||
(_: super: {
|
||||
haskellPackages = super.haskellPackages.override (old: {
|
||||
overrides = super.lib.composeExtensions (old.overrides or (_: _: {})) (self: _: {
|
||||
imalison-taffybar =
|
||||
self.callCabal2nix "imalison-taffybar"
|
||||
(
|
||||
super.lib.sourceByRegex ./.
|
||||
["taffybar.hs" "imalison-taffybar.cabal"]
|
||||
)
|
||||
{ };
|
||||
});
|
||||
});
|
||||
})
|
||||
(import ./overlay.nix)
|
||||
];
|
||||
}
|
||||
|
@@ -1 +1,3 @@
|
||||
(import ./base.nix).haskellPackages.imalison-taffybar
|
||||
let pkgs = ((import ./base.nix) (import <nixpkgs>)) ;
|
||||
in
|
||||
pkgs.haskellPackages.imalison-taffybar
|
||||
|
Submodule dotfiles/config/taffybar/taffybar updated: 104a1c12f7...c8fe1a4149
@@ -136,7 +136,7 @@ main = do
|
||||
{ underlineHeight = 3
|
||||
, underlinePadding = 2
|
||||
, minIcons = 1
|
||||
, getWindowIconPixbuf = scaledWindowIconPixbufGetter getWindowIconPixbufFromEWMH
|
||||
, getWindowIconPixbuf = myIcons
|
||||
, widgetGap = 0
|
||||
, showWorkspaceFn = hideEmpty
|
||||
, updateRateLimitMicroseconds = 100000
|
||||
@@ -197,6 +197,9 @@ main = do
|
||||
, ( "imalison-home"
|
||||
, baseConfig { endWidgets = fullEndWidgets, barHeight = 42 }
|
||||
)
|
||||
, ( "ryzen-shine"
|
||||
, baseConfig { endWidgets = fullEndWidgets, barHeight = 42 }
|
||||
)
|
||||
, ( "ivanm-dfinity-razer"
|
||||
, baseConfig { endWidgets = shortLaptopEndWidgets, barHeight = 42 }
|
||||
)
|
||||
|
@@ -1,4 +1,4 @@
|
||||
(import ../taffybar/taffybar/nixpkgs.nix) {
|
||||
pkgs: pkgs {
|
||||
overlays = [
|
||||
(import ../taffybar/taffybar/overlay.nix)
|
||||
(import ./overlay.nix)
|
||||
|
Submodule dotfiles/config/xmonad/xmonad updated: bb13853929...5be975b4f2
Submodule dotfiles/config/xmonad/xmonad-contrib updated: 509fe0d459...92617ebc09
@@ -398,8 +398,7 @@ getClass w = fromMaybe <$> getClassRaw w <*> getVirtualClass w
|
||||
|
||||
desktopEntriesMap :: MM.MultiMap String DesktopEntry
|
||||
desktopEntriesMap =
|
||||
unsafePerformIO $ do
|
||||
tee id (>>= writeToHomeDirLog . show . MM.keys) $
|
||||
unsafePerformIO $
|
||||
indexDesktopEntriesByClassName <$> getDirectoryEntriesDefault
|
||||
|
||||
lookupIconFromClasses classes =
|
||||
|
Reference in New Issue
Block a user