This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| git clone https://github.com/xorg62/tty-clock | |
| cd tty-clock | |
| sudo dnf install ncurses ncurses-devel -y | |
| make | |
| chmod +x tty-clock | |
| sudo mv tty-clock /usr/local/bin/tty-clock |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #SingleInstance,Force | |
| global settings:=new xml("settings") | |
| if(FileExist("workspaces.ico")) | |
| Menu,Tray,Icon,Workspaces.ico | |
| Gui() | |
| return | |
| show: | |
| WinShow,% hwnd([1]) | |
| return | |
| capture(){ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| # Copyright (c) 2009, David Buxton <david@gasmark6.com> | |
| # All rights reserved. | |
| # | |
| # Redistribution and use in source and binary forms, with or without | |
| # modification, are permitted provided that the following conditions are | |
| # met: | |
| # | |
| # * Redistributions of source code must retain the above copyright | |
| # notice, this list of conditions and the following disclaimer. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ;you have to re-map the f keys so they work. | |
| ;Otherwise AHK will just 'wait' for the number key after - if there is non then nothing happens | |
| f1::f1 | |
| f2::f2 | |
| f3::f3 | |
| f4::f4 | |
| f5::f5 | |
| f6::f6 | |
| f7::f7 | |
| f8::f8 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ; bug.n - tiling window management | |
| ; @version 9.0.0 | |
| ;;Status bar | |
| Config_showBar=1 | |
| Config_horizontalBarPos=left | |
| Config_verticalBarPos=top | |
| Config_barWidth=100% | |
| Config_singleRowBar=1 | |
| Config_spaciousBar=0 |