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
| # Maintainer: mags <c.magyar.ec@gmail.com> | |
| pkgname=cropgui | |
| arch=('any') | |
| pkgver=0.9 | |
| pkgrel=3 | |
| pkgdesc="a simple tool for lossless jpeg cropping" | |
| license=('GPL') | |
| url="https://github.com/jepler/cropgui" | |
| depends=('libjpeg' 'python-pillow' 'imagemagick' 'python-gobject' 'gtk3' 'perl-image-exiftool') |
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
| nnoremap <C-w>b :BufList<CR>:buffer<Space> | |
| nnoremap <C-w>B :BufList!<CR>:buffer<Space> | |
| command! -bang BufList call BufList(<q-bang>) | |
| function! BufList(bang) | |
| if a:bang == '!' | |
| let bufs = filter(range(1,bufnr('$')),'bufexists(v:val)') | |
| else | |
| let bufs = filter(range(1,bufnr('$')),'buflisted(v:val)') | |
| endif |
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
| #!/bin/bash | |
| ## uvpn :: | |
| # Establish tcp vpn with a random top-ranked nordvpn server. | |
| # settings: | |
| auth="$HOME/.config/nordvpn/login.conf" | |
| # internal control: | |
| config= |